.home {
  width: 100%;
}
.home .banner {
  width: 100%;
  position: relative;
}
.home .banner .bg {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .banner .text {
  width: 80%;
  left: 10%;
  top: 60%;
  transform: translateY(-50%);
  position: absolute;
}
.home .banner .text .p1 {
  font-size: 48px;
  font-family: "SOURCEHANSANSCN-BOLD";
  color: white;
}
.home .banner .text .p2 {
  font-size: 18px;
  color: white;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin: 20px 0 60px 0;
}
.home .main {
  width: 80%;
  margin: 60px auto;
}
.home .main .title {
  text-align: center;
}
.home .main .title .p1 {
  color: #272729;
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .main .title .p2 {
  color: #333333;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin: 15px 0;
}
.home .main .types {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 60px 0 30px 0;
}
.home .main .types a {
  display: block;
  margin: 0 20px;
  color: #333333;
  font-family: "SOURCEHANSANSCN-LIGHT";
  transition: all 600ms;
}
.home .main .types a:hover {
  color: #425CBB;
  font-weight: bold;
}
.home .main .types .active {
  color: #425CBB;
  font-weight: bold;
}
.home .main .allItems {
  width: 100%;
}
.home .main .allItems a {
  display: block;
  width: 100%;
}
.home .main .allItems a .dom1 {
  border-bottom: 1px solid #DFDFDF;
  padding: 20px 2.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .allItems a .dom1 p {
  color: #333333;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .main .allItems a .dom1 .time {
  font-family: "ITCAvantGardeStd-Bk";
}
.home .main .allItems a .dom2 {
  display: none;
}
.home .main .allItems a .dom2 .dom22 {
  width: 95%;
  padding: 20px 2.5%;
  background-color: #425CBB;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .allItems a .dom2 .dom22 .pic {
  width: 40%;
  overflow: hidden;
}
.home .main .allItems a .dom2 .dom22 .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .main .allItems a .dom2 .dom22 .info {
  width: 50%;
  color: white;
  margin-right: 5%;
}
.home .main .allItems a .dom2 .dom22 .des {
  font-size: 14px;
  line-height: 28px;
  margin: 20px 0;
}
.home .main .allItems a .dom2 .dom22 .time {
  text-align: right;
  font-family: "ITCAvantGardeStd-Bk";
}
.home .main .pager {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.home .main .pager a {
  display: block;
  margin: 0 15px;
  color: #333333;
  font-size: 14px;
  font-family: "ITCAvantGardeStd-Bk";
  transition: all 600ms;
}
.home .main .pager a:hover {
  color: #425CBB;
}
.home .main .pager .active {
  color: #425CBB;
}
.home .main .pager .prev {
  width: 27px;
  height: 27px;
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 600ms;
}
.home .main .pager .prev img {
  transition: all 600ms;
}
.home .main .pager .prev img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .main .pager .prev:hover {
  background-color: #425CBB;
  border-color: #425CBB;
}
.home .main .pager .prev:hover img:nth-child(1) {
  opacity: 0;
}
.home .main .pager .prev:hover img:nth-child(2) {
  opacity: 1;
}
.home .main .pager .next {
  width: 27px;
  height: 27px;
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 600ms;
  transform: rotateY(180deg);
}
.home .main .pager .next img {
  transition: all 600ms;
}
.home .main .pager .next img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .main .pager .next:hover {
  background-color: #425CBB;
  border-color: #425CBB;
}
.home .main .pager .next:hover img:nth-child(1) {
  opacity: 0;
}
.home .main .pager .next:hover img:nth-child(2) {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .home .banner .bg {
    height: 500px;
  }
  .home .banner .text .p1 {
    font-size: 24px;
  }
  .home .main {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .title .p1 {
    font-size: 20px;
  }
  .home .main .types {
    margin: 15px 0;
  }
  .home .main .allItems a .dom1 p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .home .main .allItems a .dom2 {
    display: block;
  }
  .home .main .allItems a .dom2 .dom22 {
    flex-wrap: wrap;
  }
  .home .main .allItems a .dom2 .dom22 .pic {
    width: 100%;
  }
  .home .main .allItems a .dom2 .dom22 .info {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}