.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 .link {
  width:80%;
  margin: 60px auto;margin-top:10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 0;
}
.home .link a, .home .link p {
  color: #333333;
  font-size: 16px;margin: 0px 5px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .link a {
  transition: all 600ms;
}
.home .link a:hover {
  color: #425CBB;
}
.home .content1 {
  width: 80%;
  margin: 60px auto;
}
.home .content1 .p1 {
  text-align: center;
  color: #263346;
  font-size: 28px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .content1 .html {
  font-family: "SOURCEHANSANSCN-LIGHT";
  line-height: 30px;
  margin: 40px auto;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}

.home .content1 .html a {
  color: #425CBB;
}
.home .content1 .html a:hover {
   color: #425CBB;
  font-weight: bold;
}
  .tips {
    font-size: 14px;
    line-height: 30px;
    color: #8d8d8d;
    margin-top: 40px;
}
.home .content1 .more {
    width: 180px;
    height: 45px;
    background: #425CBB;
    border-radius: 20px;
    margin: 60px auto;
       padding: 13px 30px;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}
.home .content1 .more:hover {
    width: 180px;
    height: 45px;
    background: #546cc3;
    border-radius: 20px;
    margin: 60px auto;
       padding: 14px 32px;
    justify-content: center;
    align-items: center;
    color: white; 
    cursor: pointer;
}

.home .content1 .pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .content1 .pager a {
  display: flex;
  align-items: center;
}
.home .content1 .pager a .pic {
  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 .content1 .pager a .pic img {
  transition: all 600ms;
}
.home .content1 .pager a .pic img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .content1 .pager a span {
  display: inline-block;
  margin: 0 10px;
  color: #999999;
  transition: all 600ms;
}
.home .content1 .pager a:hover .pic {
  background-color: #425CBB;
  border-color: #425CBB;
}
.home .content1 .pager a:hover .pic img:nth-child(1) {
  opacity: 0;
}
.home .content1 .pager a:hover .pic img:nth-child(2) {
  opacity: 1;
}
.home .content1 .pager a:hover span {
  color: #425CBB;
}
.home .content1 .pager .next .pic {
  transform: rotateY(180deg);
}
@media screen and (max-width: 1000px) {
  .home .banner .bg {
    height: 500px;
  }
  .home .banner .text .p1 {
    font-size: 24px;
  }
  .home .link {
    width: 90%;
    margin: 30px auto;
  }
  .home .link p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100px;
  }
  
  .home .content1 {
    width: 90%;
    margin: 30px auto;
}
  .home .content1 p {
    width: 100%;
    margin: 30px auto;font-size: 14px;
  }
  
  .home .content1 .more {
    width: 180px;
    height: 45px;
    background: #425CBB;
    border-radius: 20px;
    margin: 60px auto;
    padding: 13px 30px;
    justify-content: center;
    align-items: center;
    color: white;display:none;
    cursor: pointer;
}
  .home .content1 .p1 {
    font-size: 18px;
  }
  .home .content1 .html {
    margin: 20px 0;
    padding-bottom: 20px;
  }
   .home .content1 .html img {
    margin: 20px 0;max-width:100%;
    padding-bottom: 20px;
  }
  
  .home .content1 .pager a span {
    display: inline-block;
    margin: 0 10px;
    color: #999999;font-size:14px;
    transition: all 600ms;
}
}