.center_content {
	background-position: 0% 0%;
	/* padding-bottom: 1rem; */
}

.title_desc {
	font-weight: 400;
	font-size: .16rem;
	color: #3B3B3B;
	line-height: .34rem;
	font-style: normal;
	text-transform: none;
}

.title {
	color: #066DCC;
	font-weight: bold;
	font-size: .2rem;
	line-height: .34rem;
	font-style: normal;
	text-transform: none;
	justify-content: center;
	margin-top: .3rem !important;
}

.default_bottom {
	padding-bottom: .8rem;
}

.content_item {
	display: flex;
	flex-wrap: wrap;
	margin: .25rem;
}

.flex_col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: .2rem;
}

.flex_row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: .2rem;
}

.content_title {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding-top: 1rem;
	padding-bottom: .25rem;
}

.content_title img {
	width: .8rem;
}

.content_title p {
	font-weight: bold;
	font-size: 0.36rem;
	color: #222222;
	text-align: center;
	font-style: normal;
	text-transform: none;
	padding: 0 .3rem;
}



.c1 {
	display: flex;
	width: 100%;
	gap: .2rem
}

.left-section {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.left-section img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.right-section {
	flex: 2;
	display: flex;
	flex-direction: column;
}

.text-section {
	flex: 1;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	padding: .4rem;
	flex-direction: column;
	gap: .1rem;
}

.text-section .div {
	font-size: .2rem;
}

.carousel-section {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* 移除图片绝对定位，设置并排显示 */
.carousel-images img {
	position: relative !important;
	width: 50% !important;
	display: block !important;
	opacity: 0;
	transition: opacity 0.5s ease;
	margin-right: .2rem;
}

/* 新增活动图片样式 */
.carousel-images img.active {
	opacity: 1;
}

/* 调整内容容器样式 */
.carousel-images .content {
	display: flex;
	overflow-x: hidden;
	white-space: nowrap;
	transition: transform 0.5s ease;
}

/* 按钮悬停效果（可选） */
.prev-button:hover,
.next-button:hover {
	background-color: rgba(255, 255, 255, 70%);
}


.prev-button,
.next-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgb(255 255 255 / 50%);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.prev-button {
	left: 0px;
	z-index: 2;
	border-radius: 0 .1rem .1rem 0;
}

.next-button {
	right: 0px;
	border-radius: .1rem 0 0 .1rem;
}

.block_bottom {
	padding-bottom: .8rem;
}

.c2_bg {
	background: #F6F7F9;
}

.c2 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0.5rem;
}

.c2 {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding-bottom: 0rem;
}

.c2_cont {
	width: 80% !important;
}

.center_text {
	text-align: center;
	font-size: .2rem;
	color: #333333;
	line-height: .30rem;
	padding: .2rem;
}

.num_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(100%);
}

.num_box_p1 {
	font-family: nd;
	font-weight: bold;
	font-size: 0.6rem;
	color: #066DCC;
}

.num_box_p2 {
	font-family: nd;
	font-weight: bold;
	font-size: 0.4rem;
	color: #066DCC;
}

.num_box_p3 {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.24rem;
	color: #222222;
	margin-top: 0.15rem;
}


.c4_num {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

.num_box {
	flex: 1;
	display: flex;
	justify-content: center;
}

.num_box .line {
	position: relative;
	width: 1px;
	background: #BCBCBC;
	border-radius: 0px 0px 0px 0px;
	margin-right: .2rem;
}

.num_box .line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 30%;
	/* 占据上半部分 */
	background: #066DCC;
	/* 灰色 */
	transition: height 0.3s ease, background-color 0.3s ease;
	/* 添加过渡效果 */
}

.num_box .box {
	display: flex;
	flex-direction: column;
	/* width: 3rem; */
}

.num_desc {
	font-size: .2rem;
}

.btn_group {
	margin-top: .5rem;
	padding: .15rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 自动适应列宽 */
	gap: .25rem;
	/* 按钮间距 */
	grid-auto-flow: row dense;
}

.btn_item {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #007bff;
	border-radius: .5rem;
	background-color: #ffffff;
	font-size: .2rem;
}

.btn_left {
	padding: .2rem .3rem;
	font-weight: bold;
	font-size: .2rem !important;
	color: #222222;
	font-style: normal;
	text-transform: none;
	text-align: center;
}

