@charset "UTF-8";

body {
	overflow-x: hidden;
}

.eclip{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.eclips{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.line2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;display: block\0;}
.line3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;display: block\0;}
.line4{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;display: block\0;}
.line5{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;display: block\0;}



.index {
    font-size: 0;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    /* overflow: hidden; */
    z-index: 99;
    /* padding-top: 1.22rem; */
    background: #fff;
}

/*banner*/

.banner-k {
	position: relative;
    overflow: hidden;
}

.banner,
.banner div.slick-list,
.banner .slick-slide a,
.banner .slick-slide a img {
	width: 100%;
	height: 100%;
}

.banner {
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.banner2 {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.banner .slick-list {
	position: relative;
}

.banner .slick-list::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-image: -moz-linear-gradient(-90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%);
	background-image: -webkit-linear-gradient(-90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%);
	background-image: -ms-linear-gradient(-90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%);
	height: 2.31rem;
}

.banner .slick-slide a {
	display: block;
	overflow: hidden;
	position: relative;
}

.banner .slick-slide img {
	display: block;
	width: 100%;
	transform: scale(1.1);
	transition: all 5s ease-out;
}

.banner .img_scale img {
	transform: scale(1);
}


.banner .slick-prev,
.banner .slick-next {
	width: 0.09rem;
	height: 0.16rem;
	top: inherit;
	bottom: 0.65rem;
}

.banner .slick-prev {
	left: inherit;
	right: 50%;
	margin-right: 0.7rem;
	background: url(../images/ban-prev.png) no-repeat;
	background-size: 100% 100%;
}

.banner .slick-next {
	right: inherit;
	left: 50%;
	margin-left: 0.7rem;
	background: url(../images/ban-next.png) no-repeat;
	background-size: 100% 100%;
}

.down-page {
	position: absolute;
	width: 1rem;
	height: 1rem;
	line-height: 1rem;
	left: 50%;
	bottom: 0.27rem;
	transform: translateX(-50%);
	z-index: 99;
	font-size: 0;
	text-align: center;
	cursor: pointer;
}

@keyframes svg-sircle {
	0% {
		stroke-dasharray: 300;
		stroke-dashoffset: 300;
	}

	100% {
		stroke-dasharray: 300;
		stroke-dashoffset: 0;
	}
}

.down-page svg {
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

.down-page.on .pie-bar {
	animation: svg-sircle 10s linear;
}

.down-page .pie-bg {
	stroke: #fff;
	opacity: .3;
}

.down-page .pie-bar {
	stroke: #fff;
}

.down-page circle {
	stroke-dashoffset: 0;
	transform: rotate(-90deg);
	transform-origin: center;
	transition: all .2s;
	stroke: currentColor;
	z-index: 2;
}

.down-page>img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 0.17rem;
	animation: move 1.5s infinite ease-in-out;
	cursor: pointer;
}

@keyframes move {

	0%,
	100% {
		top: 45%;
	}

	50% {
		top: calc(45% + 0.1rem);
	}
}




@media screen and (max-width: 1024px) {

    html,
    body,
    .banner,
    .banner .slick,
    .banner .slick .slick div,
    .banner .slick .slick-slide a,
    .banner .slick .slick-slide a img {
        height: auto !important;
    }

    #downPage {
        display: none;
    }

   
    
    .index {
        position: static;
        padding-top: 0;
        overflow: hidden;
    }



    .index::before {
        display: none;
    }
}



        /* 功能卡片区域 */
        .features-section {
            max-width: 1400px;
            margin: 0 auto 155px;
            padding: 0 ;
            position: absolute;
            width:100%;
            z-index: 3;
            bottom:0;
            left:50%; transform: translateX(-50%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.8);
           /*  backdrop-filter: blur(10px);*/
            border-radius: 24px;
            padding: 26px 28px;
            text-align: center;
            border: 2px solid rgba(37, 99, 235, 0.15);
            box-shadow: 
                0 10px 40px rgba(37, 99, 235, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.35s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #60a5fa, #93c5fd);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 60px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 20px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-badge i {
            font-size: 11px;
            color: #2563eb;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            color: #2563eb;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
        }


/*首页样式*/

.title {
	position: relative;
}

.title h3 {
	font-weight: normal;
}

.title h3 b,
.title h3 span {
	display: block;
}

.title h3 b {
	font-family: 'sySong';
	font-size: 0.36rem;
	color: #000;
}

.title h3 b em {
	font-style: normal;
	color: #0a3381;
}

.title h3 span {
	font-size: 0.14rem;
	color: #666;
}

.more {
	position: absolute;
	right: 0;
	bottom: 0;
}

.more a {
	display: block;
	font-size: 0.16rem;
	color: #666;
	line-height: 0.4rem;
	transition: all 0.3s;
}

.more:hover a {
	color:#0a3381;
}

/*主体*/


/*康大师说*/
/* 图片容器 */
/* 图片懒加载 */
img.lazyload {opacity: 0;}
img.lazyloaded {opacity: 1;}
.imgBox{position:relative;overflow:hidden;isolation:isolate;contain: layout style paint;}
.imgBox .img, .imgBox .imgLi{background-size:cover!important;background-position:center!important;background-repeat:no-repeat!important}
.imgBox .img, .imgBox .imgLi{padding-bottom: 60%;transition:transform .5s;background-size:cover;display:block;background-repeat:no-repeat;background-position:center;display:block;background: #fff url(../images/loader.svg) center;background-size: .24rem auto !important;will-change: transform;}
.mtjj{background: none !important;}
.imgBox img, .imgBox video{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition: .5s;will-change: transform;}
.ieFiximg img{opacity: 0\0;transition: transform .5s}
.ieFiximg .imgbg{width: 100%;height: 100%;overflow: hidden;transition: transform .3s ease}
.lt17Box{padding-bottom: .4rem;margin-bottom: .2rem;margin-top: .2rem;}
.lt17Box .ar6W{ display: none}
.lt17{/* display: grid; *//* grid-template-columns: repeat(5, 1fr); */ /* grid-gap: .3rem; */}
.lt17 .a{display: block;position: relative;z-index: 1;box-shadow: 0px .2rem .1rem 0px rgba(5, 47, 114, 0.13);border-radius: .1rem;overflow: hidden;}
.lt17 .imgBox .img{ padding-bottom: 150%;}
.lt17 .imgBox::after{content: "";position: absolute;top: 0;right: 0;bottom: 0;left: 0;background: linear-gradient(180deg, rgba(113, 102, 235, 0) 0%, rgba(113, 102, 235, 0.19) 50%, #7166EB 100%);}
.lt17 .txt{position: absolute;right: 0;bottom: 0;left: 0;padding: 0 .22rem .35rem;z-index: 2;}
.lt17 h4{font-size: .18rem;color: #fff !important;line-height: .32rem;font-weight: 500;min-height: .64rem;}

.lt17 li:nth-child(2) .imgBox::after{ background: linear-gradient(180deg, rgba(4, 211, 211, 0) 30%, #04D3D3 100%);}
.lt17 li:nth-child(3) .imgBox::after{ background: linear-gradient(180deg, rgba(0, 75, 191, 0) 19%, rgba(0, 75, 191, 0.91) 100%);}
.lt17 li:nth-child(4) .imgBox::after{ background: linear-gradient(180deg, rgba(246, 165, 28, 0) 35%, #F6A51C 100%);}
.lt17 li:nth-child(5) .imgBox::after{ background: linear-gradient(180deg, rgba(32, 180, 209, 0.18) 31%, #20B4D1 100%);}

.lt17 li:nth-child(2), .lt17 li:nth-child(4){ margin-top: .4rem}
.lt17 li:nth-child(3){ margin-top: .9rem}




.section1 {
	padding-top: 1.2rem;
	padding-bottom: 0.65rem;
	overflow: hidden;
}

.s1-c {
	align-items: flex-start;
}

.s1-l {
	width: 50.97%;
}

.s1-l .slick-slider {
	margin-top: 0.3rem;
}

.s1-l ul li a {
	display: block;
	position: relative;
}

.s1-l ul li .bg_img {
	width:2.2rem; height: 1.1rem;
}

.s1-l ul li:hover .bg_img .a {
	transform: scale(1.1);
}

.s1-l ul li .bg_img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/jdt_yy.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
}



.s1-l ul li .s1-ltx {
	position: absolute;
	left: 0.4rem;
	right: 2rem;
	bottom: 0.25rem;
	z-index: 1;
}

.s1-l ul li .s1-ltx h3 {
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.28rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	color: #fff;
}


.s1-ld ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 0.25rem;
}

.s1-ld ul li {
	width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
margin-bottom:.2rem;
}
.s1-ld ul li .txt{
width:calc(100% - 2.2rem);
}

.s1-ld ul li a {
	background: #f8f8f8;
	padding: 0.1rem 0.2rem;
	overflow: hidden;
	transition: all 0.3s;
}

.s1-ld ul li a h3 {
	font-size: 0.18rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s;
}

.s1-ld ul li a span {
	display: inline-block;
	float: right;
	font-size: 0.14rem;
	line-height: 0.3rem;
	background: url(../images/time1.png) no-repeat left center;
	background-size: 0.13rem 0.13rem;
	padding-left: 0.23rem;
	transition: all 0.3s;
}

.s1-ld ul li:hover a {
	background: url(../images/s1-ldbg.png) no-repeat right center;
	background-size: 100% 100%;
}

.s1-ld ul li:hover a h3 {
	color: #fff;
}

.s1-ld ul li:hover a span {
	color: #fff;
	background-image: url(../images/time2.png);
}

.s1-r {
	width: 46.8%;
}

.s1-r ul {
	margin-top: 0.3rem;
	background: #f8f8f8;
}

.s1-r .list{position: relative;margin-top: .25rem;}
.s1-r .list:after{content: '';position: absolute;top: 0;left: 0;bottom: 0;width: 1.92rem;background:linear-gradient(to right,#4c62bd,#c300e5);background-size: cover;z-index: 0;}
.s1-r .list li{padding: .25rem;border-top: 1px solid #ececec;position: relative;z-index: 3;line-height: .24rem;padding-left: 2.14rem;}
.s1-r .list li a{
display: flex;
    align-items: center;
    flex-direction: row;
}
.s1-r .list li time{font-size: .18rem;font-style:normal;position: absolute;left: .3rem;color: #fff;font-family: 'rob';}
.s1-r .list li time img{height: .23rem;margin-right: .1rem;    vertical-align: middle;}
.s1-r .list li h4{font-size: .18rem;
    line-height: .27rem;
    height: .54rem;
}
.s1-r .list li a:hover h4{
    color: #0a3381;
}



.section2 {
	padding-top: 0.8rem;
	padding-bottom: 0.95rem;
	background: url(../images/section2_bg.png) no-repeat center top;
	background-size: cover;
}

.section2 .title {
	text-align: center;
}

.section2 .title h3 {
	display: inline-block;
	text-align: left;
}

.s2-c {
	margin-top: 0.4rem;
}

.s2-c ul {
	padding-bottom: 0.85rem;
	position: relative;
}

.s2-c ul::before {
	content: '';
	position: absolute;
	bottom: 0.25rem;
	left: 0;
	right: 50%;
	margin-right: 0.65rem;
	border: 1px solid rgba(182, 48, 48, 0.3);
}

.s2-c ul::after {
	content: '';
	position: absolute;
	bottom: 0.25rem;
	right: 0;
	left: 50%;
	margin-left: 0.65rem;
	border: 1px solid rgba(182, 48, 48, 0.3);
}

.s2-c ul li a {
	display: block;
	padding: 0.35rem 0.45rem;
	transition: all 0.3s;
	position: relative;
}

.s2-c ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	height: 1.96rem;
	border-left: 1px solid rgba(116, 116, 116, 0.3);
}

.s2-c ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0.34rem;
	height: 0.34rem;
	background: url(../images/s2-csj.png) no-repeat;
	background-size: 100% 100%;
	display: none;
	transition: all 0.3s;
}

.s2-c ul li a .s2-cdate {
	font-family: 'sySong';
	font-size: 0.18rem;
	color: #0a3381;
	transition: all 0.3s;
}

.s2-c ul li a .s2-cdate span {
	font-size: 0.36rem;
	padding-right: 0.05rem;
}

.s2-c ul li a h3 {
	font-size: 0.18rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 0.25rem;
	transition: all 0.3s;
}

.s2-c ul li a .s2-cmore {
	font-size: 0.16rem;
	color: #737373;
	width: 2.19rem;
	height: 0.35rem;
	line-height: 0.35rem;
	padding-left: 0.2rem;
	background: url(../images/s2-cmorebg.png) no-repeat;
	background-size: 100% 100%;
	margin-top: 0.34rem;
	transition: all 0.3s;
}

.s2-c ul li:hover a {
	background: #0a3381;
}

.s2-c ul li:hover a::after {
	display: block;
}

.s2-c ul li:hover a .s2-cdate {
	color: #fff;
}

.s2-c ul li:hover a h3 {
	color: #fff;
}

.s2-c ul li:hover a .s2-cmore {
	color: #fff;
}

.s2-c .slick-prev,
.s2-c .slick-next {
	top: inherit;
	transform: none;
	bottom: 0;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	border: 1px solid #4D3699;
}

.s2-c .slick-prev {
	left: inherit;
	right: 50%;
	margin-right: 0.15rem;
	background-image: url(../images/s2-prev1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 0.21rem auto;
}

.s2-c .slick-next {
	right: inherit;
	left: 50%;
	margin-left: 0.15rem;
	background-image: url(../images/s2-next1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 0.21rem auto;
}

.s2-c .slick-prev:hover,
.s2-c .slick-next:hover {
	background-color: #4D3699;
}

.s2-c .slick-prev:hover {
	background-image: url(../images/s2-prev2.png);
}

.s2-c .slick-next:hover {
	background-image: url(../images/s2-next2.png);
}


.section3 {
	background-color: #f4f3f1;
	position: relative;
	z-index: 2;
}

.s3-c {
	overflow: hidden;
}

.s3-c .title {
	margin-top: 0.75rem;
}

.s3-c .more {
	position: static;
	margin-top: 0.45rem;
}

.s3-r {
	float: right;
	width: 64.21%;
}

.s3-r ul li a {
	display: block;
}

.s3-r .slick-slider::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1.09rem;
	height: 1.09rem;
	background: url(../images/s3-bf.png) no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
}

.s3-r ul li a .pic {
	padding-top: 55.47%;
}

.s3-d {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1.68rem;
	background-color: #fff;
	padding: 0.55rem 0.15rem;

}

.s3-d ul li:first-child {
	display: none;
}

.s3-d ul li a {
	display: block;
	margin: 0 0.35rem;
}

.s3-d ul li a .pic {
	padding-top: 55.47%;
}

.s3-d ul li a h3 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 0.5rem;
	background: rgba(169, 12, 12, 0.7);
	text-align: center;
	padding: 0 0.2rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	font-size: 0.18rem;
	color: #fff;
}

.s3-d .slick-prev,
.s3-d .slick-next {
	top: -0.8rem;
	transform: none;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #d9b669;
}

.s3-d .slick-prev {
	left: 0.3rem;
	background-image: url(../images/s2-prev2.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.21rem auto;
}

.s3-d .slick-next {
	right: inherit;
	left: 1.1rem;
	background-color: #4D3699;
	background-image: url(../images/s2-next2.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.21rem auto;
}


.section4 {
	padding-top: 2.4rem;
	padding-bottom: 0.65rem;
	position: relative;
	z-index: 1;
}

.section4::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 60.16%;
	background-color: #4D3699;
}

.section4::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 39.84%;
	background: #f4f3f1;
}

.s4-c {
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

.s4-l {
	width: 61.45%;
}

.s4-c .title h3 b,
.s4-c .title h3 b em,
.s4-c .title h3 span,
.s4-l .more a {
	color: #fff;
}

.s4-l .s4-lbox {
	align-items: flex-start;
	margin-top: 0.3rem;
}

.s4-l .s4-l-l {
	width: 48.79%;
}

.s4-l .s4-l-l a {
	display: block;
}

.s4-l .s4-l-l a .bg_img {
	height: 2.86rem;
}

.s4-l .s4-l-l a .s4-rtx {
	padding: 0.2rem 0.35rem;
	background-color: #fff;
	overflow: hidden;
}

.s4-l .s4-l-l a .s4-rtx h3 {
	font-size: 0.18rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.s4-l .s4-l-l a .s4-rtx p {
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 0.2rem;
}

.s4-l .s4-l-l a .s4-rtx span {
	display: block;
	float: right;
	font-size: 0.14rem;
	color: #4D3699;
	background: url(../images/time1.png) no-repeat left center;
	background-size: 0.13rem 0.13rem;
	padding-left: 0.23rem;
	margin-top: 0.2rem;
}

.s4-l .s4-l-l a:hover .s4-rtx h3 {
	color: #4D3699;
}

.s4-l .s4-l-r {
	width: 43.01%;
}

.s4-l .s4-l-r ul li a {
	display: block;
	padding: 0.35rem 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.3);
	overflow: hidden;
}

.s4-l .s4-l-r ul li:first-child a {
	border-top: none;
}


.s4-l .s4-l-r ul li a h3 {
	color: #fff;
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s;
}

.s4-l .s4-l-r ul li a span {
	float: right;
	color: #fff;
	font-size: 0.14rem;
	background: url(../images/time2.png) no-repeat left center;
	background-size: 0.13rem 0.13rem;
	padding-left: 0.23rem;
}

.s4-l .s4-l-r ul li:hover a h3 {
	text-decoration: underline;
}

.s4-r {
	width: 31.73%;
}

.s4-r ul {
	margin-top: 0.3rem;
}

.s4-r ul li a {
	display: block;
}

.s4-r ul li a .bg_img {
	height: 2.86rem;
}

.s4-r ul li a .bg_img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.65rem;
	background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.s4-r ul li a .s4-rtx {
	overflow: hidden;
	padding-bottom: 0.25rem;
	border-bottom: 0.03rem solid #4D3699;
}

.s4-r ul li a .s4-rtx h3 {
	font-size: 0.18rem;
	line-height: 0.3rem;
	margin-top: 0.2rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.s4-r ul li a .s4-rtx p {
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 0.1rem;
}

.s4-r ul li a .s4-rtx span {
	display: block;
	float: right;
	font-size: 0.14rem;
	line-height: 0.36rem;
	background: url(../images/time1.png) no-repeat left center;
	background-size: 0.13rem 0.13rem;
	padding-left: 0.23rem;
	color: #4D3699;
}

.s4-r .slick-dots {
	margin-top: 0;
	bottom: 1.9rem;
	font-size: 0;
}

.s4-r .slick-dots li {
	width: 0.09rem;
	height: 0.09rem;
	margin: 0 0.07rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.s4-r .slick-dots li.slick-active {
	background: #fff;
}

.s4-r .slick-dots li button {
	display: none;
}

.section5 {
	background: url(../images/section5_bg.png) no-repeat center bottom;
	background-size: cover;
	padding-top: 0.75rem;
	padding-bottom: 0.7rem;
}

.s5-c {
	align-items: flex-start;
}

.s5-l {
	width: 47.91%;
}

.s5-l .s5-lt {
	margin-top: 0.3rem;
}

.s5-l .s5-lt a {
	display: block;
	position: relative;
}

.s5-l .s5-lt a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.6rem;
	height: 0.6rem;
	background: url(../images/s3-bf.png) no-repeat;
	background-size: 100% 100%;
}

.s5-l .s5-lt a .bg_img {
	height: 4.38rem;
}

.s5-l .s5-lt a h3 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 0.54rem;
	text-align: center;
	padding: 0 0.2rem;
	font-size: 0.18rem;
	color: #fff;
	background: rgba(169, 12, 12, 0.7);
}

.s5-r .s5-lt a .bg_img {
	height: 2.87rem;
}

.s5-r .s5-lt a::after {
	display: none;
}


.gg-list {
	margin-top: 0.15rem;
}

.gg-list li {
	font-size: 0.18rem;
	line-height: 0.74rem;
	padding: 0 0.1rem;
	border-bottom: 1px dashed #ccc;
}

.gg-list li span {
	float: right;
	font-size: 0.14rem;
	color: #666;
	background: url(../images/time3.png) no-repeat left center;
	background-size: 0.13rem 0.13rem;
	padding-left: 0.23rem;
	transition: all 0.4s;
}

.gg-list li a {
	display: block;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	position: relative;
	padding-left: 0.17rem;
	transition: all 0.4s;
}

.gg-list li a::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 0.07rem;
	height: 0.07rem;
	background: #4D3699;
}

.gg-list li:hover span,
.gg-list li:hover a {
	color: #4D3699;
}

.gg-list li:hover span {
	background-image: url(../images/time1.png);
}



@media screen and (max-width:1600px) {
	.section4::after {
		width: 62.16%;
	}

	.section4::before {
		width: 37.84%;
	}
}

@media screen and (max-width: 1024px) {

	.banner,
	.banner div.slick-list,
	.banner .slick-slide a,
	.banner .slick-slide a img {
		height: auto;
	}

	.banner .slick-list::after {
		display: none;
	}

	.section1 {
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
	}

	.s1-l {
		width: 100%;
	}

	.s1-l ul li .bg_img {
		width:2rem;
	}
.s1-ld ul li .txt {
    width: calc(100% - 2rem);
}

	.s1-r {
		width: 100%;
		margin-top: 0.3rem;
	}

	.section2 {
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
	}

	.s2-c {
		margin-top: 0;
	}

	.section4 {
		padding-top: 0.3rem;
		padding-bottom: 0;
	}

	.section4::before,
	.section4::after {
		display: none;
	}

	.s4-l {
		width: 100%;
		background-color: #4D3699;
		padding: 0.3rem;
	}

	.s4-l .s4-l-l {
		width: 100%;
	}

	.s4-l .s4-l-l a .bg_img {
		height: auto;
		padding-top: 63.98%;
	}

	.s4-l .s4-l-l a .s4-rtx p {
		height: auto;
		max-height: 0.48rem;
	}

	.s4-l .s4-l-r {
		width: 100%;
	}

	.s4-l .s4-l-r ul li a h3 {
		height: auto;
		max-height: 0.6rem;
	}

	.s4-r {
		width: 100%;
		background: #f4f3f1;
		padding: 0.3rem;
	}

	.s4-r ul li a .bg_img {
		height: auto;
		padding-top: 62.58%;
	}

	.section5 {
		padding-top: 0.3rem;
		padding-bottom: 0.5rem;
	}

	.s5-l {
		width: 100%;
	}

	.s5-l .s5-lt a .bg_img {
		height: auto;
		padding-top: 63.62%;
	}

	.s5-r {
		width: 100%;
		margin-top: 0.3rem;
	}

	.s5-r .s5-lt a .bg_img {
		padding-top: 41.53%;
	}
}

@media screen and (max-width: 768px) {
	.down-page {
		width: 0.8rem;
		height: 0.8rem;
		line-height: 0.8rem;
		bottom: 0.2rem;
	}

	.banner .slick-prev,
	.banner .slick-next {
		bottom: 0.42rem;
	}

	.title h3 b {
		font-size: 0.3rem;
	}

      .s4-c .title h3 b em {
    
    color: #0a3381;
    }

	.s1-l .slick-dots {
		right: 0.1rem;
	}

	.s1-l ul li .s1-ltx {
		left: 0.2rem;
		right: 1.8rem;
	}

	.s1-ld ul li {
		width: 100%;
		
	}

	.s1-ld ul li:first-child {
		margin-top: 0;
	}

	

	.s1-r ul li a {
		padding: 0.1rem 0;
		margin: 0 0.1rem;
	}

	.section3 {
		padding-bottom: 0.3rem;
	}

	.s3-c .title {
		margin-top: 0.3rem;
	}

	.s3-c .more {
		position: absolute;
		margin-top: 0;
	}

	.s3-r {
		display: none;
	}

	.s3-d {
		position: static;
		transform: none;
		margin-top: 0.5rem;
		padding: 0.35rem 0.15rem;
	}

	.s3-d ul li a {
		margin: 0 0.15rem;
	}

	.s3-d .slick-prev,
	.s3-d .slick-next {
		top: -0.55rem;
		width: 0.4rem;
		height: 0.4rem;
	}

	.s3-d .slick-prev {
		left: 0.15rem;
	}

	.s3-d .slick-next {
		left: 0.9rem;
	}

	.s4-l,
	.s4-r {
		padding: 0.2rem;
	}


.s1-r .list{position: relative;margin-top: .25rem;}
.s1-r .list:after{content: '';position: absolute;top: 0;left: 0;bottom: 0;width: 1.42rem;background:linear-gradient(to right,#4c62bd,#c300e5);background-size: cover;z-index: 0;}
.s1-r .list li{padding: .1rem;border-top: 1px solid #ececec;position: relative;z-index: 3;line-height: .24rem;padding-left: 1.64rem;}
.s1-r .list li a{
display: flex;
    align-items: center;
    flex-direction: row;
}
.s1-r .list li time{font-size: .18rem;font-style:normal;position: absolute;left: .13rem;color: #fff;font-family: 'rob';}
.s1-r .list li time img{height: .23rem;margin-right: .1rem;    vertical-align: middle;}
.s1-r .list li h4{font-size: .18rem;
    line-height: .27rem;
    height: .54rem;
}


}