:root {
  --theme-color: #2056ae;
  --sub-theme-color: #13a2d8;
  --noticeColor: #d41c1c;
  --warnColor: #e6a23c;
  --gray-f4: #f4f4f4;
}

:root {
  --theme-color: #2056ae;
  --sub-theme-color: #13a2d8;
  --noticeColor: #d41c1c;
  --warnColor: #e6a23c;
  --gray-f4: #f4f4f4;
}

.btn {
  position: absolute;
  z-index: 2;
  width: 100%;
}
.btn .dots {
  width: 100%;
  text-align: center;
}
.btn .dots .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
}
.btn .dots .swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.banner .swiper {
  width: 100%;
  height: 5.35rem;
  -webkit-perspective: 1000px;
     -moz-perspective: 1000px;
          perspective: 1000px;
}
.banner .swiper .swiper-wrapper .swiper-slide .pic {
  min-height: 100%;
  -webkit-perspective: 1000px;
     -moz-perspective: 1000px;
          perspective: 1000px;
}
.banner .swiper .swiper-wrapper .swiper-slide .pic img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s linear 2s;
  -o-transition: 1s linear 2s;
  -moz-transition: 1s linear 2s;
  transition: 1s linear 2s;
  -webkit-transform: perspective(200px) scale(1, 1);
     -moz-transform: perspective(200px) scale(1, 1);
          transform: perspective(200px) scale(1, 1);
}
.banner .swiper .swiper-wrapper .swiper-slide-active .pic img,
.banner .swiper .swiper-wrapper .swiper-slide-duplicate-active .pic img {
  -webkit-transform: perspective(200px) rotateY(-1deg) scale(1.15, 1.15);
     -moz-transform: perspective(200px) rotateY(-1deg) scale(1.15, 1.15);
          transform: perspective(200px) rotateY(-1deg) scale(1.15, 1.15);
  -webkit-transition: 5s linear;
  -o-transition: 5s linear;
  -moz-transition: 5s linear;
  transition: 5s linear;
}
.banner .swiper .btn {
  bottom: 0.32rem;
}
.banner .swiper .btn .dots .swiper-pagination-bullet {
  width: 0.17rem;
  height: 0.17rem;
  margin: 0 0.1rem;
}

@media screen and (max-width: 1440px) {
  .banner .swiper {
    height: 4.35rem;
  }
  .banner .swiper .btn {
    bottom: 0.25rem;
  }
  .banner .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.15rem;
    height: 0.15rem;
    margin: 0 0.09rem;
  }
}
@media screen and (max-width: 1280px) {
  .banner .swiper {
    height: 3.5rem;
  }
  .banner .swiper .btn {
    bottom: 0.23rem;
  }
  .banner .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.14rem;
    height: 0.14rem;
    margin: 0 0.08rem;
  }
}
@media screen and (max-width: 900px) {
  .banner .swiper {
    height: 3rem;
  }
  .banner .swiper .btn {
    bottom: 0.2rem;
  }
  .banner .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    margin: 0 0.08rem;
  }
}
@media screen and (max-width: 600px) {
  .banner .swiper {
    height: 2.5rem;
  }
  .banner .swiper .btn {
    bottom: 0.15rem;
  }
  .banner .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.11rem;
    height: 0.11rem;
    margin: 0 0.06rem;
  }
}
@media screen and (max-width: 400px) {
  .banner .swiper {
    height: 1.85rem;
  }
  .banner .swiper .btn {
    bottom: 0.15rem;
  }
  .banner .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.11rem;
    height: 0.11rem;
    margin: 0 0.06rem;
  }
}
.common-title {
  padding: 0.38rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-title h3 {
  font-size: 0.36rem;
  font-weight: 600;
}
.common-title .more {
  position: relative;
  margin-left: auto;
  margin-right: 0.2rem;
  white-space: nowrap;
  display: inline;
}
.common-title .more .text {
  font-size: 0.18rem;
  color: #666666;
}
.common-title .more .iconfont {
  position: absolute;
  left: -webkit-calc(100% + 0.02rem);
  left: -moz-calc(100% + 0.02rem);
  left: calc(100% + 0.02rem);
  top: 0.06rem;
  display: inline-block;
  font-size: 0.16rem;
  color: #666666;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.common-title .more:hover .text {
  color: var(--theme-color);
}
.common-title .more:hover .iconfont {
  -webkit-animation: titleIcon 0.6s ease;
     -moz-animation: titleIcon 0.6s ease;
       -o-animation: titleIcon 0.6s ease;
          animation: titleIcon 0.6s ease;
  color: var(--theme-color);
  -webkit-transform: rotateZ(-45deg);
     -moz-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}

@media screen and (max-width: 1440px) {
  .common-title {
    padding: 0.34rem 0;
  }
  .common-title h3 {
    font-size: 0.32rem;
  }
  .common-title .more {
    margin-right: 0.18rem;
  }
  .common-title .more .text {
    font-size: 0.16rem;
  }
  .common-title .more .iconfont {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1280px) {
  .common-title {
    padding: 0.3rem 0;
  }
  .common-title h3 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 900px) {
  .common-title {
    padding: 0.25rem 0;
  }
  .common-title h3 {
    font-size: 0.24rem;
  }
  .common-title .more {
    margin-right: 0.16rem;
  }
  .common-title .more .text {
    font-size: 0.14rem;
  }
  .common-title .more .iconfont {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 768px) {
  .common-title {
    padding: 0.2rem 0;
  }
  .common-title h3 {
    font-size: 0.2rem;
  }
}
.news {
  background-color: #f8f8f8;
  padding-bottom: 0.6rem;
}
.news .layout .news-box .top #news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 4.4rem;
}
.news .layout .news-box .top #news .swiper {
  width: 100%;
  height: 100%;
}
.news .layout .news-box .top #news .swiper:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.news .layout .news-box .top #news .swiper .swiper-slide .pic img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .top #news .swiper .btn {
  bottom: 0.15rem;
}
.news .layout .news-box .top #news .swiper .btn .dots {
  padding-right: 0.3rem;
  text-align: right;
}
.news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  margin: 0 0.05rem;
}
.news .layout .news-box .top #news .text {
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
.news .layout .news-box .top #news .text .text-item {
  display: block;
  padding-left: 0.6rem;
  padding-right: 0.44rem;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  -moz-transition: opacity 1s;
  transition: opacity 1s;
}
.news .layout .news-box .top #news .text .hide {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.news .layout .news-box .top #news .text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0.14rem;
  height: 72.7272727273%;
  background: url(../images/news-bg-c.png) no-repeat left top/100% 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .top #news .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../images/tingzi.png) no-repeat -webkit-calc(100% - 0.4rem) bottom/41.5584415584% auto;
  background: url(../images/tingzi.png) no-repeat -moz-calc(100% - 0.4rem) bottom/41.5584415584% auto;
  background: url(../images/tingzi.png) no-repeat calc(100% - 0.4rem) bottom/41.5584415584% auto;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
}
.news .layout .news-box .top #news .text .time .year,
.news .layout .news-box .top #news .text .time .date {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.24rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .top #news .text .time .year {
  margin-top: 0.32rem;
}
.news .layout .news-box .top #news .text .time .date {
  display: inline-block;
  width: auto;
  font-size: 0.3rem;
}
.news .layout .news-box .top #news .text .time .date span::after {
  margin-top: 0.14rem;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--theme-color);
}
.news .layout .news-box .top #news .text h4 {
  margin-top: 0.38rem;
  font-size: 0.24rem;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  line-height: 183.3333333333%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .layout .news-box .top #news .text .description,
