.header {
	background-color: #fff;
}

.banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.swiper_cpban .swiper-slide {
	overflow: hidden;
}

.swiper_cpban .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner_txt {
	position: absolute;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
}

.banner_sub {
	color: #fff;
	font-weight: 600;
	font-size: calc(20px + 3.125vw);
	opacity: 0;
	transform: translateY(60px);
	transition: 0.8s;
}

.banner_bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease 2s;
	transform: scale(1.05);
}

.swiper-slide-active .banner_bg {
	transform: scale(1);
}

.swiper-slide-active .banner_sub {
	opacity: 1;
	transform: translateY(0);
}

.swiper-qie {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 31%;
	z-index: 10;
	display: flex;
	align-items: center;
	z-index: 10;
}

.swiper-cp {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(0 0 0 / 20%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
}

.swiper-cp-next {
	margin-left: 20px;
}

.swiper-qie svg {
	height: auto;
	width: 30px;
}

.swiper-cp:hover {
	background: #000;
}

.page1_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.page1_li {
    overflow: hidden;
    border-radius: 26px;
    width: 32%;
    display: block;
    background: #f7f7f7;
    margin-right: 2%;
    padding: 25px 15px 15px;
    transition: 0.4s;
}

.page1_li:nth-child(3n){
    margin-right: 0;
}

.page1_li:hover{
    box-shadow: 0 0 20px rgba(153 153 153 / 30%);
}

.page1_li_t {
    line-height: 1.2;
    position: relative;
    padding-right: 40px;
    color: #000;
}

.page1_li_t:after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    background-color: #b7d44c;
    top: -4px;
    background-image: url(/static/cn/img/jian03.png);
    background-repeat: no-repeat;
    background-position: center;
    display: none;
}

.page1_li_t:hover{
    color:#b7d44c;
}

.xwImg {
    width: 100%;
    overflow: hidden;
    max-height: 530px;
    height: 35vw;
}

.xwImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.xwImg:hover img{
    transform: scale(1.05);
}



@media only screen and (max-width: 768px) {
    .page1_li{
        width: 100%;
    }
    
    .xwImg{
        height: 118vw;
    }
    
    .swiper-cp {
        width: 36px;
        height: 36px;
    }
    
    .banner{
        margin-top: 60px;
    }
    
    .swiper-qie svg {
        width: 18px;
    }
}













