.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
    transition: .3s;
    max-width: 100vw;
}

.header:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -0.05rem;
    right: 0;
    height: 2rem;
    background: url("../images/header-bg.png") center repeat-x;
    background-size: auto 99%;
    z-index: -1;
    pointer-events: none;
    transition: .5s
}

.header:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: .04rem;
    background-image: linear-gradient(to right, #0883e0, #266dda, #5549d2);
}

.header.on:before {
    height: 1.75rem
}

.header.on {
    transform: translateY(-101%);
    opacity: 0;
}

.header.on1 {
    transform: translateY(0);
    opacity: 1;
}

.header-bg {
    background-image: linear-gradient(to right, #0883e0, #266dda, #5549d2);
}

.header .wp {
    width: 100%;
    max-width: 100%;
    padding: 0 .25rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    margin-top: .1rem;
}

.header .logo img {
    height: .56rem;
}

.header .h-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: .1rem 0;
}

.header .h-right .h-top-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    /*height: .42rem;*/
    align-items: center;
    padding-right: .2rem;
}

.header .h-right .h-top-link ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header .h-right .h-top-link ul li {
    padding:0 .15rem;
    position: relative;
}

.header .h-right .h-top-link ul li:last-child {
    /*margin-left: .2rem;*/
}

.header .h-right .h-top-link ul li a {
    font-size: .14rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    display: block;
    text-align: center;
    line-height: .36rem;
}

.header .h-right .h-top-link ul li:after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: .12rem;
    background: rgba(255, 255, 255, .2);
    top: 50%;
    margin: -.06rem 0 0;
}

/*.header .h-right .h-top-link ul li:nth-child(1):before {*/
/*    display: none*/
/*}*/

.header .h-right .h-top-link .search {
    /*width: 0;*/
    height: .26rem;
    margin-left: .15rem;
    /*background-color: #ffffff;*/
    border-radius: 0.02rem;
    box-sizing: border-box;
    /*padding: 0 0.05rem;*/
    transition: .5s;
}

.header .h-right .h-top-link .search:hover {
    width: 1.8rem;
    background-color: #ffffff;
    padding: 0 0.05rem;
}

.header .h-right .h-top-link .search .search-key {
    height: .26rem;
    width: 0;
    background: #ffffff;
    line-height: .26rem;
    /*padding: 0 .2rem 0 .05rem;*/
    font-size: 0.14rem;
    visibility: hidden;
    transition: .5s;
}

.header .h-right .h-top-link .search:hover .search-key {
    visibility: visible;
    width: 1.36rem;
    padding: 0 .2rem 0 .05rem;

}

.header .h-right .h-top-link .search .search-btn {
    height: .26rem;
    /*width: .26rem;*/
    z-index: 4;
    color: #909399;
    text-align: center;
    line-height: .20rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
}

.header .h-right .h-top-link .search:hover .search-btn {
    width: .26rem;
}

.header .h-right .h-top-link .search .search-btn i {
    font-size: .16rem;
    font-weight: 600;
}

.nav {
    /*margin-top: .04rem;*/
}

.nav ul {
    justify-content: flex-end;
}

.nav ul li {
    padding: 0.04rem .20rem;
    position: relative
}

.nav ul li a {
    font-size: .18rem;
    color: #ffffff;
}

.nav ul li i.icon-plus {
    position: absolute;
    right: 0;
    top: .13rem;
    width: .3rem;
    height: .3rem;
    text-align: center;
    line-height: .3rem;
    color:#fff;
    display: none;
}

.nav ul li .sub {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 99;
    padding-top: .1rem;
    min-width: 1.4rem;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.nav ul li .sub .sub-h {
    text-align: center;
    position: relative;
    background: #fff;
    /*padding: .1rem 0;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.nav ul li .sub .sub-h a {
    display: block;
    font-size: .14rem;
    padding: 0 .1rem;
    margin-bottom: 1px;
    background: #fff;
    white-space: nowrap;
    line-height: .4rem;
    color: #000;
}

.nav ul li .sub .sub-h a:hover {
    background: #eee;
    color: #003284;
}

.nav ul li .sub .sub-h:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
    top: -.16rem;
}

.nav ul li:hover .sub {
    opacity: 1;
    visibility: inherit;
}

.header .nav-btn {
    width: .36rem;
    transition: .3s;
    z-index: 5;
    text-align: center;
    cursor: pointer;
    display: none;
}

.header .nav-btn .icon-nav {
    color: #fff;
    font-size: .36rem;
}

.header .nav-btn .icon-close {
    color: #fff;
    font-size: .36rem;
    display: none;
}

.banner {
    width: 100%;
    height: 100%;
}

.banner .swiper-banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .swiper-slide a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /*height: calc(100vh - .35rem);*/
    min-height: 500px;
}

/*.banner .swiper-banner .swiper-slide .bg video{ width: 100%; height: 100%; object-fit: cover}*/
.banner .swiper-banner .swiper-slide .img:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 20%;
    background-size: 100% 100%;
    z-index: 1;
    bottom: 0;
}