.news .layout .news-box .top #news .text .more {
  font-size: 0.18rem;
  color: #999;
  line-height: 216.6666666667%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .top #news .text .description {
  margin-top: 0.25rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .layout .news-box .top #news .text .more {
  display: inline-block;
  margin-top: 0.29rem;
  line-height: 1;
  cursor: pointer;
}
.news .layout .news-box .top #news .text .more.line,
.news .layout .news-box .top #news .text .more .line {
  position: relative;
  white-space: nowrap;
}
.news .layout .news-box .top #news .text .more.line::after,
.news .layout .news-box .top #news .text .more .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -3px;
  background: #fff;
  opacity: 1;
}
.news .layout .news-box .top #news .text .more.line.active::after,
.news .layout .news-box .top #news .text .more .line.active::after {
  width: 100%;
  opacity: 1;
}
.news .layout .news-box .top #news .text .more:hover.line::after,
.news .layout .news-box .top #news .text .more:hover .line::after, .news .layout .news-box .top #news .text .more.active.line::after,
.news .layout .news-box .top #news .text .more.active .line::after {
  width: 100%;
  opacity: 1;
}
.news .layout .news-box .top #news .text:hover::after {
  width: 100%;
  height: 100%;
  background: url(../images/news-bg-color.png) no-repeat left top/100% 100%;
}
.news .layout .news-box .top #news .text:hover::before {
  background: url(../images/tingzi.png) no-repeat 100% bottom/42.8571428571% auto;
  -webkit-filter: brightness(200%);
          filter: brightness(200%);
}
.news .layout .news-box .top #news .text:hover .time .year,
.news .layout .news-box .top #news .text:hover .time .date {
  color: #fff;
}
.news .layout .news-box .top #news .text:hover .time .year span::after,
.news .layout .news-box .top #news .text:hover .time .date span::after {
  background-color: #fff;
}
.news .layout .news-box .top #news .text:hover h4,
.news .layout .news-box .top #news .text:hover .description,
.news .layout .news-box .top #news .text:hover .more {
  color: #fff;
}
.news .layout .news-box .bottom {
  margin-top: 0.33rem;
}
.news .layout .news-box .bottom [portletmode=simpleNews] {
  height: 100%;
}
.news .layout .news-box .bottom .card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
.news .layout .news-box .bottom .card-list .card-item {
  position: relative;
  padding: 0.32rem 0.33rem 0 0.33rem;
  height: 1.67rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.18rem;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}
