.index {
  overflow: hidden;
}

.index .i-banner {
  width: 100%;
  padding-top: 40.22%;
  position: relative;
}

.index .i-banner .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
}

.index .i-banner .swiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-banner .swiperBtn {
  position: absolute;
  top: 50%;
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: .625rem;
  background: rgba(255, 255, 255, 0.29);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.index .i-banner .swiperBtn .bi {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.index .i-banner .swiperBtn.swiper-button-prev {
  left: 10.31%;
}

.index .i-banner .swiperBtn.swiper-button-next {
  right: 10.31%;
}

.index .i-banner .swiperBtn:hover {
  background: #0357a8;
}

.index .i-banner .swiper-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-image: linear-gradient(0deg, #015eea 0%, #00c0fa 100%);
  opacity: 0.4;
  transition: all 0.5s ease-in-out;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 1.875rem;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet-active {
  padding: 6px;
  border: 2px solid #015eea;
  box-sizing: content-box;
  opacity: 1;
  background-clip: content-box;
}

@media screen and (max-width: 640px) {
  .index .i-banner {
    height: 300px;
  }
  .index .i-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}

.index .i-about {
  margin-top: 5.625rem;
}

.index .i-about .left {
  width: 40.625rem;
  height: 39.1875rem;
  position: relative;
  background-image: linear-gradient(135deg, #0357a8 0%, #4d9bf7 100%);
}

.index .i-about .left img {
  position: absolute;
  top: 5rem;
  left: 5rem;
  display: block;
  width: 95.4%;
}

.index .i-about .right {
  padding-top: 6.25rem;
  box-sizing: border-box;
  width: 50rem;
}

.index .i-about .right .info {
  margin-top: 2.8125rem;
}

.index .i-about .right .more {
  margin-top: 3.4375rem;
}

.index .i-about .right .list {
  display: flex;
  margin-top: 8.625rem;
  position: relative;
}

.index .i-about .right .list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index .i-about .right .list li a p {
  margin: .3125rem 0 1.25rem;
}

.index .i-about .right .list li a .cir {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  background: #d0cece;
}

.index .i-about .right .list li a .cir .dot {
  width: 5px;
  height: 5px;
  background: #686767;
  border-radius: 50%;
}

.index .i-about .right .list li:not(:last-child) {
  margin-right: 9.375rem;
}

.index .i-about .right .list li:hover a .iconfont,
.index .i-about .right .list li:hover a p {
  color: #0357a8;
}

.index .i-about .right .list li:hover a .cir {
  background: #c0d9ef;
}

.index .i-about .right .list li:hover a .cir .dot {
  background: #0e61b4;
}

.index .i-about .right .list::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #d0cece;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .index .i-about {
    margin-top: 3.75rem;
    flex-direction: column-reverse;
    padding: 0 15px;
  }
  .index .i-about .left, .index .i-about .right {
    width: 100%;
  }
  .index .i-about .right {
    padding-top: 4.16rem;
    margin-bottom: 20px;
  }
  .index .i-about .right .info {
    margin-top: 20px;
  }
  .index .i-about .right .more {
    margin: 20px auto 0;
  }
  .index .i-about .right .list {
    margin: 3.125rem auto 0;
  }
  .index .i-about .left {
    width: 100%;
    height: auto;
  }
  .index .i-about .left img {
    width: 85%;
    position: relative;
  }
}

@media screen and (max-width: 640px) {
  .index .i-about .right .list {
    width: 100%;
    justify-content: space-between;
  }
  .index .i-about .right .list li:not(:last-child) {
    margin-right: 0;
  }
}

.index .i-news {
  background: url(../images/i-news-bg.jpg) no-repeat center;
  background-size: cover;
  margin-top: 9.375rem;
  padding: 7.5rem 0 6.5625rem;
  min-height: 54.6875rem;
}

.index .i-news .i-news-top .newsBtn li {
  cursor: pointer;
  padding: .75rem 1.25rem;
  position: relative;
  border: 2px solid black;
  border-image: linear-gradient(47deg, #0357a8 0%, #4d9bf7 100%) 1;
  color: #0357a8;
  line-height: 1;
  transition: all 0.5s ease-in-out;
}

.index .i-news .i-news-top .newsBtn li:not(:last-child) {
  margin-right: 1.875rem;
}

.index .i-news .i-news-top .newsBtn li.active {
  background: linear-gradient(47deg, #0357a8 0%, #4d9bf7 100%);
  color: #fff;
}

.index .i-news .i-news-top .newsBtn li:hover {
  background: linear-gradient(47deg, #0357a8 0%, #4d9bf7 100%);
  color: #fff;
}

.index .i-news .i-news-box {
  margin-top: 5.625rem;
}

.index .i-news .i-news-box .list {
  display: none;
}

.index .i-news .i-news-box .list.active {
  display: block;
}

.index .i-news .i-news-box .item {
  background: #fff;
  padding: 2.1875rem;
  box-sizing: border-box;
  width: 30.625rem;
  transition: all 0.5s ease-in-out;
}

.index .i-news .i-news-box .item .img-box {
  padding-top: 57.85%;
  position: relative;
}

.index .i-news .i-news-box .item .img-box .bgImg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.index .i-news .i-news-box .item .timeBox {
  position: absolute;
  left: -0.8125rem;
  bottom: -0.625rem;
  width: 4.6875rem;
  height: 3.75rem;
  background-image: linear-gradient(107deg, #0357a8 0%, #4d9bf7 100%);
  border-radius: 0px 2.5rem 0px 0px;
}

.index .i-news .i-news-box .item .timeBox .year {
  font-size: 13px;
}

.index .i-news .i-news-box .item .timeBox p {
  font-size: 1rem;
}

.index .i-news .i-news-box .item .title {
  margin-top: 3.4375rem;
}

.index .i-news .i-news-box .item .line {
  width: 100%;
  height: 1px;
  background-color: #727171;
  opacity: 0.16;
  margin-top: .75rem;
}

.index .i-news .i-news-box .item .info {
  margin-top: .75rem;
  min-height: 2.1875rem;
}

.index .i-news .i-news-box .item .more2-box {
  margin-top: 3.125rem;
}

.index .i-news .i-news-box .item:hover {
  border: 1px solid #000;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 1;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 992px) {
  .index .i-news {
    margin: 5.625rem 0;
    min-height: auto;
    padding: 7.5rem 15px 6.5625rem;
  }
  .index .i-news .container {
    padding: 0 15px;
  }
  .index .i-news .i-news-box .item {
    width: 33%;
    padding: .9375rem;
  }
}

@media screen and (max-width: 640px) {
  .index .i-news .i-news-top {
    flex-wrap: wrap;
  }
  .index .i-news .i-news-top .oneTitle {
    width: 100%;
  }
  .index .i-news .i-news-top .newsBtn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
  .index .i-news .i-news-box {
    width: 100%;
  }
  .index .i-news .i-news-box .list-box {
    width: 100%;
    flex-wrap: wrap;
  }
  .index .i-news .i-news-box .list-box .item {
    width: 100%;
  }
  .index .i-news .i-news-box .list-box .item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.index .i-society {
  margin-top: 8.75rem;
  padding: 0 15px;
}

.index .i-society .oneTitle {
  justify-content: center;
}

.index .i-society .content {
  color: #2d2d2d;
  margin-top: 5.3125rem;
  text-align: center;
}

.index .i-society .i-societyImg {
  display: block;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .index .i-society {
    margin-top: 5.83rem;
  }
  .index .i-society .cotent {
    margin-top: 3.54rem;
  }
}

@media screen and (max-width: 992px) {
  .index .container {
    padding: 0 !important;
  }
}

.about .about-item1 {
  margin-top: 2.0625rem;
}

.about .about-item1 .item1-l {
  width: 53.125rem;
}

.about .about-item1 .item1-r {
  width: 39.1875rem;
  flex-shrink: 0;
}

.about .about-item1 .optiscroll {
  margin-top: 5.3125rem;
  height: 25rem;
}

.about .about-item1 .content {
  width: calc(100% - 12px);
  text-align: justify;
}

.about .about-item1 .numberList {
  margin-top: 5.75rem;
}

.about .about-item1 .numberList li p {
  line-height: 1;
  color: #0357a8;
  font-size: 1rem;
  font-weight: bold;
}

.about .about-item1 .numberList li p span {
  font-size: 2.1875rem;
  line-height: 1;
}

.about .about-item1 .numberList li div {
  margin-top: .75rem;
  line-height: 1;
}

.about .about-item2 {
  margin-top: 14.6875rem;
}

.about .about-item2 .item2-box {
  position: relative;
}

.about .about-item2 ul {
  width: 105.3125rem;
  border-radius: 0px 0px 13.3125rem 0px;
  overflow: hidden;
  margin-top: 4.0625rem;
}

.about .about-item2 ul li {
  max-height: 14.6875rem;
  height: 14.6875rem;
  background: #f6f6f6;
  position: relative;
  box-sizing: border-box;
  padding: 4.5625rem 0 0 5.625rem;
  cursor: pointer;
}

.about .about-item2 ul li .iconfont {
  background: linear-gradient(-26deg, #4d9bf7 0%, #0357a8 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 2.5rem;
  margin-top: -0.5625rem;
  margin-right: 2.6875rem;
}

.about .about-item2 ul li .info-box,
.about .about-item2 ul li .iconfont {
  position: relative;
  z-index: 2;
}

.about .about-item2 ul li .title {
  font-size: 1.5625rem;
  line-height: 1;
}

.about .about-item2 ul li p {
  color: #3e3e3e;
  line-height: 1;
  margin-top: 1.625rem;
}

.about .about-item2 ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60.3125rem;
  height: 100%;
  background: linear-gradient(to right, #fff 40%, transparent);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.about .about-item2 ul li::before {
  content: "";
  width: .625rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(0deg, #0357a8 0%, #4d9bf7 100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.about .about-item2 ul li.active::after, .about .about-item2 ul li.active::before {
  opacity: 1;
}

.about .about-item2 .swiperBox {
  position: absolute;
  right: 0;
  bottom: 5.625rem;
  width: 74.0625rem;
  padding-top: 48%;
}

.about .about-item2 .swiperBox .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about .about-item2 .swiperBox .swiper .swiper-slide {
  background-position: calc(100% - 1px) center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  border-radius: 9.9375rem 0px 0px 0px;
  overflow: hidden;
}

.about .about-item2 .swiperBox .swiperBtn {
  width: 5rem;
  height: 5rem;
  position: absolute;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .about-item2 .swiperBox .swiperBtn .bi {
  font-size: 1.25rem;
  color: #fff;
}

.about .about-item2 .swiperBox .swiperBtn.swiper-button-next {
  right: 0;
  background-image: linear-gradient(0deg, #29abe2 0%, #1e72c3 100%);
  border-radius: 0px 3.125rem 0px 0px;
}

.about .about-item2 .swiperBox .swiperBtn.swiper-button-prev {
  right: 5rem;
  background-image: linear-gradient(0deg, #29abe2 0%, #1e72c3 100%);
  opacity: 0.46;
}

.about .about-item3 {
  margin-top: 9.375rem;
  margin-bottom: 8.125rem;
  position: relative;
}

.about .about-item3 ul {
  margin-top: 6.25rem;
  position: relative;
}

.about .about-item3 ul li {
  display: flex;
  flex-direction: column;
  width: 50%;
  min-height: 12.5rem;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}

.about .about-item3 ul li .year {
  font-size: 2.1875rem;
  color: #0357a8;
  line-height: 1;
}

.about .about-item3 ul li .content {
  margin-top: 1.25rem;
  width: 42.1875rem;
}

.about .about-item3 ul li:nth-child(odd) {
  justify-content: center;
  align-items: flex-end;
  padding-right: 1.875rem;
}

.about .about-item3 ul li:nth-child(odd) .content {
  text-align: right;
}

.about .about-item3 ul li:nth-child(odd).active {
  background: #eeeeee;
  border-radius: 6.25rem 0px 0px 6.25rem;
}

.about .about-item3 ul li:nth-child(even) {
  justify-content: center;
  padding-left: 1.875rem;
  margin-left: auto;
}

.about .about-item3 ul li:nth-child(even).active {
  background: #eeeeee;
  border-radius: 0px 6.25rem 6.25rem  0px;
}

.about .about-item3 ul::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #a6cdfb;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .about-item3 ul .slideBlock {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  background-image: linear-gradient(to top, #4d9bf7 0%, #0357a8 100%);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.about .about-item3::after {
  content: "";
  width: 32.75rem;
  height: 43rem;
  background: url(../images/about-item3.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 2.1875rem;
  right: 0;
  z-index: -1;
}

.about .about-item3::before {
  content: "";
  width: 26.25rem;
  height: 54.375rem;
  background: url(../images/about-item3-2.png) no-repeat center;
  background-size: cover;
  position: absolute;
  bottom: -2.6875rem;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 992px) {
  .about .about-item1 {
    margin-top: 30px;
  }
  .about .about-item1 .w1600 {
    flex-wrap: wrap;
  }
  .about .about-item1 .item1-l,
  .about .about-item1 .item1-r {
    width: 100%;
  }
  .about .about-item1 .content, .about .about-item1 .numberList {
    margin-top: 20px;
  }
  .about .about-item2 {
    margin-top: 5rem;
  }
  .about .about-item2 .swiperBox {
    position: relative;
    width: 100%;
    bottom: unset;
    right: unset;
  }
  .about .about-item2 ul {
    width: 100%;
    margin-top: 2rem;
    border-radius: 0 0 100px 0;
  }
  .about .about-item2 ul li {
    height: 120px;
    padding-top: 0;
    align-items: center;
  }
  .about .about-item3 ul {
    margin-top: 4.17rem;
  }
  .about .about-item3 ul li .content {
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  .about .about-item1 .numberList li p {
    text-align: center;
  }
  .about .about-item3 ul li .year {
    margin-top: 1rem;
  }
  .about .about-item3 ul li .content {
    width: 80%;
    margin-bottom: 1rem;
  }
  .about .about-item3 ul li:nth-child(odd).active {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

.dichan {
  margin-bottom: 3.75rem;
}

.dichan .dichanBox-top {
  margin-top: 6.25rem;
}

.dichan .dichanBox-top .btnBox {
  position: relative;
}

.dichan .dichanBox-top .btnBox .btn {
  width: 10.9375rem;
  height: 3.75rem;
  border: 2px solid black;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 2;
  clip-path: inset(0 round 2px);
}

.dichan .dichanBox-top .btnBox .btn p, .dichan .dichanBox-top .btnBox .btn .iconfont {
  font-size: 1.25rem;
  background: linear-gradient(43deg, #29abe2 0%, #0357a8 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.dichan .dichanBox-top .btnBox .btn p {
  margin: 0 1rem 0 .625rem;
}

.dichan .dichanBox-top .btnBox .btn .dot {
  flex-shrink: 0;
  width: 14px;
  height: 8px;
  background-image: linear-gradient(43deg, #29abe2 0%, #1e72c3 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.dichan .dichanBox-top .btnBox .list {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #f2efef;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}

.dichan .dichanBox-top .btnBox .list li {
  height: 3.75rem;
  position: relative;
}

.dichan .dichanBox-top .btnBox .list li a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.dichan .dichanBox-top .btnBox .list li::after {
  content: "";
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to top, #4d9bf7 0%, #0357a8 100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.dichan .dichanBox-top .btnBox .list li:hover {
  background: #fcfbfb;
}

.dichan .dichanBox-top .btnBox .list li:hover::after {
  opacity: 1;
}

.dichan .dichanBox-top .btnBox .list li:hover a {
  color: #000;
}

.dichan .dichanBox-top .btnBox .list li.active {
  opacity: 1;
  background: #fcfbfb;
}

.dichan .dichanBox-top .btnBox .list li.active::after {
  opacity: 1;
}

.dichan .dichanBox-top .btnBox .list.active {
  opacity: 1;
  pointer-events: auto;
}

.dichan .dichanBox-top .btnBox:not(:last-child) {
  margin-right: 3.125rem;
}

.dichan .dichanBox-top .btnBox:hover .list {
  opacity: 1;
  pointer-events: auto;
}

.dichan .dichanBox-top .d-t-r .search-box {
  width: 36.25rem;
  height: 3.75rem;
  background-image: linear-gradient(0deg, #29abe2 0%, #1e72c3 100%);
  border-radius: 5px;
}

.dichan .dichanBox-top .d-t-r .search-box input {
  width: 31.75rem;
  height: 3.375rem;
  margin-left: 3px;
  border: 0;
  outline: 0;
  background-color: #fefefe;
  border-radius: .3125rem;
  font-size: 1.25rem;
  color: #000;
  box-sizing: border-box;
  padding: 0 1.5625rem;
}

.dichan .dichanBox-top .d-t-r .search-box input::placeholder {
  color: #dbd8d8;
}

.dichan .dichanBox-top .d-t-r .search-box .icon-sousuo {
  font-size: 1.625rem;
  margin-left: 1.25rem;
}

.dichan .dichanList {
  margin-top: 8.125rem;
  flex-wrap: wrap;
}

.dichan .dichanList li {
  width: 31.25rem;
  margin-bottom: 3.75rem;
}

.dichan .dichanList li .img-box {
  width: 100%;
  padding-top: 63%;
  position: relative;
  overflow: hidden;
}

.dichan .dichanList li .img-box .imgInfo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
}

.dichan .dichanList li .text-box {
  margin-top: 1.25rem;
  background: #f7f7f7;
  box-sizing: border-box;
  padding: 0 1.875rem;
  height: 4.6875rem;
  transition: all 0.5s ease-in-out;
}

.dichan .dichanList li .text-box .bi {
  font-size: 2.1875rem;
}

.dichan .dichanList li:not(:nth-child(3n)) {
  margin-right: calc((100% - (31.25rem*3))/2);
}

.dichan .dichanList li:hover .imgInfo {
  transform: scale(1.1);
}

.dichan .dichanList li:hover .text-box {
  background-image: linear-gradient(0deg, #29abe2 0%, #1e72c3 100%);
}

.dichan .dichanList li:hover .text-box .bi, .dichan .dichanList li:hover .text-box p {
  color: #fff;
}

.dichan .fenye {
  margin-top: .9375rem;
}

@media screen and (max-width: 1336px) {
  .dichan .dichanBox-top .btnBox .btn {
    width: 12rem;
  }
}

@media screen and (max-width: 992px) {
  .dichan .dichanBox-top {
    margin-top: 2.8125rem;
    flex-wrap: wrap;
  }
  .dichan .dichanBox-top .d-t-r {
    margin-top: 20px;
    width: 100%;
  }
  .dichan .dichanList {
    margin-top: 40px;
    width: 100%;
  }
  .dichan .dichanList li {
    width: 32%;
    margin-bottom: 20px;
  }
  .dichan .dichanList li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 640px) {
  .dichan .dichanBox-top .btnBox .btn {
    width: auto;
  }
  .dichan .dichanBox-top .d-t-r .search-box {
    width: 100%;
  }
  .dichan .dichanBox-top .d-t-r .search-box .icon-sousuo {
    margin: 0 1.25rem;
  }
  .dichan .dichanList {
    justify-content: space-between;
  }
  .dichan .dichanList li {
    width: 48%;
  }
  .dichan .dichanList li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.jianzhu {
  overflow: hidden;
}

.jianzhu .numberList li {
  width: 13.9375rem;
  height: 9.375rem;
  border: 2px solid black;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 2;
}

.jianzhu .numberList p, .jianzhu .numberList div {
  color: #0357a8;
}

.jianzhu .numberList span {
  font-size: 1.875rem;
  font-weight: bold;
  color: #0357a8;
}

.jianzhu .jianzhu-item1 {
  margin-top: 9.0625rem;
}

.jianzhu .jianzhu-item1 .content {
  color: #030303;
  line-height: 1.6;
}

.jianzhu .jianzhu-item1 .numberList {
  margin-top: 5.625rem;
}

.jianzhu .jianzhu-item1 .numberList li:not(:last-child) {
  margin-right: 5.3125rem;
}

.jianzhu .jianzhu-item1 .jianzhu-item1-img {
  display: block;
  width: 100%;
  margin-top: -3.375rem;
  border-radius: 0 0 12.5rem 0;
  position: relative;
  z-index: -1;
}

.jianzhu .jianzhu-item2 {
  margin-top: 11.25rem;
  position: relative;
}

.jianzhu .jianzhu-item2 .item2-l {
  width: 51.7%;
}

.jianzhu .jianzhu-item2 .item2-l .content {
  width: 34.6875rem;
  margin: 0 auto;
  color: #030303;
  line-height: 1.6;
  text-align: justify;
}

.jianzhu .jianzhu-item2 .item2-l .numberList {
  margin-top: 4.375rem;
}

.jianzhu .jianzhu-item2 .item2-l .numberList li:not(:last-child) {
  margin-right: 6.75rem;
}

.jianzhu .jianzhu-item2 .item2-r {
  width: 49.3%;
}

.jianzhu .jianzhu-item2 .item2-r img {
  border-radius: 6.25rem 0px 0px 0px;
}

.jianzhu .jianzhu-item2::after {
  content: "";
  width: 115.3125rem;
  height: 32.6875rem;
  background: url(../images/jianzhu-bg.png) no-repeat center;
  background-size: cover;
  border-radius: 0px 0px  0px 12.5rem;
  position: absolute;
  right: 0;
  bottom: 2.5rem;
}

@media screen and (min-width: 2000px) {
  .jianzhu .jianzhu-item2::after {
    width: 123.312rem;
  }
}

.jianzhu .jianzhu-item3 {
  margin-bottom: 5.625rem;
}

.jianzhu .jianzhu-item3 .container {
  flex-direction: row-reverse;
}

.jianzhu .jianzhu-item3 .container .item2-r {
  width: 66.25%;
}

.jianzhu .jianzhu-item3 .container .item2-r img {
  border-radius: 0px 6.25rem 0px 0px;
}

.jianzhu .jianzhu-item3 .container .item2-l {
  width: 33.75%;
}

.jianzhu .jianzhu-item3 .container .item2-l .content {
  width: 21.875rem;
  margin-top: 5.9375rem;
}

.jianzhu .jianzhu-item3::after {
  border-radius: 0px 0px 12.5rem 0px;
  right: unset;
  left: 0;
}

@media screen and (max-width: 992px) {
  .jianzhu .jianzhu-item1 {
    margin-top: 5rem;
  }
  .jianzhu .jianzhu-item1 .numberList, .jianzhu .jianzhu-item1 .jianzhu-item1-img {
    margin-top: 20px;
  }
  .jianzhu .jianzhu-item2 {
    margin-top: 5rem;
  }
  .jianzhu .jianzhu-item2 .container {
    flex-wrap: wrap;
  }
  .jianzhu .jianzhu-item2 .item2-l {
    width: 100%;
    position: relative;
  }
  .jianzhu .jianzhu-item2 .item2-l .content {
    width: 80%;
  }
  .jianzhu .jianzhu-item2 .item2-l .numberList {
    margin-top: 20px;
  }
  .jianzhu .jianzhu-item2 .item2-l::after {
    content: "";
    width: 100%;
    height: calc(100% + 20px);
    background: url(../images/jianzhu-bg.png) no-repeat center;
    background-size: cover;
    border-radius: 0px 0px  0px 12.5rem;
    position: absolute;
    right: 0;
    top: 0;
  }
  .jianzhu .jianzhu-item2 .item2-r {
    width: 80%;
    margin: 40px auto 0;
  }
  .jianzhu .jianzhu-item2::after {
    content: none;
  }
  .jianzhu .jianzhu-item3 .container {
    flex-direction: row !important;
  }
  .jianzhu .jianzhu-item3 .container .item2-l {
    width: 100%;
  }
  .jianzhu .jianzhu-item3 .container .item2-r {
    width: 80%;
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 640px) {
  .jianzhu .jianzhu-item2 .item2-l::after {
    border-radius: 0;
  }
}

.wuye {
  overflow: hidden;
}

.wuye .wuye-item1 {
  padding-top: 13.125rem;
  position: relative;
}

.wuye .wuye-item1 .content {
  color: #010101;
  line-height: 1.6;
}

.wuye .wuye-item1 .wuye-item1-img {
  display: block;
  margin-left: auto;
  width: 90.25rem;
  margin-top: -3.125rem;
}

.wuye .wuye-item1 .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 67.5rem;
  z-index: -1;
}

.wuye .wuye-item2 {
  margin-top: 8.75rem;
}

.wuye .wuye-item2 .item {
  position: relative;
}

.wuye .wuye-item2 .item .item-r {
  width: 67.8125rem;
}

.wuye .wuye-item2 .item .item-l {
  width: 42.5rem;
  margin-top: 2.8125rem;
}

.wuye .wuye-item2 .item .item-l .title {
  font-size: 1.875rem;
  color: #0357a8;
}

.wuye .wuye-item2 .item .item-l .line {
  width: 4.6875rem;
  height: 1px;
  background: #0357a8;
  margin-top: 1.875rem;
}

.wuye .wuye-item2 .item .item-l .content {
  width: 24.0625rem;
  line-height: 1.6;
  margin-top: 5rem;
  text-align: justify;
}

.wuye .wuye-item2 .item::after {
  content: "";
  width: 86.2%;
  height: 41.6875rem;
  background: url(../images/wuye-item2-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 12.5rem 0px 0px 0px;
}

.wuye .wuye-item2 .item:first-child {
  margin-bottom: 8.75rem;
}

.wuye .wuye-item2 .item:first-child::after {
  top: -8.75rem;
}

.wuye .wuye-item2 .item:not(:first-child) {
  margin-bottom: 10rem;
}

.wuye .wuye-item2 .item:not(:first-child) .item-l {
  margin-top: 18.75rem;
}

.wuye .wuye-item2 .item:not(:first-child)::after {
  top: 9.375rem;
}

.wuye .wuye-item2 .item:nth-child(even) .container {
  flex-direction: row-reverse;
}

.wuye .wuye-item2 .item:nth-child(even)::after {
  left: unset;
  right: 0;
  border-radius: 0px 12.5rem  0px 0px;
}

@media screen and (max-width: 992px) {
  .wuye .wuye-item1 {
    padding-top: 5rem;
  }
  .wuye .wuye-item1 .content p {
    width: 100% !important;
  }
  .wuye .wuye-item1 .wuye-item1-img {
    width: 100%;
    margin: 0 auto;
  }
  .wuye .wuye-item2 {
    margin-top: 5rem;
  }
  .wuye .wuye-item2 .item {
    margin-bottom: 40px !important;
  }
  .wuye .wuye-item2 .item .container {
    flex-wrap: wrap;
  }
  .wuye .wuye-item2 .item .item-r {
    width: 80%;
    margin: 20px auto 0;
  }
  .wuye .wuye-item2 .item .item-l {
    width: 100%;
    margin-top: 0;
  }
  .wuye .wuye-item2 .item .item-l .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .wuye .wuye-item2 .item .item-l .content {
    width: 80%;
    margin-top: 20px;
  }
  .wuye .wuye-item2 .item::after {
    content: none;
  }
  .wuye .wuye-item2 .item:first-child {
    margin-bottom: 0;
  }
  .wuye .wuye-item2 .item:not(:first-child) {
    margin-bottom: 0;
  }
  .wuye .wuye-item2 .item:not(:first-child) .item-l {
    margin-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .wuye .wuye-item2 .item .item-l .content {
    width: 100%;
  }
}

.detail .detail-box {
  margin-top: 4.6875rem;
  margin-bottom: 4.0625rem;
}

.detail .detail-box .d-b-l {
  width: 62.5rem;
}

.detail .detail-box .d-b-l .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0357a8;
  line-height: 1.2;
}

.detail .detail-box .d-b-l .detail-img {
  display: block;
  width: 100%;
  margin-top: 2.8125rem;
}

.detail .detail-box .d-b-l .content {
  margin-top: 2.625rem;
  line-height: 2;
  font-family: "Microsoft YaHei" !important;
}

.detail .detail-box .d-b-l .content img {
  max-width: 100%;
}

.detail .detail-box .d-b-l .line {
  width: 100%;
  height: 1px;
  background: #aaabab;
  margin: 2.1875rem 0;
}

.detail .detail-box .d-b-l .detailBtn a {
  color: #333;
}

.detail .detail-box .d-b-l .detailBtn a:nth-child(2) {
  flex-shrink: 0;
  width: 5rem;
}

.detail .detail-box .d-b-l .detailBtn a:not(:nth-child(2)) {
  width: calc((100% - 10rem)/2);
}

.detail .detail-box .d-b-r {
  width: 29.6875rem;
  flex-shrink: 0;
}

.detail .detail-box .d-b-r .db-r-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0357a8;
  line-height: 1.2;
}

.detail .detail-box .d-b-r ul {
  margin-top: 2.8125rem;
  width: 100%;
}

.detail .detail-box .d-b-r ul li {
  position: relative;
  padding-top: 55.51%;
  margin-bottom: 3.125rem;
  overflow: hidden;
}

.detail .detail-box .d-b-r ul li a {
  display: flex;
  align-items: end;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
}

.detail .detail-box .d-b-r ul li a .title {
  height: 4.375rem;
  width: 100%;
  background: rgba(3, 87, 168, 0.52);
  font-size: 1.5625rem;
  box-sizing: border-box;
  padding: 0 .9375rem;
}

.detail .detail-box .d-b-r ul li:hover a {
  transform: scale(1.1);
}

.detail .detail-box .d-b-r .back {
  width: 15rem;
  height: 3.875rem;
  background-image: linear-gradient(0deg, #0357a8 0%, #4d9bf7 100%);
  border-radius: 1.875rem;
  font-size: 1.5625rem;
  margin: 0 auto;
}

.detail .detail-box .d-b-r .back:hover {
  color: #fff;
}

@media screen and (max-width: 992px) {
  .detail .detail-box .w1600 {
    flex-wrap: wrap;
  }
  .detail .detail-box .d-b-l {
    width: 100%;
  }
  .detail .detail-box .d-b-l .title {
    font-size: 25px;
  }
  .detail .detail-box .d-b-l .detailBtn {
    flex-wrap: wrap;
  }
  .detail .detail-box .d-b-l .detailBtn a {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  .detail .detail-box .d-b-l .detailBtn a:nth-child(2) {
    display: none;
  }
  .detail .detail-box .d-b-r {
    width: 100%;
    margin-top: 5rem;
  }
}

.contact .banner .banner-box .oneTitle h2 img {
  top: -45%;
}

.contact .contact-item1 {
  margin-top: 8.125rem;
}

.contact .contact-item1 .item1-l {
  width: 44.6875rem;
}

.contact .contact-item1 .item1-l .box {
  width: 35.3125rem;
  margin: 0 auto;
}

.contact .contact-item1 .item1-l .box .iconfont {
  color: #3097d5;
  font-size: 1.5625rem;
}

.contact .contact-item1 .item1-l .box .title {
  color: #979696;
}

.contact .contact-item1 .item1-l .box .info {
  font-size: 1.875rem;
  color: #000;
  line-height: 1.2;
}

.contact .contact-item1 .item1-l .box .box-item1 {
  padding-bottom: 3.9375rem;
  border-bottom: 2px solid #f6f5f5;
  margin-top: 1.25rem;
}

.contact .contact-item1 .item1-l .box .box-item1-item .title {
  margin: 0 1.875rem 0 1.125rem;
}

.contact .contact-item1 .item1-l .box .box-item1-item:not(:last-child) {
  margin-bottom: 15px;
}

.contact .contact-item1 .item1-l .box .box-item2 {
  padding: 4.25rem 0 5.1875rem;
  border-bottom: 2px solid #f6f5f5;
}

.contact .contact-item1 .item1-l .box .box-item2 .box-item2-r {
  margin-top: .25rem;
  margin-left: 1.0625rem;
}

.contact .contact-item1 .item1-l .box .box-item2:last-child {
  padding: 3.1875rem 0 3.625rem;
}

.contact .contact-item1 .item1-r {
  width: 65.625rem;
  height: 41.875rem;
}

.contact .contact-item1 .item1-r #container {
  width: 100%;
  height: 100%;
}

.contact .contact-item2 {
  margin-top: 7.1875rem;
  background-color: #eeeeee;
  border-radius: 6.25rem 0px 0px 0px;
  box-sizing: border-box;
  padding-top: 7.1875rem;
}

.contact .contact-item2 ul li {
  width: 29.875rem;
  height: 20.375rem;
  background: #fff;
  box-sizing: border-box;
  padding: 0 3.125rem;
  border-radius: 1.25rem;
  margin-bottom: 5rem;
}

.contact .contact-item2 ul li .title {
  font-size: 2.125rem;
  color: #0357a8;
  font-weight: bold;
  text-align: center;
}

.contact .contact-item2 ul li .line {
  width: 100%;
  height: 2px;
  background-image: linear-gradient(0deg, #0357a8 0%, #4d9bf7 100%);
  margin-top: 1.875rem;
}

.contact .contact-item2 ul li .content {
  width: 21.25rem;
  margin: 3.4375rem auto 0;
}

.contact .contact-item2 ul li .content .item:first-child {
  margin-bottom: 1.5625rem;
}

.contact .contact-item2 ul li .content .iconfont {
  font-size: 1.5rem;
  margin-right: 23px;
  color: #0357a8;
}

.contact .contact-item2 ul li .content p {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.1;
}

.contact .contact-item2 ul li:not(:nth-child(3n)) {
  margin-right: calc((100% - (29.875rem*3))/2);
}

@media screen and (max-width: 992px) {
  .contact .contact-item1 {
    margin-top: 5rem;
  }
  .contact .contact-item1 .item1-l, .contact .contact-item1 .item1-r {
    width: 100%;
  }
  .contact .contact-item1 .container {
    flex-wrap: wrap;
  }
  .contact .contact-item1 .box .box-item1 {
    padding-bottom: 20px;
  }
  .contact .contact-item1 .box .box-item2 {
    padding: 20px;
  }
  .contact .contact-item2 {
    margin-top: 5rem;
  }
  .contact .contact-item2 ul li {
    width: 32%;
    height: 13.58rem;
    padding: 1rem;
  }
  .contact .contact-item2 ul li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .contact .contact-item2 ul li .title {
    font-size: 20px;
  }
  .contact .contact-item2 ul li .content {
    width: 90%;
    margin: 15px auto 0;
  }
  .contact .contact-item2 ul li .content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .contact .contact-item2 ul {
    justify-content: space-between;
  }
  .contact .contact-item2 ul li {
    width: 100%;
    height: auto;
  }
  .contact .contact-item2 ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.job .banner .banner-box .oneTitle h2 img {
  top: -45%;
}

.job .job-btn {
  height: 10.3125rem;
  padding-left: 5.3125rem;
  box-sizing: border-box;
}

.job .job-btn li {
  width: 9.6875rem;
  height: 3.125rem;
  border: 2px solid black;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 2;
  clip-path: inset(0 round 4px);
  transition: all 0.5s ease-in-out;
}

.job .job-btn li a {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0357a8 0%, #4d9bf7 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  transition: all 0.5s ease-in-out;
}

.job .job-btn li:hover {
  background: linear-gradient(to right, #0357a8 0%, #4d9bf7 100%);
}

.job .job-btn li:hover a {
  color: #fff;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
}

.job .job-btn li.active {
  background: linear-gradient(to right, #0357a8 0%, #4d9bf7 100%);
}

.job .job-btn li.active a {
  color: #fff;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
}

.job .job-btn li:not(:last-child) {
  margin-right: 1.875rem;
}

.job .jobList {
  margin-bottom: 2.8125rem;
}

.job .jobList li {
  height: 13.125rem;
}

.job .jobList li > div {
  width: 20%;
}

.job .jobList li .title {
  width: 30%;
  font-size: 1.5625rem;
  color: #231815;
  line-height: 1.3;
  box-sizing: border-box;
  padding: 0 2%;
}

.job .jobList li .jobItem {
  flex-direction: column;
}

.job .jobList li .jobItem p {
  color: #9fa0a0;
}

.job .jobList li .jobItem .text {
  color: #231815;
}

.job .jobList li .jobBtn {
  width: 8.4375rem;
  height: 2.625rem;
  color: #231815;
  border: 1px solid #39303d;
  border-radius: 20px;
  cursor: pointer;
}

.job .jobList li .jobBtn a {
  color: #231815;
}

.job .jobList li:hover .jobBtn {
  border: 1px solid #0357a8;
}

.job .jobList li:hover .jobBtn a {
  color: #0357a8;
}

.job .jobList li:nth-child(odd) {
  background-color: rgba(238, 238, 238, 0.39);
}

.job .handleBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: none;
}

.job .handleBox .form-box {
  max-width: 930px;
  border-radius: 1.875rem;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  z-index: 20;
  width: 58.125rem;
  box-sizing: border-box;
}

.job .handleBox .form-box .bi {
  cursor: pointer;
}

.job .handleBox .form-box .item {
  margin-bottom: 1.875rem;
  width: 15rem;
  position: relative;
}

.job .handleBox .form-box .item p {
  padding: 0 10px;
}

.job .handleBox .form-box .item:not(:nth-child(3n)) {
  margin-right: calc((100% - (15rem*3))/2);
}

.job .handleBox .form-box .modal-heade {
  margin-top: 3.125rem;
}

.job .handleBox .form-box .modal-heade .title {
  color: #0357a8;
}

.job .handleBox .form-box .modal-conetnt {
  margin: 2.375rem 0 1.25rem;
  padding: 0 3.75rem;
  display: flex;
  flex-wrap: wrap;
}

.job .handleBox .form-box .modal-conetnt label {
  width: 100%;
  border-radius: 1.25rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 10px;
  border: 1px solid #cbcdcf;
  margin: 5px 0 0;
}

.job .handleBox .form-box input {
  width: 100%;
  margin: 5px 0 0;
  outline: 0;
  border: 0;
  border: 1px solid #cbcdcf;
  flex-grow: 2;
  border-radius: 1.25rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 10px;
}

.job .handleBox .form-box input:focus {
  border: 1px solid #0357a8;
  outline: 0;
}

.job .handleBox .form-box input::placeholder {
  color: #999;
}

.job .handleBox .form-box input[name="file"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.job .handleBox .form-box .btn {
  display: block;
  padding: 0;
  width: 10.625rem;
  height: 3.125rem;
  line-height: 3.125rem;
  background: #0357a8;
  border-radius: 1.4375rem;
  color: #fff;
  margin: 0 auto 3.75rem;
  cursor: pointer;
}

.job .handleBox .form-box .btn:hover {
  background: #0357a8;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .job .jobList li {
    height: 8.75rem;
  }
  .job .jobList li .title {
    font-size: 20px;
  }
  .job .handleBox .form-box {
    width: 80%;
  }
  .job .handleBox .form-box .item {
    width: 100%;
    margin-bottom: 10px;
  }
  .job .handleBox .form-box .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .job .handleBox .form-box .modal-conetnt {
    margin: 15px 0;
  }
  .job .handleBox .form-box .btn {
    margin: 0 auto 15px;
  }
}

@media screen and (max-width: 640px) {
  .job .job-btn {
    padding-left: 0;
    justify-content: center;
  }
  .job .jobList li {
    flex-wrap: wrap;
    padding: 1rem 0;
    height: auto;
    justify-content: space-around !important;
  }
  .job .jobList li .title {
    font-size: 18px;
    width: 100%;
    margin-bottom: 10px;
  }
  .job .jobList li .jobItem {
    margin-bottom: 5px;
    width: 50%;
  }
  .job .jobList li .applyJob {
    width: 100%;
    margin-top: 10px;
  }
  .job .handleBox .form-box input, .job .handleBox .form-box label {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .job .handleBox .form-box .item p {
    font-size: 16px;
  }
}

.tousu {
  overflow: hidden;
}

.tousu .banner .banner-box .oneTitle h2 img {
  top: -45%;
}

.tousu .tousu-item1 {
  position: relative;
  margin-top: 7.1875rem;
}

.tousu .tousu-item1 .item1-l {
  width: 45.625rem;
  padding-top: 41.36%;
  position: relative;
}

.tousu .tousu-item1 .item1-l .img-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 6.25rem 0px 0px;
}

.tousu .tousu-item1 .item1-r {
  width: 64.6875rem;
  position: relative;
}

.tousu .tousu-item1 .item1-r .content {
  width: 53.4375rem;
}

.tousu .tousu-item1 .item1-r::after {
  content: "";
  width: 104.625rem;
  height: 42.0625rem;
  background: url(../images/jianzhu-bg.png) no-repeat center;
  background-size: cover;
  border-radius: 0px 0px 12.5rem 0px;
  position: absolute;
  right: 0;
  bottom: 5.8125rem;
  z-index: -1;
}

.tousu .tousu-item2 {
  margin-top: 9.375rem;
}

.tousu .tousu-item2 .twoTitle .en-title {
  color: #020202;
  opacity: 0.05;
  position: relative;
  top: .625rem;
}

.tousu .tousu-item2 .twoTitle .cn-title {
  color: #0357a8;
}

.tousu .tousu-item2 .twoTitle .line {
  background: #333333;
}

.tousu .tousu-item2 ul {
  margin-top: 4.375rem;
}

.tousu .tousu-item2 ul li {
  width: 32.5rem;
  height: 16.25rem;
  background: #e8f2fe;
  position: relative;
  border-radius: 1.875rem;
}

.tousu .tousu-item2 ul li p {
  color: #434343;
}

.tousu .tousu-item2 ul li span {
  font-size: 2.1875rem;
  color: #0357a8;
  font-weight: bold;
  letter-spacing: 0;
}

.tousu .tousu-item2 ul li:nth-child(1) span {
  font-size: 2.5rem;
}

.tousu .tousu-item2 ul li .img-box {
  width: 9.0625rem;
  padding: .3125rem;
  box-sizing: border-box;
  border: 1px solid #0357a8;
  margin-right: 1.875rem;
}

.tousu .tousu-item2 ul li .text-box p, .tousu .tousu-item2 ul li .text-box span {
  letter-spacing: 0;
}

.tousu .tousu-item2 ul li:not(:nth-child(3)) {
  margin-right: calc((100% - (32.5rem*3))/2);
}

.tousu .tousu-item2 ul li:last-child {
  width: 100%;
  margin-right: 0;
  margin-top: 4.375rem;
}

.tousu .tousu-item2 ul li:last-child .text {
  text-align: center;
}

.tousu .tousu-item2 .tip {
  margin: 4.0625rem 0;
  color: #606060;
  padding-bottom: 2.6875rem;
  border-bottom: 1px solid #ababab;
}

.tousu .tousu-item2 .tip span {
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 1.25rem;
}

@media screen and (max-width: 992px) {
  .tousu .tousu-item1 .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .tousu .tousu-item1 .item1-l, .tousu .tousu-item1 .item1-r {
    width: 100%;
  }
  .tousu .tousu-item1 .item1-r::after {
    bottom: -40px;
  }
  .tousu .tousu-item1 .item1-l {
    margin: 40px auto 0;
    width: 90%;
  }
  .tousu .tousu-item2 {
    margin-top: 5rem;
  }
  .tousu .tousu-item2 ul {
    margin-top: 40px;
    justify-content: space-between;
  }
  .tousu .tousu-item2 ul li {
    width: 32%;
  }
  .tousu .tousu-item2 ul li span {
    font-size: 20px;
  }
  .tousu .tousu-item2 ul li:not(:nth-child(3)) {
    margin-right: 0;
  }
  .tousu .tousu-item2 ul li:nth-child(1) span {
    font-size: 20px;
  }
  .tousu .tousu-item2 ul li:nth-child(2) .text {
    justify-content: space-around !important;
  }
  .tousu .tousu-item2 ul li .img-box {
    margin-right: 10px;
    width: 6.25rem;
  }
  .tousu .tousu-item2 ul li:last-child {
    margin-top: 2.1rem;
  }
}

@media screen and (max-width: 640px) {
  .tousu .tousu-item1 .item1-l {
    padding-top: 80%;
    width: 90%;
  }
  .tousu .tousu-item2 ul li {
    width: 100%;
    padding: 0 1rem;
  }
  .tousu .tousu-item2 ul li:not(:first-child) {
    margin-top: 2.1rem;
  }
  .tousu .tousu-item2 ul li:last-child .text p, .tousu .tousu-item2 ul li:last-child span {
    font-size: 16px;
  }
}

.news {
  margin-bottom: 4.6875rem;
}

.news .banner .banner-box .oneTitle h2 img {
  top: -22%;
}

.news .jituan {
  margin: 5.9375rem 0 0;
}

.news .jituan .content {
  color: #6b6b6b;
  text-align: justify;
}

.news .jituan .time .iconfont {
  color: #6b6b6b;
}

.news .jituan .time p {
  margin-left: .625rem;
  color: #6b6b6b;
}

.news .jituan .left {
  position: relative;
  overflow: hidden;
}

.news .jituan .left .imgBox {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.news .jituan .right {
  display: flex;
  align-items: center;
}

.news .jituan .right .box {
  width: 100%;
}

.news .jituan li:hover .left .imgBox {
  transform: scale(1.1);
}

.news .jituan li:first-child {
  position: relative;
  margin-bottom: 4.0625rem;
}

.news .jituan li:first-child a {
  width: 100%;
}

.news .jituan li:first-child .left {
  width: 53.4375rem;
  padding-top: 30%;
}

.news .jituan li:first-child .right {
  width: 56.875rem;
}

.news .jituan li:first-child .right .box {
  width: 46.25rem;
  margin: 0 auto;
}

.news .jituan li:first-child .right .box .content {
  margin: 4.0625rem 0 5.9375rem;
}

.news .jituan li:first-child::after {
  content: "";
  width: 105.3125rem;
  height: 28.4375rem;
  background: url(../images/jianzhu-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 0 0 6.25rem 0;
}

.news .jituan li:not(:first-child) {
  min-height: 21.875rem;
  background: rgba(77, 155, 247, 0.05);
  margin-bottom: 2.5rem;
}

.news .jituan li:not(:first-child) a {
  box-sizing: border-box;
  padding: 1.25rem 5rem 1.25rem 1.5625rem;
}

.news .jituan li:not(:first-child) a .left {
  width: 39.0625rem;
  padding-top: 18.37%;
}

.news .jituan li:not(:first-child) a .right {
  margin-left: 3.75rem;
  width: 60.9375rem;
}

.news .jituan li:not(:first-child) a .right .content {
  margin: 40px 0 5rem;
}

.news .fenye {
  margin-top: 1.5625rem;
}

.news .project {
  margin-top: 7.8125rem;
}

.news .project li {
  width: 31.25rem;
  margin-bottom: 5.9375rem;
}

.news .project li .img-box {
  width: 100%;
  position: relative;
  padding-top: 74%;
  overflow: hidden;
  border-radius: 3.125rem 0 0 0;
}

.news .project li .img-box .imgBox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news .project li .img-box .time {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 11.25rem;
  height: 4.1875rem;
  border-radius: 0 3.125rem 0 0;
  background: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%);
  font-size: 1.4375rem;
  color: #fff;
}

.news .project li .text-box .title {
  color: #010101;
  margin-top: 2.5rem;
  line-height: 1.1;
}

.news .project li .text-box .content {
  min-height: 3.75rem;
  margin: 2.5rem 0 4.0625rem;
  color: #686868;
}

.news .project li .text-box .line {
  margin-top: 3.125rem;
  position: relative;
  width: 100%;
  height: 3px;
  background: #cbcaca;
}

.news .project li .text-box .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #4caafa;
  transition: all 0.5s ease-in-out;
}

.news .project li .text-box .more2 {
  color: #656565;
  border: 1px solid #656565;
}

.news .project li .text-box .more2 .bi {
  color: #656565;
}

.news .project li .text-box .more2:hover {
  background: #fff;
}

.news .project li:hover .imgBox {
  transform: scale(1.1);
}

.news .project li:hover .title {
  color: #4caafa;
}

.news .project li:hover .more2 {
  color: #4caafa;
  border: 1px solid #4caafa;
}

.news .project li:hover .more2 .bi {
  color: #4caafa;
}

.news .project li:hover .text-box .line::after {
  width: 100%;
}

.news .project li:not(:nth-child(3n)) {
  margin-right: calc((100% - (31.25rem*3))/2);
}

@media screen and (max-width: 992px) {
  .news .jituan li:first-child a {
    justify-content: space-around !important;
  }
  .news .jituan li:first-child .left {
    width: 48%;
  }
  .news .jituan li:first-child .right {
    width: 48%;
  }
  .news .jituan li:first-child::after {
    height: 22rem;
    border-radius: 0;
    width: 100%;
  }
  .news .jituan li:not(:first-child) {
    min-height: auto;
  }
  .news .project {
    margin-top: 5rem;
  }
  .news .project li {
    width: 32%;
    margin-bottom: 2.5rem;
  }
  .news .project li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .news .project li .text-box .title {
    margin-top: 15px;
  }
  .news .project li .text-box .content {
    min-height: 50px;
    margin: 15px 0;
  }
  .news .project li .text-box .line {
    margin-top: 15px;
  }
}

@media screen and (max-width: 640px) {
  .news .jituan a {
    flex-wrap: wrap;
  }
  .news .jituan li:first-child .left {
    width: 100%;
    padding-top: 70%;
  }
  .news .jituan li:first-child .right {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  .news .jituan li:first-child .right .box .content {
    margin: 15px 0;
  }
  .news .jituan li:first-child::after {
    height: 25rem;
    border-radius: 0;
    top: unset;
    bottom: -20px;
    transform: unset;
    width: 100%;
  }
  .news .jituan li:not(:first-child) a {
    padding: 1rem;
  }
  .news .jituan li:not(:first-child) a .left {
    width: 100%;
    padding-top: 40.8%;
  }
  .news .jituan li:not(:first-child) a .right {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .news .jituan li:not(:first-child) a .right .content {
    margin: 15px 0;
  }
  .news .project li {
    width: 100%;
  }
  .news .project li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.newsDetail .time {
  margin-top: 2.25rem;
  border-bottom: 1px solid #aaabab;
}

.newsDetail .time p {
  margin-left: .625rem;
}

aside {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 30;
}

aside .item {
  width: 5rem;
  height: 5rem;
  background: #0357a8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

aside .item .iconfont {
  font-size: 1.25rem;
  color: #fff;
}

aside .item p {
  font-size: .875rem;
  color: #fff;
}

aside .item:not(:last-child) {
  margin-bottom: 1px;
}

aside .item:first-child {
  border-radius: 5px 5px 0 0;
}

aside .item:last-child {
  border-radius: 0 0 5px 5px;
}

aside .item .text-box {
  width: 7.5rem;
  height: 100%;
  background: #fff;
  position: absolute;
  left: -10px;
  transform: translateX(-100%);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  border-radius: .625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 1.125rem;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

aside .item .text-box img {
  height: 90%;
  width: auto;
}

aside .item:hover {
  background-image: linear-gradient(90deg, #008cd6 0%, #004ea2 100%);
}

aside .item:hover .iconfont,
aside .item:hover p {
  color: #fff;
}

aside .item:hover .text-box {
  opacity: 1;
}

.jobDetail {
  margin-top: 6.25rem;
}

.jobDetail .title {
  font-size: 2.5rem;
  color: #0357a8;
  font-weight: bold;
}

.jobDetail .time {
  margin-top: 1.5625rem;
  border-bottom: 1px solid #aaabab;
  padding-bottom: 1.875rem;
}

.jobDetail .time p {
  margin-left: .625rem;
}

.jobDetail .content {
  margin-top: 4.375rem;
  line-height: 1.6;
}

.jobDetail .content .title2 {
  font-size: 1.5625rem;
  color: #0357a8;
}

.jobDetail .content .title3 {
  margin-top: 2.5rem;
}

.jobDetail .xq {
  margin-top: 2.5rem;
  color: #676768;
  line-height: 1.6;
}

.jobDetail .btnBox {
  margin-top: 4.375rem;
  margin-bottom: 5rem;
}

.jobDetail .btnBox .jobBtn {
  color: #0357a8;
  border: 1px solid #0357a8;
  font-weight: blod;
  padding: 1rem 2.1875rem;
  border-radius: 1.625rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.jobDetail .btnBox .jobBtn:hover {
  background: #0357a8;
  color: #fff;
}

.jobDetail .btnBox .jobBtn:not(:last-child) {
  margin-right: 2.1875rem;
}

@media screen and (max-width: 992px) {
  .jobDetail {
    margin-top: 5rem;
  }
  .jobDetail .title {
    font-size: 25px;
  }
  .jobDetail .time {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .jobDetail .content {
    margin-top: 2.5rem;
  }
  .jobDetail .content .title2 {
    font-size: 20px;
  }
  .jobDetail .xq {
    margin: 1.25rem 0;
  }
}