.banner .swiper-banner .swiper-slide .img {
    -webkit-transform: scale(1.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transition: 5s;
    background-size: cover !important;
    background-position: center;
    width: 100%;
}

.banner .swiper-banner .swiper-slide-active .img {
    -webkit-transform: scale(1);
}

.banner .swiper-banner .swiper-slide .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-banner .swiper-btn a {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: block;
    margin-top: -.25rem;
    width: .5rem;
    height: .5rem;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: .2rem;
    line-height: .48rem
}

.banner .swiper-banner .swiper-btn a.prev {
    left: .2rem
}

.banner .swiper-banner .swiper-btn a.next {
    right: .2rem
}

.banner .swiper-banner .swiper-btn a:hover {
    background: rgba(255, 255, 255, .2)
}

.banner .swiper-banner .swiper-fd {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0 0 .3rem;
}

.banner .swiper-banner .swiper-fd:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2.26rem;
    background: url(../images/banner-bottom-bg.png) center bottom repeat-x;
    background-size: auto 99%;
    z-index: -1;
    pointer-events: none;
    transition: .5s;
}

.banner .swiper-banner .swiper-fd .swiper-slide-tit {
    flex: 1;
}
.banner .swiper-banner .swiper-fd .swiper-slide-tit h2 {
    font-size: .3rem;
    color: #fff;
    margin: 0 0 .05rem;
    display: none;
}

.banner .swiper-banner .swiper-fd .swiper-slide-tit h2.active {
    display: block;
}

.banner .swiper-pagination {
    position: unset;
    /*width: auto;*/
    font-size: .3rem;
    /*bottom: .3rem;*/
}


.banner .swiper-pagination .swiper-pagination-bullet {
    border-radius: 4px;
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1;
    margin-left: 8px;
}

.banner .swiper-pagination .active {
    width: .3rem;
}


/*.banner .swiper-slide-duplicate {*/
/*    opacity: 0; !* 隐藏克隆的幻灯片 *!*/
/*}*/


.section-a {
    padding: .6rem 0;
    width: 100%;
    /*background: #f9f9f9;*/
    /*background: #f2f1e9;*/
    /*background: url("../images/seciton-bg0.png") bottom center no-repeat;*/
    background-size: 100% auto;
}

.xyxw {
    width: 100%;
}