.news .layout .news-box .bottom .card-list .card-item h4 {
  font-size: inherit;
  font-weight: 600;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 0.66rem;
  line-height: 183.3333333333%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .bottom .card-list .card-item .time {
  margin-top: 0.21rem;
  font-size: inherit;
  color: #999;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .bottom .card-list .card-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 17.6470588235%;
  z-index: -1;
  width: 0.14rem;
  height: 47.0588235294%;
  background: url(../images/card-s.png) no-repeat left top/100% 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.news .layout .news-box .bottom .card-list .card-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.1rem;
  z-index: 1;
  width: 1.5rem;
  height: 0.57rem;
  background: url(../images/card-icon.png) no-repeat center/contain;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
}
.news .layout .news-box .bottom .card-list .card-item:hover::after {
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/news-bg-color.png) no-repeat left top/100% 100%;
}
.news .layout .news-box .bottom .card-list .card-item:hover::before {
  -webkit-animation: rainbow 0.5s ease-in-out 0.3s;
     -moz-animation: rainbow 0.5s ease-in-out 0.3s;
       -o-animation: rainbow 0.5s ease-in-out 0.3s;
          animation: rainbow 0.5s ease-in-out 0.3s;
  background: url(../images/card-icon.png) no-repeat center/contain;
  -webkit-filter: brightness(200%);
          filter: brightness(200%);
}
.news .layout .news-box .bottom .card-list .card-item:hover h4,
.news .layout .news-box .bottom .card-list .card-item:hover .time {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .news {
    padding-bottom: 0.5rem;
  }
  .news .layout .news-box .top #news {
    grid-template-columns: 1fr 1fr;
    height: 3.6rem;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.14rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.2rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    margin: 0 0.05rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.4rem;
    padding-right: 0.35rem;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.12rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.22rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.26rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.26rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.26rem;
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.16rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.22rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.26rem;
  }
  .news .layout .news-box .bottom {
    margin-top: 0.3rem;
  }
  .news .layout .news-box .bottom .card-list {
    gap: 0.3rem;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    padding: 0.28rem 0.28rem 0 0.28rem;
    height: 1.6rem;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.6rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.18rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::after {
    width: 0.12rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::before {
    width: 1.4rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .news {
    padding-bottom: 0.45rem;
  }
  .news .layout .news-box .top #news {
    height: 3.2rem;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
    margin: 0 0.05rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.35rem;
    padding-right: 0.3rem;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.12rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.24rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.24rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.24rem;
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.16rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.2rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.24rem;
  }
  .news .layout .news-box .bottom {
    margin-top: 0.26rem;
  }
  .news .layout .news-box .bottom .card-list {
    gap: 0.26rem;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    padding: 0.28rem 0.28rem 0 0.28rem;
    height: 1.5rem;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.6rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::after {
    width: 0.12rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::before {
    width: 1.4rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .news {
    padding-bottom: 0.45rem;
  }
  .news .layout .news-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news .layout .news-box .top {
    max-width: 66%;
    width: 5.5rem;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
  .news .layout .news-box .top #news {
    width: 100%;
    height: 6.2rem;
    grid-template-columns: 1fr;
    grid-template-rows: 3rem 1fr;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
    margin: 0 0.05rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.35rem;
    padding-right: 0.3rem;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.08rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.24rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.24rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.24rem;
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.16rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.2rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.24rem;
  }
  .news .layout .news-box .bottom {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 2.5rem;
    margin-left: 0.2rem;
    margin-top: 0;
  }
  .news .layout .news-box .bottom .card-list {
    height: 100%;
    gap: 0.2rem;
    grid-template-columns: 1fr;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    padding: 0.2rem 0.2rem 0 0.25rem;
    height: auto;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.6rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.14rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::after {
    width: 0.08rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::before {
    width: 1.4rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .news {
    padding-bottom: 0.45rem;
  }
  .news .layout .news-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news .layout .news-box .top #news {
    height: 5rem;
    grid-template-rows: 2.5rem 1fr;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
    margin: 0 0.05rem;
    width: 0.1rem;
    height: 0.1rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.3rem;
    padding-right: 0.25rem;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.08rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.18rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.15rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.16rem;
    font-size: 0.18rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.14rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.16rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.2rem;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    padding: 0.1rem 0.15rem 0 0.2rem;
    height: auto;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.55rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::after {
    width: 0.08rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::before {
    right: 0.05rem;
    width: 1.2rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 680px) {
  .news {
    padding-bottom: 0.35rem;
  }
  .news .layout .news-box {
    display: grid;
    grid-template-columns: 1fr;
  }
  .news .layout .news-box .top {
    width: 100%;
    max-width: 100%;
  }
  .news .layout .news-box .top #news {
    height: auto;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .news .layout .news-box .top #news .swiper {
    height: 3rem;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.12rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots .swiper-pagination-bullet {
    margin: 0 0.05rem;
    width: 0.1rem;
    height: 0.1rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.22rem;
    padding-right: 0.15rem;
    padding-bottom: 0.2rem;
  }
  .news .layout .news-box .top #news .text .text-item.hide {
    padding: 0;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.08rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.18rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.15rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.2rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.16rem;
    font-size: 0.18rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.14rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.16rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.2rem;
  }
  .news .layout .news-box .bottom {
    width: -webkit-calc(100% + 0.2rem);
    width: -moz-calc(100% + 0.2rem);
    width: calc(100% + 0.2rem);
    margin-left: 0;
    margin-top: 0.2rem;
  }
  .news .layout .news-box .bottom .card-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    height: 1.2rem;
    min-width: 2.15rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: -webkit-calc(50% - 0.2rem);
    width: -moz-calc(50% - 0.2rem);
    width: calc(50% - 0.2rem);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    padding: 0.1rem 0.15rem 0 0.2rem;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.55rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::after {
    width: 0.08rem;
  }
  .news .layout .news-box .bottom .card-list .card-item::before {
    right: 0.05rem;
    width: 1.2rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 500px) {
  .news {
    padding-bottom: 0.2rem;
  }
  .news .layout .news-box .top #news .swiper {
    height: 1.8rem;
  }
  .news .layout .news-box .top #news .swiper .btn {
    bottom: 0.1rem;
  }
  .news .layout .news-box .top #news .swiper .btn .dots {
    padding-right: 0.1rem;
  }
  .news .layout .news-box .top #news .text .text-item {
    padding-left: 0.22rem;
    padding-right: 0.15rem;
    padding-bottom: 0.2rem;
  }
  .news .layout .news-box .top #news .text::after {
    width: 0.08rem;
  }
  .news .layout .news-box .top #news .text .time .year,
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.16rem;
  }
  .news .layout .news-box .top #news .text .time .year {
    margin-top: 0.12rem;
  }
  .news .layout .news-box .top #news .text .time .date {
    font-size: 0.18rem;
  }
  .news .layout .news-box .top #news .text .time .date span::after {
    margin-top: 0.08rem;
  }
  .news .layout .news-box .top #news .text h4 {
    margin-top: 0.12rem;
    font-size: 0.16rem;
  }
  .news .layout .news-box .top #news .text .description,
  .news .layout .news-box .top #news .text .more {
    font-size: 0.14rem;
  }
  .news .layout .news-box .top #news .text .description {
    margin-top: 0.05rem;
  }
  .news .layout .news-box .top #news .text .more {
    margin-top: 0.1rem;
  }
  .news .layout .news-box .bottom .card-list .card-item {
    height: 1.1rem;
    font-size: 0.16rem;
  }
  .news .layout .news-box .bottom .card-list .card-item h4 {
    height: 0.55rem;
  }
  .news .layout .news-box .bottom .card-list .card-item .time {
    margin-top: 0.1rem;
  }
}
.laboratory {
  padding-bottom: 0.68rem;
}
.laboratory .layout .card-list {
  height: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.laboratory .layout .card-list .card-item {
  -webkit-border-radius: 0.13rem;
          border-radius: 0.13rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.laboratory .layout .card-list .card-item:hover {
  margin-bottom: 0.07rem;
  margin-top: -0.07rem;
  -webkit-box-shadow: 0 0 15px var(--theme-color);
          box-shadow: 0 0 15px var(--theme-color);
}
.laboratory .layout .card-list .card-item h4 {
  color: #fff;
  font-size: 0.3rem;
}
.laboratory .layout .card-list .card-item:nth-of-type(1) {
  background: url(../images/lab/lab-bg01.png) no-repeat center/cover;
}
.laboratory .layout .card-list .card-item:nth-of-type(2) {
  background: url(../images/lab/lab-bg02.png) no-repeat center/cover;
}
.laboratory .layout .card-list .card-item:nth-of-type(3) {
  background: url(../images/lab/lab-bg03.png) no-repeat center/cover;
}

@media screen and (max-width: 1440px) {
  .laboratory {
    padding-bottom: 0.55rem;
  }
  .laboratory .layout .card-list {
    height: 1.4rem;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1280px) {
  .laboratory {
    padding-bottom: 0.5rem;
  }
  .laboratory .layout .card-list {
    height: 1.2rem;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .laboratory {
    padding-bottom: 0.5rem;
  }
  .laboratory .layout .card-list {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1.2rem);
  }
  .laboratory .layout .card-list .card-item:nth-of-type(1) {
    grid-column: 1/3;
    height: 1.2rem;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 900px) {
  .laboratory {
    padding-bottom: 0.45rem;
  }
  .laboratory .layout .card-list .card-item:nth-of-type(1) {
    grid-column: 1/3;
    height: 1.2rem;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 768px) {
  .laboratory {
    padding-bottom: 0.4rem;
  }
  .laboratory .layout .card-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1.2rem);
  }
  .laboratory .layout .card-list .card-item {
    height: 100%;
  }
  .laboratory .layout .card-list .card-item:nth-of-type(1) {
    grid-column: 1/2;
    height: 100%;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 500px) {
  .laboratory {
    padding-bottom: 0.3rem;
  }
  .laboratory .layout .card-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1rem);
    gap: 0.18rem;
  }
  .laboratory .layout .card-list .card-item {
    height: 100%;
  }
  .laboratory .layout .card-list .card-item:nth-of-type(1) {
    grid-column: 1/2;
    height: 100%;
  }
  .laboratory .layout .card-list .card-item h4 {
    color: #fff;
    font-size: 0.2rem;
  }
}
.public-service {
  position: relative;
  padding-bottom: 0.64rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(-30%, var(--sub-theme-color)), color-stop(130%, var(--theme-color)));
  background: -webkit-linear-gradient(left, var(--sub-theme-color) -30%, var(--theme-color) 130%);
  background: -moz-linear-gradient(left, var(--sub-theme-color) -30%, var(--theme-color) 130%);
  background: -o-linear-gradient(left, var(--sub-theme-color) -30%, var(--theme-color) 130%);
  background: linear-gradient(to right, var(--sub-theme-color) -30%, var(--theme-color) 130%);
}
.public-service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pb-service-bg.png) no-repeat center/cover;
  z-index: 1;
  pointer-events: none;
  background-attachment: fixed;
}
.public-service .layout .common-title h3 {
  color: #fff;
}
.public-service .layout .common-title .more {
  cursor: pointer;
}
.public-service .layout .common-title .more.line,
.public-service .layout .common-title .more .line {
  position: relative;
  white-space: nowrap;
}
.public-service .layout .common-title .more.line::after,
.public-service .layout .common-title .more .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -3px;
  background: #fff;
  opacity: 1;
}
.public-service .layout .common-title .more.line.active::after,
.public-service .layout .common-title .more .line.active::after {
  width: 100%;
  opacity: 1;
}
.public-service .layout .common-title .more:hover.line::after,
.public-service .layout .common-title .more:hover .line::after, .public-service .layout .common-title .more.active.line::after,
.public-service .layout .common-title .more.active .line::after {
  width: 100%;
  opacity: 1;
}
.public-service .layout .common-title .more .text,
.public-service .layout .common-title .more .iconfont {
  color: #fff;
}
.public-service .layout .card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.15rem;
}
.public-service .layout .card-list .card-item {
  position: relative;
  z-index: 2;
  padding: 0.22rem 0.36rem 0.38rem;
  background-color: #fff;
}
.public-service .layout .card-list .card-item.btnBox,
.public-service .layout .card-list .card-item .btnBox {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  overflow: hidden;
}
.public-service .layout .card-list .card-item.btnBox .btnText,
.public-service .layout .card-list .card-item .btnBox .btnText {
  position: relative;
  z-index: 100;
}
.public-service .layout .card-list .card-item.btnBox::before,
.public-service .layout .card-list .card-item .btnBox::before {
  position: absolute;
  content: "";
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 0;
  height: 0%;
  background: url(../images/pb-card-bg.png) no-repeat center/cover;
}
.public-service .layout .card-list .card-item.btnBox:hover,
.public-service .layout .card-list .card-item .btnBox:hover {
  color: #fff;
}
.public-service .layout .card-list .card-item.btnBox:hover::before,
.public-service .layout .card-list .card-item .btnBox:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: url(../images/pb-card-bg.png) no-repeat center/cover;
}
.public-service .layout .card-list .card-item.btnBox:hover .btnText:not(.normal),
.public-service .layout .card-list .card-item .btnBox:hover .btnText:not(.normal) {
  color: #fff;
}
.public-service .layout .card-list .card-item.btnBox .btnText:not(.normal),
.public-service .layout .card-list .card-item .btnBox .btnText:not(.normal) {
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: inline-block;
}
.public-service .layout .card-list .card-item.btnBox .btnText:not(.normal) span,
.public-service .layout .card-list .card-item .btnBox .btnText:not(.normal) span {
  color: inherit;
}
.public-service .layout .card-list .card-item:hover * {
  color: inherit !important;
}
.public-service .layout .card-list .card-item:hover .date.active.line::after {
  background-color: #fff;
}
.public-service .layout .card-list .card-item .time .year,
.public-service .layout .card-list .card-item .time .date {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.2rem;
}
.public-service .layout .card-list .card-item .time .date {
  display: inline-block;
  font-size: 0.3rem;
  cursor: pointer;
}
.public-service .layout .card-list .card-item .time .date.line,
.public-service .layout .card-list .card-item .time .date .line {
  position: relative;
  white-space: nowrap;
}
.public-service .layout .card-list .card-item .time .date.line::after,
.public-service .layout .card-list .card-item .time .date .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -5px;
  background: var(--theme-color);
  opacity: 1;
}
.public-service .layout .card-list .card-item .time .date.line.active::after,
.public-service .layout .card-list .card-item .time .date .line.active::after {
  width: 100%;
  opacity: 1;
}
.public-service .layout .card-list .card-item .time .date:hover.line::after,
.public-service .layout .card-list .card-item .time .date:hover .line::after, .public-service .layout .card-list .card-item .time .date.active.line::after,
.public-service .layout .card-list .card-item .time .date.active .line::after {
  width: 100%;
  opacity: 1;
}
.public-service .layout .card-list .card-item h4 {
  margin-top: 0.28rem;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 175%;
}
.public-service .layout .card-list .card-item .more {
  margin-top: 0.24rem;
  text-align: right;
  color: #999;
  font-size: 0.18rem;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.public-service .layout .card-list .card-item .more.line,
.public-service .layout .card-list .card-item .more .line {
  position: relative;
  white-space: nowrap;
}
.public-service .layout .card-list .card-item .more.line::after,
.public-service .layout .card-list .card-item .more .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -3px;
  background: #fff;
  opacity: 1;
}
.public-service .layout .card-list .card-item .more.line.active::after,
.public-service .layout .card-list .card-item .more .line.active::after {
  width: 100%;
  opacity: 1;
}
.public-service .layout .card-list .card-item .more:hover.line::after,
.public-service .layout .card-list .card-item .more:hover .line::after, .public-service .layout .card-list .card-item .more.active.line::after,
.public-service .layout .card-list .card-item .more.active .line::after {
  width: 100%;
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .public-service {
    position: relative;
    padding-bottom: 0.6rem;
  }
  .public-service .layout .card-list .card-item {
    padding: 0.22rem 0.3rem 0.3rem;
  }
  .public-service .layout .card-list .card-item .time .year,
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.2rem;
  }
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.26rem;
  }
  .public-service .layout .card-list .card-item h4 {
    margin-top: 0.2rem;
    font-size: 0.18rem;
  }
  .public-service .layout .card-list .card-item .more {
    margin-top: 0.2rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
  .public-service {
    position: relative;
    padding-bottom: 0.6rem;
  }
  .public-service .layout .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .public-service .layout .card-list .card-item {
    padding: 0.22rem 0.3rem 0.3rem;
  }
  .public-service .layout .card-list .card-item .time .year,
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.2rem;
  }
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.26rem;
  }
  .public-service .layout .card-list .card-item h4 {
    margin-top: 0.2rem;
    font-size: 0.18rem;
  }
  .public-service .layout .card-list .card-item .more {
    margin-top: 0.2rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 900px) {
  .public-service {
    position: relative;
    padding-bottom: 0.55rem;
  }
  .public-service .layout .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .public-service .layout .card-list .card-item {
    padding: 0.2rem 0.25rem 0.25rem;
  }
  .public-service .layout .card-list .card-item .time .year,
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.18rem;
  }
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.2rem;
  }
  .public-service .layout .card-list .card-item h4 {
    margin-top: 0.18rem;
    font-size: 0.16rem;
  }
  .public-service .layout .card-list .card-item .more {
    margin-top: 0.18rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .public-service {
    padding-bottom: 0.5rem;
  }
  .public-service .layout .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .public-service .layout .card-list .card-item {
    padding: 0.2rem;
  }
  .public-service .layout .card-list .card-item .time .year,
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.16rem;
  }
  .public-service .layout .card-list .card-item .time .date {
    font-size: 0.18rem;
  }
  .public-service .layout .card-list .card-item h4 {
    margin-top: 0.16rem;
    font-size: 0.16rem;
  }
  .public-service .layout .card-list .card-item .more {
    margin-top: 0.16rem;
    font-size: 0.14rem;
  }
}
.achievement {
  padding-top: 0.78rem;
  padding-bottom: 0.86rem;
  background-color: #f8f8f8;
}
.achievement .layout .common-title {
  display: none;
}
.achievement .layout .card-list {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr 1fr;
  gap: 0.2rem;
}
.achievement .layout .card-list .card-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 0.23rem 0.25rem 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.achievement .layout .card-list .card-item.btnBox,
.achievement .layout .card-list .card-item .btnBox {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  overflow: hidden;
}
.achievement .layout .card-list .card-item.btnBox .btnText,
.achievement .layout .card-list .card-item .btnBox .btnText {
  position: relative;
  z-index: 100;
}
.achievement .layout .card-list .card-item.btnBox::before,
.achievement .layout .card-list .card-item .btnBox::before {
  position: absolute;
  content: "";
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 0;
  height: 0%;
  background: url(../images/news-bg-color.png) no-repeat center/cover;
}
.achievement .layout .card-list .card-item.btnBox:hover,
.achievement .layout .card-list .card-item .btnBox:hover {
  color: #fff;
}
.achievement .layout .card-list .card-item.btnBox:hover::before,
.achievement .layout .card-list .card-item .btnBox:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: url(../images/news-bg-color.png) no-repeat center/cover;
}
.achievement .layout .card-list .card-item.btnBox:hover .btnText:not(.normal),
.achievement .layout .card-list .card-item .btnBox:hover .btnText:not(.normal) {
  color: #fff;
}
.achievement .layout .card-list .card-item.btnBox .btnText:not(.normal),
.achievement .layout .card-list .card-item .btnBox .btnText:not(.normal) {
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.achievement .layout .card-list .card-item.btnBox .btnText:not(.normal) span,
.achievement .layout .card-list .card-item .btnBox .btnText:not(.normal) span {
  color: inherit;
}
.achievement .layout .card-list .card-item:hover .time .line::after {
  background-color: #fff;
}
.achievement .layout .card-list .card-item:hover .description {
  opacity: 0.9;
}
.achievement .layout .card-list .card-item:nth-of-type(1) {
  grid-row-start: 1;
  grid-row-end: 4;
  background: url(../images/achievement-bg.png) no-repeat center/cover;
  cursor: pointer;
}
.achievement .layout .card-list .card-item:nth-of-type(1).line,
.achievement .layout .card-list .card-item:nth-of-type(1) .line {
  position: relative;
  white-space: nowrap;
}
.achievement .layout .card-list .card-item:nth-of-type(1).line::after,
.achievement .layout .card-list .card-item:nth-of-type(1) .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -3px;
  background: #fff;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(1).line.active::after,
.achievement .layout .card-list .card-item:nth-of-type(1) .line.active::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(1):hover.line::after,
.achievement .layout .card-list .card-item:nth-of-type(1):hover .line::after, .achievement .layout .card-list .card-item:nth-of-type(1).active.line::after,
.achievement .layout .card-list .card-item:nth-of-type(1).active .line::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(1):hover .iconfont {
  position: absolute;
  -webkit-animation: titleIcon 0.6s ease;
     -moz-animation: titleIcon 0.6s ease;
       -o-animation: titleIcon 0.6s ease;
          animation: titleIcon 0.6s ease;
  -webkit-transform: rotateZ(-45deg);
     -moz-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
.achievement .layout .card-list .card-item:nth-of-type(2) {
  grid-row-start: 1;
  grid-row-end: 3;
}
.achievement .layout .card-list .card-item:nth-of-type(2) .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-position: center center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.achievement .layout .card-list .card-item:nth-of-type(2) img {
  display: none;
}
.achievement .layout .card-list .card-item:nth-of-type(2):hover .img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.achievement .layout .card-list .card-item:nth-of-type(3) {
  padding-top: 0.36rem;
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
}
.achievement .layout .card-list .card-item:nth-of-type(3) h4 {
  margin-top: 0.5rem;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .description {
  margin-top: 0.09rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 0.18rem;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .more {
  margin-top: 0.33rem;
  text-align: right;
  color: var(--theme-color);
  font-size: 0.18rem;
  cursor: pointer;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .more.line,
.achievement .layout .card-list .card-item:nth-of-type(3) .more .line {
  position: relative;
  white-space: nowrap;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .more.line::after,
.achievement .layout .card-list .card-item:nth-of-type(3) .more .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -3px;
  background: #fff;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .more.line.active::after,
.achievement .layout .card-list .card-item:nth-of-type(3) .more .line.active::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(3) .more:hover.line::after,
.achievement .layout .card-list .card-item:nth-of-type(3) .more:hover .line::after, .achievement .layout .card-list .card-item:nth-of-type(3) .more.active.line::after,
.achievement .layout .card-list .card-item:nth-of-type(3) .more.active .line::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/achievement-item-bg.png) no-repeat 50% 50%/cover;
  z-index: -1;
  mix-blend-mode: multiply;
}
.achievement .layout .card-list .card-item:nth-of-type(3):hover::after {
  -webkit-animation: achievementBg 1.5s ease;
     -moz-animation: achievementBg 1.5s ease;
       -o-animation: achievementBg 1.5s ease;
          animation: achievementBg 1.5s ease;
}
.achievement .layout .card-list .card-item:nth-of-type(n+3) {
  min-height: 2.22rem;
  background-color: #fff;
}
.achievement .layout .card-list .card-item .title {
  padding-left: 14.6666666667%;
}
.achievement .layout .card-list .card-item .title h3 {
  margin-top: 0.52rem;
  font-size: 0.36rem;
  font-weight: 600;
  color: #fff;
}
.achievement .layout .card-list .card-item .title .more {
  position: relative;
  margin-top: 0.3rem;
  margin-left: 0.03rem;
  color: #fff;
  font-size: 0.18rem;
  display: inline-block;
}
.achievement .layout .card-list .card-item .title .more .iconfont {
  position: absolute;
  display: inline-block;
  font-size: 0.2rem;
  top: 0.04rem;
  left: -webkit-calc(100% + 0.02rem);
  left: -moz-calc(100% + 0.02rem);
  left: calc(100% + 0.02rem);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.achievement .layout .card-list .card-item .time {
  cursor: pointer;
}
.achievement .layout .card-list .card-item .time.line,
.achievement .layout .card-list .card-item .time .line {
  position: relative;
  white-space: nowrap;
}
.achievement .layout .card-list .card-item .time.line::after,
.achievement .layout .card-list .card-item .time .line::after {
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 2px;
  bottom: -0.14rem;
  background: var(--theme-color);
  opacity: 1;
}
.achievement .layout .card-list .card-item .time.line.active::after,
.achievement .layout .card-list .card-item .time .line.active::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item .time:hover.line::after,
.achievement .layout .card-list .card-item .time:hover .line::after, .achievement .layout .card-list .card-item .time.active.line::after,
.achievement .layout .card-list .card-item .time.active .line::after {
  width: 100%;
  opacity: 1;
}
.achievement .layout .card-list .card-item .time .year {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.24rem;
}
.achievement .layout .card-list .card-item .time .date {
  display: inline-block !important;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.3rem;
}
.achievement .layout .card-list .card-item h4 {
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 163.6363636364%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.achievement .layout .card-list .card-item .description {
  margin-top: 0.14rem;
  font-size: 0.16rem;
  color: #999;
  line-height: 177.7777777778%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.achievement .layout .card-list .card-item .date1 {
  margin-top: 0.16rem;
  margin-right: 0.1rem;
  font-size: 0.18rem;
  color: var(--theme-color);
  text-align: right;
}

@media screen and (max-width: 1440px) {
  .achievement {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .achievement .layout .card-list {
    gap: 0.2rem;
  }
  .achievement .layout .card-list .card-item {
    padding: 0.2rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) {
    padding-top: 0.3rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) h4 {
    margin-top: 0.35rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .description {
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .more {
    margin-top: 0.3rem;
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(n+4) {
    height: auto;
    min-height: 0;
    background-color: #fff;
  }
  .achievement .layout .card-list .card-item .title h3 {
    margin-top: 0.27rem;
    font-size: 0.32rem;
  }
  .achievement .layout .card-list .card-item .title .more {
    margin-top: 0.15rem;
    color: #fff;
    font-size: 0.16rem;
    display: inline-block;
  }
  .achievement .layout .card-list .card-item .title .more .iconfont {
    font-size: 0.18rem;
    vertical-align: -0.01rem;
  }
  .achievement .layout .card-list .card-item .time .year {
    font-size: 0.2rem;
  }
  .achievement .layout .card-list .card-item .time .date {
    font-size: 0.26rem;
  }
  .achievement .layout .card-list .card-item h4 {
    font-size: 0.18rem;
  }
  .achievement .layout .card-list .card-item .description {
    margin-top: 0.1rem;
    font-size: 0.14rem;
  }
  .achievement .layout .card-list .card-item .date1 {
    margin-top: 0.15rem;
    margin-right: 0.05rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1280px) {
  .achievement {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .achievement .layout .card-list {
    gap: 0.2rem;
  }
  .achievement .layout .card-list .card-item {
    padding: 0.2rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) {
    padding-top: 0.3rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) h4 {
    margin-top: 0.33rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .description {
    margin-top: 0.1rem;
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .more {
    margin-top: 0.3rem;
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item .title h3 {
    margin-top: 0.25rem;
    font-size: 0.28rem;
  }
  .achievement .layout .card-list .card-item h4 {
    font-size: 0.18rem;
  }
  .achievement .layout .card-list .card-item .description {
    font-size: 0.14rem;
  }
  .achievement .layout .card-list .card-item .date1 {
    margin-top: 0.12rem;
    margin-right: 0.05rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1150px) {
  .achievement {
    padding-top: 0.1rem;
    padding-bottom: 0.55rem;
  }
  .achievement .layout .common-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .achievement .layout .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .achievement .layout .card-list .card-item:nth-of-type(1) {
    display: none;
  }
  .achievement .layout .card-list .card-item .description {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 900px) {
  .achievement {
    padding-top: 0.1rem;
    padding-bottom: 0.55rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) h4 {
    margin-top: 0.35rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .description {
    font-size: 0.14rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .more {
    margin-top: 0.3rem;
    font-size: 0.14rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(n+4) {
    height: auto;
    min-height: 0;
    background-color: #fff;
  }
  .achievement .layout .card-list .card-item .title h3 {
    margin-top: 0.27rem;
    font-size: 0.32rem;
  }
  .achievement .layout .card-list .card-item .title .more {
    margin-top: 0.15rem;
    color: #fff;
    font-size: 0.16rem;
    display: inline-block;
  }
  .achievement .layout .card-list .card-item .title .more .iconfont {
    font-size: 0.2rem;
    vertical-align: -0.01rem;
  }
  .achievement .layout .card-list .card-item .time .year {
    font-size: 0.18rem;
  }
  .achievement .layout .card-list .card-item .time .date {
    font-size: 0.2rem;
  }
  .achievement .layout .card-list .card-item h4 {
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item .description {
    margin-top: 0.1rem;
    font-size: 0.14rem;
  }
  .achievement .layout .card-list .card-item .date1 {
    margin-top: 0.11rem;
    margin-right: 0.05rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 800px) {
  .achievement {
    padding-top: 0.1rem;
    padding-bottom: 0.5rem;
  }
  .achievement .layout .card-list {
    grid-template-columns: 1fr 1fr;
  }
  .achievement .layout .card-list .card-item:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .achievement {
    padding-top: 0.1rem;
    padding-bottom: 0.5rem;
  }
  .achievement .layout .card-list {
    grid-template-columns: 1fr;
  }
  .achievement .layout .card-list .card-item:nth-of-type(2) {
    padding: 0;
    background-image: none !important;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .achievement .layout .card-list .card-item:nth-of-type(2) img {
    display: inline-block;
    width: 100%;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) {
    padding: 0.2rem;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) h4 {
    margin-top: 0.2rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(3) .more {
    margin-top: 0.1rem;
  }
  .achievement .layout .card-list .card-item:nth-of-type(4) {
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .achievement .layout .card-list .card-item .time .year {
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item .time .date {
    font-size: 0.18rem;
  }
  .achievement .layout .card-list .card-item .time .line::after {
    bottom: -0.07rem;
  }
  .achievement .layout .card-list .card-item h4 {
    font-size: 0.16rem;
  }
  .achievement .layout .card-list .card-item .description {
    margin-top: 0.1rem;
  }
  .achievement .layout .card-list .card-item .date1 {
    margin-top: 0.1rem;
    margin-right: 0.04rem;
  }
}