.head {
    width: 100%;
    height: 180px;
    background: #004EA1;
    transition: all 0.3s ease;
}

.head.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.head .top {
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

.xsuplist {
    width: 100%
}

.nLi.li1 .ejnav {
    display: none
}

.head .top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head .tright {
    display: flex;
    align-items: center;
}

.head .tleft a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
}

.head .tleft span {
    color: rgba(255, 255, 255, 0.52);
}

.head .tright .box1 a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
}

.head .tright .box1 span {
    color: rgba(255, 255, 255, 0.52);
    margin: 0 5px;
}

.head .tright .box2 {
    margin-left: 20px;
}

.head .tright .box2 a {
    /* width: 24px;
    height: 27px;
    line-height: 27px; */
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-left: 13px;
    color: rgba(255, 255, 255, 0.52);
    /* background: url(../img/dbx-ico.png) no-repeat; */
}

.head .tright .box2 span {
    color: rgba(255, 255, 255, 0.52);
    margin: 0 5px;
}

.headBox {
    height: 140px;
    box-sizing: border-box;
    padding-top: 15px;
}

.headBox .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.headBox h1 {
    margin-right: 20px;
}

.headBox h1 img {
    max-height: 92px;
}

/* ---- nav ---- */
.navigation {
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -15px;
}

