@font-face{
	font-family:"mont";
	src:url("../css/fonts/Montserrat-Light.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  position: relative;
  width: 100%;
  scroll-behavior: smooth; /* 启用平滑滚动 */
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
  background: #0b66cc;
}
body::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); */
  background: #DEDEDE;
}
img {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
  transform: scale();
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
:root {
  --font-family: 'mont', 'Serif', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.hamburger {
  display: none;
}
.swiper-container{
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.center{
  width: 1400px;
}
.header-box{
  height: 115px;
  width: calc(100%);
  padding: 0 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
}
.header-box.active,
.header-box.iactive{
  background-color: #0f66c7;
}
.header-box .logo img{
  height: 67px;
}
.header-box .right{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.header-box .right .tp{
  display: flex;
  align-items: center;
  margin-top: 12px;
  margin-right: 110px;
}
.header-box .right .tp a,
.header-box .right .tp span{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
.header-box .right .tp span{
  margin: 0 15px;
}
.header-box .right .tp a:hover{
  text-decoration: underline;
}
.header-box .right .db{
  display: flex;
}
.header-box .right .db .nav{
  display: flex;
}
.header-box .right .db .nav .one:not(:first-of-type){
  margin-left: 65px;
}
.header-box .right .db .nav .one>a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  transition: 0.3s;
  padding-bottom: 35px;
  position: relative;
  display: block;
}
.header-box .right .db .nav .one>a::after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #FAD02C;
  transition: 0.3s;
}
.header-box .right .db .nav .one.active>a,
.header-box .right .db .nav .one>a:hover{
  color: #FAD02C;
}
.header-box .right .db .nav .one.active>a::after{
  width: 100%;
}
.header-box .right .db .nav .one .two{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
  box-shadow: 0px 16px 26px 0px rgb(46 46 46 / 7%);
}
.header-box .right .db .nav .one:hover .two{ 
  opacity: 1;
  transform: scaleY(1);
}
.header-box .right .db .nav .one .two .left{
  width: 20%;
  background-color: #F5F5F5;
}
.header-box .right .db .nav .one .two .left .rq{
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  padding: 52px 0;
}
.header-box .right .db .nav .one .two .left .wa{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #888888;
  transition: 0.3s;
  cursor: pointer;
}
.header-box .right .db .nav .one .two .left .wa:not(:first-of-type){
  margin-top: 25px;
}
.header-box .right .db .nav .one .two .left .wa.active{
  font-size: 20px;
  color: #222222;
  font-weight: bold;
}
.header-box .right .db .nav .one .two .tright{
  width: calc(100% - 20%);
  padding: 52px 100px 52px 80px;
}
.header-box .right .db .nav .one .two .tright .box:not(:first-of-type){
  display: none;
}
.header-box .right .db .nav .one .two .tright .box .rq{
  display: flex;
  justify-content: space-between;
}
.header-box .right .db .nav .one .two .tright .list{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 23% - 15px);
}
.header-box .right .db .nav .one .two .tright .list .it{
  width: calc((100% - 45px) / 4);
  margin-right: 15px;
  margin-bottom: 30px;
}
.header-box .right .db .nav .one .two .tright .list .it:nth-of-type(4n){
  margin-right: 0;
}
.header-box .right .db .nav .one .two .tright .list .it h3{
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  margin-bottom: 18px;
}
.header-box .right .db .nav .one .two .tright .list .it .ab a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  transition: 0.3s;
  display: block;
}
.header-box .right .db .nav .one .two .tright .list .it .ab a:hover{
  color: #FAD02C;
  text-decoration: underline;
}
.header-box .right .db .nav .one .two .tright .list .it .ab a:not(:first-of-type){
  margin-top: 18px;
}
.header-box .right .db .nav .one .two .tright .tpzs{
  width: 23%;
}
.header-box .right .db .nav .one .two .tright .tpzs .ibq{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.header-box .right .db .nav .one .two .tright .tpzs .ibq img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.header-box .right .db .nav .one .two .tright .tpzs:hover .ibq img{
  transform: scale(1.06);
}
.header-box .right .db .nav .one .two .tright .tpzs .wz p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  margin: 17px 0 25px 0;
}
.header-box .right .db .nav .one .two .tright .tpzs .wz a{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  text-decoration-line: underline;
  transition: 0.3s;
}
.header-box .right .db .nav .one .two .tright .tpzs .wz a:hover{
  color: #FAD02C;
}
.header-box .right .db .nav .one:last-of-type{
  position: relative;
}
.header-box .right .db .nav .one .dtwo{
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  background-color: #ffffff;
  padding: 5px 0;
  box-shadow: 0px 10px 25px 0px rgb(46 46 46 / 13%);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
}
.header-box .right .db .nav .one:hover .dtwo{
  opacity: 1;
  transform: scaleY(1);
}
.header-box .right .db .nav .one .dtwo a{
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  transition: 0.3s;
  padding: 9px 19px;
}
.header-box .right .db .nav .one .dtwo a:hover{
  color: #FAD02C;
  text-decoration: underline;
}
.header-box .right .db .bs{
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 80px;
  position: relative;
  cursor: pointer;
}
.header-box .right .db .bs.active p:nth-of-type(1){
  transform: translateY(8px) rotate(45deg);
}
.header-box .right .db .bs.active p:nth-of-type(2){
  transform: rotate(-45deg);
}
.header-box .right .db .bs.active p:nth-of-type(3){
  opacity: 0;
}
.header-box .right .db .bs p{
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s;
}
.header-box .right .db .bs p:last-of-type{
  width: 21px;
}
.header-box .menu{
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  width: 100%;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
  box-shadow: 0px 16px 26px 0px rgb(46 46 46 / 7%);
}
.header-box .menu.active{
  opacity: 1;
  transform: scaleY(1);
}
.header-box .menu .ct{
  margin: 0 auto;
  padding: 50px 0 70px 0;
  display: flex;
  justify-content: space-between;
}
.header-box .menu .ct .item .dy{
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}
.header-box .menu .ct .item .two a{
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  transition: 0.3s;
}
.header-box .menu .ct .item .two a:not(:first-of-type){
  margin-top: 18px;
}
.header-box .menu .ct .item .two a:hover{
  color: #FAD02C;
  text-decoration: underline;
}
.mySwiper{
    width: 100%;
    height: 100vh;
}
.mySwiper .bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s linear;
}
.mySwiper .swiper-slide-active .bg{
  transform: scale(1.1);
}
.mySwiper .ct{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.mySwiper .ct .rq{
    opacity: 0;
    transform: translateY(40%);
    transition: 1.5s;
    transition-delay: 0.4s;
    width: 845px;
}
.mySwiper .swiper-slide-active .ct .rq{
  opacity: 1;
  transform: translateY(0);
}
.mySwiper .ct h3{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 70px;
    color: #FFFFFF;
    line-height: 80px;
}
.mySwiper .ct h6{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    margin: 40px 0 105px 0;
}
.pb-more{
    width: 250px;
    height: 50px;
    background: #FAD02C;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-more:hover span{
    transform: translateX(25px);
}
.pb-more span{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #00071D;
    margin-right: 73px;
    transition: 0.3s;
}
.pb-more p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #00071D;
}
.mySwiper .swiper-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 70px;
}
.mySwiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    opacity: 0.4;
    margin: 0 9px !important;
    transition: 0.3s;
    background-color: #ffffff;
}
.mySwiper .swiper-pagination-bullet-active{
    width: 20px;
    height: 20px;
    opacity: 1;
}
.indu-box{
    background: url('../images/49.jpg') no-repeat center / cover;
    width: 100%;
    padding: 95px 0 180px 0;
    overflow: hidden;
}
.indu-box .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.indu-box .top .left{
    width: 698px;
}
.indu-box .top .left h3{
   font-family: var(--font-family);
   font-weight: 900;
   font-size: 48px;
   color: #FFFFFF;
   line-height: 1;
}
.indu-box .top .left p{
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 16px;
   color: #FFFFFF;
   line-height: 18px;
   margin-top: 27px;
}
.indu-box .top .right{
    display: flex;
}
.indu-box .top .right .qh{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.indu-box .top .right i{
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    transition: 0.3;
}
.indu-box .top .right .qh:hover{
    border-color: #FAD02C;
    background-color: #FAD02C;
}
.indu-box .top .right .qh:hover i{
    color: #000000;
    opacity: 1;
}
.indu-box .top .right .next{
    margin-left: 10px;
}
.induct{
    margin: 40px auto 0;
    /*margin-top: 40px;*/
    /*padding: 0 0 0 calc((100% - 1400px) / 2);*/
}
.induSwiper{
    /*width: 100%;*/
    padding-top: 20px;
}
.induSwiper a{
    display: block;
    width: 100%;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}
.induSwiper a::after{
    display: block;
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(2,107,225,0);
    transition: 0.3s;
}
.induSwiper a:hover{
    transform: translateY(-20px);
}
.induSwiper a:hover::after{
    background-color: rgba(2,107,225,0.4);
}
.induSwiper a:hover .bg{
    filter: blur(1px);
}
.induSwiper a .bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.induSwiper a .flow{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.induSwiper a .flow .icon{
    margin: 0 auto;
    height: 90px;
}
.induSwiper a .flow .txt{
    margin-top: 105px;
}
.induSwiper a .flow .txt h3{
   font-family: var(--font-family);
   font-weight: bold;
   font-size: 36px;
   color: #FFFFFF;
   line-height: 1;
   text-align: center;
}
.induSwiper a .flow .txt .gd{
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 14px;
   color: #FFFFFF;
   text-align: center;
   line-height: 1;
   margin: 0 0 0 0;
   transition: 0.3s;
   opacity: 0;
   transform: translateY(20px);
}
.induSwiper a:hover .flow .txt .gd{
   margin: 28px 0 47px 0;
   opacity: 1;
   transform: translateY(0);
}
.induSwiper a .flow .txt .wz{
    width: 100%;
    height: 111px;
    padding: 0 47px 0 47px;
    transition: 0.3s;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.induSwiper a .flow .txt .wz::before{
    display: block;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 0.3s;
    background: linear-gradient(to right, rgba(250,208,44,1), rgba(250,208,44,0.2));
}
.induSwiper a:hover .flow .txt .wz::before{
    width: 100%;
}
.pj-box{
    width: 100%;
    padding: 122px 0 115px 0;
    background: url('../images/50.jpg') no-repeat center / cover;
}
.pjct{
    margin: 0 auto;
    position: relative;
}
.pjct .sr{
    padding: 0 218px 0 208px;
}
.pjct .qh{
    position: absolute;
    left: 0;
    bottom: -20px;
    display: flex;
    z-index: 1;
}
.pjct .qh .pb{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #BFBFBF;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pjct .qh .pb i{
    font-size: 16px;
    color: #888888;
    transition: 0.3s;
}
.pjct .qh .next{
    margin-left: 10px;
}
.pjct .qh .pb:hover{
    background-color: #FAD02C;
    border-color: #FAD02C;
}
.pjct .qh .pb:hover i{
    color: #333333;
}
.pjct .more{
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 230px;
    height: 50px;
    background: #FAD02C;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    transition: 0.3s;
}
.pjct .more:hover{
    box-shadow: 0px 0px 15px 3px rgba(250,208,44,1);
}
.pjSwiper{
    width: 100%;
    padding-bottom: 105px;
}
.pjSwiper .desc{
    display: flex;
    justify-content: space-between;
}
.pjSwiper .desc .ib{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #E0E4E6;
}
.pjSwiper .desc .ib img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pjSwiper .desc .txt{
    width: calc(100% - 200px - 90px);
    padding-top: 8px;
}
.pjSwiper .desc .txt h3{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: #222222;
    line-height: 1;
}
.pjSwiper .desc .txt h6{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
    height: 96px;
    margin: 42px 0 101px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.pjSwiper .desc .txt .mz{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
    display: flex;
    align-items: center;
}
.pjSwiper .desc .txt .mz span{
    width: 20px;
    height: 1px;
    background-color: #222222;
    margin-right: 10px;
}
.pjSwiper .swiper-pagination{
    bottom: 0px;
    width: max-content;
    left: 290px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 1;
    display: flex;
    align-items: flex-end;
}
.pjSwiper .swiper-pagination .current{
    font-size: 30px;
    /*transform: translateY(4px);*/
    padding-right: 4px;
}
.iab-box{
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    overflow: hidden;
}
.iab-box .marquee{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 209px;
    color: rgba(34, 34, 34, 0.03);
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 43%;
    overflow-x: hidden;
}
.iabct{
    margin: 0 auto;
    padding: 115px 0 92px 0;
    display: flex;
    justify-content: space-between;
}
.pb-h3{
   font-family: var(--font-family);
   font-weight: 900;
   font-size: 48px;
   color: #222222;
   line-height: 1;
}
.iabct .left p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    color: #222222;
    line-height: 1;
    margin-top: 17px;
}
.iabct .right{
    width: 686px;
}
.iabct .right .content{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 30px;
}
.iabct .right .content p:not(:first-of-type){
    margin-top: 15px;
}
.iabct .right .pb-more{
    margin-top: 108px;
}
.pb-title .pb-h3{
    text-align: center;
}
.pb-p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 24px;
  text-align: center;
  margin-top: 25px;
}
.inew-box{
  overflow: hidden;
}
.inewct{
    margin: 0 auto;
    padding: 115px 0 125px 0;
}
.inewct .mide{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}
.inewct .mide .left{
    width: 650px;
}
.inewct .mide .left .tm{
   font-family: var(--font-family);
   font-weight: bold;
   font-size: 24px;
   color: #222222;
   line-height: 24px;
}
.inewct .mide .left .jj{
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 16px;
   color: #222222;
   line-height: 24px;
   margin-top: 22px;
}
.inewct .mide .left a{
   width: 100%;
   height: 410px;
   display: block;
   overflow: hidden;
   border-radius: 60px 0 60px 0;
   position: relative;
   margin-top: 73px;
}
.inewct .mide .left a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}
.inewct .mide .left a .flow{
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FFFFFF;
    width: calc(473px);
    height: 70px;
    padding: 0 40px 0 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 16px 0 0;
}
.inewct .mide .left a .flow .time{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #888888;
    line-height: 1;
}
.inewct .mide .left a .flow .time span{
    transform: translateY(5px);
    padding-right: 5px;
    font-size: 36px;
    color: #222222;
}
.inewct .mide .left a .flow .gd{
    display: flex;
    align-items: center;
}
.inewct .mide .left a .flow .gd p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: #888888;
    margin-right: 20px;
    transition: 0.3s;
}
.inewct .mide .left a .flow .gd .rund{
    width: 36px;
    height: 36px;
    background: #FAD02C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inewct .mide .left a .flow .gd .rund i{
    font-size: 14px;
    color: #333333;
}
.inewct .mide .left a:hover img{
    transform: scale(1.08);
}
.inewct .mide .left a .flow .gd:hover p{
    color: #FAD02C;
}
.inewct .mide .right{
    width: 650px;
}
.inewct .mide .right .qh{
    display: flex;
    justify-content: flex-end;
}
.inewct .mide .right .qh .pb{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #BFBFBF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}
.inewct .mide .right .qh .pb i{
    font-size: 16px;
    color: #888888;
    transition: 0.3;
}
.inewct .mide .right .qh .next{
    margin-left: 10px;
}
.inewct .mide .right .qh .pb:hover{
    background-color: #FAD02C;
    border-color: #FAD02C;
}
.inewct .mide .right .qh .pb:hover i{
    color: #333333;
}
.inewct .mide .right .swb{
    width: 100%;
    height: 410px;
    position: relative;
    margin: 35px 0 110px 0;
}
.inewct .mide .right .swb .inSwiper{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.inewct .mide .right .swb .inSwiper.active{
    z-index: 2;
}
.inewct .mide .right .swb .inSwiper a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 60px 0 60px 0;
}
.inewct .mide .right .swb .inSwiper a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}
.inewct .mide .right .swb .inSwiper a p{
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: var(--font-family);
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    padding: 25px 34px;
}
.inewct .mide .right .swb .inSwiper a:hover img{
    transform: scale(1.07);
}
.inewct .mide .right .type{
    display: flex;
    justify-content: flex-end;
}
.inewct .mide .right .type a{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #555555;
    line-height: 1;
    padding-bottom: 20px;
    transition: 0.3s;
    position: relative;
}
.inewct .mide .right .type a::before{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #0B66CC;
    transition: 0.3s;
}
.inewct .mide .right .type a:hover,
.inewct .mide .right .type a.active{
    color: #0B66CC;
}
.inewct .mide .right .type a.active::before{
    width: 100%;
}
.ss1-box{
    padding: 118px 0 124px 0;
   background: url('../images/ss1.png') no-repeat center / cover;
   overflow: hidden;
}
.ss1-box .top .ct{
    margin: 0 auto;
}
.zpb-title h3{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 36px;
    color: #222222;
    line-height: 1;
}
.zpb-title .line{
    width: 80px;
    height: 3px;
    background: #FAD02C;
    margin-top: 36px;
}
.inewct .mide .right .type a:last-of-type{
    margin-left: 67px;
}
.ss1ct{
    padding-left: calc((100% - 1400px) / 2);
    margin-top: 50px;
}
.ss1Swiper{
    width: 100%;
    padding: 20px 0;
}
.ss1Swiper a{
    display: block;
    width: calc(100%);
    padding: 41px 60px 48px 40px;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.06);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    z-index: 1;
}
.ss1Swiper a::before{
    display: block;
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #FAD02C;
    z-index: -1;
    transition: 0.4s;
}
.ss1Swiper a:hover::before{
    width: 100%;
}
.ss1Swiper a .idx{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #AAAAAA;
    line-height: 1;
    transition: 0.4s;
}
.ss1Swiper a:hover .idx{
    color: #FFFFFF;
}
.ss1Swiper a h3{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 20px;
    color: #222222;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin: 21px 0 21px 0;
}
.ss1Swiper a .line{
    width: 30px;
    height: 3px;
    background: #FCA522;
    transition: 0.4s;
}
.ss1Swiper a:hover .line{
    background: #FFFFFF;
}
.ss1Swiper a p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    /*height: 66px;*/
    /*overflow: hidden;*/
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 3;*/
    margin: 27px 0 47px 0;
}
.ss1Swiper a .more{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    text-decoration-line: underline;
}
.hfcct{
    margin: 0 auto;
    padding: 155px 0 160px 0;
}
.hfcct .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hfcct .top .qh{
    display: flex;
}
.hfcct .top .qh .pb{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #BFBFBF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}
.hfcct .top .qh .pb i{
    font-size: 16px;
    color: #BFBFBF;
    transition: 0.3s;
}
.hfcct .top .qh .pb:hover{
    border-color: #FAD02C;
    background-color: #FAD02C;
}
.hfcct .top .qh .pb:hover i{
    color: #333333;
}
.hfcct .top .qh .pb:last-of-type{
    margin-left: 10px;
}
.hfc-swiper{
    padding-top: 20px;
    margin-top: 31px;
}
.hfc-swiper a{
    display: block;
    width: 100%;
    border-radius: 20px;
    background-color: #F8F8F8;
    overflow: hidden;
    transition: 0.3s;
}
.hfc-swiper a:hover{
    transform: translateY(-20px);
}
.hfc-swiper a img{
    width: 100%;
    height: 280px;
    object-fit:cover;
}
.hfc-swiper a .txt{
    width: calc(100%);
    padding: 17px 30px 40px 30px;
}
.hfc-swiper a .txt h3{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 22px;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.hfc-swiper a .txt p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #888888;
    line-height: 18px;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 25px;
}
.p1banner{
    width: 100%;
    height: 800px;
    position: relative;
}
.p1banner .bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p1banner .ct{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.p1banner .ct .rq{
    width: 700px;
}
.p1banner .ct h3{
   font-family: var(--font-family);
   font-weight: 900;
   font-size: 48px;
   color: #FFFFFF;
   line-height: 52px;
}
.p1banner .ct p{
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 16px;
   color: #FFFFFF;
   line-height: 30px;
   margin: 24px 0 100px 0;
}
.p1banner .ct .more{
    display: flex;
}
.p1banner .ct .more a{
    padding: 13px 32px;
    border-radius: 26px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.p1banner .ct .more a::before{
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FAD02C;
    width: 0;
    height: 100%;
    transition: 0.4s;
    z-index: -1;
}
.p1banner .ct .more a:hover{
    border-color: #FAD02C;
}
.p1banner .ct .more a:hover span{
    color: #222222;
}
.p1banner .ct .more a:hover img{
    filter: brightness(0);
}
.p1banner .ct .more a:hover::before{
    width: 100%;
}
.p1banner .ct .more a span{
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 16px;
   color: #FFFFFF;
   line-height: 1;
   transition: 0.4s;
}
.p1banner .ct .more a img{
    margin-left: 10px;
    transition: 0.4s;
}
.p1banner .ct .more a:last-of-type{
    margin-left: 21px;
}
.p2banner{
    width: 100%;
    height: 450px;
    position: relative;
}
.p2banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p2banner .ct{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30%;
}
.p2banner .ct h1{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
}
.p2banner .ct p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
    margin-top: 23px;
}
.ssbanner{
    width: 100%;
    height: 800px;
    position: relative;
}
.ssbanner .bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ssbanner .ct{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ssbanner .ct h3{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 60px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1;
}
.ssbanner .ct p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    max-width: 80%;
    margin: 36px 0 100px 0;
    line-height: 28px;
}
.ssbanner .ct a{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1;
    padding: 14px 45px;
    border: 1px solid #FFFFFF;
    border-radius: 26px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    overflow: hidden;
}
.ssbanner .ct a::before{
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FAD02C;
    width: 0;
    height: 100%;
    transition: 0.3s;
    z-index: -1;
}
.ssbanner .ct a:hover{
    border-color: #FAD02C;
}
.ssbanner .ct a:hover::before{
    width: 100%;
}
.so2baner{
    width: 100%;
    position: relative;
    height: 760px;
}
.so2baner::after{
    display: block;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1,73,153,0.9);
}
.so2baner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}
.so2baner .ct{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.so2baner .ct img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.so2baner .ct .rq{
    width: 580px;
}
.so2baner .ct h3{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 60px;
    color: #FFFFFF;
}
.so2baner .ct p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    margin: 30px 0 92px 0;
}
.so2baner .ct .more{
    display: flex;
}
.so2baner .ct .more a:last-of-type{
    margin-left: 15px;
}
.so2baner .ct a{
    width: 190px;
    height: 45px;
    border-radius: 22px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.so2baner .ct a:before{
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #FAD02C;
    transition: 0.3s;
    z-index: -1;
}
.so2baner .ct a:hover{
    border-color: #FAD02C;
    color: #222222;
}
.so2baner .ct a:hover::before{
    width: 100%;
}
.s3-box .ct{
    padding: 60px 0 120px 0;
    margin: 0 auto;
}
.s3-box{
    overflow: hidden;
}
.news-d{
    margin-top: 150px;
}
.footer-head .logo{
    margin: 0 auto;
}
@media only screen and (max-width:1560px) {
    .center{
        width: 1100px;
    }
    .header-box .right .db .nav .one:not(:first-of-type){
        margin-left: 40px;
    }
    .header-box .right .db .bs{
        margin-left: 60px;
    }
    .header-box{
        padding: 0 60px;
    }
    .mySwiper .ct{
        top: calc(50% + 4%);
    }
    .mySwiper .ct h3{
        font-size: 50px;
        line-height: 60px;
    }
    .mySwiper .ct h6{
        font-size: 18px;
        line-height: 28px;
    }
    .mySwiper .ct h6{
        margin: 25px 0 70px 0;
    }
    .mySwiper .swiper-pagination{
        bottom: 35px;
    }
    .indu-box .top .left h3{
        font-size: 38px;
    }
    .indu-box .top .left p{
        margin-top: 22px;
    }
    /*.induct{*/
    /*    padding: 0 0 0 calc((100% - 1100px) / 2);*/
    /*}*/
    .induSwiper a{
        height: 450px;
    }
    .induSwiper a .flow .txt .wz{
        padding: 0 27px 0 27px;
    }
    .induSwiper a .flow .txt{
        margin-top: 65px;
    }
    .iabct .right{
        width: 586px;
    }
    .pb-h3{
        font-size: 38px;
    }
    .iabct .left p{
        font-size: 24px;
    }
    .section-title{
        font-size: 38px;
    }
    .pjct .sr{
        padding: 0 158px 0 148px;
    }
    .inewct .mide .left{
        width: 500px;
    }
    .inewct .mide .right{
        width: 500px;
    }
    .inewct .mide .left a{
        height: 350px;
        border-radius: 40px 0 40px 0;
    }
    .inewct .mide .left a .flow{
        width: 383px;
        padding: 0 25px 0 15px;
    }
    .inewct .mide .right .swb{
        height: 350px;
    }
    .inewct .mide .right .swb .inSwiper a{
        border-radius: 40px 0 40px 0;
    }
    .p1banner{
        height: 600px;
    }
    .p1banner .ct h3{
        font-size: 38px;
        line-height: 42px;
    }
    .p1banner .ct p{
        margin: 20px 0 70px 0;
    }
    .p1banner .ct .rq{
        width: 600px;
    }
    .p2banner .ct h1{
        font-size: 38px;
    }
    .ssbanner{
        height: 600px;
    }
    .ssbanner .ct h3{
        font-size: 48px;
    }
    .ssbanner .ct p{
        margin: 26px 0 70px 0;
    }
    .so2baner{
        height: 600px;
    }
    .so2baner .ct h3{
        font-size: 48px;
    }
    .so2baner .ct p{
        margin: 24px 0 62px 0;
    }
    .zpb-title h3{
        font-size: 30px;
    }
    .ss1ct{
        padding-left: calc((100% - 1100px) / 2);
    }
    .ss1Swiper a{
        padding: 31px 50px 38px 30px;
        border-radius: 16px;
        min-height: 380px;
    }
    .ss1Swiper a h3{
        margin: 17px 0 17px 0;
    }
    .ss1Swiper a p{
        margin: 20px 0 40px 0;
    }
    .s3-box .ct{
        padding: 60px 0 100px 0;
    }
    .ss1-box{
        padding: 98px 0 104px 0;
    }
    .hfcct{
        padding: 115px 0 120px 0;
    }
    .hfc-swiper a img{
        height: 200px;
    }
    .hfc-swiper a{
        border-radius: 16px;
    }
    .hfc-swiper a .txt{
        padding: 15px 24px 30px 24px;
    }
    .hfc-swiper a .txt p{
        margin-top: 20px;
    }
    .footer-links li:not(:first-of-type){
        margin-top: 18px;
    }
    .footer-title{
        margin-bottom: 27px;
        padding-bottom: 17px;
    }
    .footer-head{
        margin-bottom: 68px;
    }
    .ftct{
        padding: 85px 0;
    }
    .footer-bottom .ct{
        padding: 35px 0;
    }
}
@media only screen and (max-width: 960px) {
  .hamburger.is-closed .hamb-middle {
    top: 50%;
    transform: translateY(50%);
  }
  .hamburger.is-closed .hamb-top {
    top: 0px;
  }
  .hamburger.is-closed .hamb-bottom {
    bottom: 0px;
  }
  .sidebar-nav {
    z-index: 9;
    background-color: #fff;
    padding: 100px 30px 50px;
  }
  .sidebar-nav .sidebar-brand a {
    color: #222;
  }
  .sidebar-nav .sidebar-brand > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: var(--font-family);
  }
  .sidebar-nav .sidebar-brand .xl {
    padding-bottom: 20px;
  }
  .sidebar-nav {
    overflow-y: scroll;
  }
  .headerwrap_current .header {
    background-color: #1a1a1a;
  }
  .sidebar-nav .sidebar-brand .sidebar-brand-there a {
    font-size: 14px;
  }
  .sidebar-nav .sidebar-brand a .sj {
    border-color: #222;
  }
  .sidebar-nav-two .sidebar-brand-two a {
    box-sizing: border-box;
    padding: 0 20px;
  }
  .sidebar-nav-two .sidebar-brand-there a {
    padding: 0 40px;
  }
  .sidebar-nav-two .sidebar-brand-there .sidebar-brand-four a {
    padding: 0 60px;
  }
  .hamburger {
    height: 16px;
    right: 2.5%;
    width: 20px;
    top: 17px;
    z-index: 10;
    display: block;
  }
  .hamburger.is-closed .hamb-top,
  .hamburger.is-closed .hamb-middle,
  .hamburger.is-closed .hamb-bottom,
  .hamburger.is-open .hamb-top,
  .hamburger.is-open .hamb-middle,
  .hamburger.is-open .hamb-bottom{
    height: 2px !important;
    background-color: #FAD02C;
  }
  .hamburger.is-open .hamb-top,
  .hamburger.is-open .hamb-middle,
  .hamburger.is-open .hamb-bottom{
    background-color: #FAD02C;
  }
  .sidebar-nav .sidebar-brand a .sj{
    border-color: #FAD02C;
  }
  .sidebar-nav-two .sidebar-brand-two a {
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: var(--font-family);
  }
  .sidebar-nav-two .sidebar-brand-there a {
    padding: 0 40px;
  }
  /* .sidebar-nav{
    width: 65%;
  } */
  .message-alert{
    padding: 10px 20px;
    font-size: 14px;
  }
  .center,
  .x-center,
  .c-center,
  .m-center{
    width: 92% !important;
  }
  .app{
    display: block !important;
  }
  .pc{
    display: none !important;
  }
  .seader{
    width: 95%;
  }
  .seader .close{
    right: 0;
    top: -40px;
  }
  .seader .close img{
    height: 30px;
  }
  .seader form{
    width: calc(100% - 6px);
    height: 50px;
    border-width: 3px;
    border-radius: 4px;
  }
  .seader form input{
    width: calc(100% - 100px);
    font-size: 12px;
    padding: 0 10px;
  }
  .seader form button{
    font-size: 12px;
    width: 100px;
  }
  .seader form button img{
    margin-right: 10px;
    height: 16px;
  }
  .header-box .right .db .nav,
  .header-box .right .db .bs{
    display: none;
  }
  .header-box{
    width: calc(100%);
    padding: 0 4%;
    height: 50px;
  }
  .header-box .logo img,
  .header-box .logo{
      height: 37px;
  }
  .header-box .right .tp{
      margin: 0 30px 0 0;
  }
  .header-box .right{
      flex-direction: row;
      align-items: center;
  }
  .header-box .right .tp span{
      margin: 0 10px;
  }
  .mySwiper .ct .rq{
      width: 100%;
  }
  .mySwiper .ct h3{
      font-size: 18px;
      line-height: 24px;
  }
  .mySwiper .ct h6{
      font-size: 14px;
      line-height: 24px;
      margin: 10px 0 25px 0;
  }
  .pb-more{
      width: 180px;
      height: 40px;
  }
  .pb-more:hover span{
      transform: unset;
  }
  .pb-more span{
      margin-right: 25px;
      font-size: 14px;
  }
  .mySwiper{
      height: 330px;
  }
  .mySwiper .ct{
      transform: translateX(-50%);
      top: unset;
      bottom: 45px;
  }
  .mySwiper .ct .rq{
      opacity: 1;
      transform: unset;
  }
  .mySwiper .swiper-pagination{
      bottom: 10px;
  }
  .mySwiper .swiper-pagination-bullet{
      width: 6px;
      height: 6px;
      margin: 0 5px !important;
  }
  .mySwiper .swiper-pagination-bullet-active{
      width: 9px;
      height: 9px;
  }
  .indu-box{
      padding: 60px 0;
  }
  .indu-box .top{
    flex-direction: column;
  }
  .indu-box .top .left{
    width: 100%;
  }
  .indu-box .top .left h3{
    font-size: 20px;
  }
  .indu-box .top .left p{
    font-size: 14px;
    margin-top: 10px;
  }
  .indu-box .top .right{
    margin-top: 35px;
  }
  .indu-box .top .right .qh{
    width: 38px;
    height: 38px;
  }
  .induct{
    margin: 15px auto 0;
  }
  .induSwiper{
    padding-top: 0;
  }
  .induSwiper a{
    height: 400px;
  }
  .induSwiper a:hover{
    transform: unset;
  }
  .induSwiper a .flow .icon{
    height: 75px;
  }
  .induSwiper a .flow .txt{
     margin-top: 50px;
  }
  .induSwiper a .flow .txt h3{
    font-size: 20px;
    padding: 0 15px;
  }
  .induSwiper a .flow .txt .wz{
      padding: 0 15px 0 15px;
      font-size: 14px;
      line-height: 18px;
      height: 100px;
  }
  .induSwiper a .flow .txt .gd{
      margin: 23px auto 40px;
      opacity: 1;
      transform: translateY(0);
      padding: 0 15px;
  }
  .induSwiper a:hover .flow .txt .gd{
      margin: 23px 0 40px 0;
  }
  .induSwiper a .flow .txt .wz::before{
      width: 100%;
  }
  .iabct{
      flex-direction: column;
      padding: 125px 0 60px 0;
  }
  .iabct .left{
      width: 100%;
  }
  .pb-h3{
      font-size: 20px;
  }
  .iabct .left p{
      font-size: 17px;
      margin-top: 10px;
  }
  .iabct .right{
      width: 100%;
      margin-top: 25px;
  }
  .iabct .right .content{
      font-size: 14px;
      line-height: 22px;
  }
  .iabct .right .content p:not(:first-of-type){
      margin-top: 10px;
  }
  .iabct .right .pb-more{
      margin-top: 45px;
  }
  .iab-box .marquee{
      bottom: unset;
      top: 50px;
      width: 100%;
      font-size: 52px;
      color: rgba(34, 34, 34, 0.07);
  }
    .section-title{
        font-size: 20px;
        width: 92%;
        margin: 0 auto;
    }
    .section-subtitle{
        font-size: 14px;
        margin: 10px auto 0;
        width: 92%;
    }
  .pj-box{
      padding: 60px 0;
  }
  .pjct .sr{
      width: 100%;
      padding: 0;
  }
  .pjSwiper{
      padding-bottom: 100px;
  }
  .pjSwiper .desc{
      flex-direction: column;
      align-items: center;
  }
  .pjSwiper .desc .ib{
      width: 120px;
      height: 120px;
  }
  .pjSwiper .desc .txt{
      width: 100%;
      margin-top: 25px;
  }
  .pjSwiper .desc .txt h3{
      font-size: 18px;
  }
  .pjSwiper .desc .txt h6,
  .pjSwiper .desc .txt .mz{
      font-size: 14px;
      line-height: 20px;
  }
  .pjSwiper .desc .txt h6{
      margin: 10px 0 35px 0;
  }
  .pjSwiper .swiper-pagination{
      left: 50%;
      transform: translateX(-50%);
      bottom: 75px;
      font-size: 14px;
  }
  .pjSwiper .swiper-pagination .current{
      font-size: 18px;
  }
  .pjct .more{
      width: 180px;
      height: 40px;
      font-size: 14px;
      bottom: 0;
  }
  .pjct .qh .pb{
      width: 38px;
      height: 38px;
  }
  .pjct .qh{
      bottom: 0;
      z-index: 8;
  }
  .pb-p{
      font-size: 14px;
      margin-top: 10px;
      line-height: 20px;
  }
  .inewct{
      padding: 60px 0;
  }
  .inewct .mide{
      flex-direction: column;
      margin-top: 30px;
  }
  .inewct .mide .left{
      width: 100%;
  }
  .inewct .mide .left .tm{
      font-size: 14px;
      line-height: 20px;
  }
  .inewct .mide .left .jj{
      font-size: 14px;
      line-height: 20px;
      margin-top: 10px;
  }
  .inewct .mide .left a{
      margin-top: 20px;
      height: 200px;
      border-radius: 16px 0 16px 0;
  }
  .inewct .mide .left a .flow .time span{
      font-size: 20px;
  }
  .inewct .mide .left a .flow{
      width: 90%;
      height: 60px;
  }
  .inewct .mide .left a .flow .gd p{
      margin-right: 10px;
      font-size: 14px;
  }
  .inewct .mide .right{
      width: 100%;
      margin-top: 60px;
      padding: 40px 0 60px 0;
      position: relative;
  }
  .inewct .mide .right .swb{
      height: 200px;
      margin: 0;
  }
  .inewct .mide .right .swb .inSwiper a{
      border-radius: 16px 0 16px 0;
  }
  .inewct .mide .right .swb .inSwiper a p{
      font-size: 14px;
      padding: 15px;
  }
  .inewct .mide .right .qh{
      justify-content: center;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
  }
  .inewct .mide .right .qh .pb{
      width: 38px;
      height: 38px;
  }
  .inewct .mide .right .type{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      justify-content: center;
  }
  .inewct .mide .right .type a{
      font-size: 16px;
      padding-bottom: 10px;
  }
  .inewct .mide .right .type a:last-of-type{
      margin-left: 30px;
  }
  .p1banner{
      height: 350px;
  }
  .p1banner .ct .rq{
      width: 100%;
  }
  .p1banner .ct h3{
      font-size: 18px;
      line-height: 22px;
  }
  .p1banner .ct p{
      font-size: 14px;
      margin: 10px 0 30px 0;
      line-height: 20px;
  }
  .p1banner .ct .more{
      justify-content: space-between;
  }
  .p1banner .ct .more a{
      width: calc((100% - 15px) / 2);
      padding: 0;
      height: 36px;
      justify-content: center;
  }
  .p1banner .ct .more a:last-of-type{
      margin-left: 0;
  }
  .p1banner .ct .more a span{
      font-size: 14px;
  }
  .ssbanner{
      height: 280px;
  }
  .ssbanner .ct h3{
      font-size: 20px;
  }
  .ssbanner .ct p{
      width: 100%;
      max-width: 100%;
      font-size: 14px;
      line-height: 20px;
      margin: 10px 0 20px 0;
  }
  .ssbanner .ct a{
      font-size: 14px;
      padding: 10px 25px;
  }
  .ssbanner .ct{
      top: calc(50% + 8%);
  }
  .so2baner{
      height: 280px;
  }
  .so2baner .ct{
      top: calc(50% + 8%);
  }
  .so2baner .ct .rq{
      width: 100%;
  }
  .so2baner .ct h3{
      font-size: 20px;
  }
  .so2baner .ct .more{
      justify-content: space-between;
  }
  .so2baner .ct p{
      font-size: 14px;
      line-height: 20px;
      margin: 10px 0 20px 0;
  }
  .so2baner .ct a{
      width: calc((100% - 15px) / 2);
      height: 38px;
      font-size: 14px;
  }
  .so2baner .ct .more a:last-of-type{
      margin-left: 0;
  }
  .s3-box .ct{
      padding: 60px 0;
  }
  .social-icons{
      margin-left: 0;
  }
  .social-icon{
      width: 38px;
      height: 38px;
  }
  .copyright{
      font-size: 12px;
      line-height: 18px;
      margin-top: 10px;
  }
  .ss1-box{
    padding: 60px 4% 40px 4%;  
  }
  .zpb-title h3{
      font-size: 20px;
  }
  .zpb-title .line{
      width: 35px;
      margin-top: 11px;
  }
  .ss1ct{
      margin-top: 10px;
      padding-left: 0;
  }
  .ss1Swiper a{
      border-radius: 10px;
      padding: 17px 20px 23px 20px;
      min-height: unset;
  }
  .ss1Swiper a .idx{
      font-size: 14px;
  }
  .ss1Swiper a h3{
      font-size: 16px;
      margin: 13px 0 13px 0;
  }
  .ss1Swiper a .line{
      width: 24px;
  }
  .ss1Swiper a p{
      line-height: 20px;
      height: 60px;
      margin: 13px 0 25px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .ss1Swiper a .more{
      font-size: 14px;
  }
  .hfcct{
      padding: 60px 0;
  }
  .hfcct .top{
      flex-direction: column;
      align-items: flex-start;
  }
  .hfcct .top .qh{
      margin-top: 35px;
  }
  .hfcct .top .qh .pb{
      width: 38px;
      height: 38px;
  }
  .hfcct .top .qh .pb:last-of-type{
      margin-left: 15px;
  }
  .hfc-swiper{
      padding-top: 0;
      margin-top: 15px;
  }
  .hfc-swiper a{
      border-radius: 10px;
  }
  .hfc-swiper a .txt p{
      margin-top: 17px;
  }
  .news-d{
      margin-top: 50px;
  }
    .p2banner .ct h1{
        font-size: 20px;
    }
    .p2banner .ct p{
        font-size: 14px;
        margin: 10px auto 0;
    }
    .p2banner{
        height: 220px;
    }
  .ftct{
      padding: 30px 0;
  }
  .footer-head{
      margin-bottom: 0;
  }
  .footer-head .logo{
      height: 59px;
  }
  .footer-container{
    display: none;
  }
  .footer-bottom .ct{
      flex-direction: column-reverse;
      padding: 25px 0 15px 0;
  }
}