.xyxw .box-hd {
    /*border-bottom: 1px solid #e4e7ed;*/
    padding-bottom: .2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.xyxw .box-bd .lbbox {
    width: calc(100% - 4.4rem);
    display: block;
}

.lbbox .swiper-container {
    width: 100%;
}

.lbbox .swiper-container .swiper-slide {
    width: 100%;
    height: 5.2rem;
}

.lbbox .swiper-container .swiper-slide a .img-box {
    overflow: hidden;
    width: 68%;
    height: 100%;
}

.lbbox .swiper-container .swiper-slide a .img-box .img {
    width: 100%;
    height: 5.2rem;
    /*object-fit: cover;*/
    /*transition: all 0.4s ease-in-out;*/
}

.lbbox .swiper-container .swiper-slide a .txt {
    width: 32%;
    height: 5.2rem;
    background:#1764da url(../images/news_bg.png) right bottom no-repeat;
    padding: 0.5rem 0.4rem;
    color: #fff;
}
.lbbox .swiper-container .swiper-slide a .txt h4 {
    font-size: .20rem;
    color: #fff;
    margin-bottom: .15rem;
    line-height: .32rem;
}
.lbbox .swiper-container .swiper-slide a .txt p {
    color: #fff;
    font-size: .16rem;
    line-height: .30rem;
    margin-bottom: .15rem;
}

.lbbox .swiper-container .swiper-slide a .txt .time {
    color: #fff;
    font-size: .16rem;
    line-height: .30rem;
}


.lbbox .swiper-container .swiper-btn a {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: block;
    margin-top: -.25rem;
    width: .5rem;
    height: .5rem;
    border: 1px solid #bbb;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: .2rem;
    line-height: .48rem
}

.lbbox .swiper-container .swiper-btn a.prev {
    left: .2rem
}

.lbbox .swiper-container .swiper-btn a.next {
    right: .2rem
}

.lbbox .swiper-container .swiper-btn a:hover {
    background: rgba(255, 255, 255, .2)
}

.lbbox .swiper-pagination {
    text-align: right;
    bottom: .3rem;
    padding-right: .35rem;
}

.lbbox .swiper-pagination .swiper-pagination-bullet {
    border-radius: 4px;
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1;
}

.lbbox .swiper-pagination .active {
    width: .3rem;
}


.xyxw .box-bd .list {
    width: 4rem;
    background: #fff;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
}

.xyxw .box-bd .list ul li {
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 0.22rem 0.28rem;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid #e8e9e9;
}
.xyxw .box-bd .list ul li.last {
    border: none;
}

.xyxw .box-bd .list ul li .time {
    color: #003284;
    font-size: 0.16rem;
    font-weight: bold;
    line-height: 0.2rem;

    transition: all 0.4s ease-in-out;
}

.xyxw .box-bd .list ul li .txt h4 {
    font-size: .18rem;
    line-height: .28rem;
    height: .56rem;
    color: #303133;
    font-weight: 500;
    margin-bottom: 0.08rem;
}

.xyxw .box-bd .list ul li:hover {
    background-image: linear-gradient(to right, #0883e0, #266dda, #5549d2);
}

.xyxw .box-bd .list ul li:hover a .time,.xyxw .box-bd .list ul li:hover a .txt h4 {
    color: #fff;
}


.section-b {
    padding: .6rem 0;
    width: 100%;
    background: url("../images/section-bg3.png") no-repeat;
    /*background-image: linear-gradient(to right, #0883e0, #266dda, #5549d2);*/
    background-size: cover;
}

.xsjl {
    width: 100%;
    /*background: #fff;*/
    /*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);*/
}

.xsjl .box-hd {
    padding-bottom: .2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.xsjl .box-hd .tit {
    color: #fff;
}

.xsjl .box-hd .more a {
    color: #fff;
}

.xsjl .box-bd {
    position: relative;
    padding: .2rem 0;
}

.swiper-xs {
    width: 100%;
    height: 100%;
}




.swiper-xs .swiper-wrapper .swiper-slide .swiper-slide-con {
    background-color: #ffffff;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-xs .swiper-wrapper .swiper-slide .swiper-slide-con a .img-box .img {
    height: 2rem;
}

.swiper-xs .swiper-wrapper .swiper-slide .swiper-slide-con a .txt {
    height: 1.5rem;
    padding: .15rem .2rem .2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.swiper-xs .swiper-wrapper .swiper-slide .swiper-slide-con a .txt h4 {
    font-size: .18rem;
    line-height: .32rem;
    /*height: .6rem \0;*/
    margin-bottom: .1rem;
    font-weight: normal;
}

.swiper-xs .swiper-wrapper .swiper-slide .swiper-slide-con a .time {
    font-size: .14rem;
    line-height: .22rem;
    color: #909399;
}

.swiper-xs .swiper-btn .swiper-button-prev {
    left: -.6rem;
}

.swiper-xs .swiper-btn .swiper-button-next {
    right: -.6rem;
}

.swiper-xs .swiper-btn .swiper-button-prev, .swiper-btn .swiper-button-next {
    color: #fff;
}


.xsjl .box-fd {
    margin-top: .45rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.xsjl .box-fd .more a {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff;
}

.xsjl .box-fd .more a span {
    display: inline-block;
    padding: 10px 40px;
    background: none;
    color: #fff;
    transition: all 0.4s;
}

.section-c {
    padding: .6rem 0;
    width: 100%;
    /*background: url("../images/section-bg2.png") bottom center no-repeat;*/
    /*background-size: cover;*/
}

.notice {
    width: 100%;
    /*background: #fff;*/
    /*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);*/
}

.notice .box-hd {
    /*padding-bottom: .2rem;*/
    display: flex;
    flex-direction: row;
    align-items: center;
}

.notice .box-bd ul {
    padding-top: .3rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.notice .box-bd ul li {
    width: 32%;
    /*height: .97rem;*/
    border-bottom: .03rem solid #003284;
    background: #fff;
    margin-bottom: .3rem;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
}

.notice .box-bd ul li:hover {
    background-image: linear-gradient(to right, #0883e0, #266dda, #5549d2);
}

.notice .box-bd ul li a .txt {
    position: relative;
    display: flex;
    padding: .3rem .2rem;
    justify-content: space-between;
    align-items: center;
}

.notice .box-bd ul li a .txt time {
    color: #909399;
    text-align: center;
    font-size: .14rem;
}

.notice .box-bd ul li a .txt time span {
    display: block;
    font-size: .28rem;
}

.notice .box-bd ul li a .txt h4 {
    width: calc(100% - .8rem);
    font-size: .18rem;
    line-height: 1.5em;
    height: .51rem \0;
    font-weight: normal;
}

.notice .box-bd ul li:hover a .txt time, .notice .box-bd ul li:hover a .txt h4 {
    color: #ffffff;
}

.section-d {
    padding: .6rem 0;
    width: 100%;
    background: url("../images/section-bg4.png") bottom center no-repeat;
    background-size: cover;
}

.shpg {
    width: 50%;
}
.shpg .box-hd {
    margin-bottom: .45rem;
}
.shpg .box-hd .tit,.shpg .box-hd .more a {
    color: #ffffff;
}

.shpg .box-bd ul li {
    width: 48%;
    height: .97rem;
    border-bottom: .03rem solid #003384;
    background: #fff;
    margin-bottom: .3rem;
}

.shpg .box-bd ul li a .txt {
    position: relative;
    display: flex;
    padding: .2rem;
    justify-content: space-between;
    align-items: center;
}

.shpg .box-bd ul li a .txt time {
    color: #909399;
    text-align: center;
    font-size: .14rem;
}
.shpg .box-bd ul li a .txt time span {
    display: block;
    font-size: .28rem;
}

.shpg .box-bd ul li a .txt h4 {
    width: calc(100% - .8rem);
    font-size: .17rem;
    line-height: 1.5em;
    height: .51rem\0;
    font-weight: normal;
}
.shpg .box-bd ul li a .txt h4 span {
    color: #003384;
}

.shpgimg {
    width: 50%;
    padding-left: .3rem;
}
.shpgimg .box-bd {
    /*height: 4.4rem;*/
    background-image: url("../images/shpg-img-bg.png");
    background-position: right; /* 可选，确保背景图片居中 */
    background-repeat: no-repeat;
    background-size: cover;
    padding: .3rem .3rem .3rem 0;
}

.shpgimg .box-bd .img-box .img {
    padding-bottom: 0;
    height: 3.8rem;
}


.section-e {
    padding: .6rem 0 1rem;
    width: 100%;
    background: url("../images/section-bg2.png") bottom center no-repeat;
    background-size: cover;
}

.ztzl .box-hd {
    padding-bottom: .2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}


.ztzl .box-bd {
    width: 100%;
}

.ztzl .box-bd ul {
    width: 100%;
}

.ztzl .box-bd ul li {
    width: 23%;
    margin-right: 2%;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.ztzl .box-bd ul li:nth-child(4) {
    margin-right: 0;
}

.ztzl .box-bd ul li a .img-box .img {
    padding-bottom: 0;
    height: 1.35rem;
}

.ztzl .box-bd ul li a .txt {
    padding: .15rem .1rem;
}

.ztzl .box-bd ul li a .txt h4 {
    text-align: center;
    font-size: .18rem;
    line-height: .32rem;
    font-weight: normal;
}


.footer {
    width: 100%;
    background-image: radial-gradient(circle, #0284e4, #5245d3);
}

.tft {
    padding: .35rem 0;
    color: #fff;
}

.tft .wp {
    /*align-items: flex-end;*/
}

.tft .item {
    /*flex: auto;*/
    position: relative;
    padding: 0 .3rem;

}

.tft .item .tit {
    font-size: .22rem;
    font-weight: normal;
    margin-bottom: .3rem;
    margin-top: .1rem;
}

.tft .item .info p {
    margin-bottom: .1rem;

}

.tft .tft-a {
    padding-left: 0;

}

.tft .tft-a .logo {
    margin-bottom: .25rem;
    height: .52rem;
}

.tft .tft-c {
    width: 56%;
}

.tft .tft-c .link {
    /*width: 5.6rem;*/
}

.tft .tft-c .link ul li {
    width: 25%;
    margin-bottom: .1rem;
    /*margin-right: .2rem;*/
    float: left;
}

.tft .tft-c .link ul li a {
    color: #fff;
}

.bft {
    width: 100%;
    height: .58rem;
    background: rgba(0, 0, 0, 0.1);
}

.bft p {
    line-height: .58rem;
    color: #fff;
    font-size: .16rem;
}

.advbox {
    position: fixed;
    bottom: .2rem;
    right: .1rem;
    z-index: 1000;
    display: none;
}

.advbox .advpic {
    position: relative;
    height: 1.2rem;
    overflow: hidden;
}

.advbox .advpic img {
    width: 2.4rem;
    height: 1.2rem;
}

.advbox .advpic .closebtn {
    width: .44rem;
    text-align: center;
    line-height: .26rem;
    font-size: .14rem;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}
