@keyframes sca {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes go {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes goright {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes roted {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes circleRight {
    0% {
        transform: rotate(-135deg);
    }

    50%,100% {
        transform: rotate(45deg);
    }
}

@keyframes circleLeft {
    0%,50% {
        transform: rotate(-135deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes beat {
    from,to {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    25% {
        -webkit-transform: scale(0.9,1.1);
        transform: scale(0.9,1.1);
    }

    50% {
        -webkit-transform: scale(1.1,0.9);
        transform: scale(1.1,0.9);
    }

    75% {
        -webkit-transform: scale(0.95,1.05);
        transform: scale(0.95,1.05);
    }
}

@keyframes icoMove {
    0% {
        transform: translate(2px);
    }

    25% {
        transform: translate(-2px);
    }

    50% {
        transform: translate(1px);
    }

    100% {
        transform: translate(0px);
    }
}

@keyframes scaletw {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes scalett {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes scaletc {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes arrowMovel {
    0% {
        transform: translateX(10px);
        opacity: 0;
    }

    20% {
        transform: translateX(5px);
        opacity: 1;
    }

    80% {
        transform: translateX(-5px);
        opacity: 1;
    }

    100% {
        transform: translateX(-10px);
        opacity: 0;
    }
}

@keyframes arrowMover {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    20% {
        transform: translateX(-5px);
        opacity: 1;
    }

    80% {
        transform: translateX(5px);
        opacity: 1;
    }

    100% {
        transform: translateX(10px);
        opacity: 0;
    }
}

@font-face {
    font-family: 'sys';
    font-style: normal;
    src: url(../fonts/sys.woff);
}

.sys {
    font-family: "sys";
}

.img {
    transition: 0.5s;
}

.pic .img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    display: block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    transform: scale(1.0);
}

.pic:hover .img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.xyxw {
    float: left;
    width: 59%;
    max-width: 1046px;
}




.xwpic {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.kySwiper {
    float: left;
    width: 100%;
}

.kySwiper .swiper-slide {
    float: left;
}

.kySwiper .swiper-slide .pic {
    width: 100%;
    height: 510px;
    overflow: hidden;
}

.kySwiper .swiper-slide .pic img {
    width: 100%;
    display: none;
}

.kySwiper .swiper-slide .pic .img {
    width: 100%;
    height: 100%;
    background-position: center center;
}

.kySwiper .swiper-slide .bt {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 110px;
    width: 100%;
    padding: 35px 20px 0 20px;
    background: url(../img/bg_xyxwbt.png) no-repeat left center;
}

.kySwiper .swiper-slide .bt .post {
    float: left;
    line-height: 54px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    width: 54px;
    height: 54px;
}

.circle__box {
    width: 54px;
    height: 54px;
    position: relative;
    opacity: 0;
    display: none;
}

.circle__wrapper {
    width: 27px;
    height: 54px;
    position: absolute;
    top: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.circle__wrapper--right {
    right: 0;
}

.circle__wrapper--left {
    left: 0;
}

.circle__whole {
    width: 54px;
    height: 54px;
    border: 3px solid hsl(0deg 0% 100% / 20%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
}

.circle__right {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 1px;
    animation: circleRight 5000ms linear forwards;
}

.circle__left {
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    left: 1px;
    animation: circleLeft 5000ms linear forwards;
}

.swiper-slide-active {
    svg {
        opacity: 1;
    }

    .circle {
        -webkit-animation: stroke var(--circle-speed,1s) linear forwards;
        animation: stroke var(--circle-speed,1s) linear forwards;
    }

    .sc-content {
        opacity: 1;
    }

    .counter {
        opacity: 1;
    }

    .circle__box {
        opacity: 1;
        display: block;
    }
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.kySwiper .swiper-slide .bt {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 110px;
    width: 100%;
    padding: 35px 20px 0 20px;
    background: url(../img/bg_xyxwbt.png) no-repeat left center;
    display: flex;
}

.kySwiper .swiper-slide .bt .post {
    line-height: 54px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    width: 54px;
    height: 54px;
    position: absolute;
    left: 21px;
}

.kySwiper .swiper-slide .bth6 {
    float: right;
    width: calc(100% - 75px);
    line-height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kySwiper .swiper-slide .bth6 a {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.kySwiper .swiper-slide .time {
    float: left;
    width: 100%;
    line-height: 24px;
    text-align: right;
    color: #0006;
    font-size: 14px;
}

.kySwiper .swiper-pagination {
    display: none;
}

.kySwiper .swiper-button-prev {
    left: 20px !important;
    width: 44px;
    height: 44px;
    /* background: url(../img/news_prev.png) no-repeat center center; */
}

.kySwiper .swiper-button-next {
    width: 44px;
    height: 44px;
    right: 20px !important;
    /* background: url(../img/news_next.png) no-repeat center center; */
}

.kySwiper .swiper-button-prev:after,.kySwiper .swiper-container-rtl .swiper-button-next:after,.kySwiper .swiper-button-next:after,.kySwiper .swiper-container-rtl .swiper-button-prev:after {
    color: #fff;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
}

.kySwiper .swiper-slide:hover .bt h6 a {
    font-weight: bold;
}

.xyxwul {
    float: left;
    width: 100%;
    padding: 0 20px;
}

.xyxwul li {
    position: relative;
    float: left;
    width: 100%;
    line-height: 70px;
    background: url(../img/newsli.png) no-repeat left 60px center;
}

.xyxwul li::after {
    display: block;
    content: '';
    position: absolute;
    left: 65px;
    bottom: -20px;
    width: 1px;
    height: 40px;
    background-color: #D8D8D8;
}

.xyxwul li:last-child::after {
    display: none;
}

.xyxwul li span.time {
    color: #fff;
    width: 60px;
    display: block;
    float: left;
}

.xyxwul li a {
    color: #fff;
    font-size: 20px;
    margin-left: 25px;
    float: left;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mtjj{position:relative; width:100%; overflow:hidden;}
.mtjjswiper{
	float: left;
	width: 100%;
	
}

.mtjj .swiper-slide{
	
	float: left;
}

.mtjj .swiper-slide .pic {
	width: 100%;
	height:510px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.mtjj .swiper-slide .pic img {
	width: 100%;display: none;
}

.mtjj .swiper-slide .pic .img {
	width: 100%;
	height: 100%;
	background-position: center center;
}

.mtjj  .swiper-slide .bt {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 110px;
	width: 100%;
	padding: 35px 20px 0 20px;
	background: url(../img/bg_xyxwbt.png) no-repeat left center;
}
.mtjj .swiper-slide .bt h6 {
	float: right;
	width: calc(100% - 75px);
	line-height: 54px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mtjj .swiper-slide .bt h6 a {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}
.tab1 {
    position: relative;
    width: 37%;
    max-width: 675px;
    float: right;
}

.tab1 .hd {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 32px;
}

.tab1 .hdul {
    width: 100%;
}

.tab1 .hdul li {
    position: relative;
    float: left;
    cursor: pointer;
    margin-right: 50px;
}

.tab1 .hdul li:last-child {
    margin-right: 0;
}

.tab1 .hdul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 4px;
    background-color: #F1871A;
    border-color: #F1871a;
    border-radius: 0 4px 0 0;
    border-right: 5px solid #F1871A;
    opacity: 0;
}

.tab1 .hdul li.on::after,.tab1 .hd ul li.on span {
    opacity: 1;
}

.tab1 .hdul li.on h6 {
    font-weight: bold;
}

.tab1 .hdul li h6 {
    float: left;
    font-size: 38px;
    color: #333;
    line-height: 80px;
    position: relative;
    z-index: 9;
    font-weight: normal;
}

.tab1 .hdul li span {
    position: absolute;
    left: -8px;
    top: -18px;
    z-index: 8;
    font-size: 88px;
    color: #fff3;
    font-weight: bold;
    line-height: 88px;
    margin-left: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px hsl(209deg 100% 36% / 10%);
    opacity: 0;
}

.tab1 .bd {
    position: relative;
    float: left;
    width: 100%;
}

.tzgg {
    display: none;
    width: 100%;
}

.tzgg .more {
    position: absolute;
    right: 0;
    top: -100px;
    z-index: 99;
}
.mtjjbd{ display: none;
    width: 100%;}
.mtjjbd .more {
    position: absolute;
    right: 0;
    top: -100px;
    z-index: 99;
}


.tzggul,.mtjjbd ul{
    width: 100%;
    float: left;
}

.tzggul li {
    float: left;
    padding: 26px 0px;
    margin-top: 0;
    width: 100%;
    border-bottom: 1px solid #E1F2FA;
    transition: .3s ease;
    background: url() no-repeat bottom right transparent;
    background-size: 19%;
    position: relative;
}

.tzggul li:after {
    content: '';
    height: 3px;
    width: 0;
    background: #F1871A;
    position: absolute;
    bottom: -.36rem;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}

.tzggul li .date {
    float: left;
    width: 66px;
    height: 62px;
    border-radius: 0 5px 0 5px;
}

.tzggul li .date b {
    float: left;
    width: 100%;
    text-align: center;
    color: #005cbb;
    border-radius: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
}

.tzggul li .date span {
    float: left;
    width: 100%;
    text-align: center;
    color: #005cbb;
    font-size: 14px;
    line-height: 30px;
}

.tzggul li .bt {
    float: right;
    margin: 0;
    margin-left: 0;
    height: 60px;
    line-height: 30px;
    width: calc(100% - 86px);
}

.tzggul li .bt a {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    height: 100%;
    color: #333;
    overflow: hidden;
}

.tzggul li:hover {
    background: url(../img/tzgg_on2.png) no-repeat bottom right;
    background-size: 19%;
}

.tzggul li:hover:after,.mtjjbd ul li.on3:after{
    content: '';
    height: 3px;
    width: 100%;
    background: #F1871A;
    position: absolute;
    bottom: -.36rem;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}

.tzggul li:hover .bt a {
    color: #0956BD;
}
.mtjjbd ul li{position: relative;float: left; width:100%;border-bottom: 1px solid #E1F2FA;}
.mtjjbd ul li .pic{display:none;width:100%;height: 300px;overflow:hidden;}
.mtjjbd ul li .pic img{
    width: 100%;
}
.mtjjbd ul li.on3{padding:0 ;}
.mtjjbd ul li.on3 .date,.mtjjbd ul li.on3 .bt:before{display:none;}
.mtjjbd ul li.on3 .pic{display:block;}
.mtjjbd ul li.on3 .bt{
    position: absolute;
    left: 0;
    bottom: 0;
margin-left:0;
height:50px;
    background: url(../img/xsbg_bt.png) no-repeat center bottom;
    padding: 10px 20px;
 overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    }
.mtjjbd ul li.on3 .bt a,.mtjjbd ul li:hover .bt a{ color: #fff !important;}
.mtjjbd ul li.on3 .bt a{ overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}
.tzggul li.first {
    background: url(../img/tzgg_on.png) #E1F2FA no-repeat bottom right;
    background-size: 16%;
}

.tzggul li.first a {
    color: #F1871A;
}

.tzggul li.first:hover {
    background: url(../img/tzgg_on.png) #E1F2FA no-repeat bottom right;
    background-size: 16%;
}

.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after,.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 20px !important;
}

.swiper-button-prev {
    left: 0 !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #005CBB;
}

.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    right: 0px !important;
    background-color: #005CBB;
}

.swiper-button-prev:hover,.swiper-button-next:hover {
    background-color: #F1871A;
}

.xsyd {
    position: relative;
    float: left;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.xsyd .lm {
    width: 49%;
    max-width: 700px;
    position: relative;
    z-index: 9;
    margin-top: 40px;
}

.bg_xsyd {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    width: 100%;
}

.xsyd .swiper-slide {
    width: 100%;
}

.xsyd .swiper-slideul {
    width: 100%;
}

.xsyd .swiper-slideul li {
    position: relative;
    float: left;
    margin-bottom: 20px;
}

.xsyd .swiper-slideul li .pic {
    width: 100%;
    overflow: hidden;
}

.xsyd .swiper-slideul li .pic img {
    width: 100%;
}

.xsyd .swiper-slideul li .bt {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px 20px 0px 20px;
    line-height: 40px;
    width: 100%;
    height: 80px;
    background: url(../img/xsbg_bt.png) no-repeat center bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xsyd .swiper-slideul li .bt a {
    color: #fff;
    font-size: 16px;
}

.xsyd .swiper-slideul li:nth-child(1) {
    width: 700px;
    margin-left: 0px;
    margin-top: 195px;
}

.xsyd .swiper-slideul li:nth-child(2) {
    width: 640px;
    margin-left: 20px;
}

.xsyd .swiper-slideul li:nth-child(3) {
    width: 370px;
    margin-left: 20px;
}

.xsyd .swiper-slideul li:nth-child(4) {
    width: 385px;
    margin-left: 20px;
}

.xsyd .swiper-slideul li:nth-child(1) .pic {
    height: 465px;
}

.xsyd .swiper-slideul li:nth-child(2) .pic {
    height: 395px;
}

.xsyd .swiper-slideul li:nth-child(3) .pic,.xsyd .swiper-slide ul li:nth-child(4) .pic {
    height: 247px;
}

.xsyd .swiper-button-prev {
    margin-top: -90px;
    left: auto !important;
    right: 0 !important;
}

.swiper-button-next,.swiper-button-prev {
}

.xstab {
    position: relative;
    z-index: 55;
    width: 1500px;
    margin: 0 auto;
    padding: 0;
    margin-top: 0px;
}

.xshd .swiper-slide::after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 55px;
    width: 34px;
    height: 4px;
    background-color: #F1871A;
    border-color: #F1871a;
    border-radius: 0 4px 0 0;
    border-right: 5px solid #F1871A;
}

.xshd .swiper-slide-thumb-active::after {
    display: block;
}




.xsbd {
    position: relative;
    z-index: 49;
    float: left;
    width: 100%;
    height: auto;
padding:10px 0;
    margin-top: 40px;
}

.xsbd .swiper-slide {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.xshd .swiper-slide.swiper-slide-thumb-activespan,.xshd .swiper-slide.swiper-slide-thumb-active .more {
    display: block;
}

.xshd .swiper-slideh6 {
    float: left;
    font-size: 36px;
    color: #333;
    font-weight: 700;
    line-height: 70px;
    position: relative;
    z-index: 9;
}

.xshd .swiper-slidespan {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
    font-size: 50px;
    display: none;
    color: #fff3;
    font-weight: bold;
    line-height: 50px;
    margin-left: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #ddd;
    text-stroke: 1px #ddd;
}

.xshd .swiper-slide .more {
    display: none;
    position: absolute;
    top: 0;
}

.xshd .swiper-slide:nth-child(1) .more {
    right: -938px;
}

.xshd .swiper-slide:nth-child(2) .more {
    right: -751px;
}

.xshd .swiper-slide:nth-child(3) .more {
    right: -564px;
}

.xshd .swiper-slide:nth-child(4) .more {
    right: -376px;z-index:999

}

.xsyj {
    display: inline-block;
    padding:0 0px;
    width:1500px;
    background: url(../img/bg_xsyj.png) no-repeat center center;
}

.xsyj .swiper-slide {
    width: 100% !important;
    padding: 87px 187px;
}
.xsyjswiper{}
.xsbgswiper{}
.kyptswiper{}
.shhzswiper{width: 100%;margin: 0 auto;max-width: 1500px;}
.xsyjswiper .swiper-wrapper,.xsbgswiper .swiper-wrapper,.kyptswiper .swiper-wrapper,.shhzswiper .swiper-wrapper{width:100%;margin:0 auto;}

.xsyj .swiper-slide .pic {
    margin-left: 39%;
    float: left;
    width: 400px;
    height: 550px;
    overflow: hidden;
}

.xsyj .swiper-slide .picimg {
    width: 100%;
}

.xsyj .swiper-slide .bt {
    float: right;
    width: 440px;
    color: #fff;
    text-align: left;
}

.xsyj .swiper-slide .bt .date {
    float: left;
    width: 100%;
    line-height: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.xsyj .swiper-slide .bt .dateb {
    font-size: 44px;
    font-weight: bold;
}

.xsyj .swiper-slide .bt .datespan {
    color: #fff6;
    font-size: 20px;
    line-height: 40px;
    margin-left: 10px;
}

.xsyj .swiper-slide .bth6 {
    float: left;
    width: 100%;
    line-height: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff6;
}

.xsyj .swiper-slide .bth6 a {
    height: 75px;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
}

.xsyj .swiper-slide .btp {
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 30px;
    color: #fff6;
    width: 100%;
    line-height: 40px;
    float: left;
}

.jsfc {
    /* float: left; */
    width: 100%;
}


.jsbd {
    position: relative;
    z-index: 49;
    float: left;
    width: 100%;
    height: 638px;
    margin-top: 30px;
}

.jsbd .swiper-slide {
    width: 100%;
    height: 500px;
}

.jsbd .swiper-slide .bt {
    float: left;
    width: 755px;
}

.jsbd .swiper-slide .bth6 {
    float: left;
    padding-left: 20px;
    width: 100%;
    background: url(../img/bg_jsbt.png) no-repeat left center;
    line-height: 70px;
}

.jsbd .swiper-slide .bth6 a {
    font-size: 34px;
    font-weight: 700;
    color: #0956BD;
}

.jsbd .swiper-slide .bth6 span {
    font-size: 20px;
    color: #333;
    line-height: 70px;
    padding-left: 10px;
}

.jsbd .swiper-slide .btp {
    float: left;
    margin-top: 20px;
    width: 100%;
    line-height: 30px;
    height: 180px;
    font-size: 16px;
    color: #333;
}

.jsbd .swiper-slide .bta.read {
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    float: left;
    width: 110px;
    display: block;
    padding: 0 15px;
    border-radius: 20px;
    background: url(../img/read.png) #0956BD no-repeat right 10px center;
    color: #fff;
}

.jsbd .swiper-slide .pic {
    position: relative;
    float: right;
    padding: 0px;
    margin-right: 20px;
    width: 634px;
    height: 634px;
    border-radius: 100%;
    background-color: #fff;
}


.jsbd .swiper-slide .pic .img {
    position: relative;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
}

.jsbd .swiper-slide .pic .imgimg {
}

.sp {
    position: absolute;
    left: -52%;
    top: 94px;
    width: 510px;
    height: 510px;
    border-radius: 100%;
    overflow: hidden;
    transform: translateX(250%);
    z-index: 100;
    border: 10px solid #fff;
}

.sp .videoon {
    height: 100%;
    display: block
}

.sp .videoona {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/sp_on.png) no-repeat center center;
    z-index: 99
}

.sp .videoona.playing {
    opacity: 0
}

.sp .videoonvideo {
    width: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.xygk .swiper-button-prev {
    left: 45% !important;
    bottom: 0px !important;
    top: auto !important;
    border-radius: 100%;
}

.xygk .swiper-button-next {
    right: 45% !important;
    top: auto !important;
    bottom: 0px !important;
    border-radius: 100%;
}

.kySwiper .swiper-slide .bt h6 {
    width: calc(100% - 75px);
    line-height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kySwiper .swiper-slide .bt h6 a {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-left: 3%;
}

.kySwiper .swiper-slide .time {
    float: left;
    width: 100%;
    line-height: 24px;
    text-align: right;
    color: #0006;
    font-size: 14px;
}

.kySwiper .swiper-pagination {
    display: none
}

.kySwiper .swiper-button-prev,.kySwiper .swiper-button-next {
    opacity: 0
}

.kySwiper:hover .swiper-button-prev,.kySwiper:hover .swiper-button-next {
    opacity: 1
}

.kySwiper .swiper-button-prev {
    left: 20px !important;
    width: 44px;
    height: 44px;
    /* background: url(../img/news_prev.png) no-repeat center center; */
}

.kySwiper .swiper-button-next {
    width: 44px;
    height: 44px;
    right: 20px !important;
    /* background: url(../img/news_next.png) no-repeat center center; */
}

.kySwiper .swiper-button-prev:after,.kySwiper .swiper-container-rtl .swiper-button-next:after,.kySwiper .swiper-button-next:after,.kySwiper .swiper-container-rtl .swiper-button-prev:after {
    color: #fff;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
}

.kySwiper .swiper-slide:hover .bt h6 a {
    font-weight: bold;
}

.xyxw ul {
    float: left;
    width: 100%;
    padding: 20px 30px 60px 30px;
}

.xyxw ul li {
    position: relative;
    float: left;
    width: 100%;
    line-height: 30px;
padding:15px 0;
    background: url(../img/newsli.png) no-repeat left 60px center;
}

.xyxw ul li::after {
    display: block;
    content: '';
    position: absolute;
    left: 65px;
    bottom: -20px;
    width: 1px;
    height: 40px;
    border-left: 1px dashed hsl(0deg 0% 85% / 50%);
}

.xyxw ul li:nth-child(3):after {
    display: none;
}

.xyxw ul li span.time {
    color: #fff;
    width: 60px;
    display: block;
    float: left;
	font-family:'sys'
}

.xyxw ul li a {
    color: #fff;
    font-size: 20px;
    margin-left: 25px;
    float: left;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.xyxw ul li:hover a {font-size:22px; color: #F1871A;}
.xyxw ul li:before {
    content: '';
    height: 3px;
    width: 0%;
    background: #F1871A;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
    display: block;
}

.xyxw ul li:hover:before {
    content: '';
    height: 3px;
    width: 90%;
    background: #F1871A;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}

.tab1 {
    position: relative;
    width: 38%;
    max-width: 675px;
    float: right;
}

.tab1 .hd {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

.tab1 .hd ul {
    width: 100%;
    ;}

.tab1 .hd ul li {
    position: relative;
    float: left;
    cursor: pointer;
    margin-right: 50px;
}

.tab1 .hd ul li:last-child {
    margin-right: 0
}

.tab1 .hd ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    ;width: 34px;
    height: 4px;
    background-color: #F1871A;
    border-color: #F1871a;
    border-radius: 0 4px 0 0;
    border-right: 5px solid #F1871A;
    opacity: 0;transition: .3s;
}
.tab1 .hd ul li:hover:after{width:60px;transition: .3s;}

.tab1 .hd ul li.on::after,.tab1 .hd ul li.on span {
    opacity: 1;
}

.tab1 .hd ul li.on h6 {
    font-weight: bold;
}

.tab1 .hd ul li h6 {
    float: left;
    font-size: 38px;
    color: #333;
    line-height: 80px;
    position: relative;
    z-index: 9;
    font-weight: normal;
}

.tab1 .hd ul li span {
    position: absolute;
    left: -8px;
    top: -18px;
    z-index: 8;
    font-size: 88px;
    color: #fff3;
    font-weight: bold;
    line-height: 88px;
    margin-left: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px hsl(209deg 100% 36% / 10%);
    opacity: 0;
}

.tab1 .bd {
    position: relative;
    float: left;
    width: 100%;
}

.tzgg {
    display: none;
    width: 100%;
}

.tzgg .more {
    position: absolute;
    right: 0;
    top: -120px;
}

.tzgg ul {
    width: 100%;
    float: left;
}

.tzgg ul li {
    float: left;
    padding: 27px 0px;
    margin-top: 0;
    width: 100%;
    border-bottom: 1px solid #D0DEED;
    transition: .3s ease;
    background: url() no-repeat bottom right transparent;
    background-size: 19%;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.tzgg ul li:after {
    content: '';
    height: 3px;
    width: 0;
    background: #F1871A;
    position: absolute;
    bottom: -1.5px;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}

.tzgg ul li .date {
    width: 66px;
    height: 62px;
    border-radius: 0 5px 0 5px;
    margin: 0 20px;
    font-family: 'sys';
}

.tzgg ul li .date b {
    float: left;
    width: 100%;
    text-align: center;
    color: #0956BD;
    border-radius: 0;
    font-size: 30px;
    font-weight: bold;
    line-height: 32px;
    font-weight: bold;
}

.tzgg ul li .date span {
    float: left;
    width: 100%;
    text-align: center;
    color: #005cbb;
    font-size: 14px;
    line-height: 30px;
}

.tzgg ul li .bt {
    margin-left: 4.5%;
    height: 60px;
    line-height: 30px;
    width: 100%;
    position: relative;
}

.tzgg ul li .bt:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 48px;
    background: #C5C6C7;
    left: -5%;
    top: 2px;
    z-index: 9;
}

.tzgg ul li .bt a {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    height: 100%;
    color: #333;
    overflow: hidden;
}

.tzgg ul li:hover {
    background: url(../img/tzgg_on2.png) no-repeat bottom right;
    background-size: 19%;
}

.tzgg ul li:hover:after {
    content: '';
    height: 3px;
    width: 100%;
    background: #F1871A;
    position: absolute;
    bottom: -1.5px;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}

.tzgg ul li:hover .bt a {
    color: #0956BD;
}

.tzgg ul li.first {
    background: url(../img/tzgg_on.png) #E1F2FA no-repeat bottom right;
    background-size: 16%;
    border-bottom: 1px solid #C5C6C7;
}

.tzgg ul li.first a {
    color:#F1871A;
}

.tzgg ul li.first:hover {
    background: url(../img/tzgg_on.png) #E1F2FA no-repeat bottom right;
    background-size: 16%;
}

.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after,.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 20px !important;
}

.swiper-button-prev {
    left: 0 !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #F1871A;
}

.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    right: 0px !important;
    background-color: #005CBB;
}

.swiper-button-prev:hover::after {
    animation: arrowMovel 0.5s linear;
}

.swiper-button-next:hover::after {
    animation: arrowMover 0.5s linear;
}

.swiper-button-prev:hover {
    background-color: #F1871A;
}

.swiper-button-next:hover {
    background-color: #005CBB;
}

.bg_index2 .xsyd {
    position: relative;
    float: left;
    width: 100%;
    height: 730px;
    overflow: hidden;
}

.xsyd .lm {
    width: 49%;
    max-width: 700px;
    position: relative;
    z-index: 9;
    margin-top: 40px;
    margin-left: 4px;
}

.bg_xsyd {
    left: 0;
    top: 0;
    z-index: 6;
    width: 100%;
}

.xsyd .swiper-slide {
    width: 100%;
}

.xsyd .swiper-slide ul {
    width: 100%;
}

.xsyd .swiper-slide ul li {
    position: relative;
    float: left;
    margin-bottom: 22px;
}

.xsyd .swiper-slide ul li .pic {
    width: 100%;
    overflow: hidden;
}

.xsyd .swiper-slide ul li .pic img {
    width: 100%;
}

.xsyd .swiper-slide ul li .bt {
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 40px;
    width: 100%;
    height: 80px;
    /*background:url(../img/xsbg_bt.png) no-repeat center bottom;*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 999;
}

.xsyd .swiper-slide ul li .bt a {
    color: #fff;
    font-size: 18px;
    display: block;
    margin: 20px 20px 0 20px;
}
.xsyd .swiper-slide ul li:hover .bt a {
    color: #fff;
    font-size: 18px;
    transition: .25s;
    margin-top: 10px;
}
.xsyd .swiper-slide ul li:nth-child(1) {
    width: 700px;
    margin-left: 0px;
    margin-top: 195px;
}

.xsyd .swiper-slide ul li:nth-child(2) {
    width: 640px;
    margin-left: 22px;
}

.xsyd .swiper-slide ul li:nth-child(3) {
    width: 370px;
    margin-left: 22px;
}

.xsyd .swiper-slide ul li:nth-child(4) {
    width: 385px;
    margin-left: 22px;
}

.xsyd .swiper-slide ul li:nth-child(1) .pic {
    height: 469px;
}

.xsyd .swiper-slide ul li:nth-child(2) .pic {
    height: 395px;
}

.xsyd .swiper-slide ul li:nth-child(3) .pic,.xsyd .swiper-slide ul li:nth-child(4) .pic {
    height: 247px;
}

.xsyd .swiper-button-prev {
    margin-top: -90px;
    left: auto !important;
    right: 0 !important;
}

.swiper-button-next,.swiper-button-prev {
}

.xstab {
    position: relative;
    z-index: 55;
    width: 1500px;
    margin: 0 auto;
    padding: 0;
    margin-top: 0px;
}

.xshd .swiper-slide::after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 55px;
    width: 34px;
    height: 4px;
    background-color: #F1871A;
    border-color: #F1871a;
    border-radius: 0 4px 0 0;
    border-right: 5px solid #F1871A;
    transition:0.3s
}
.xshd .swiper-slide:hover:after {
    transition:0.3s;width:60px; left: 42px;
}
.xshd .swiper-slide-thumb-active::after {
    display: block;
   
}

.xshd {
    width: 57%;
    overflow: visible !important;
}

.xshd .swiper-slide {
    width: 100%;
    text-align: center;
    cursor: pointer;
    margin: 0 1%;
}

.xsbd {
    position: relative;
    z-index: 49;
    float: left;
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.xsbd .swiper-slide {
    width: 100%;
    text-align: center;
}
.xsbd .swiper-slide-active{overflow:visible}
.xshd .swiper-slide.swiper-slide-thumb-active span,.xshd .swiper-slide.swiper-slide-thumb-active .more {
    display: block;
}

.xshd .swiper-slide h6 {
    float: left;
    font-size: 36px;
    color: #333;
    font-weight: normal;
    line-height:80px;
    position: relative;
    z-index: 9;
}

.xshd .swiper-slide.swiper-slide-thumb-active h6 {
    font-weight: bold;
}
.xshd .swiper-slide span {
    position: absolute;
    left: -8px;
    top: -18px;
    z-index: 8;
    font-size: 88px;
    color: #fff3;
    font-weight: bold;
    line-height: 88px;
    margin-left: 0px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px hsl(209deg 100% 36% / 10%);
    display: none;
}
.xshd .swiper-slide-thumb-active span {display: block;}

.xshd .swiper-slide .more {
    display: none;
    position: absolute;
    top: 0;
}

.xshd .swiper-slide:nth-child(1) .more {
    right: -955px;
}

.xshd .swiper-slide:nth-child(2) .more {
    right: -724px;
}

.xshd .swiper-slide:nth-child(3) .more {
    right: -494px;
}

.xshd .swiper-slide:nth-child(4) .more {
    right: -263px;
}



.xsyj .swiper-slide {
    width: 100% !important;
    padding: 40px 0;
    display: flex;
}

.xsyj .swiper-slide .pic {
    margin-left: 32%;
    overflow: hidden;
}

.xsyj .swiper-slide .pic img {
    width: 100%;
}

.xsyj .swiper-slide .bt {
    width: 420px;
    color: #fff;
    text-align: left;
    margin-left: 70px;
}

.xsyj .swiper-slide .bt .date {
    float: left;
    width: 100%;
    line-height: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.xsyj .swiper-slide .bt .date b {
    font-size: 44px;
    font-weight: bold;
    font-family: 'sys';
}

.xsyj .swiper-slide .bt .date span {
    color: #fff6;
    font-size: 20px;
    line-height: 40px;
    margin-left: 10px;
}

.xsyj .swiper-slide .bt h6 {
    float: left;
    width: 100%;
    line-height: 32px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff6;
    position:relative
}

.xsyj .swiper-slide .bt h6:after {
    content: '';
    height: 3px;
    width: 0;
    background: #F1871A;
    position: absolute;
    bottom: -1.5px;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}
.xsyj .swiper-slide .bt h6:hover:after {
    content: '';
    height: 3px;
    width: 100%;
    background: #F1871A;
    position: absolute;
    bottom: -1.5px;
    left: 0;
    transform: translateX(0%);
    transition: .3s;
}
.xsyj .swiper-slide .bt h6 a {
    height: 75px;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
}

.xsyj .swiper-slide .bt p {
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 30px;
    color: hsl(0deg 0% 100% / 70%);
    width: 100%;
    line-height: 46px;
    float: left;
}
.bg_index3 .swiper-button-next{right:0px !important;}
.bg_index3  .swiper-button-prev{left:0px !important;}
.shhz  .swiper-button-prev{left:0px !important;}
.shhz .swiper-button-next{right: 0px !important;}
.xsbg,.kypt,.shhz {
    display: block;
    width: 1500px;
}

.xsbg .swiper-slide,.kypt .swiper-slide,.shhz .swiper-slide {
    width: 100%;
}

.xsbg .swiper-slide .st {
    float: left;
    width: 700px;
    position: relative;
}
.xsbg .swiper-slide .st:hover{
    box-shadow:0 0 0 0;
}

.xsbg .swiper-slide .st .pic,.xsbg .swiper-slide .xsimg .pic,.kypt .swiper-slide li .pic {
    float: left;
    width: 100%;
    overflow: hidden;
}

.xsbg .swiper-slide .st .pic {
    height: 465px;
    position: relative;
}

.xsbg .swiper-slide .st .bg_bt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 0 20px;
    padding-top: 60px;
    line-height: 40px;
    height: 110px;
    background: url(../img/xsbg_bt.png) no-repeat left center;
}

.xsbg .swiper-slide .st .bg_bt .time {
    float: left;
    background: url(../img/xsbg_time.png) no-repeat left center;
    padding-left: 20px;
font-size:16px;
    padding-right: 10px;
}

.xsbg .swiper-slide .st .bg_bt a,.xsbg .swiper-slide .xsimg .bt h6 a,.shhz .swiper-slide .bt h6 a {
    float: left;
    color: #fff;
    font-size: 20px;
}

.xsbg .swiper-slide .st .bt {
    float: left;
    width: 100%;
    padding: 20px 35px;
    height: 155px;
    margin-bottom:10px;
    text-align: left;
    background-color: #f3f6fb;
    border-radius: 0 0 10px 10px;
    border-bottom: 2px solid #005CBB;
}

.xsbg .swiper-slide .st .bt p,.xsbg .swiper-slide .xsimg .bt p,.shhz .swiper-slide .bt p {
    line-height: 30px;
}

.xsbg .swiper-slide .st .pic img,.xsbg .swiper-slide .xsimg .pic img {
    width: 100%;
}

.xsbg .swiper-slide .xsimg {
    width: 360px;
    margin-left: 40px;
    float: left;
    background-color: #fff;
}

.xsbg .swiper-slide .xsimg .pic {
    height: 240px;
}

.xsbg .swiper-slide .xsimg .bt {
    float: left;
    width: 100%;
    text-align: left;
    padding: 25px;
    height: 380px;
    margin-bottom:10px;
    border-radius: 0 0 10px 10px;
    background-color: #f3f6fb;
    border-bottom: 2px solid #005CBB;
}

.xsbg .swiper-slide .xsimg .bt h6,.shhz .swiper-slide .bt h6 {
    line-height: 30px;
    height: 60px;
    margin-bottom: 20px;
}

.xsbg .swiper-slide .xsimg .bt h6 a,.shhz .swiper-slide .bt h6 a {
    color: #333;
}

.xsbg .swiper-slide .xsimg .bt p {
    height: 210px;
}

.xsbg .swiper-slide .xsimg .bt .time,.shhz .swiper-slide .bt .time {
    float: left;
    background: url(../img/xsbg_time2.png) no-repeat left center;
    padding-left: 20px;
    font-size: 16px;
    color: #0956BD;
    font-family: 'sys';
}
.xsbg .swiper-slide .st:hover .bt,.xsbg .swiper-slide .xsimg:hover .bt{ background-color: #005CBB;}
.xsbg .swiper-slide .st:hover .bt p,.xsbg .swiper-slide .xsimg:hover .bt h6 a,.xsbg .swiper-slide .xsimg:hover .bt p{color: #fff;}
.xsbg .swiper-slide .xsimg:hover .bt .time{color: #fff;background: url(../img/xsbg_time.png) no-repeat left center;}

.kypt .swiper-slide ul {
    float: left;
    width: 100%;
}

.kypt .swiper-slide ul li {
    position: relative;
    float: left;
    width: 355px;
    margin-right: 40px;
}

.kypt .swiper-slide ul li:nth-child(2) {
    width: 710px;
}

.kypt .swiper-slide ul li:nth-child(3) {
    margin-right: 0;
}

.kypt .swiper-slide ul li .pic {
    height: 630px;
    text-align: center;
    object-fit: contain;
}

.kypt .swiper-slide ul li .pic img {
    display: inline-block;
    width: auto;
    height: 100%;
}

.kypt .swiper-slide ul li a .bt {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 20px;
    background: url(../img/kypt_bt.png) repeat left bottom;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 20px;
    padding-top: 580px;}

.shhz .swiper-slide  .bt{display: flex;align-content: normal;flex-wrap: wrap;overflow: visible;border-radius: 0px;background: #fff;}
.shhz .swiper-slide .pic {
    float: left;
    width: 100%;
    height: 226px;
    overflow: hidden;
}

.shhz .swiper-slide .pic img {
    width: 100%;
}

.shhz .swiper-slide .bt {
    width: 100%;
    text-align: left;
    padding: 25px;
    height: 100%;
    background-color: #f3f6fb;
}
.shhz .swiper-slide .bt.istop{border-top:2px solid #0956BD;border-radius:10px 10px 0 0}
.shhz .swiper-slide .bt.isbtt{border-bottom:2px solid #0956BD;border-radius: 0 0 10px 10px}
.shhz .swiper-slide .bt p {
    height: 210px;
}

.shhz .swiper-slide:hover .bt {
    background: url(../img/shhz_bt.png) #0956BD no-repeat center top;transition:0.3s
}

.shhz .swiper-slide:hover .bt .time{
    background-image: url(../img/xsbg_time.png);
    color: #fff;transition:0.3s
}

.shhz .swiper-slide:hover .bt h6 a {
    color: #fff;transition:0.3s
}

.shhz .swiper-slide:hover .bt p{
    color: #fff6;transition:0.3s
}


.jsfc {
    /* float: left; */
    width: 100%;
}

.jstab {
    position: relative;
    float: left;
    z-index: 55;
    width: 50%;
    margin: 0 50px;
    padding: 0;
    margin-top: -170px;
}

.jshd {
    width: 100%;
}

.jshd .swiper-slide {
    width: 100%;
    text-align: center;
}

.jshd .swiper-slide .pic {
    display: inline-block;
    width: 148px;
    height: 148px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 100%;
    cursor: pointer;
}

.jshd .swiper-slide .pic img {
    width: 100%;
}

.jshd .swiper-slide.swiper-slide-thumb-active .pic {
    border: 5px solid #F0AD4E;
}

.jshd .swiper-slide .pic .img {
    width: 101%;
    height: 101%;
    background-position: top center;
    background-size: cover;
    border-radius: 100%;
}

.jstab .swiper-button-prev:after,.jstab .swiper-container-rtl .swiper-button-next:after,.jstab .swiper-button-next:after,.jstab .swiper-container-rtl .swiper-button-prev:after {
    color: #fff;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
}

.jstab .swiper-button-prev {
    left: -50px !important;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #F1871A;
}

.jstab .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    right: -50px !important;
    background-color: #005CBB;
}

.jstab .swiper-button-prev:hover {
    background-color: #F1871A;
}

.jstab .swiper-button-next:hover {
    background-color: #005CBB;
}

.jsbd {
    position: relative;
    z-index: 49;
    float: left;
    width: 100%;
    /* height: 638px; */
    margin-top: 0;
}

.jsbd .swiper-slide {
    width: 100%;
    height: 500px;
}

.jsbd .swiper-slide:after {
    display: block;
    content: '';
    border-radius: 100%;
    position: absolute;
    right: 0px;
    top: 50px;
    z-index: 8;
    width: 528px;
    height: 528px;
    background-color: #F1871A;
}

.jsbd .swiper-slide .bt {
    float: left;
    width: 755px;
    margin-top: 0px;
}

.jsbd .swiper-slide .bt h6 {
    padding-left: 30px;
    width: 100%;
    background: url(../img/bg_jsbt.png) no-repeat -6px center;
    line-height: 60px;
    display: flex;
    align-items: center;
    border-left: 1px solid #0060B9;position: relative;
}
.jsbd .swiper-slide .bt h6:after {content:'';position:absolute;display:block;height: 100%;width: 0%;z-index: -1;left: 0;transition:0.3s}
.jsbd .swiper-slide .bt h6:hover:after {background: linear-gradient(270deg, #1e63bd00 0%, #1e63bd60 100%);width: 100%;transition:0.3s}
.jsbd .swiper-slide .bt h6 a {
    font-size: 34px;
    font-weight: 700;
    color: #0060B9;
}

.jsbd .swiper-slide .bt h6 span {
    font-size: 20px;
    color: #333;
    line-height: 70px;
    padding-left: 30px;
}

.jsbd .swiper-slide .bt p {
    float: left;
    margin-top: 20px;
    width: 95%;
    line-height: 30px;
    margin-bottom: 11%;
    font-size: 16px;
    color: hsl(0deg 0% 20% / 70%);
    margin-left: 30px;
}

.jsbd .swiper-slide .bt a.read {
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    float: left;
    width: 110px;
    display: block;
    padding: 0 15px;
    border-radius: 20px;
    background: url(../img/read.png) #0060B9 no-repeat right 10px center;
    color: #fff;
}
.jsbd .swiper-slide .bt a.read:hover{ background-color: #F0AD4E;}

.jsbd .swiper-slide .pic {
    position: relative;
    padding: 0px;
    margin-right: 30px;
    width: 634px;
    height: 634px;
    border-radius: 100%;
    background-color: #fff;
    border: 20px solid #fff;
    overflow: hidden;
    z-index: 11;
}


.jsbd .swiper-slide .pic .img {
    position: relative;
    z-index: 10;
    width: 101%;
    height: 101%;
    background-position: top center;
    background-size: cover;
    border-radius: 100%;
}

.jsbd .swiper-slide .pic .img img {
}

.xygk {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 200px;
    padding-top: 60px;
}

.xygk .lm {
    text-align: center;
}

.xygk .lm h6,.xygk .lm span {
    width: 100%
}

.xygk .lm::after {
    left: calc(50% - 17px);
}
.xygk .lm:hover:after {
    left: calc(50% - 32px);
}
.bg_xygk {
    position: relative;
    z-index: 7;
    width: 100%;
    float: left;
    margin: 20px 0;
}

.xygk .lm .more {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}

.xygk .swiper-slide {
    width: 100%;
}

.xygk .swiper-slide ul {
    float: left;
    width: 100%;
    height: 688px;
    position: relative;
}

.xygk .swiper-slide ul li {
    position: absolute;
    width: 152px;
}

.xygk .swiper-slide ul li .pic {
    position: relative;
    float: left;
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.xygk .swiper-slide ul li .pic:before {
    position: absolute;
    top: 7px;
    right: 6px;
    z-index: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background: #0956BD;
    z-index: 99
}

.xygk .swiper-slide ul li:hover .pic:before {
    background: #F1871A;
}

.xygk .swiper-slide ul li .pic:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    margin-top: -10%;
    margin-left: -10%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    content: '';
    border: 1px dashed #0956BD;
    padding: 14px;
    -webkit-animation: roted 90s linear infinite;
}

.xygk .swiper-slide ul li .img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #E4F1FD;
}

.xygk .swiper-slide ul li .bt {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.xygk .swiper-slide ul li .bt h6 span {
    width: 100%;
    color: #0956BD;
    font-size: 50px;
    line-height: 55px;
    font-family: 'sys';
}

.xygk .swiper-slide ul li .bt h6 em {
    font-size: 18px;
    color: #333;
    font-style: normal;
}

.xygk .swiper-slide ul li .bt p {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #333;
    line-height: 30px;
}

.xygk .swiper-slide ul li:nth-child(1) {
    left: 16px;
    top: calc(50% - 150px);
}

.xygk .swiper-slide ul li:nth-child(2),.xygk .swiper-slide ul li:nth-child(3) {
    left: 260px;
}

.xygk .swiper-slide ul li:nth-child(2) {
    top: 20px;
}

.xygk .swiper-slide ul li:nth-child(3) {
    bottom: 0;
}

.xygk .swiper-slide ul li:nth-child(4),.xygk .swiper-slide ul li:nth-child(5) {
    right: 240px;
}

.xygk .swiper-slide ul li:nth-child(4) {
    top: 20px;
}

.xygk .swiper-slide ul li:nth-child(5) {
    bottom: 0;
}

.xygk .swiper-slide ul li:nth-child(6) {
    right: 16px;
    top: calc(50% - 150px);
}

.xygk .swiper-slide ul li .pic .img {
    background-size: 50%;
}

.xygk .swiper-slide ul li:hover .pic .img {
    background-color: #0956BD;
    background-size: 50%;
}

.xygk .swiper-slide ul li:nth-child(1) .pic .img {
    background-image: url(../img/icon_xygk1.png);
    background-size: 50%;
}

.xygk .swiper-slide ul li:nth-child(1):hover .pic .img {
    background-image: url(../img/icon_xygk1on.png);
    background-size: 50%;
}

.xygk .swiper-slide ul li:nth-child(2) .pic .img {
    background-image: url(../img/icon_xygk2.png);
}

.xygk .swiper-slide ul li:nth-child(2):hover .pic .img {
    background-image: url(../img/icon_xygk2on.png);
}

.xygk .swiper-slide ul li:nth-child(3) .pic .img {
    background-image: url(../img/icon_xygk3.png);
}

.xygk .swiper-slide ul li:nth-child(3):hover .pic .img {
    background-image: url(../img/icon_xygk3on.png);
}

.xygk .swiper-slide ul li:nth-child(4) .pic .img {
    background-image: url(../img/icon_xygk7.png);
}

.xygk .swiper-slide ul li:nth-child(4):hover .pic .img {
    background-image: url(../img/icon_xygk7on.png);
}

.xygk .swiper-slide ul li:nth-child(5) .pic .img {
    background-image: url(../img/icon_xygk5.png);
}

.xygk .swiper-slide ul li:nth-child(5):hover .pic .img {
    background-image: url(../img/icon_xygk5on.png);
}

.xygk .swiper-slide ul li:nth-child(6) .pic .img {
    background-image: url(../img/icon_xygk6.png);
}

.xygk .swiper-slide ul li:nth-child(6):hover .pic .img {
    background-image: url(../img/icon_xygk6on.png);
}

.sp {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 510px;
    height: 510px;
    border-radius: 100%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    z-index: 100;
    border: 10px solid #fff;
    transition: all .4s;
}
.sp.play {
	
transition: all .4s;
	
border-radius: 20px;
	
width: 64%;
	
height: 80%;
	
box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.sp .videoon {
    height: 100%;
    display: block
}
.sp .videoon .close{cursor:pointer;    z-index: 999;}
.sp .videoon a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/sp_on.png) no-repeat center center;
    z-index: 99;background-size: 15%;
}

.sp .videoon a.playing,.sp.play .videoon a.playing {
    opacity: 0
}
.videoon .play-icon:hover {
            opacity: 1;
            animation:sca 0.4s
        }
.sp .videoon video {
    width: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.xygk .swiper-button-prev {
    left: 45% !important;
    bottom: 0px !important;
    top: auto !important;
    border-radius: 100%;
}

.xygk .swiper-button-next {
    right: 45% !important;
    top: auto !important;
    bottom: 0px !important;
    border-radius: 100%;
}


.kypt .pic .a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in;
}


.kypt .items .sw {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
}

.kypt .items .item {
    width: 150px;
    height: 630px;
    overflow: hidden;
    position: relative;
    transition: width .3s ease;
}

.kypt .items .item a {
    display: block;
    height: 100%;
    position: relative;
    z-index: 2;
}

.kypt .items .item .img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    z-index: 1;
    /* opacity: 0.1;*/
    transition: opacity .3s ease;
}

.kypt .items .item .img-box .pic {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.kypt .items .item .show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    transition: all .3s ease;
}

.kypt .items .item .show h3 {
    font-size: 26px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    font-weight: 200;
}

.kypt .items .item .show h3 i {
    display: block;
    font-weight: 600;
}

.kypt .items .item .hide {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 29px 38px 34px 62px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.kypt .items .item .hide h3 {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    font-weight: 600;
}

.kypt .items .item .hide p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    height: auto;
}

.kypt .items .item a:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all .3s ease;
    z-index: 2;
}

.kypt .items .item.active {
    width: 76%;
}

.kypt .items .item.active a:before {
    opacity: 0;
}

.kypt .items .item.active .show {
    opacity: 0;
    visibility: hidden;
}

.kypt .items .item.active .hide {
    opacity: 1;
    visibility: visible;
}

.kypt .content {
    margin-top: 0;
}


@media (max-width: 1025px) {

    .kypt .items .item .show {
        display: none;
    }

    .kypt .items .item a:before {
        display: none;
    }

    .kypt .items .item .hide {
        position: static;
        width: auto;
        opacity: 1;
        visibility: visible;
        padding: 2px;
        background: rgba(234, 110, 32, 1);
    }

    .kypt .items .item .img-box {
        position: static;
        width: 100%;
        transform: none;
    }

    .kypt .items .item {
        height: auto;
    }

    .kypt .items .item .img-box .pic {
        padding-top: 73.23%;
        height: auto;
    }

    .kypt .items .item .img-box, .kypt .items .item {
        height: auto;
    }

    .kypt .items .item .hide h3 {
        font-size: 2px;
    }

    .kypt .items .page {
        font-size: 0;
        text-align: center;
        margin-top: 2px;
    }

    .kypt .items .page span {
        margin: 5px;
    }

    .kypt .items .page .active {
        background: #ff6842;
        opacity: 1;
    }

    .kypt .content {
        margin-top: 2px;
    }

 }