.btn_right {
	background: linear-gradient(179deg, #2DA9F1 0%, #066DCC 100%);
	border-radius: .4rem;
	padding: .2rem .3rem;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-weight: bold;
	font-size: .2rem !important;
	color: #FFFFFF;
	font-style: normal;
	text-transform: none;
}

.btn_item:hover {
	/* transform: translateY(-1px); */
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {
	.content_item {
		flex-direction: column;
	}

	.btn_group {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* @media (max-width: 1024px) {
    .top_banner {
        height: 5rem;
    }
    .banner_container {
        max-width: 14rem;
    }
    .banner_text h2 {
        font-size: 1.8em;
    }
    .banner_text p {
        font-size: 0.7em;
    }
} 
*/


.card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(164, 59, 59, 0.05);
	padding: .2rem;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.fade-in-up {
	opacity: 0;
	transform: translateY(80px);
	transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* carousel2 */

.c2_carousel {
	position: relative;
	width: 95%;
	margin: 0 auto;
	overflow: hidden;
	padding: .5rem 0;
}

.c2_carousel-images {
	display: flex;
	transition: transform 0.5s ease-in-out;
	flex-direction: column;
	gap: .4rem;
}

.c2_carousel-slide {
	display: flex;
	width: 94%;
	margin: 0 3%;
}

.c2_carousel-slide img {
	width: calc(33.333% - .4rem);
	margin: 5px;
	box-sizing: border-box;
	margin: 0 auto;
}

.c2_carousel-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: .1rem.16rem;
	cursor: pointer;
	border-radius: .05rem;
}

.c2_carousel-button:hover {
	background-color: #007bff;
}

.c2_carousel-button.prev {
	left: 10px;
}

.c2_carousel-button.next {
	right: 10px;
}

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

.nav-buttons {
	position: absolute;
	top: 45%;
	width: 100%;
	transform: translateY(-50%);
	z-index: 10;
}

.prev-btn,
.next-btn {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	border: none;
	padding: .15rem .3rem;
	cursor: pointer;
	z-index: 10;
}

.prev-btn {
	left: .3rem;
}

.next-btn {
	right: .3rem;
}

.swiper-button-next,
.swiper-button-prev {
	color: #FFFFFF !important;
}

.swiper-container {
	width: 100%;
	margin: auto;
	height: 6rem;
	/* 根据实际图片比例调整 */
	height: 100%;
}

.c2_container .swiper-slide {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: .1rem;
	min-height: 4rem;
	/* 保证最小高度 */
}

.c2_container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.carousel-slide img{
    width: 100%;
    height: 100%;
}
.c31_swiper{
    width: 7.6rem !important;
    height: 4.5rem !important;
}
.c3_swiper-container{
    width: 7.6rem !important;
    height: 4.5rem !important;
}
.c5_swiper-pagination{
    text-align: center;
    margin-top: 0.49rem;
}

.c5_swiper .swiper-pagination-bullet{
    position: relative;
    margin: 0 0.15rem !important;
    transition: 0.3s;
}
.c5_swiper {
    padding-bottom: 0.1rem;
}
.c5_swiper .swiper-pagination-bullet::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 50%;
    border: 0.01rem solid #066DCC;
    opacity: 0;
    transition: 0.3s;
}
.c5_swiper .swiper-pagination-bullet-active::after{
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.swiper-slide {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.swiper-slide {
		grid-template-columns: 1fr;
	}

	.nav-buttons {
		padding: .1rem .2rem;
	}
}

/* 响应式布局 */
@media (max-width: 768px) {
	.swiper-slide {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.swiper-slide {
		width: 100%;
	}
}


/* c3 */

.c3_line {
	font-size: .2rem;
	color: #333333;
	line-height: .3rem;
	text-align: left;
}

.c3_card {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	gap: .2rem;
	width: 100%;
	padding: 0.5rem 0.68rem 0.5rem 0.9rem;
	box-shadow: 0px 0px 24px 1px rgba(0, 0, 0, 0.09);
	position: relative;
}
.c31_swiper-pagination{
    right: 0.4rem !important;
}

.c31_swiper-pagination .swiper-pagination-bullet{
    margin: 0.2rem 0 !important;
}
.c3_left,
.c3_right {
	flex: 1;
}

.c3_left {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.left_item {
	display: flex;
	flex-direction: row;
	/* justify-content: space-between; */
	align-items: center;
	gap: .2rem;
	padding: .25rem;
	transition: 0.3s;
}

.left_item:hover {
	background: url('../img/comprehensive/c3_left_item.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.left_cont {
	display: flex;
	flex-direction: column;
	gap: .1rem;
}

.dot {
	/* 写一个点 */
	width: .1rem;
	height: .1rem;
	border-radius: 50%;
	background-color: #5A5A5A;
}

.left_item:hover .dot {
	background-color: #066DCC;
}

.left_item:hover .left_item_title {
	color: #066DCC;
}

.left_item_title {
	font-size: .2rem;
	color: #5A5A5A;
	font-weight: bold;
}

.left_item_content {
	font-size: .16rem;
	color: #333333;
}

/* .c4 */

.c4 {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	padding-bottom: .2rem;
	gap: .2rem;
}

.c4_left {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	flex: 1;
	padding-top: .6rem;
	align-items: center;
}

.c4_title {}

.c4_title {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.c4_title img {
	width: .8rem;
	height: auto;
}

.c4_title p {
	font-weight: bold;
	font-size: 0.36rem;
	color: #222222;
	text-align: center;
	font-style: normal;
	text-transform: none;
	padding: 0 .3rem;
}

.c4_right {
	flex: 2;
	display: flex;
	flex-direction: row;
	gap: .2rem;
}

.c4_right_1 {
	height: 7rem;
	width: 100%;
	flex: 1;
}

.c4_right_2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .2rem
}

.c4_right_2 img {
	width: 100%;
	height: auto;

}

/* c5 */

.c5_desc {
	display: flex;
	justify-content: center;
	gap: .4rem;
	font-size: .18rem;
	color: #333333;
	line-height: .30rem;
	padding-bottom: .3rem;
}

.c5_desc p span {
	color: #066DCC;
	font-weight: bold;
	font-size: .2rem;
}

.c5 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* padding-top: 0.5rem; */
	padding-bottom: 0rem;
}

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

.c5_container .swiper-slide {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: .1rem;
	min-height: 4rem;
	/* 保证最小高度 */
}

.c5_container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

/* c6 */

.c6_main_container {
	background: url('/img/comprehensive/f_bg.png');
	background-repeat: no-repeat;
	background-position: 0% 0%;
	background-size: cover;
	padding-bottom: .6rem;
}

.c6_content_item {
	display: flex;
	flex-wrap: wrap;
	margin: .25rem;
}

.c6_container {
	display: flex;
	flex-wrap: wrap;
	gap: .2rem;
	width: 100%;
	margin-top: .5rem;
	margin-bottom: .5rem;
}

.c6_line {
	font-size: .2rem;
	color: #333333;
	line-height: .3rem;
	text-align: center;
}

.list_item {
	background: linear-gradient(180deg, #FFFFFF 0%, #E4F5FF 100%);
	/* box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16); */
	border-radius: 0rem;
	flex: 1;
	box-sizing: border-box;
	overflow: hidden;
	/* padding: .15rem .15rem .3rem .15rem; */
	position: relative;
	height: 4.55rem;
	transition: 0.5s;
}



.list_item:hover {
	/* background: linear-gradient( 180deg, #066DCC 0%, #066DCC 100%); */
	color: #066DCC;
	flex: 2;
}

.list_item img {
	width: 100%;
	 height: 100%; 
	display: block;
	border-radius: 0rem;
}

.list_item h2 {
	margin: 10px 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.list_item .line {
	height: 1px;
	background-color: #ebebeb;
	margin: 10px 0;
}

.list_item p {
	padding: 0 10px 0 10px;
	margin: 0;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.t2 .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	 text-align: center; 
	color: #fff;
	/* background: linear-gradient(180deg, rgba(6, 109, 204, 0.01) 0%, #066DCC 100%); */
	padding: .15rem 0;
	font-size: .2rem;
}

.list_item:hover .caption {
	color: #fff;
	background: linear-gradient(180deg, rgba(6, 109, 204, 0.01) 0%, #066DCC 100%);
}


@media (max-width: 768px) {
	.list_item {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.list_item {
		width: calc(50% - 20px);
	}

	.content_item {
		flex-direction: column;
	}

	.left_img,
	.right_block {
		flex: 1;
		padding: 10px;
		width: 100%;
	}
}


.c7 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0.5rem;
	padding-bottom: 0rem;
}

.c7_container {
	padding-bottom: .8rem;
}

.c7_container .swiper-slide {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	/* 两行布局 */
	gap: .1rem;
	min-height: 4rem;
	/* 保证最小高度 */
}

.c7_container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.first-row,
.second-row {
	display: grid;
	gap: 10px;
}

.first-row {
	grid-template-columns: repeat(2, 1fr);
	/* 第一行2列 */
}

.second-row {
	grid-template-columns: repeat(3, 1fr);
	/* 第二行3列 */
}


/* .c7_1, .c7_2 {
	width: 50%;
}

.c7_3, .c7_4, .c7_5 {
	width: 33.3%
} */

.slider-wrapper {
	width: 100%;
	/* margin: 30px auto; */
	overflow: hidden;
	position: relative;
}

.slide-content {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-gap: .3rem;
	min-height: 5rem;
}

.top-row,
.bottom-row {
	display: grid;
	gap: 10px;
}

.top-row {
	grid-template-columns: repeat(2, 1fr);
	gap: .3rem;
}

.bottom-row {
	grid-template-columns: repeat(3, 1fr);
	gap: .3rem;
}


.slide-content img {
	width: 100%;
	height: 4rem;
	object-fit: cover;
	border-radius: 5px;
}

.bottom-row img {
	width: auto;
	height: 3.3rem;
	object-fit: contain;
}

/* 导航按钮样式 */
.slider-nav {
	/* position: relative;
	padding: 0 .2rem; */
}

.left-arrow,
.right-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	border: none;
	padding: .1rem .2rem;
	cursor: pointer;
}

.left-arrow {
	left: -40px;
}

.right-arrow {
	right: -40px;
}

/* 响应式适配 */
@media (max-width: 1200px) {
	.top-row {
		grid-template-columns: 1fr;
	}

	.bottom-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.top-row,
	.bottom-row {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width:1024px){
    .c2_cont{
        width: 95%!important;
    }
    .num_box{
        flex: auto;
    }
    .num_box_p1{
        font-size: 18px;
    }
    .c3_card{
        flex-direction: column;
        padding: 10px;
    }
    .c31_swiper{
        width: 100%!important;
    }
    .c4{
        flex-direction: column;
    }
    .c4_right{
        flex-direction: column;
    }
    .cal_2{
        grid-template-columns: repeat(3, 1fr)!important;
    }
}




/*2026.1.22*/

.brand{
    background: url(../img/comprehensive/brand-bg.png) no-repeat;
}
.brand .main_container{
    padding-top: .49rem;
    padding-bottom: 1.09rem;
}
.brand .main_container img{
    width: 100%;
    object-fit: contain;
}

.lnwy .main_container{
    padding-top: .49rem;
    padding-bottom: 1.09rem;
}
.lnwy .main_container img{
    width: 100%;
    object-fit: contain;
}

.stbz{
    background: url(../img/comprehensive/stbz-bg.png) no-repeat;
    background-size: cover;
}
.stbz .main_container{
    padding-top: .49rem;
    padding-bottom: 1.09rem;
}
.stbz .main_container img{
    width: 100%;
    object-fit: contain;
}
.dw{
    background: url(../img/comprehensive/dw-bg.png) no-repeat;
    padding-bottom: 1.45rem;
}
.dw-title{
    display: flex;
    justify-content: space-between;
    max-width: 16rem;
    width: 95%;
    margin: 0 auto;
    padding: .76rem 0 .4rem;
}
.dw-title .content_title{
    margin-left: 0;
    padding: 0;
}
.dw_number{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #5A5A5A;
}
.dw_number span{
    font-family: Impact, Impact;
    font-weight: 400;
    font-size: 0.5rem;
    color: #066DCC;
}
.dw .main_container{
    display: flex;
    justify-content: space-between;
}
.dw-list{
    width: 3.8rem;
    border-radius: .2rem;
    background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0.19) 100%);
    border: 0.01rem solid #c1e4f9;
    overflow: hidden;
}
.dw-item span:last-of-type{
    border-left: .01rem solid #c1e4f9;
}

.dw-item{
    display: flex;
    line-height: .4rem;
}
.dw-item span{
    flex: 1;
    font-family: Microsoft YaHei, Microsoft YaHei;
font-weight: 400;
font-size: 0.18rem;
color: #222222;
text-align: center;
}
.item-title span:last-of-type{
    border-left: none;
}
.item-title{
background: linear-gradient( 180deg, #2DA9F1 0%, #066DCC 100%);
padding: .1rem 0;
}
.item-title span{
    flex: 1;
   font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.24rem;
    color: #FFFFFF;
    text-align: center; 
}