.container {
  width: 14rem;
  margin: 0 auto;
  
}
.bgColor {
  background: #f5f5f5;
}
.minh {
 min-height: 7.5rem;
}
header {
  width: 100%;
  height: 0.99rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 6%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 10px rgba(0, 91, 166, 0.34);
  position: relative;
  z-index: 100;
}
header .logo {
  width: 6.01rem;
  display: inline-flex;
  align-items: center;
}
header .logo img {
  width: 100%;
}
header nav {
  flex: 1;
  margin-left: 0.7rem;
  margin-right: 0.3rem;
}
header nav ul {
  display: flex;
  position: relative;
  justify-content: space-between;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  font-weight: bold;
  display: block;
  text-align: center;
  color: #333;
  font-size: 0.18rem;
  line-height: 0.99rem;
}
header nav ul li a:after {
  content: '';
  width: 0%;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #005ba6;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}
header nav ul li .list {
  width: 1.2rem;
  height: auto;
  position: absolute;
  left: 50%;
  margin-left: -0.6rem;
  top: 1.29rem;
  visibility: hidden;
  padding: 0.1rem 0;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 0.05rem 0.05rem;
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header nav ul li .list a {
  width: 100%;
  height: auto;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.36rem;
  text-align: center;
  color: #3e3e3e;
  font-size: 0.14rem;
  font-weight: normal;
}
header nav ul li .list a:hover,
header nav ul li .list a.active {
  color: #005ba6;
}
header nav ul li:hover .list {
  opacity: 1;
  visibility: visible;
  top: 0.99rem;
}
header nav ul li:hover > a,
header nav ul li.active > a {
  color: var(--blue);
}
header nav ul li:hover > a:after,
header nav ul li.active > a:after {
  width: 100%;
  left: 25%;
  transform: translateX(-25%);
}
header .search_btn {
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid #c7c7c7;
  line-height: 0.38rem;
  text-align: center;
  color: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.45s;
}
header .search_btn:before {
  width: 0.38rem;
  height: 0.38rem;
  position: absolute;
  left: 0%;
  top: 0.38rem;
  background: var(--blue);
  border-radius: 0.38rem 0.38rem 0px 0px;
  content: '';
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
header .search_btn i {
  font-size: 0.2rem;
  display: block;
  position: relative;
}
header .search_btn:hover {
  border-color: var(--blue);
  color: #fff;
}
header .search_btn:hover:before {
  top: 0;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
header .search_btn:hover i {
  -webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  -webkit-animation: gelatine 0.5s 1;
  animation: gelatine 0.5s 1;
}
header .search_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.45s;
  -webkit-transform: translateY(-100%);
  z-index: 10;
}
header .search_box .s_box {
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .search_box .s_box .row {
  width: calc(100% - 1rem);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header .search_box .s_box .row input {
  width: calc(100% - 0.5rem);
  outline: none;
  height: 0.5rem;
  border: none;
  font-size: 0.14rem;
}
header .search_box .s_box .row input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
header .search_box .s_box .row .s_btn {
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: right;
  opacity: 0.5;
  cursor: pointer;
}
header .search_box .s_box .row .s_btn i {
  font-size: 0.2rem;
}
header .search_box .s_box .s_close {
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.4s;
}
header .search_box .s_box .s_close i {
  font-size: 0.22rem;
}
header .search_box .s_box .s_close:hover {
  -webkit-transform: rotate(90deg);
}
header .search_box.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
header.active {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}
#nav_icon2 {
  width: 0.4rem;
  height: 0.36rem;
  position: absolute;
  right: 3%;
  top: 36%;
  cursor: pointer;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: baseline;
}
#nav_icon2 .line {
  width: 100%;
  height: 0.03rem;
  background: #3e3e3e;
  position: relative;
  transition: all 0.3s;
  display: block;
}
#nav_icon2 .line:before,
#nav_icon2 .line:after {
  content: '';
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0.06rem;
  background: #3e3e3e;
}
#nav_icon2 .line:before {
  transform: translateY(-400%);
}
#nav_icon2 .line:after {
  transform: translateY(400%);
}
#nav_icon2.open .line {
  background: transparent;
}
#nav_icon2.open .line:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav_icon2.open .line:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mob_nav {
  width: 100%;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 90;
}
.mob_nav.active {
  height: 100vh;
}
.mob_nav ul {
  width: 100%;
  margin-left: 0;
  padding-top: 1.29rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mob_nav ul li {
  width: 100%;
  height: auto;
  line-height: 0.8rem;
  position: relative;
  transition: all 0.5s ease;
}
.mob_nav ul li.active {
  background: rgba(0, 97, 174, 0.1);
}
.mob_nav ul li a,
.mob_nav ul li .one-level {
  display: block;
  width: 90%;
  height: 100%;
  margin-left: 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  position: relative;
  font-size: 0.32rem;
}
.mob_nav ul li a .icon,
.mob_nav ul li .one-level .icon {
  width: 0.8rem;
  height: 0.8rem;
  line-height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
}
.mob_nav ul li a i,
.mob_nav ul li .one-level i {
  transition: all 0.35s;
}
.mob_nav ul li .one-level {
  display: flex;
  align-items: center;
}
.mob_nav ul li .one-level a {
  border: 0;
  width: 80%;
  margin-left: 0;
}
.mob_nav ul li .two-leval {
  width: 90%;
  max-height: 0;
  transition: all 0.5s ease;
  overflow: hidden;
  margin-left: 5%;
}
.mob_nav ul li .two-leval a {
  font-size: 0.28rem;
  line-height: 0.7rem;
  border: 0;
}
.mob_nav ul li.active .one-level i {
  transform: rotate(180deg);
}
.mob_nav ul li.active .two-leval {
  max-height: 100vh;
}
body.menu_open {
  overflow: hidden;
}
@keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
.banner_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner_swiper img {
  width: 100%;
  height: 100%;
  display: block;
}
.banner_swiper .bottom {
  position: absolute;
  bottom: 0.62rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
}
.banner_swiper .bottom i {
  color: #fff;
  font-size: 0.3rem;
  line-height: 0.2rem;
  cursor: pointer;
}
.banner_swiper .swiper-pagination {
  position: initial;
}
.banner_swiper .swiper-pagination-bullet {
  margin: 0 0.17rem;
  opacity: 1;
  color: #fff;
  font-size: 0.2rem;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: transparent;
}
.banner_swiper .swiper-pagination-bullet:after {
  content: '';
  border-top: 1px solid #fff;
  display: inline-block;
  vertical-align: 5px;
  width: 0px;
  margin-left: 0.05rem;
  transition: all 0.5s ease-out 0s;
}
.banner_swiper .swiper-pagination-bullet-active:after {
  width: 0.44rem;
}
.module1 {
  position: relative;
  padding-top: 0.6rem;
  padding-bottom: 0.74rem;
  overflow: hidden;
  z-index: 2;
}
.module1 .container {
  display: flex;
  justify-content: space-between;
}
.module1:after {
  content: '';
  position: absolute;
  z-index: -1;
  background: url(../img/bg2.jpg) no-repeat center / 100% 100%;
  width: 7.46rem;
  height: 4.23rem;
  right: 2%;
  top: 0;
  object-fit: cover;
}
.module1_l {
  width: 6.38rem;
}
.module1_l .tit {
  display: block;
  font-weight: bold;
  color: var(--blue);
  font-size: 0.3rem;
  margin-bottom: 0.34rem;
  transition: all 0.3s;
  line-height: 0.38rem;
}
.module1_l .tit:hover {
  opacity: 0.7;
}
.module1_l .module1_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.module1_l .module1_swiper a {
  display: block;
  position: relative;
}
.module1_l .module1_swiper a .imgBox {
  width: 6.38rem;
  height: 3.89rem;
  overflow: hidden;
}
.module1_l .module1_swiper a .imgBox img {
  width: 100%;
  height: 100%;
  transition: all 1.5s;
}
.module1_l .module1_swiper a .text {
  position: absolute;
  width: 100%;
  background: url(../img/icon1.png) no-repeat center / 100% 100%;
  color: #fff;
  font-weight: bold;
  font-size: 0.18rem;
  z-index: 10;
  height: 1.2rem;
  line-height: 1.5rem;
  left: 0;
  bottom: 0;
  padding-left: 0.38rem;
  padding-right: 50%;
  box-sizing: border-box;
  transition: all 0.3s;
}
.module1_l .module1_swiper .swiper-pagination {
  right: 0.18rem;
  bottom: 0.35rem;
  width: 50%;
  text-align: right;
  left: inherit;
}
.module1_l .module1_swiper .swiper-pagination-bullet {
  width: 0.24rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 0;
  margin: 0 0 0 0.06rem;
  opacity: 1;
  transition: all 0.5s;
}
.module1_l .module1_swiper .swiper-pagination-bullet-active {
  background: var(--blue);
  height: 0.1rem;
}
.module1_l .module1_swiper .swiper-button-prev:after,
.module1_l .module1_swiper .swiper-button-next:after {
  display: none;
}
.module1_l .module1_swiper .arrow {
  width: 0.62rem;
  height: 0.62rem;
  display: flex;
  align-items: center;
  font-size: 0.2rem;
  background: rgba(6, 25, 44, 0.38);
  border-radius: 50%;
}
.module1_l .module1_swiper .arrow i {
  color: #fff;
}
.module1_l .module1_swiper .swiper-button-prev {
  left: -0.28rem;
}
.module1_l .module1_swiper .swiper-button-prev i {
  margin-left: 0.2rem;
}
.module1_l .module1_swiper .swiper-button-next {
  right: -0.28rem;
}
.module1_l .module1_swiper .swiper-button-next i {
  margin-right: 0.2rem;
}
.module1_l .module1_swiper a:hover img {
  transform: scale(1.05);
}
.module1_l .module1_swiper a:hover .text {
  color: var(--blue);
}
.module1_r {
  width: 7.34rem;
  overflow: hidden;
}
.module1_r .list {
  min-height: 3.89rem;
}
.module1_r .list .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.28rem;
  line-height: 1.3;
}
.module1_r .list .item i {
  color: #dae4eb;
  font-size: 0.16rem;
  margin-right: 0.12rem;
}
.module1_r .list .item p {
  font-size: 0.18rem;
  color: #333;
  max-width: 80%;
}
.module1_r .list .item .date {
  margin-left: auto;
  color: #9c9c9c;
}
.module1_r .list .item:hover i,
.module1_r .list .item:hover p,
.module1_r .list .item:hover .date {
  color: var(--blue);
}
.more {
  color: #999;
  display: flex;
  transition: all 0.3s;
  margin-bottom: 0.34rem;
  line-height: 0.38rem;
  align-items: center;
  justify-content: end;
}
.more i {
  margin-left: 0.08rem;
  font-size: 0.3rem;
}
.more:hover {
  color: var(--blue);
}
.module2 {
  position: relative;
  z-index: 2;
  padding-top: 0.24rem;
  margin-bottom: 0.66rem;
}
.module2 .bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.module2_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.module2_head a {
  color: #fff;
}
.module2_head .tit {
  font-weight: bold;
  font-size: 0.3rem;
  line-height: 0.38rem;
  transition: all 0.3s;
}
.module2_head .tit:hover {
  opacity: 0.7;
}
.module2_head .more {
  margin-bottom: 0;
  color: #fff;
}
.module2_head .more:hover {
  opacity: 0.7;
}
.module2_content {
  position: relative;
}
.module2_content .module2_swiper {
  overflow: hidden;
  width: 100%;
}
.module2_content .module2_swiper a {
  width: 4.56rem;
  display: block;
}
.module2_content .module2_swiper .imgBox {
  overflow: hidden;
}
.module2_content .module2_swiper .imgBox img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.module2_content .module2_swiper .t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.14rem;
  box-sizing: border-box;
  background: #fff;
  height: 0.6rem;
  position: relative;
}
.module2_content .module2_swiper .t .text {
  max-width: 80%;
  color: #333;
  font-weight: bold;
  font-size: 0.18rem;
}
.module2_content .module2_swiper .t i {
  font-size: 0.3rem;
  color: #949494;
}
.module2_content .module2_swiper .t:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.03rem;
  background: var(--blue);
  width: 0;
  transition: all 0.3s;
}
.module2_content .module2_swiper a:hover img {
  transform: scale(1.05);
}
.module2_content .module2_swiper a:hover .text,
.module2_content .module2_swiper a:hover i {
  color: var(--blue);
}
.module2_content .module2_swiper a:hover .t:after {
  width: 100%;
}
.arrowRadius {
  background: rgba(6, 25, 44, 0.38);
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
}
.arrowRadius:after {
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.38rem;
}
.module3 {
  padding-bottom: 0.66rem;
}
.module3 .container {
  display: flex;
  justify-content: space-between;
}
.module3 .block {
  width: 6.65rem;
}
.module3 .blockR {
  width: 6.85rem;
}
.module3_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.02rem solid #e8e8e8;
  margin-bottom: 0.32rem;
}
.module3_head .tit {
  font-weight: bold;
  font-size: 0.3rem;
  color: var(--blue);
  position: relative;
  padding-bottom: 0.1rem;
  line-height: 0.38rem;
  transition: all 0.3s;
}
.module3_head .tit:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.06rem;
  width: 100%;
  height: 0.09rem;
  background: url(../img/icon2.png) no-repeat center / 100% 100%;
}
.module3_head .tit:hover {
  opacity: 0.7;
}
.module3_head .more {
  margin-bottom: 0;
}
.module3 .list {
  min-height: 1.2rem;
}
.module3 .list .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.24rem;
  line-height: 1.3;
}
.module3 .list .item i {
  color: #dae4eb;
  font-size: 0.16rem;
  margin-right: 0.12rem;
}
.module3 .list .item p {
  font-size: 0.18rem;
  color: #333;
  max-width: 80%;
}
.module3 .list .item .date {
  margin-left: auto;
  color: #9c9c9c;
}
.module3 .list .item:hover i,
.module3 .list .item:hover p,
.module3 .list .item:hover .date {
  color: var(--blue);
}
.module3 .cont {
  display: flex;
  justify-content: space-between;
}
.module3 .cont a {
  border: 1px solid #e9e9e9;
  width: 3.32rem;
  height: 1.2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 0.3rem;
  padding-right: 0.2rem;
}
.module3 .cont a img {
  width: 0.46rem;
  margin-right: 0.16rem;
}
.module3 .cont a p {
  font-size: 0.2rem;
  color: #333;
  line-height: 2;
}
.module3 .cont a span {
  color: #484848;
  font-size: 0.15rem;
  line-height: 2;
}
.module3 .cont a[href]:hover {
  border: 2px solid var(--blue);
  transition: all 0.3s;
}
.module3 .cont a[href]:hover p {
  color: var(--blue);
}
.module4 {
  background: #f8f8f8;
  padding: 0.49rem 0;
}
.module4 .tit {
  font-weight: bold;
  font-size: 0.3rem;
  color: var(--blue);
  transition: all 0.3s;
  padding-bottom: 0.3rem;
  line-height: 1.3;
  display: block;
  text-align: center;
}
.module4 .tit:hover {
  opacity: 0.7;
}
.module4_content {
  position: relative;
}
.module4_swiper {
  overflow: hidden;
}
.module4_swiper a {
  width: 1.92rem;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
}
.module4_swiper a img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.module4_swiper a:hover img {
  transform: scale(1.05);
}
.module4 .arrowRadius {
  transform: translateY(-50%);
  margin: 0;
}
footer {
  background: var(--blue);
  height: 1.85rem;
}
footer .hd {
  padding-top: 0.44rem;
  padding-bottom: 0.3rem;
}
footer .hd p {
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.12rem;
}
footer .hd p:last-child {
  margin-bottom: 0;
}
footer .hd p span,
footer .hd p a {
  color: #fff;
  font-size: 0.15rem;
  transition: all 0.2s;
}
footer .hd p span {
  padding: 0 0.1rem;
}
footer .hd p a:hover {
  opacity: 0.7;
}
footer .hd img {
  margin-left: 0.1rem;
  vertical-align: -3px;
}
footer .bd {
  background: #034e8b;
  line-height: 0.55rem;
  font-size: 0.15rem;
  text-align: center;
}
footer .bd span {
  color: #fff;
  padding: 0 0.07rem;
}
footer .bd span em {
  font-weight: bold;
  color: #bca34a;
}
footer .bd span a {
  color: #adc6da;
  transition: all 0.2s;
}
footer .bd span a:hover {
  color: #fff;
}
.zyHead {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 1.83rem;
}
.zyHead .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.zyHead h1 {
  color: #fff;
  padding-top: 0.26rem;
  font-size: 0.36rem;
  text-align: center;
}
.dq {
  padding-top: 0.38rem;
  display: flex;
  align-items: center;
}
.dq i {
  color: #a1bfd8;
  margin-right: 0.06rem;
}
.dq a,
.dq em {
  color: #fff;
  font-size: 0.15rem;
}
.dq em {
  padding: 0 0.05rem;
}
.dq a:hover,
.dq a.on {
  opacity: 0.7;
}
.section {
  display: flex;
  justify-content: space-between;
  border-left: 1px solid #005ba6;
  padding: 0.44rem 0 0.64rem 0.48rem;
}
.section .aside{
  margin-right: .77rem;
}
.section .aside ul {
  width: 2.22rem;
  background: var(--blue);
  padding-top: 0.35rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.section .aside ul:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.93rem;
  height: 1.2rem;
  background: url(../img/icon8.png) no-repeat center;
  background-position: 0.14rem 0.2rem;
}
.section .aside h3 a {
  color: #fff;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.18rem;
  padding-left: 0.14rem;
  padding-right: 0.1rem;
  font-weight: normal;
  box-sizing: border-box;
  transition: all 0.2s;
  position: relative;
}
.section .aside h3 a i {
  margin-left: 0.1rem;
  font-size: 0.23rem;
  transition: all 0.3s;
  transition-delay: 0.1s;
}
.section .aside h3 a:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  top: 50%;
  left: -0.5rem;
  background: var(--blue);
  transform: translateY(-50%);
  transition: all 0.2s;
}
.section .aside h3 a:after {
  content: '';
  display: block;
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: var(--blue);
  top: 50%;
  transform: translateY(-50%);
  left: -0.55rem;
  border: 0.03rem solid #fff;
  box-shadow: 0 0 0 1px var(--blue);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.1s;
}
.section .aside .sub {
  padding: 0.1rem 0;
  background: #71a0d3;
  display: none;
}
.section .aside .sub a {
  display: block;
  line-height: 0.38rem;
  color: #fff;
  font-size: 0.16rem;
  transition: all 0.3s;
  padding: 0 .22rem;
  box-sizing: border-box;
}
.section .aside .sub a:hover,
.section .aside .sub a.active {
  background: var(--blue);
}
.section .aside li:hover h3 a,
.section .aside li.active h3 a {
  background: #fff;
  color: var(--blue);
  font-weight: bold;
}
.section .aside li:hover h3 a i,
.section .aside li.active h3 a i {
  transform: rotate(-90deg);
  color: var(--blue);
}
.section .aside li:hover h3 a:before,
.section .aside li.active h3 a:before {
  width: 0.6rem;
}
.section .aside li:hover h3 a:after,
.section .aside li.active h3 a:after {
  opacity: 1;
}
.section .aside li:hover .sub,
.section .aside li.active .sub {
  display: block;
}
.section_module {
  width: calc(100% - 3rem);
  flex: 1;
}
.gk .row {
  background: #f1f7fb;
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.44rem 0.3rem;
  margin-bottom: 0.3rem;
}
.gk .row li {
  text-align: center;
}
.gk .row li img {
  display: block;
  width: 0.88rem;
  height: 0.88rem;
  margin: 0 auto 0.08rem;
}
.gk .row li p {
  position: relative;
  color: #333;
  font-size: 0.15rem;
}
.gk .row li p span {
  font-family: 'Bahnschrift';
  font-weight: bold;
  font-size: 0.44rem;
  color: var(--blue);
}
.gk .detail p {
  color: #333;
  line-height: 2;
}
.gk .detail em {
  color: var(--blue);
  font-weight: bold;
}
.gk .detail img {
  display: block;
  max-width: 100%;
  margin: 0.2rem auto;
}
.yg {
  position: relative;
  z-index: 2;
}
.yg .ico {
  position: absolute;
  z-index: -1;
  width: 4rem;
  right: -0.26rem;
  top: -0.9rem;
}
.yg .tit {
  text-align: center;
  color: #eaeaea;
  font-size: 0.52rem;
  font-family: 'Bahnschrift';
  letter-spacing: 2px;
  position: relative;
  line-height: 1.4;
}
.yg .tit img {
  width: 1.94rem;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.yg .column {
  overflow: hidden;
  padding-top: 0.46rem;
}
.yg .column .first {
  background: #f4f8fd;
  padding: 0.32rem 0.3rem 0.3rem;
  position: relative;
}
.yg .column h3 {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  line-height: 0.4rem;
  width: 3rem;
  top: -0.19rem;
  padding: 0 0.3rem;
  box-sizing: border-box;
  background: url(../img/icon15.png) no-repeat center / 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yg .column h3 span {
  font-size: 0.3rem;
  font-weight: bold;
  font-family: 'Bahnschrift';
}
.yg .column .second {
  position: relative;
}
.yg .column .second:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.02rem;
  height: 100%;
  top: 0;
  background: #f4f4f4;
}
.yg .column .second .minh {
  padding-top: 0.52rem;
  overflow: hidden;
}
.yg .column .second .item {
  width: 4.2rem;
  background: #f4f8fd;
  padding: 0.32rem 0.3rem 0.3rem;
  position: relative;
  margin-top: 0.6rem;
  z-index: 3;
}
.yg .column .second .item h3 {
  left: inherit;
  right: 0;
  justify-content: end;
  transform: translateX(0);
  background: linear-gradient(to right, transparent, 36%, #005ba6);
}
.yg .column .second .item h3:before {
  content: '';
  position: absolute;
  right: -0.44rem;
  top: 50%;
  height: 1px;
  width: 0.44rem;
  background: var(--blue);
}
.yg .column .second .item h3:after {
  content: '';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  height: 0.1rem;
  width: 0.1rem;
  background: var(--blue);
  border-radius: 50%;
  margin-top: -0.05rem;
}
.yg .column .second .item:first-child {
  margin-top: 0;
}
.yg .column .second .item:nth-child(even) {
  margin-left: 5.72rem;
}
.yg .column .second .item:nth-child(even) h3 {
  left: 0;
  justify-content: flex-start;
  transform: translateX(0);
  background: linear-gradient(to right, #005ba6, 70%, transparent);
}
.yg .column .second .item:nth-child(even) h3:before {
  left: -0.44rem;
  right: initial;
}
.yg .column .second .item:nth-child(even) h3:after {
  right: initial;
  left: -0.5rem;
}
.yg .column .second .item:nth-child(even).yellow h3 {
  background: linear-gradient(to right, #bca34a, 70%, transparent);
}
.yg .column .second .item.yellow {
  background: #f8f7f2;
}
.yg .column .second .item.yellow h3 {
  background: linear-gradient(to right, transparent, 36%, #bca34a);
}
.yg .column .second .item.yellow h3:before,
.yg .column .second .item.yellow h3:after {
  background: #bca34a;
}
.yg .column p {
  color: #333;
  line-height: 2;
  max-height: 3rem;
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
  -ms-overflow-style: none;
  overflow-y: auto;
}
.yg .column p::-webkit-scrollbar {
  width: 0.05rem;
  height: 0.05rem;
}
.yg .column p::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 0.1rem;
}
.yg .column p::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.1rem;
}
.yg .btn {
  width: 1.84rem;
  height: 0.51rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  color: #949494;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: .3rem;
}
.yg .btn i {
  font-size: 0.3rem;
  margin-left: 0.2rem;
}
.yg .btn:hover {
  background: var(--blue);
  color: #fff;
}
.ld .dt {
  font-size: 0.24rem;
  color: #333;
  line-height: 0.34rem;
  padding-bottom: 0.1rem;
  border-bottom: 0.05rem solid var(--blue);
  display: inline-block;
}
.ld dl {
  background: #f4f7fc;
  padding: 0.34rem;
  margin-bottom: 0.4rem;
}
.ld dl dd {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.2rem;
  line-height: 2;
  margin-bottom: 0.16rem;
}
.ld dl dd:last-child {
  margin-bottom: 0;
}
.ld dl dd label {
  color: #323232;
  font-weight: bold;
}
.ld dl dd span {
  color: var(--blue);
  margin-right: 0.56rem;
}
.ld dl dd span:last-child {
  margin-right: 0;
}
.jg img {
  /* max-width: 100%;
  width: 1317px; */
}
.zj .zjList {
 min-height: 7.5rem;
  width: 104%;
}
.zj .zjList li {
  float: left;
  margin-bottom: 0.34rem;
  margin-right: 0.34rem;
}
.zj .zjList a {
  display: block;
  width: 3.28rem;
  height: 3.94rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0.38rem 0.32rem 0;
  box-sizing: border-box;
  transition: all 0.2s;
}
.zj .zjList a .avator {
  border-radius: 50%;
  width: 1.64rem;
  height: 1.64rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.12rem;
}
.zj .zjList a .avator img {
  width: 96%;
  height: 96%;
  border-radius: 50%;
}
.zj .zjList a .name {
  font-weight: bold;
  color: #222;
  font-size: 0.24rem;
  line-height: 1.4;
  margin-bottom: 0.05rem;
}
.zj .zjList a .tag {
  color: #fff;
  line-height: 0.3rem;
  padding: 0 0.16rem;
  background: #bca34a;
  font-size: 0.15rem;
  border-radius: 0.06rem;
  border-top-right-radius: 0;
  display: inline-block;
  margin-bottom: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 88%;
}
.zj .zjList a .t {
  color: #999;
  font-size: 0.15rem;
  line-height: 2;
}
.zj .zjList a:hover {
  background: var(--blue);
}
.zj .zjList a:hover .avator {
  background: #90b9e8;
}
.zj .zjList a:hover .name {
  color: #fff;
}
.zj .zjList a:hover .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
}
.zj .zjList a:hover .t {
  color: #a4c9e7;
}
.ql_fenye {
  clear: both;
  width: 100%;
  text-align: center;
  font-size: 0.18rem;
  margin: 0.5rem auto;
}
.ql_fenye a {
  display: inline-block;
  padding: 0.1rem 0.14rem;
  border: 1px solid #c7c7c7;
  margin: 0px 0.04rem;
  background: #fff;
  line-height: 0.16rem;
  border-radius: 0.04rem;
  cursor: pointer;
  color: #333;
  font-size: 0.18rem;
}
.ql_fenye a:hover,
.ql_fenye a.on {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.ql_fenye > div {
  color: #333;
  font-size: 0.18rem;
  display: inline-flex;
  align-items: center;
}
.ql_fenye input {
  display: inline-block;
  padding: 0.05rem 0;
  border: 1px solid #c7c7c7;
  margin: 0px 0.08rem;
  background: #fff;
  line-height: 0.16rem;
  border-radius: 0.04rem;
  color: #333;
  font-size: 0.18rem;
  width: 0.42rem;
}
.zjDetail .zyHead .bg {
  top: -1rem;
  height: 2.82rem;
}
.zjDetail .bd {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-bottom: 2.02rem;
  margin-top: -0.8rem;
}
.zjDetail .bd .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.zjDetail .bd .avator {
  margin: 0 auto 0.2rem;
  text-align: center;
}
.zjDetail .bd .avator .img {
  width: 1.64rem;
  border-radius: 50%;
  height: 1.64rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.12rem;
}
.zjDetail .bd .avator .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.zjDetail .bd .avator .name {
  font-weight: bold;
  color: #222;
  font-size: 0.24rem;
  line-height: 1.4;
}
.zjDetail .bd .cont {
  min-height: 2rem;
}
.zjDetail .bd .cont p {
  color: #323232;
  line-height: 2;
}
.context {
  margin-top: 0.38rem;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 0.09rem 0.59rem;
}
.context a {
  display: block;
  color: #323232;
  line-height: 0.38rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.context a[href]:hover {
  color: var(--blue);
}
.ry {
  padding-top: 0.58rem;
  padding-left: 1.84rem;
}
.ry .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 6.08rem;
  height: 1.86rem;
  padding: 0 0.58rem;
  box-sizing: border-box;
  background: url(../img/icon16.png) no-repeat center / 100% 100%;
  margin-bottom: 0.1rem;
}
.ry .item h4 {
  font-size: 0.26rem;
  line-height: 1.8;
}
.ry .item p {
  font-size: 0.16rem;
  color: #484848;
  line-height: 1.8;
}
.ry .item i {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #afafaf;
  font-size: 0.3rem;
  text-align: center;
  line-height: 0.58rem;
  transition: all 0.3s;
}
.ry .item:hover i {
  color: #fff;
  background: var(--blue);
}
.ry .item:nth-child(2) {
  background: url(../img/icon17.png) no-repeat center / 100% 100%;
}
.ry .item:nth-child(3) {
  background: url(../img/icon18.png) no-repeat center / 100% 100%;
}
.ry .item:nth-child(4) {
  background: url(../img/icon19.png) no-repeat center / 100% 100%;
}
.ry1 {
 min-height: 7.5rem;
  width: 103%;
}
.ry1 .item {
  float: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 3.34rem;
  padding: 0.14rem 0.14rem 0;
  box-sizing: border-box;
  margin-right: 0.26rem;
  margin-bottom: 0.24rem;
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.ry1 .item img {
  width: 3.06rem;
  height: 1.92rem;
}
.ry1 .item p {
  line-height: 0.56rem;
  text-align: center;
  font-size: 0.18rem;
  font-weight: bold;
}
.ry1 .item:hover {
  background: var(--blue);
}
.ry1 .item:hover p {
  color: #fff;
}
.mask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.mask .popup {
  background: #fff;
  width: 14rem;
  height: 4.66rem;
  border-bottom: 0.08rem solid var(--blue);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.79rem 0.66rem;
  box-sizing: border-box;
}
.mask .popup .close {
  color: #a0a3a5;
  position: absolute;
  font-size: 0.4rem;
  right: 0.44rem;
  top: 0.4rem;
  cursor: pointer;
  transition: all 0.2s;
}
.mask .popup .close:hover {
  transform: rotate(90deg);
}
.mask .popup .cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mask .popup .cont .l {
  width: 4.85rem;
  margin-right: 0.26rem;
  flex-shrink: 0;
}
.mask .popup .cont .scroll {
  height: 3.06rem;
  flex: 1;
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
  -ms-overflow-style: none;
  overflow-y: auto;
}
.mask .popup .cont .scroll::-webkit-scrollbar {
  width: 0.05rem;
  height: 0.05rem;
}
.mask .popup .cont .scroll::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 0.1rem;
}
.mask .popup .cont .scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.1rem;
}
.mask .popup .cont .scroll .tit {
  color: var(--blue);
  font-size: 0.28rem;
  line-height: 2;
  margin-bottom: 0.1rem;
}
.mask .popup .cont .scroll p {
  line-height: 2;
  color: #323232;
}
.lx .logo {
  margin-bottom: 0.64rem;
}
.lx .row {
  display: flex;
  justify-content: space-between;
}
.lx .row_L {
  max-width: 80%;
}
.lx .row_L li {
  line-height: 1.4;
  margin-bottom: 0.26rem;
}
.lx .row_L .name {
  color: #7d7d7d;
}
.lx .row_R p {
  font-size: 0.18rem;
}
.lx .row_R img {
  width: 1.92rem;
  margin-top: 0.14rem;
}
.lx #map {
  width: 100%;
  height: 5rem;
}
.lx #map .BMap_bubble_title,
.lx #map .BMap_bubble_content {
  font-size: 0.14rem;
  white-space: wrap!important;
  line-height: 1.4 !important;
}
.lx #map .BMap_bubble_title {
  padding-top: 0.1rem;
}
.xw {
 min-height: 7.5rem;
}
.xw .block {
  /* border-bottom: 1px dashed #dfdfdf; */
  margin-bottom: 0.3rem;
}
.xw .block .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.28rem;
  line-height: 1.3;
}
.xw .block .item:nth-child(5n+5){
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed #dfdfdf;
}
.xw .block .item i {
  width: 0.06rem;
  height: 0.06rem;
  background: url(../img/icon20.png) no-repeat center / 100% 100%;
  margin-right: 0.12rem;
}
.xw .block .item p {
  font-size: 0.18rem;
  color: #111;
  max-width: 80%;
}
.xw .block .item .date {
  margin-left: auto;
  color: #747474;
}
.xw .block .item:hover i {
  background: url(../img/icon21.png) no-repeat center / 100% 100%;
}
.xw .block .item:hover p,
.xw .block .item:hover .date {
  color: var(--blue);
}
.xq {
  padding-bottom: 1.2rem;
  overflow: hidden;
}
.xq .dq {
  margin-bottom: 0.6rem;
}
.xq .dq a,
.xq .dq em {
  color: #262626;
}
.xq .dq a:hover {
  color: var(--blue);
}
.xq_l {
  width: 10.25rem;
  float: left;
}
.xq_l .hd {
  padding-bottom: 0.3rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid #eee;
}
.xq_l .hd .tit {
  text-align: center;
  font-size: 0.34rem;
  color: #404040;
  line-height: 1.4;
  margin-bottom: 0.14rem;
}
.xq_l .hd p {
  font-size: 0.16rem;
  color: #999;
  text-align: center;
}
.xq_l .bd {
  overflow: hidden;
 min-height: 7.5rem;
}
.xq_l .bd_l {
  float: left;
  width: 8%;
}
.xq_l .bd_l .circle {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  text-align: center;
  line-height: 0.48rem;
  font-size: 0.4rem;
  color: #9e9e9e;
  display: block;
  margin: 0 auto;
}
.xq_l .bd_l .browse {
  padding-bottom: 0.18rem;
  margin-bottom: 0.22rem;
  border-bottom: 1px solid #eaeaea;
}
.xq_l .bd_l .browse .circle {
  width: 0.62rem;
  height: 0.62rem;
  line-height: 0.62rem;
  color: #555;
}
.xq_l .bd_l .browse p {
  text-align: center;
  margin-top: 0.1rem;
  color: var(--blue);
  font-size: 0.2rem;
}
.xq_l .bd_l .size {
  text-align: center;
}
.xq_l .bd_l .size .fs {
  font-size: 0.15rem;
  color: #999;
  margin-bottom: 0.14rem;
}
.xq_l .bd_l .size i {
  cursor: pointer;
  font-size: 0.26rem;
  margin-bottom: 0.2rem;
}
.xq_l .bd_l .size i:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.xq_l .bd_r {
  width: 85%;
  float: right;
}
.xq_l .bd_r img {
  max-width: 100%;
  display: inline-block;
  margin: 0.2rem auto;
}
.xq_l .bd_r p {
  font-size: 0.16rem;
  color: #323232;
  line-height: 2;
}
.xq_r {
  width: 3.17rem;
  float: right;
}
.xq_r .tit {
  font-size: 0.24rem;
  color: #fff;
  text-align: center;
  background: url(../img/icon22.png) no-repeat center / 100% 100%;
  width: 100%;
  height: 0.61rem;
  line-height: 0.61rem;
  margin-bottom: 0.22rem;
}
.xq_r a {
  display: block;
}
.xq_r .first {
  height: 1.91rem;
  overflow: hidden;
  position: relative;
}
.xq_r .first img {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.xq_r .first .t {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/icon23.png) no-repeat center / 100% 100%;
  height: 0.75rem;
  padding: 0 0.18rem;
  box-sizing: border-box;
  line-height: 1rem;
  text-align: center;
  transition: all 0.3s;
}
.xq_r .first:hover img {
  transform: scale(1.05);
}
.xq_r .first:hover .t {
  opacity: 0.7;
}
.xq_r .item {
  padding: 0.14rem 0;
  border-bottom: 1px solid #eee;
}
.xq_r .item .t {
  color: #222;
  line-height: 1.5;
}
.xq_r .item .date {
  color: #333;
  font-size: 0.15rem;
  margin-top: 0.1rem;
  display: block;
}
.xq_r .item:hover .t,
.xq_r .item:hover .date {
  color: var(--blue);
}
.yf {
 min-height: 7.5rem;
}
.yf li {
  margin-bottom: 0.24rem;
}
.yf li.on  .bd .pad{
  height: 0.8rem;
  overflow: hidden;
}
.yf li.on .hd i.arrow{
  display: none;
}
.yf .hd {
  display: flex;
  align-items: center;
  background: #f4f7fc;
  padding-left: 0.34rem;
  padding-right: 0.26rem;
  height: 0.79rem;
  cursor: pointer;
}
.yf .hd .dot {
  color: #c3d9f0;
  font-size: 0.16rem;
  margin-right: 0.14rem;
  flex-shrink: 0;
}
.yf .hd p {
  flex: 1;
  font-size: 0.18rem;
  color: #323232;
  font-weight: bold;
  margin-right: 1rem;
}
.yf .hd .arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: #0b62aa;
  font-size: 0.2rem;
  transition: all 0.2s;
}
.yf .bd {
  background: #f4f7fc;
  color: #323232;
  font-size: 0.16rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.yf .bd .pad {
  padding: 0 0.48rem 0.24rem 0.52rem;
  border-bottom: 3px solid var(--blue);
  height: 3.5rem;
  overflow-y: auto;
}
.yf .bd .pad::-webkit-scrollbar-thumb{
  /* width: 0.01rem; */
  background-color: var(--blue);
}
.yf .bd .pad::-webkit-scrollbar{
  width: 0.01rem;
}
.yf .bd p {
  color: #323232;
  font-size: 0.16rem;
  /* margin-bottom: 0.1rem; */
  line-height: .32rem;
  overflow-y: auto;
  max-height: 3rem;
  /* padding-bottom: 0.04rem; */
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
  -ms-overflow-style: none;
}
.yf .bd p::-webkit-scrollbar {
  width: 0.05rem;
  height: 0.05rem;
}
.yf .bd p::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 0.1rem;
}
.yf .bd p::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.1rem;
}
.yf li:hover .arrow,
.yf li.active .arrow {
  transform: rotate(90deg);
}
/* .yf li:hover .bd, */
.yf li.active .bd {
  max-height: 5rem;
}
.yf li.on .bd {
  max-height: 5rem;
}
.wh {
 min-height: 7.5rem;
  padding-bottom: 0.5rem;
}
.wh .pc {
  width: 8.36rem;
  display: block;
  margin: 0 auto;
}
.wh .sj {
  display: none;
}
.sj {
 min-height: 7.5rem;
  padding-bottom: 0.6rem;
}
.sj .item {
  display: flex;
  background: #f1f7fd;
  margin-bottom: 0.27rem;
  padding: 0 0.18rem;
  align-items: center;
}
.sj .item .t {
  color: #323232;
  line-height: 2;
  margin: 0 0.3rem;
  flex: 1;
}
.sj .item img {
  width: 2.33rem;
  height: 1.43rem;
  flex-shrink: 0;
}
.sj .item .num {
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-family: 'Bahnschrift';
  background: linear-gradient(to bottom, rgba(0, 91, 166, 0.1), 8%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sj .item:nth-child(even) {
  flex-direction: row-reverse;
}
.xw1 {
  margin-top: 0.44rem;
 min-height: 7.5rem;
}
.xw1 .xwRow1 .item:hover {
  background: var(--blue);
}
.xw1 .xwRow1 .item:hover .date {
  color: #fff;
  border-color: #fff;
}
.xw1 .xwRow1 .item:hover .t1,
.xw1 .xwRow1 .item:hover .t2 {
  color: #fff;
}
/* .xw1 .xwRow1 .item:nth-of-type(4n+3),
.xw1 .xwRow1 .item:nth-of-type(4n+4) {
  border-color: #bca34a;
}
.xw1 .xwRow1 .item:nth-of-type(4n+3) .date,
.xw1 .xwRow1 .item:nth-of-type(4n+4) .date {
  color: #bca34a;
  border-color: #bca34a;
}
.xw1 .xwRow1 .item:nth-of-type(4n+3):hover,
.xw1 .xwRow1 .item:nth-of-type(4n+4):hover {
  background: #bca34a;
} */
.xw1 .xwRow1 .item:nth-of-type(4n+3):hover .date,
.xw1 .xwRow1 .item:nth-of-type(4n+4):hover .date {
  color: #fff;
  border-color: #fff;
}
.xw1 .xwRow1 .item:nth-of-type(4n+3):hover .t1,
.xw1 .xwRow1 .item:nth-of-type(4n+4):hover .t1,
.xw1 .xwRow1 .item:nth-of-type(4n+3):hover .t2,
.xw1 .xwRow1 .item:nth-of-type(4n+4):hover .t2 {
  color: #fff;
}
.xwRow {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.36rem;
}
.xwRow .item {
  width: 4.49rem;
  margin-right: 0.26rem;
}
.xwRow .item:last-child {
  margin-right: 0;
}
.xwRow .item .imgBox {
  overflow: hidden;
  height: 2.8rem;
}
.xwRow .item .imgBox img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.2s;
}
.xwRow .item .btm {
  background: #fff;
  padding: 0.26rem 0.22rem 0.28rem 0.28rem;
  transition: all 0.3s;
}
.xwRow .item .btm .t1 {
  font-weight: bold;
  font-size: 0.18rem;
  color: #222222;
  line-height: 1.5;
  height: 0.53rem;
  transition: all 0.2s;
}
.xwRow .item .btm .t2 {
  color: #999;
  font-size: 0.15rem;
  line-height: 1.5;
  height: 0.68rem;
  overflow: hidden;
  margin-top: 0.16rem;
  margin-bottom: 0.34rem;
}
.xwRow .item .btm .between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  font-size: 0.15rem;
}
.xwRow .item .btm .between .source {
  max-width: 50%;
}
.xwRow .item .btm .between .date {
  display: inline-flex;
  align-items: center;
}
.xwRow .item .btm .between .date i {
  font-size: 0.2rem;
  margin-right: 0.05rem;
}
.xwRow .item:hover .btm {
  background: var(--blue);
}
.xwRow .item:hover img {
  transform: scale(1.05);
}
.xwRow .item:hover .t1,
.xwRow .item:hover .t2,
.xwRow .item:hover .between {
  color: #fff;
}
.xwRow1 {
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
  display: block;
  text-align: center;
}
.xwRow1 .item {
  /* width: 49%; */
  width: 95%;
  margin: 0 auto;
  margin-bottom: 0.3rem;
  background: #fff;
  display: inline-flex;
  align-items: flex-start;
  padding: 0.2rem 0.22rem 0.22rem 0.26rem;
  box-sizing: border-box;
  border-top: 0.04rem solid var(--blue);
  transition: all 0.3s;
}
.xwRow1 .item .date {
  width: 0.65rem;
  padding-bottom: 0.3rem;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  margin-right: 0.28rem;
  flex-shrink: 0;
  padding-top: 0.05rem;
}
.xwRow1 .item .date span {
  font-size: 0.2rem;
  display: block;
  margin-bottom: 0.08rem;
}
.xwRow1 .item .date small {
  font-size: 0.14rem;
  display: block;
}
.xwRow1 .item .cont {
  flex: 1;
}
.xwRow1 .item .cont .t1 {
  color: #222222;
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 1.5;
  height: 0.54rem;
  margin-bottom: 0.1rem;
  text-align: left;
}
.xwRow1 .item .cont .t2 {
  font-size: 0.15rem;
  color: #999;
  line-height: 1.5;
  height: 0.46rem;
  text-align: left;

}
.xw2 .xwRow .item {
  width: 3.38rem;
  margin-right: 0.12rem;
}
.xw2 .xwRow .item .imgBox {
  height: 2.05rem;
}
.xw2 .xwRow .item .btm {
  padding: 0.26rem 0.26rem 0.26rem 0.22rem;
}
.xw2 .xwRow .item .btm .t2 {
  height: 0.44rem;
}
.xw2 .xwRow1 .item {
  width: 100%;
  margin-bottom: 0.29rem;
  border-top: transparent;
  border-bottom: 0.04rem solid transparent;
}
.xw2 .xwRow1 .item:hover {
  border-bottom-color: var(--blue);
}
.cpBody {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.cpBody .main {
  height: calc(100vh - 2.84rem);
  display: flex;
  width: 100%;
}
.cpBody .main .item {
  width: 25%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}
.cpBody .main .item:last-child {
  border: 0;
}
.cpBody .main .item .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.cpBody .main .item .imgBox .bg {
  width: 100%;
  height: 100%;
  display: block;
}
.cpBody .main .item .imgBox:after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  background: rgba(0, 91, 166, 0.4);
  transition: all 0.2s;
}
.cpBody .main .item .t2 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: auto;
  color: #fff;
  text-align: center;
  z-index: 5;
  transform: translate(-50%, -50%);
  transition: all 1s;
}
.cpBody .main .item .t2 .iBox {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto 0.24rem;
}
.cpBody .main .item .t2 .iBox .cicon {
  max-width: 0.6rem;
  max-height: 0.6rem;
  display: block;
}
.cpBody .main .item .t2 h2 {
  font-size: 0.24rem;
  font-weight: bold;
  margin-bottom: 0.28rem;
}
.cpBody .main .item .t2 i {
  font-size: 0.36rem;
}
.cpBody .main .item .link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  background: rgba(0, 91, 166, 0.9);
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.2s;
  overflow: hidden;
}
.cpBody .main .item dl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-out;
  overflow: hidden;
  height: 100%;
  transition-delay: 0.35s;
}
.cpBody .main .item dl a {
  display: block;
  color: #fff;
  transition: all 0.2s;
}
.cpBody .main .item dl a:hover {
  opacity: 0.6;
}
.cpBody .main .item dl dt {
  font-weight: bold;
  font-size: 0.24rem;
  padding-bottom: 0.82rem;
  position: relative;
}
.cpBody .main .item dl dt.line:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 0.6rem;
  background: #fff;
  transform: translateX(-50%);
  top: 36%;
}
.cpBody .main .item dl dd {
  font-size: 0.18rem;
  margin-bottom: 0.28rem;
  line-height: 1.3;
}
.cpBody .main .item dl dd:last-child{
  margin-bottom: 0;
}
.cpBody .main .item:hover .t2,
.cpBody .main .item.active .t2 {
  transform: translate(-50%, -200%);
  opacity: 0;
}
.cpBody .main .item:hover .link,
.cpBody .main .item.active .link {
  opacity: 1;
}
.cpBody .main .item:hover .link dl,
.cpBody .main .item.active .link dl {
  transform: translateY(0);
  opacity: 1;
}
.cp1 {
  display: flex;
  flex-wrap: wrap;
  width: 103%;
}
.cp1 .item {
  box-shadow: initial;
  width: 3.36rem;
  margin-right: 0.23rem;
  margin-bottom: 0.28rem;
  cursor: pointer;
}
.cp1 .item img {
  width: 100%;
  height: 2.11rem;
}
.cp1 .item .btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.2rem;
  box-sizing: border-box;
  height: 0.62rem;
  transition: all 0.2s;
  position: relative;
}
.cp1 .item .btm .t {
  max-width: 80%;
  color: #333;
  font-size: 0.18rem;
}
.cp1 .item .btm i {
  color: #949494;
  font-size: 0.26rem;
}
.cp1 .item .btm:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.04rem;
  background: var(--blue);
  transition: all 0.25s;
}
.cp1 .item:hover .btm:after {
  width: 100%;
}
.cp1 .item:hover .t {
  color: var(--blue);
  font-weight: bold;
}
.cp1 .item:hover i {
  color: var(--blue);
}
.dj {
  /* display: flex; */
  width: 104%;
  flex-wrap: wrap;
  margin-top: 0.44rem;
 min-height: 7.5rem;
  /* padding-bottom: 1rem; */
}
.dj .item {
  border: 1px solid #ededed;
  margin-right: 0.3rem;
  margin-bottom: 0.36rem;
  padding: 0.2rem 0.18rem 0;
  width: 5.1rem;
  height: 2.32rem;
  box-sizing: border-box;
}
.dj .item:nth-child(2n+2){
  margin-right: 0;
}
.dj .item .imgBox {
  width: 100%;
  height: 1.51rem;
  overflow: hidden;
}
.dj .item .imgBox img {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.dj .item .t {
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  font-weight: bold;
  color: #333;
  font-size: 0.18rem;
  transition: al 0.2s;
}
.dj .item:hover img {
  transform: scale(1.05);
}
.dj .item:hover .t {
  color: var(--blue);
}
.dt .zyHead {
  height: 2.54rem;
}
.wzdt {
  background: #fff;
  height: 6rem;
  position: relative;
  z-index: 3;
  margin-top: -0.66rem;
  overflow: hidden;
  padding: 0.72rem 0.68rem;
  box-sizing: border-box;
}
.wzdt .bg {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -1rem;
  width: 100%;
}
.wzdt ul {
  display: flex;
  justify-content: space-between;
}
.wzdt ul dl {
  width: 1.69rem;
}
.wzdt ul dl a {
  display: block;
}
.wzdt ul dl dt a {
  font-weight: bold;
  color: #323232;
  font-size: 0.2rem;
  padding-bottom: 0.28rem;
  text-align: center;
  position: relative;
}
.wzdt ul dl dt a:hover {
  color: var(--blue);
}
.wzdt ul dl dt a:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 0.03rem;
  height: 0.29rem;
  background: #bdbdbd;
  top: 63%;
  opacity: 0;
  z-index: 10;
  transform: translateX(-50%);
}
.wzdt ul dl .child {
  height: 3.38rem;
  background: linear-gradient(to bottom, #f5f5f5, 90%, transparent);
  padding: 0.1rem 0;
  box-sizing: border-box;
}
.wzdt ul dl dd a {
  height: 0.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  color: #6e6e6e;
}
.wzdt ul dl dd a:hover {
  color: var(--blue);
}
.wzdt ul dl.on dt a:after {
  opacity: 2;
}
.zwsj, .zwsj span {
    
    margin: 0 auto;
    line-height: 1.64rem;
    text-align: center;
    font-size: .28rem;
}
.bordernone{
  border: 0;
  padding: .44rem 0;
}

.mask_img {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}
.mask_img .close {
    color: #fff;
    position: absolute;
    font-size: 0.4rem;
    right: 4rem;
    top: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.mask_img .close:hover {
    transform: rotate(90deg);
}
.mask_img .big{
    width:9.66rem;
    height:6.04rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.special {
    position: relative;
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 2rem;
    margin-bottom: .2rem;
}
.djcont {
    padding: .25rem 0 .31rem .37rem;
}
.djcont dt {
    float: left;
}
.djcont dt img{
    width:3rem;
    height:1.51rem;
}
.djcont dd {
    display: inline-block;
    margin-left: .15rem;
    width:calc(100% - 6rem);
}
.djcont dd p {
    width: 100%;
    font-size: .18rem;
    line-height:.3rem;
    margin: .08rem 0 .2rem 0;
}
.djcont dd a{
    font-weight:700;
    width: 100%;
    color:#333;
    font-size:.18rem;
    line-height:.3rem;
    margin: .08rem 0 .2rem 0;
}
.djcont span {
    float: right;
    display: block;
    background: var(--blue);
    width: 1.88rem;
    height: .5rem;
    text-align: center;
    margin: .5rem .4rem 0 0;
    transition:all .5s;
}
.djcont span a {
    font-size: .18rem;
    color: #FFF;
    display: block;
    line-height: .5rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.djcont span:hover{
    transform:translateY(-.1rem)
}