.nav {
    width: 97%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav a {
    color: #fff;
}

.nav .nLi {
    flex: 1;
    float: left;
    height: 100%;
    text-align: center;
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .nLi::before {
    content: '';
    width: 40px;
    height: 20px;
    background: url(../img/nav-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 20px;
    opacity: 0;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
}

.nav .nLi:hover::before,
.nav .nLi.on::before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.nav .nLi h3 a {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.nav .sub {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    top: 100%;
    position: absolute;
    background: rgba(0, 78, 161, 0.53);
    backdrop-filter: blur(10px);
    line-height: 60px;
    left: 0;
    border-top: 2px solid #FF710C;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}


.nav .sub li {
    height: 58px;
    line-height: 58px;
    text-align: center;
    color: #000;
    zoom: 1;
    float: left;
    width: 100%;
    position: relative;
}

.nav .sub a {
    display: block;
    color: #fff;
    font-size: 18px;
}

.nav .sub li:hover {
    background: rgba(6, 54, 106, 0.62);
}

.nav .sub li:hover a {
    color: #fff;
}

.nav .on h3 a,
.nav .nLi:hover h3 a {
    font-weight: bold;
}

.nav .nLi:hover .sub {
    opacity: 1;
    visibility: visible;
}

.nav .nLi.on h3 a,
.nav .nLi:hover h3 a {
    color: #fff;
}

.nav .sub li .three-nav {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    width: 125px;
    background: rgba(255, 146, 12, 0.63);
    backdrop-filter: blur(20px);
}

.nav .sub li .three-nav a {
    font-size: 16px;
}

.nav .sub li:hover .three-nav {
    display: block;
}

/* ---- nav ----- */

.banlist {
    position: relative;
}

.banlist .swiper-slide a {
    width: 100%;
    display: inline-block;
}

.banlist .swiper-slide {
    position: relative;
}

.banlist .swiper-slide img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.banlist .swiper-slide img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.banlist .swiper-slide-active img {
    animation: img_scale linear 9s;
}


@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}


.banlist .swiper-slide::before {
    content: '';
    width: 100%;
    height: 160px;
    display: inline-block;
    background: url(../img/banMark.png) bottom center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
}

.banlist .Tonext {
    width: 100%;
    bottom: 40px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.Tonext .container {
    position: relative;
}

.Tonext .cont {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}


.Tonext .cont .ico {
    width: 17px;
    height: 24px;
    display: inline-block;
    background: url(../img/sb-ico.png) center no-repeat;
    margin-right: 10px;
    animation: slideUp 3s linear infinite;
    position: relative;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.Tonext .cont .name {
    color: #fff;
}

.banlist .swiper-pagination {
    position: static;
    padding-bottom: 20px;
    text-align: right;
    border-bottom: 1px solid #fff;
}


.banlist .swiper-pagination-bullet {
    width: 66px;
    height: 34px;
    opacity: .7;
    margin: 0 10px;
    background: url(../img/bullet-ico.png) no-repeat;
    border-radius: unset;
    background-size: cover;
}

.banlist .swiper-pagination-bullet-active {
    opacity: 1;
    background: url(../img/bullet-ico2.png) no-repeat;
    background-size: cover;
}



.nydt {
    position: relative;
}

.nydt img {
    width: 100%;
}

.content2 {
    width: 100%;
    height: 960px;
    /* height: auto;  */
    padding-bottom: 75px;

    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/content2Bg.jpg);
}

.content2 .column .more2 {
    position: absolute;
    right: 0;
}

.crumbs {
    width: 100%;
    height: 65px;
    line-height: 65px;
    background: url(../img/crumbsBg.png) left center no-repeat;
    position: absolute;
    bottom: -35px;
    left: 0;
}

.crumbs-list {
    font-size: 16px;
    color: #fff;
}

.crumbs-list span:last-of-type {
    display: none;
}

.crumbs-list a {
    color: #fff;
}

.crumbs2 {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
}

.crumbs2 .crumbs-name {
    font-size: 48px;
    color: #fff;
}

.ncontent {
    padding: 107px 0 72px 0;
}

.ncontent .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ncontent .nleft {
    width: 69%;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    padding: 20px 0;
}

.ncontent .nright {
    width: 26%;
}

.textlist .box {
    width: 100%;
    height: 115px;
    box-sizing: border-box;
    padding: 0 70px;
}

.textlist .box a {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #D8D8D8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.textlist .box .title {
    color: #3D3D3D;
    width: calc(100% - 110px);
}

.textlist .box .dete {
    color: #888;
    min-width: 105px;
    text-align: right;
}

.textlist .box:hover {
    background: #004EA1;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

.textlist .box:hover .title,
.textlist .box:hover .dete {
    color: #fff;
}


.zxdtlist {
    width: 100%;
    background: #F1F8FF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 30px;
}

.nright .col-name {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D8D8D8;
}

.nright .col-name a {
    color: #004EA1;
}

.zxdtlist ul li {
    width: 100%;
    margin-bottom: 35px;
}

.zxdtlist ul li:last-of-type {
    margin-bottom: 0;
}

.zxdtlist ul li .title {
    line-height: 26px;
    color: #3D3D3D;
    margin-bottom: 10px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.zxdtlist ul li .dete {
    color: #999;
    position: relative;
}

.zxdtlist ul li .dete .ico {
    width: 25px;
    height: 8px;
    background: url(../img/zxdt-more.png) center no-repeat;
    position: absolute;
    right: 0;
    display: inline-block;
    bottom: 8px;
}

.zxdtlist ul li:hover .title {
    color: #004EA1;
    font-weight: bold;
    left: 5px;
    transition: all 0.5s ease-in-out;
}

.mtjjlist {
    width: 100%;
    margin-top: 35px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 30px;
}

.mtjjul .box {
    width: 100%;
    position: relative;
    margin-bottom: 18px;
}

.mtjjul .box:last-of-type {
    margin: 0;
}

.mtjjul .box .img {
    overflow: hidden;
}

.mtjjul .box .img img {
    width: 100%;
    height: 223px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.mtjjul .box .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    height: 58px;
    line-height: 58px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
}

.mtjjul .box .column-name {
    position: absolute;
    left: -10px;
    top: 23px;
    width: auto;
    height: 33px;
    line-height: 33px;
    font-weight: bold;
    color: #fff;
    padding: 0 20px;
    background: rgba(0, 73, 152, 0.72);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.mtjjul .box .column-name::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/mtjj-ico.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 33px;
}

.mtjjul .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.list-page {
    width: 100%;
    margin: 40px 0;
}


/* -------------------------------------------- */
footer {
    width: 100%;
    background: #004998;
    background: linear-gradient(270deg, #004998 1%, #004998 52%, #004998 100%);
    box-sizing: border-box;
    padding: 40px;
    overflow: hidden;
}

footer .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

}

footer .banq {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 32px;
    text-align: left;
}

footer .banq a {
    color: rgba(255, 255, 255, 0.6);
}



footer .foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* margin-bottom: 15px; */
}

footer .img {
    display: flex;
    flex-direction: column;
}

footer .img img {
    margin: 10px 0;
}

footer .img img:last-of-type {
    margin-bottom: 0;
}

footer .contact .box {
    display: flex;
    margin-bottom: 20px;
}

footer .contact .box2 {
    display: flex;
    align-items: center;
}

footer .contact .box2 .box {
    margin: 0 25px 0 0;
}

footer .contact .ico {
    width: 37px;
    height: 37px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


footer .contact .tt p {
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.ftlink {
    width: 324px;
    display: flex;
    flex-direction: column;
}

.ftlink .box {
    width: 324px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    margin-bottom: 26px;
    background: #0C5EB6;
}

.ftlink .box h3 {
    width: 100%;
    line-height: 40px;
    box-sizing: border-box;
    padding-left: 20px;
    cursor: pointer;
    color: #DFDFDF;
}

.ftlink .box .ico {
    width: 17px;
    height: 8px;
    background: url(../img/sjx-ico.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 16px;
    transition: all 0.5s ease-in-out;
}

.ftlink .box .item {
    background: #fff;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999;
    left: 0;
    max-height: 164px;
    overflow-y: auto;
}

.ftlink .box .item::-webkit-scrollbar-track {
    position: absolute;
    background-color: #ddd9d9;
}

.ftlink .box .item::-webkit-scrollbar {
    width: 4px;
    height: 5px;
}

.ftlink .box .item::-webkit-scrollbar-thumb {
    background-color: #1EA6E0;
}

.ftlink .box .item a {
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: #333;
    font-size: 15px;
    display: inline-block;
    border-bottom: 1px dashed #d8d8d8;
}

.ftlink .box:hover .ico {
    /* 鑼呴垾鏂呬急銉拷婧撅拷鐏汇儮锟解挋顐€鈹炩檧锟芥◤锟� 鑱鸿剻楣胯寘閳ユ緹璇ヮ嚪鏌拷180鑼呴垾鎾€濮戭灒鎹栫柕锔癸拷瀛わ拷 */
    transform: rotate(180deg);
    transition: all 0.5s ease-in-out;
}

.ftlink .box .item a:hover {
    color: #0062B2;
}

.ftlink .box .item {
    display: none;
}

.ftlink .box:hover .item {
    display: block;
}

/* ---------------------------------------------------------------- */

.piclist {
    box-sizing: border-box;
}

.piclist .box {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 70px;
}

.piclist .box a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 35px 0;
    border-bottom: 1px solid #D8D8D8;
}

.piclist .box .img {
    width: 282px;
    overflow: hidden;
}

.piclist .box .img img {
    width: 100%;
    height: 170px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.piclist .box .tt {
    flex: 1;
    box-sizing: border-box;
    padding-left: 40px;
}

.piclist .box .tt .title {
    color: #3D3D3D;
}

.piclist .box .tt .xian {
    width: 40px;
    height: 2px;
    background: #004EA1;
    display: inline-block;
    margin: 15px 0 20px 0;
}

.piclist .box .tt .desc {
    line-height: 30px;
    color: #777;
    height: 60px;
}

.piclist .box .tt .dete {
    color: #456C96;
    margin-top: 17px;
}

.piclist .box:hover {
    background: #004EA1 url(../img/qxblIco.png) right center no-repeat;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

.piclist .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.piclist .box:hover .title {
    color: #fff;
}

.piclist .box:hover .xian {
    background: #FF920C;
}

.piclist .box:hover .desc {
    color: #fff;
}

.piclist .box:hover .dete {
    color: #fff;
}

.piclist .box:hover a {
    border-bottom: 1px solid #004EA1;
}

.detail {
    box-sizing: border-box;
    padding: 50px 120px;
}

.detail .name {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 50px;
    color: #3D3D3D;
}

.detail .timer {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
    border-bottom: 1px solid #D8D8D8;
}

.detail .timer>div {
    color: #666;
    margin: 0 10px;
    line-height: 22px;
}

.detail .timer>div img {
    position: relative;
    top: -1px;
    margin-right: 5px;
}

.detail .dtl {
    padding: 50px 0 0 0;
    position: relative;
}


.detail .dtl p {
    font-size: 16px;
    line-height: 30px;
    color: #3D3D3D;
    margin: 10px 0;
    word-break: break-all;
}

.detail .dtl p img {
    max-width: 100%;
    height: auto !important;
}

.detail .dtl p video {
    max-width: 100%;
    height: auto !important;
}

.xgxwlist .col-name {
    font-size: 24px;
    font-weight: 500;
    color: #004EA1;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
}

.xgxwlist .list .box {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-bottom: 0.5px solid #CDCDCD;
}

.xgxwlist .list .box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xgxwlist .list .box .title {
    color: #3D3D3D;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.xgxwlist .list .box .dete {
    color: #004EA1;
}

.xgxwlist .list .box:hover .title {
    color: #004998;
    left: 5px;
    transition: all 0.5s ease-in-out;
}

.m-share {
    position: absolute;
    left: -80px;
    top: 40px;
    width: 45px;
}

.share {
    zoom: 1;
}

.share:after {
    content: "";
    display: block;
    clear: both;
}

.share a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
}

.share a i {
    display: block;
    width: 45px;
    height: 45px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    transition: .4s all;
}

.share a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.share #share-icon {
    width: 26px;
    height: 26px;
    float: left;
    display: none;
}

.share #share-icon img {
    width: 100%;
    height: 100%;
}

.share .share-wechat {
    position: relative;
    background-color: none;
}

.share .share-wechat i {
    background: url("../img/detail-wx.png") center center no-repeat;
}

.share .share-wechat:hover {
    background-color: none;
}

.share .share-weibo {
    background: none;
}

.share .share-weibo i {
    background: url("../img/detail-wb.png") center center no-repeat;
}

.share .share-weibo:hover {
    background-color: none;
}

.share .bg-code {
    left: -36px;
    z-index: 10;
}

.share .qrcode {
    position: absolute;
    top: 55px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    display: none;
    width: 100px;
    height: 100px;
    left: -86%;
    z-index: 11;
    text-align: center;
}

.share .close-btn {
    position: absolute;
    background: #fff;
    color: #000;
    font-size: 12px;
    z-index: 12;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    right: -39px;
    top: 50px;
    display: none;
    cursor: pointer;
}

.danye .dtl {
    padding: 0;
}


/* ------------------ */

.content1 {
    width: 100%;
    background: url(../img/content1Bg.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 80px;
    overflow: hidden;
}



.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 85px 0 53px 0;
}

.content2 .column .more {
    position: absolute;
    right: 0;

}

.column .more {
    position: relative;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.column .more:hover {
    top: 10px;
    transition: all 0.5s ease-in-out;
}


.main-xxyw {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.xxywlist {
    width: 24.5%;
    background: linear-gradient(270deg, rgba(233, 236, 247, 0) 0%,
            rgba(233, 236, 247, 0.53) 100%);
    box-sizing: border-box;
    padding: 36px 0 36px 43px;
    margin-top: -30px;
}

.xxywlist li {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.xxywlist li::before {
    content: '';
    width: 0;
    height: 1px;
    display: inline-block;
    background: #004EA1;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: all 0.5s ease-in-out;
}

.xxywlist li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.xxywlist li:last-of-type {
    margin-bottom: 0;
}

.xxywlist li .title {
    line-height: 26px;
    height: 52px;
    color: #3D3D3D;
    font-size: 17px;
    margin-bottom: 10px;
    position: relative;
    left: 0;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.xxywlist li .dete {
    color: #999;
    position: relative;
}

.xxywlist li .dete img {
    position: relative;
    top: -2px;
}

.xxywlist li .dete .ico {
    width: 25px;
    height: 8px;
    background: url(../img/zxdt-more.png) center no-repeat;
    position: absolute;
    right: 0;
    display: inline-block;
    bottom: 8px;
}

.xxywlist li .dete .ico2 {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/dete-ico.png) no-repeat;
    background-size: cover;
    position: relative;
    top: 1px;
}

.xxywlist li:hover .dete .ico2 {
    background: url(../img/dete-ico4.png) no-repeat;
    background-size: cover;
}

.xxywlist li:hover .title {
    color: #004EA1;
    left: 5px;
    transition: all 0.5s ease-in-out;
}

.xxywlist li:hover .dete {
    color: #FF920C;
}

.xxywSlide {
    width: 61%;
    position: relative;
    z-index: 99;
}

.xxywSlide .swiper-slide {
    padding-bottom: 20px;
}

.xxywSlide .swiper-slide a {
    width: 100%;
}

.xxywSlide .swiper-slide .img {
    overflow: hidden;
}

.xxywSlide .swiper-slide .img img {
    width: 100%;
    height: 586px;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.xxywSlide .swiper-slide:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.xxywSlide .swiper-slide .dete {
    width: 192px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    border-radius: 0px 0px 15px 0px;
    background: rgba(0, 73, 152, 0.78);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xxywSlide .swiper-slide .dete .ico {
    width: 21px;
    height: 21px;
    margin-right: 10px;
    background: url(../img/dete-ico3.png) no-repeat;
}

.xxywSlide .swiper-slide .title {
    width: 77.5%;
    /* height: 64px; */
    color: #fff;
    line-height: 30px;
    background: #004998;
    box-sizing: border-box;
    padding-left: 30px;
}

.xxywImg {
    display: none;
}

.xxywSlide .swiper-pagination {
    position: absolute;
    right: -200px;
    right: -193px;
    top: 0;
    display: flex;
    flex-direction: column;
}

.xxywSlide .swiper-pagination-bullet {
    width: 170px;
    height: 103px;
    opacity: 1;
    margin-bottom: 18px;
    background: none;
}


.xxywSlide .swiper-pagination .box img {
    width: 170px;
    height: 103px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.xxywSlide .swiper-pagination .box:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.xxywSlide .swiper-prev,
.xxywSlide .swiper-next {
    width: 26px;
    height: 26px;
    bottom: 8%;
}

.xxywSlide .swiper-prev {
    position: absolute;
    right: 80px;
    z-index: 99;
    cursor: pointer;
    background: url(../img/prwev-ico.png) center no-repeat;
}

.xxywSlide .swiper-next {
    position: absolute;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    background: url(../img/newxt-ico.png) center no-repeat;
}

.xxywSlide .swiper-prev:hover {
    background: url(../img/prwev-ico2.png) center no-repeat;
}

.xxywSlide .swiper-next:hover {
    background: url(../img/newxt-ico2.png) center no-repeat;
}

.content3 {
    width: 100%;
    background: url(../img/content3Bg.png) center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding-bottom: 60px;
}

.sykxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.sykxlist .box {
    width: calc((100% - 40px) / 2);
    height: 53px;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;
    padding: 0 25px;
}

.sykxlist .box a {
    height: 100%;
    display: flex;
    align-items: center;
}

.sykxlist .box:hover {
    background: #FF920C;
}

.sykxlist .box .ico {
    width: 30px;
    height: 28px;
    background: url(../img/xykx-li-ico.png) no-repeat;
    display: inline-block;
    margin-right: 15px;
}

.sykxlist .box:hover .ico {
    background: url(../img/xykx-li-ico2.png) no-repeat;
}

.sykxlist .box .dete {
    color: #999;
    position: absolute;
    right: 20px;
    width: 90px;
    text-align: right;
}

.sykxlist .box .title {
    color: #333;
    line-height: 25px;
    height: 25px;
    width: calc(100% - 140px);
}

.sykxlist .box:hover .title {
    color: #fff;
}

.sykxlist .box:hover .dete {
    color: #fff;
}

/* -- */
.xykxSlide {
    box-sizing: border-box;
    position: relative;
    max-width: 1600px;
}

.xykxSlide .swiper-wrapper {
    position: relative;
    left: 26%;
}

.xykxSlide .swiper-slide {
    width: 757px;
}

.xykxSlide .swiper-slide .img {
    overflow: hidden;
}

.xykxSlide .swiper-slide .img img {
    width: 100%;
    height: 456px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.xykxSlide .swiper-slide .title {
    width: 100%;
    height: 95px;
    line-height: 95px;
    color: #fff;
    box-sizing: border-box;
    padding: 0 20px;
    position: absolute;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.81) 100%);
    transition: all 0.5s ease-in-out;
}

.xykxSlide .swiper-slide-active .title {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.xykxSlide .swiper-slide-active:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.xykxSlide .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.xykxSlide .swiper-slide-active:hover .title {
    width: 100%;
    height: 100%;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.xykxSlide .swiper-next,
.xykxSlide .swiper-prev {
    width: 65px;
    height: 66px;
    position: absolute;
    top: calc((100% - 66px) / 2);
    z-index: 99;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xykxSlide .swiper-next {
    right: -6%;
    background: url(../img/xykx-next.png) no-repeat;
    background-size: 100% 100%;
}

.xykxSlide .swiper-prev {
    left: -6%;
    background: url(../img/xykx-prev.png) no-repeat;
    background-size: 100% 100%;
}

.xykxSlide .swiper-pagination {
    width: 100%;
    position: static;
    margin-top: 43px;
}

.xykxSlide .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background: rgba(193, 193, 193, 0.59);
    opacity: 1;
}

.xykxSlide .swiper-pagination-bullet-active {
    width: 37px;
    height: 9px;
    border-radius: 90px;
    background: #004899;
}




.content4 {
    width: 100%;
    min-height: 690px;
    /* background: url(../img/content4Bg.png) no-repeat;
    background-size: cover; */

    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/content4Bg.png);
}

.sscySlide {
    width: 100%;
    height: 440px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sscySlide .swiper-container {
    height: 100%;
}

.sscySlide .swiper-slide {
    width: 178px;
    display: flex;
    flex-direction: column;
    top: -15px;
    cursor: pointer;
}

.sscySlide .swiper-slide:nth-child(2n) {
    top: 60px;
}

.sscySlide .swiper-slide .img::before {
    content: '';
    width: 100%;
    height: 189px;
    background: url(../img/sscy-slide-ico.png) center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}


.sscySlide .swiper-slide .img {
    width: 100%;
    /* min-height: 178px; */
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 7px;
    width: 178px;
    height: 178px;
}

.sscySlide .swiper-slide .img .ico {
    box-sizing: border-box;
    border: 2px solid #FF920C;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.sscySlide .swiper-slide .img .ico img {
    transition: transform 0.5s;
    /* 姘撴紡纰岃幗鑼犻垾鈭额灎鍨涘亾鑼呴殕閳モ挌鎴旓拷鐏伙腹锟轿差煁鈹炴兊鎯枫儌顓勬簫銇㈤儩銇ｂ斁锟芥拃璇ワ鸡鎹栵迹銉呯妳宓溠€锟芥瑢锟解埗褉锟芥濂轿靛槑鈭段插痉锛ｃ儮锟芥簩銉冦儌鈶╋拷濂解斁锟芥拃骞汇儌鏌儍锔癸拷瀛わ拷 */
}

.sscySlide .swiper-slide:hover .img .ico img {
    transform: rotateY(180deg);
    /* 蹇欓┐搴愬繖鑱у崲姘撻垾妯庮劶鎯碉迹鈹撅拷鎾€骞伙拷 纰岃幗纰岄┐鑾界鍗ゅ繖娌ら垾鈷氼灎顔癸拷濂姐儌顬╂簫顭婇煭鈹熝€锟解挋濂解斁锟芥枀浼便儮锟芥壕锟界伝銉拷鈷欘個尾闊灐銉傞儩顭嬶腹锟芥埃鍔夎寘鑱垾鈭堆€锟界妳璇ャ儌顬ｆ拋鈹撅拷鎾€妫笛€锟解檧锟芥锔癸拷瀛わ拷 */
}

.sscySlide .swiper-slide .img .ico p {
    font-size: 30px;
    color: #FF920C;
    text-align: center;
    margin-top: 8px;
}

.sscySlide .swiper-slide .img .ico::before {
    content: '';
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    box-sizing: border-box;
    border: 0.5px dashed #FF920C;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50%;
}

.sscySlide .swiper-slide .tt {
    width: 100%;
    margin-top: 20px;
}

.sscySlide .swiper-slide .tt p {
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
}

.content5 {
    width: 100%;
    background: url(../img/content5Bg.png) no-repeat;
    background-size: cover;
    padding-bottom: 108px;
}

.mtjj {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mtjj .mtleft {
    width: 31.75%;
}

.mtjj .mtright {
    width: 40%;
}

.mtjj .mtcenter {
    width: 20%;
}

.mtjj .item .img {
    width: 100%;
    overflow: hidden;
}

.mtjj .item .img img {
    width: 100%;
    /* object-fit: cover; */
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.mtjj .item {
    display: inline-block;
    transition: 0.5s;
}

.mtjj .item:hover {
    transform: scale(1.05);
    /* box-shadow: 3px 35px 77px -8px rgba(0, 0, 0, 0.9); */
}


.mtleft ul li {
    width: 100%;
    padding-bottom: 27px;
    margin-bottom: 27px;
    border-bottom: 1px dashed #D8D8D8;
    position: relative;
}

.mtleft ul li::before {
    content: '';
    width: 0;
    height: 1px;
    background: #FF920C;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.mtleft ul li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}


.mtleft ul li:last-of-type {
    padding: 0;
    border: none;
}

.mtleft ul li a {
    display: flex;
    align-items: center;
}

.mtleft ul li .column-name {
    margin-right: 30px;
    width: 122px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: url(../img/mtjj-colname-bg.png) no-repeat;
    font-size: 18px;
    font-weight: bold;
    color: rgba(0, 73, 152, 0.9412);
}

.mtleft ul li .title {
    color: #3D3D3D;
    flex: 1;
}

.mtleft ul li:hover .column-name {
    color: #EA9310;
    background: url(../img/mtjj-column-bg2.png) no-repeat;
}

.mtleft ul li:hover .title {
    color: #004998;
    font-weight: bold;
}

.mtcenter .img img {
    height: 223px;
}

.mtright .img img {
    height: 467px;
}


.mtjj .item {
    position: relative;
}

.mtjj .item .dete {
    position: absolute;
    left: -15px;
    top: 20px;
}

.mtjj .item .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    background: url(../img/mtjj-ico.png) no-repeat;
    position: absolute;
    display: inline-block;
    left: 3px;
    bottom: -13px;
}

.mtright .item .tt {
    width: 100%;
    height: 145px;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
    transition: all 0.5s ease-in-out;
}

.mtright .item .tt .title {
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.mtright .item:hover .tt,
.mtjj .item:hover .tt {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
}

.mtjj .item:hover .tt .title {
    font-size: 18px;
}

.mtright .item:hover .tt .title {
    font-size: 24px;
    transition: all 0.5s ease-in-out;
}



.mtright .item .dete {
    width: auto;
    padding: 0 15px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    background: rgba(0, 73, 152, 0.7216);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.mtcenter .item .tt {
    width: 100%;
    height: 58px;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
}

.mtcenter .item .tt .title {
    width: 100%;
    color: #fff;
    text-align: center;
    line-height: 25px;
    height: 25px;
    text-align: center;
}

.mtcenter .item:first-of-type {
    margin-bottom: 18px;
}

.mtcenter .item .dete {
    width: auto;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    background: rgba(0, 73, 152, 0.7216);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.mtjj .item:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.content6 {
    position: relative;
    overflow: hidden;
}

.rmcy .column {
    padding-top: 50px;
}

.content6::after {
    content: '';
    width: 100%;
    min-height: 1078px;
    background: url(../img/content6Bg.png) top no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: 100%;
}

.content6::before {
    content: '';
    width: 100%;
    background: url(../img/content7Bg.png) bottom no-repeat;
    background-size: cover;
    position: absolute;
    min-height: 932px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}


.tzgglist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tzgglist .box {
    width: 18%;
    border-right: 1px solid rgba(255, 255, 255, .3);
    margin-right: 74px;
    padding-right: 74px;
    margin-bottom: 70px;
    position: relative;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.tzgglist .box:nth-child(4n) {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.tzgglist .box .dete {
    color: #fff;
    width: 120px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 40px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.tzgglist .box .title {
    color: #fff;
    line-height: 30px;
    height: 60px;
    margin-top: 15px;
}

.tzgglist .box:hover {
    top: -10px;
    transform: scale(1.05);
    /* transform: rotate(360deg); */
    transition: all 0.5s ease-in-out;
}

.tzgglist .box:hover .dete {
    color: #fff;
    box-sizing: border-box;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    background: linear-gradient(270deg, #FF920C 0%, #FF710C 100%);
}

.tzgglist .box:hover .title {
    font-weight: bold;
}

.rmcylist {
    width: 100%;
    /* height: 748px; */
    height: 810px;
    position: relative;
}

.rmcylist .box {
    position: absolute;

}

.rmcylist .box a {
    display: inline-block;
    transition: 0.5s;
    width: 100%
}

.rmcylist .box .img {
    /* overflow: hidden; */
    position: relative;
}

.rmcylist .box .img::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    z-index: 9;
    opacity: 1;
}

.rmcylist .box:hover {
    z-index: 99;
}

.rmcylist .box:hover .img::before {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.rmcylist .box .img img {
    width: 100%;
    object-fit: cover;
    /* transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out; */
}

.rmcylist .box:hover a {
    transform: scale(1.05);
    box-shadow: 3px 35px 77px -8px rgba(0, 0, 0, 0.9);
    z-index: 10;
}


.rmcylist .box1 {
    width: 49%;
    left: 0;
    top: 0;
}

.rmcylist .box2 {
    width: 27%;
    left: 49%;
}

.rmcylist .box6 {
    width: 27%;
    left: 49%;
    bottom: 0;
}

.rmcylist .box3 {
    width: 24%;
    right: 0;
    bottom: 0;
}

.rmcylist .box4 {
    width: 24.5%;
    bottom: 0;
}

.rmcylist .box5 {
    width: 24.5%;
    bottom: 0;
    left: 24.5%;
}

.rmcylist .box1 .img img {
    height: 445px;
}

.rmcylist .box3 .img img {
    /* height: 748px; */
    height: 600px;
}

.rmcylist .box2 .img img,
.rmcylist .box6 .img img {
    height: 405px;
}

.rmcylist .box4 .img img,
.rmcylist .box5 .img img {
    height: 370px;
}

.rmcylist .box .ico {
    position: absolute;
    right: 0;
    top: 0;
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}


.rmcylist .box1 .ico {
    background: rgba(21, 194, 67, 0.8);
}

.rmcylist .box4 .ico {
    background: rgba(255, 17, 17, 0.75);
}

.rmcylist .box5 .ico {
    background: rgba(211, 128, 12, 0.75);
}

.rmcylist .box3 .ico {
    background: rgba(0, 0, 0, 0.68);
}

.rmcylist .box .tt {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 99;
    height: 140px;
    box-sizing: border-box;
    padding: 30px 30px 15px 30px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(216, 216, 216, 0) 0%,
            rgba(0, 0, 0, 0.18) 21%, rgba(0, 0, 0, 0.81) 100%);
}

.rmcylist .box .tt .title {
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 26px;
    height: 26px;
}

.rmcylist .box7 {
    width: 24%;
    top: 0;
    right: 0;
}

.rmcylist .box7 .img img {
    width: 100%;
    height: 214px;
    object-fit: cover;
}

.rmcylist .box7 .ico2 {
    width: 45px;
    height: 45px;
    background: rgba(1, 71, 145, 0.76);
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    box-sizing: border-box;
    padding: 4px 7px;
}

.rmcylist .box7 .tt {
    padding-bottom: 10px;
    padding-left: 50px;

}

.ztzllist {
    padding: 0 0 90px 0;
}

.ztzllist {
    width: 100%;
    display: flex;
}

.ztzllist .item {
    width: 8.3%;
    display: flex;
    transition: width 0.5s ease;
}

.ztzllist .item .name {
    width: 100%;
    height: 500px;
}

.ztzllist .item.active .name {
    width: 133px;
}

.ztzllist .item .name img {
    width: 100%;
    height: 500px;
}

.ztzllist .item .img {
    display: none;
}

.ztzllist .item.active .img {
    display: block;
}

.ztzllist .item .img img {
    width: 100%;
    overflow: hidden;
}

.ztzllist .item .img a {
    width: 100%;
    display: inline-block;
}

.ztzllist .item .img img {
    width: 100%;
    height: 500px;
}

.ztzllist .item.active {
    width: 66.6%;
}

.rmcy {
    position: relative;
}

.rmcode {
    display: flex;
    align-items: center;
    position: absolute;
    right: 140px;
    right: 0;
    top: 45px;
    z-index: 999;
}

.rmcode .code {
    margin: 0 11px;
    position: relative;
    cursor: pointer;
}

.rmcode .code .ico {
    width: 68px;
    height: 69px;
    text-align: center;
    line-height: 69px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.27);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
}

.rmcode .code:hover .ico {
    background: #FF920C;
    transition: all 0.5s ease-in-out;
}

.rmcode .code .img {
    position: absolute;
    z-index: 99;
    left: -21px;
    top: 110%;
    background: #fff;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
}

.rmcode .code .img img {
    width: 110px;
    height: 110px;
}

.rmcode .code:hover .img {
    opacity: 1;
    visibility: visible;
}


.content2 .column {
    position: relative;
    margin-bottom: 15px;
}

.content2 .column .more2 a {
    display: none;
}

.content2 .column .more2 a.active {
    display: block;
    position: relative;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.content2 .column .more2:hover a {
    top: -10px;
    transition: all 0.5s ease-in-out;
}

.xsggSlide,
.xsxwSlide {
    position: relative;
}

.xsggSlide .swiper-slide {
    width: 100%;
}

.xsggSlide .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.xsggSlide .swiper-slide .img {
    overflow: hidden;
}

.xsggSlide .swiper-slide .img img {
    width: 100%;
    max-width: 230px;
    height: auto;
    /* transition: transform 1s ease-in-out; */
}


.xsggSlide .swiper-slide {
    margin: 0;
    transition: all 0.5s ease-in-out;
}

.xsggSlide .swiper-slide:nth-child(2n) {
    margin-top: 40px;
    transition: all 0.5s ease-in-out;
}

.xsSlide .swiper-pagination {
    position: static;
    margin-top: 105px;
    width: 100%;
    text-align: center;
}

.xsSlide .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    opacity: 1;
    margin: 0 7px;
    background: unset;
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
}

.xsSlide .swiper-pagination-bullet-active {
    background: #fff;
}

.xsSlide .swiper-next,
.xsSlide .swiper-prev {
    width: 61px;
    height: 61px;
    display: inline-block;
    position: absolute;
    bottom: -23px;
    z-index: 999;
    cursor: pointer;
}

.xsSlide .swiper-next {
    background: url(../img/next-ico.png) no-repeat;
    right: 38%;
    background-size: 100% 100%;
}

.xsSlide .swiper-prev {
    background: url(../img/prev-ico.png) no-repeat;
    left: 38%;
    background-size: 100% 100%;
}

.xsSlide .swiper-next:hover {
    background: url(../img/next-ico2.png) no-repeat;
    background-size: 100% 100%;
}

.xsSlide .swiper-prev:hover {
    background: url(../img/prev-ico2.png) no-repeat;
    background-size: 100% 100%;
}

.xsCont .xsSlide {
    display: none;
}

.xsCont .xsSlide.active {
    display: block;
}

.xsxwSlide_slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xsxwSlide_slide .left {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xsxwSlide_slide .left .box {
    width: calc((100% - 20px) / 2);
}

.xsxwSlide_slide .right {
    width: 47%;
}

.xsxwSlide_slide .img {
    overflow: hidden;
}

.xsxwSlide_slide .img img {
    width: 100%;
    object-fit: cover;
}

.xsxwSlide_slide .right .box {
    position: relative;
}

.xsxwSlide_slide .right .img img {
    height: 453px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}


.xsxwSlide_slide .right .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.xsxwSlide_slide .left .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.xsxwSlide_slide .right .tt {
    width: 100%;
    height: 124px;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

.xsxwSlide_slide .right .title {
    color: #fff;
    line-height: 25px;
    height: 25px;
    font-weight: bold;
}

.xsxwSlide_slide .right .dete {
    color: #fff;
    margin-top: 10px;
}

.xsxwSlide_slide .left .img img {
    height: 227px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.xsxwSlide_slide .left .tt {
    color: #fff;
}

.xsxwSlide_slide .left .box {
    position: relative;
}

.xsxwSlide_slide .left .dete {
    position: absolute;
    top: 207px;
    left: 0;
    width: 116px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #004287;
    background: linear-gradient(180deg, #0066D3 0%, #004287 100%);
}

.xsxwSlide_slide .left .tt {
    box-sizing: border-box;
    padding-top: 50px;
    transition: all 0.5s ease-in-out;
}

.xsxwSlide_slide .left .title {
    line-height: 25px;
    height: 50px;
}

.xsxwSlide_slide .left .desc {
    line-height: 28px;
    height: 84px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------- */

.xsuplist .xs-column {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    width: 338px;
    height: 65px;
    line-height: 65px;
    box-sizing: border-box;
    padding-left: 73px;
    background: url(../img/xs-column.png) left no-repeat;
    position: relative;
    margin-bottom: 10px;
}

.xsuplist .xs-column::before {
    content: '';
    width: 45px;
    height: 5px;
    background: #FF920C;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 30px;
}

.xsuplist .list {
    display: flex;
    flex-wrap: wrap;
}

.xsuplist .list .box {
    width: calc((100% - 100px) / 3);
    height: 80px;
    margin-right: 50px;
    margin-top: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding-left: 60px;
    background: url(../img/xs-box-bg.png) center no-repeat;
    background-size: 100% 100%;
}

.xsuplist .list .box:nth-child(3n) {
    margin-right: 0;
}

.xsuplist .list .box a {
    font-size: 24px;
    color: #3D3D3D;
    position: relative;
}

.xsuplist .list .box a::before {
    content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    background: url(../img/xs-ico.png) no-repeat;
    position: absolute;
    left: -20px;
    top: 10px;
}

.xsuplist .list .box:hover a {
    color: #004287;
    font-weight: bold;
}



.jguplist {
    width: 100%;
}

.jguplist .item {
    margin-bottom: 40px;
}

.jguplist .item .title {
    width: 100%;
    height: 100px;
    background: url(../img/jgsz-name-bg.png) no-repeat;
    background-size: cover;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    line-height: 100px;
    box-sizing: border-box;
    padding-left: 70px;
    position: relative;
}

.jguplist .item .title::before {
    content: '';
    width: 18px;
    height: 29px;
    background: url(../img/sjx-ico2.png) center no-repeat;
    display: inline-block;
    position: absolute;
    right: 74px;
    top: 35px;
}

.jguplist .item .list {
    width: 100%;
    box-sizing: border-box;
    padding: 35px 75px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: url(../img/jgsz-list-bg.png) no-repeat;
    background-size: cover;
    display: none;
}

.jguplist .item.active .list {
    display: block;
}

.jguplist .item .list ul {
    display: flex;
    flex-wrap: wrap;
}

.jguplist .item .list li {
    width: 33.3%;
    line-height: 25px;
    margin: 25px 0;
    box-sizing: border-box;
    padding-right: 15px;
}

.jguplist .item .list li a {
    font-size: 17px;
    color: #555;
    position: relative;
    box-sizing: border-box;
    padding-left: 50px;
}

.jguplist .item .list li a::before {
    content: '';
    width: 32px;
    height: 11px;
    display: inline-block;
    background: url(../img/jgsz-ico1.png) no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

.jguplist .item .list li:hover a::before {
    background: url(../img/jgsz-ico2.png) no-repeat;
}

.jguplist .item .list li:hover a {
    color: #004EA1;
}

.jguplist .item.active .title::before {
    transform: rotate(90deg);
}

.xrlduplist {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}



.xrlduplist .xright {
    width: 230px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.xrlduplist .xleft {
    width: calc(100% - 300px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xrld-box {
    width: calc((100% - 48px) / 2);
    position: relative;
    margin-bottom: 50px;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.xrld-box a {
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.xrld-box .subname {
    width: 100%;
    height: 52px;
    line-height: 52px;
    color: #004EA1;
    box-sizing: border-box;
    padding-left: 60px;
    position: relative;
    background: url(../img/xrld-subname-bg.png) left no-repeat;
}

.xrld-box .subname::before {
    content: '';
    width: 36px;
    height: 4px;
    background: #FF920C;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 24px;
}

.xrld-box .img {
    overflow: hidden;
    width: 196px;
}

.xrld-box .img img {
    width: 100%;
    height: 256px;
}

.xrld-box a {
    display: flex;
    align-items: center;
    background: url(../img/ld-box-ico.png) 96% 96% no-repeat;
}

.xrld-box .tt {
    flex: 1;
    height: 256px;
    box-sizing: border-box;
    padding: 25px 30px;
}

.xrld-box .tt .name {
    color: #3D3D3D;
}

.xrld-box .tt .desc {
    line-height: 28px;
    color: #999;
    height: 84px;
    margin: 10px 0 20px 0;
}

.xrld-box.noImg .subname {
    background: url(../img/xrld-subname-bg2.png) left no-repeat;
}

.xrld-box.noImg a {
    background: url(../img/ld-noImg-bg.png) center no-repeat;
    background-size: cover;
}

.xrld-box.noImg .tt .name {
    position: relative;
    display: inline-block;
}

.xrld-box.noImg .tt .name::after {
    content: '';
    width: 27px;
    height: 26px;
    display: inline-block;
    background: url(../img/ld-name-ico.png) no-repeat;
    position: absolute;
    right: -36px;
    top: 5px;
}

.xrld-box:hover {
    top: -10px;
    transition: all 0.5s ease-in-out;
}

.xrld-box:hover .tt .name {
    color: #004EA1;
    font-weight: bold;
}


.dwcwlist {
    width: 100%;
    height: 160px;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 0 70px 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(../img/xrldBg.png) center no-repeat;
    background-size: cover;
    border: 1px solid #f2f2f2;
}

.dwcwlist .box a {
    font-size: 28px;
    color: #3D3D3D;
}

.dwcwlist .box a:hover {
    color: #004287;
    font-weight: bold;
}

.dwcwlist::before {
    content: '';
    width: 81px;
    height: 195px;
    background: url(../img/dwcw-ico.png) no-repeat;
    position: absolute;
    left: 0;
    top: -18px;
}

.subNav .box {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-top: 0.5px solid rgba(216, 216, 216, .5);
}

.subNav .box:first-of-type {
    border: none;
}

.subNav .box a {
    font-size: 20px;
    color: #3B3B3B;
}

.subNav .box.on,
.subNav .box:hover {
    background: url(../img/subNav-libg.png) no-repeat;
    background-size: cover;
}

.subNav .img {
    text-align: center;
    margin-top: 10px;
    box-sizing: border-box;
    padding: 10px;
}

.subNav .img img {
    width: 100%;
}

.subNav .box.on a,
.subNav .box:hover a {
    color: #fff;
}

.jj-text {
    width: 100%;
    height: 568px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}

.jj-text .img {
    width: 47.5%;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 99;
}

.jj-text .img img {
    width: 100%;
    /* height: 447px; */
}

.jj-text .text {
    width: 54%;
    height: 568px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 40px 35px 0 80px;
    position: relative;
}

.jj-text .text::before {
    content: '';
    width: 122px;
    height: 122px;
    background: url(../img/xyjj-xh.png) center no-repeat;
    position: absolute;
    right: -47px;
    bottom: -47px;
}


.jj-text .text .title {
    font-size: 32px;
    font-weight: bold;
    color: #004EA1;
}

.jj-text .text .desc {
    font-size: 16px;
    color: #555;
    line-height: 30px;
    margin-top: 25px;
}

.jj-dtl {
    margin: 70px 0;
}

.jj-dtl p {
    font-size: 16px;
    color: #555;
    line-height: 33px;
}


.jjSlide {
    width: 100%;
    box-sizing: border-box;
    padding: 0 125px;
}

.jjSlide .swiper-slide {
    width: 100% !important;
    display: flex;
    flex-direction: column;
}


.jj-number {
    width: 100%;
}

.numSlide {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding: 0 130px;
    position: relative;
}


.numSlide .swiper-slide {
    flex-direction: column;
    cursor: pointer;
    padding: 40px 0;
    top: -40px;
}

.numSlide .swiper-slide:nth-child(2n) {
    top: 40px;
}

.numSlide .swiper-slide .img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FF920C;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 7px;
    margin-bottom: 25px;
    width: 180px;
    height: 180px;
}

.numSlide .swiper-slide .img .ico {
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.numSlide .swiper-slide .img .ico::before {
    content: '';
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    box-sizing: border-box;
    border: 0.5px dashed #fff;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50%;
}

.numSlide .swiper-slide .tt p {
    color: #FF920C;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
}

.numSlide .swiper-slide .img .ico p {
    text-align: center;
    font-size: 30px;
    color: #fff;
    margin-top: 8px;
}

.numSlide .swiper-next,
.numSlide .swiper-prev {
    width: 66px;
    height: 66px;
    display: inline-block;
    position: absolute;
    z-index: 99;
    top: 38%;
    cursor: pointer;
}

.numSlide .swiper-next {
    background: url(../img/num-next.png) no-repeat;
    right: 0;
    background-size: 100% 100%;
}

.numSlide .swiper-prev {
    background: url(../img/num-prev.png) no-repeat;
    left: 0;
    background-size: 100% 100%;
}

.numSlide .swiper-next:hover {
    background: url(../img/next-ico2.png) no-repeat;
    background-size: 100% 100%;
}

.numSlide .swiper-prev:hover {
    background: url(../img/prev-ico2.png) no-repeat;
    background-size: 100% 100%;
}

.numSlide .swiper-pagination {
    margin-top: 100px;
    position: unset;
}

.numSlide .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 1;
    margin: 0 5px;
    background: rgba(0, 78, 161, 0.43);
}

.numSlide .swiper-pagination-bullet-active {
    width: 37px;
    height: 9px;
    background: #004EA1;
    border-radius: 90px;
}

.picture {
    box-sizing: border-box;
    padding: 50px 70px 0 70px;
}

.picture .item1,
.picture .item2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.picture .item1 .left,
.picture .item2 .right {
    width: 58.3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.picture .item1 .right,
.picture .item2 .left {
    width: 37%;
}

.picture .box {
    margin-bottom: 35px;
}

.picture .box .img {
    overflow: hidden;
}

.picture .box .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture .box .tt {
    margin-top: 20px;
    box-sizing: border-box;
    padding-left: 20px;
    border-left: 3px solid #004EA1;
}

.picture .box .title {
    color: #3D3D3D;
}

.picture .box .desc {
    color: #3D3D3D;
    line-height: 26px;
    height: 52px;
}

.picture .box .dete {
    color: #FF920C;
    margin-top: 5px;
}

.picture .box1 img,
.picture .box8 img {
    height: 337px;
}

.picture .box2 img,
.picture .box3 img,
.picture .box9 img,
.picture .box10 img {
    height: 157px;
}

.picture .box4 img,
.picture .box5 img,
.picture .box6 img,
.picture .box7 img {
    height: 215px;
}

.picture .box2,
.picture .box3,
.picture .box9,
.picture .box10 {
    width: 46.3%;
}

.picture .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.picture .box:hover .title {
    color: #004287;
}

/* -------------------------------------------- */
.mbheader {
    width: 100%;
    display: none;
    height: 90px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}


.header-top {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 15px;
    background: #004EA1;
}

.header-top a {
    color: #fff;
    font-size: 13px;
}

.header-top span {
    color: #fff;
    margin: 0 2px;
}

.mbheader .header-con {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbheader .header-con h1 a {
    display: inline-block;
}

.mbheader .header-con .logo {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mbheader .header-con .logo a {
    height: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    /* width: 100%; */
    max-height: 90%;
}

.sp_header {
    height: 50px;
    background: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 50px;
    width: 70%;
}

.sp_logo img {
    margin: auto;
    width: 100%;
    height: 100%;
}

.sp_nav {
    width: 30px;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 10px;
    flex: none;
}

.sp_nav span {
    display: block;
    background: #1C65B4;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: absolute;
    z-index: 9999;
    background: #eee;
    width: 100%;
    height: auto !important;
    padding-bottom: 60px;
    font-size: 14px;
    line-height: 40px;
    top: -1000%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 80px
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px)
}

.sjj_nav>ul>li:first-child .language {
    float: right;
    width: 70px;
    overflow: hidden;
    line-height: 30px;
    margin-top: 5px
}

.sjj_nav>ul>li:first-child .language a {
    width: 35px;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 30px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 40px;
    font-size: 14px
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    /* width: 80% */
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #01438A
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}

/* ------------------------------------------------ */

.mbztzl {
    display: none;
}

.ztzlSlide {
    margin: 50px 0;
}

.ztzlSlide .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.ztzlSlide .swiper-slide img {
    width: 100%;
}

.ztzlSlide .swiper-pagination {
    position: unset;
    text-align: center;
    margin-top: 25px;
}

.ztzlSlide .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background: rgba(193, 193, 193, 0.59);
    opacity: 1;
}

.ztzlSlide .swiper-pagination-bullet-active {
    width: 37px;
    height: 9px;
    border-radius: 90px;
    background: #004899;
}

/* ---- */
.nLi .ejnav {
    width: 100%;
    position: absolute;
    top: 112%;
    left: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.nav .nLi:hover .ejnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.nLi .ejnav .nleft {
    flex: 1;
    background: url(../img/subnav-ico.png) center center no-repeat;
    margin-right: 20px;
}

.nLi .ejnav .nleft .desc {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    text-indent: 2em;
}

.nLi .ejnav .nleft a {
    color: #464646;
    font-size: 16px;
}

.nLi .ejnav .nleft a.more {
    color: rgba(0, 78, 161, 0.7);
}

.nLi .ejnav .nright {
    width: 342px;
}

.nLi .ejnav .nright img {
    width: 342px;
    height: 193px;
}

.nLi .ejnav .nleft ul {
    display: flex;
    flex-wrap: wrap;
}

.nLi .ejnav .nleft ul li {
    width: 33.3%;
    text-align: left;
    margin-bottom: 20px;
    /* margin-right: 10%; */
}

.nLi .ejnav .nleft ul li:hover a {
    color: #004287;
    font-weight: bold;
}

.ztzlbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ztzlbox .box {
    width: 48%;
    margin-bottom: 4%;
}

.ztzlbox .box .img {
    overflow: hidden;
}

.ztzlbox .box .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.ztzlbox .box:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.fontSize span {
    cursor: pointer;
    display: inline-block;
}

.detail .dtl p,
.detail .dtl p span {
    line-height: 1.5 !important;
    font-family: SimSun, "鑾介埀顑濆銉傤儩鈹燁灎鍨涳拷锟�", serif !important;
    font-size: 20px !important;
    color: #3d3d3d !important;
}

.detail .dtl .largeSize {
    font-size: 22px !important;
}

.detail .dtl .middleSize {
    font-size: 18px !important;
}

.detail .dtl .smallSize {
    font-size: 14px !important;
}

.xsxwSlide_slide .left .box:hover .tt {
    background: #fff;
    padding: 50px 15px 15px 15px;
    transition: all 0.5s ease-in-out;
}

.xsxwSlide_slide .left .box:hover .title {
    color: #004287;
    font-weight: bold;
}

.xsxwSlide_slide .left .box:hover .desc {
    color: #004287;
}

.jgsz_nav .box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}

.jgsz_nav .box .name {
    font-size: 16px;
    font-weight: bold;
    width: 170px;
    text-align: left;
    color: #004EA1;
}

.jgsz_nav .box .list {
    flex: 1;
    display: flex;
    align-items: center;
}

.jgsz_nav .box .list a {
    margin-right: 15px;
}

.jgsz_nav .box .list a:hover {
    color: #004287;
}

.jgsz_nav .box .more {
    font-size: 16px;
    opacity: .8;
}

.jgsz_nav .box:last-child {
    margin-bottom: 0;
}


.banlist video::-webkit-media-controls {
    display: none !important;
}

.flipped {
    transition: transform 0.5s ease-in-out;
    transform: rotate(360deg);
}

.detail .dtl table td {
    /* border: none !important; */
}

/* .content6 .column .more {
    display: none;
} */

/* ------------------------- */

.detail-page {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.detail-page .box {
    width: 49%;
    line-height: 30px;
    margin: 10px 0;
}

.detail-page .box a {
    color: #3d3d3d;
}

.detail-page .box:hover a {
    color: #004287;
}

.picture_list {
    padding: 0 20px;
}

.picture_list .info {
    display: flex;
    flex-wrap: wrap;
}

.picture_list .box {
    width: calc((100% - 40px) / 3);
    margin-bottom: 20px;
    margin-right: 20px;
}

.picture_list .box:nth-child(3n) {
    margin-right: 0;
}

.picture_list .box .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture_list .box .img {
    overflow: hidden;
}

.picture_list .box .title {
    width: 100%;
    line-height: 30px;
    text-align: center;
    color: #333;
}

.picture_list .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.picture_list .box:hover .title {
    color: #004287;
}