﻿@charset "utf-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
}
.header_box.index{
	background: transparent;
}
.header_box.bb{
	background: #fff;
}
.header_box.index .header_menus_nav,
.header_box.index .header_menus_nav .a_nav{
	color:#fff;
}
.header_box.index .header_menus_nav .a_nav .triangle_bottom {
    border-top: 4px solid #fff;
}
.header_box.index .header_menus_nav.on .a_nav,
.header_box.index .header_menus_nav:hover .a_nav,
.header_box .header_menus_nav .a_nav2:hover{
	color:#fff;
	font-weight: bold;
}

.header_box.index .header_menus_nav .a_nav2{
	color:#fff;
}
.header_box.index .header_menus_nav:hover .a_nav2{
	color:#fff;
}
.header_box.index .header_menus_nav .go_shop {
    border: 1px solid #fff;
    color:#fff;
}

.header_box.bb .header_menus_nav:hover .a_nav2{
	color:#000;
}

.banner {position: relative;}
.show {
	display: block !important;
	visibility: visible;
}
.hide {
	display: none !important;
	visibility: hidden;
}
.pc_banner{ background: #fff; overflow: hidden; height: 100vh; width: 100%; position: relative;}
.pc_banner .swiper-slide{position: relative;}
.pc_banner .swiper-slide{ overflow: hidden;}
.pc_banner .swiper-slide video,.pc_banner .swiper-slide img{height: 100vh; width: 100%; object-fit: cover;}
.pc_banner .swiper-pagination{ bottom:30px !important;}
.pc_banner .swiper-pagination-bullet{ background: #fff; opacity: 0.5; margin: 0 5px!important;}
.pc_banner .swiper-pagination-bullet-active{ opacity: 1;}
.pc_banner .swiper-button-prev{transform: rotate(90deg); margin-top: 0; left: 3%;}
.pc_banner .swiper-button-next{ transform: rotate(-90deg);margin-top: 0; right: 3%;}
.pc_banner .swiper-button-prev i,.pc_banner .swiper-button-next i{ font-size: 13px; display: block; transition: all 0.5s ease;border-radius: 50%;width: 33px; height: 33px;text-align: center; line-height: 33px;}
.pc_banner .swiper-button-prev,.pc_banner .swiper-button-next{ opacity: 0; transition: all 0.5s ease; width: 33px; height: 33px; border-radius: 50%; text-align: center; line-height: 33px; }
.pc_banner:hover .swiper-button-prev,.pc_banner:hover .swiper-button-next{ opacity: 1; background:rgba(0, 0, 0, 0.06)}
.pc_banner:hover .swiper-button-prev i,.pc_banner:hover .swiper-button-next i{color: #fff;}
.pc_banner .swiper-button-prev:hover,.pc_banner .swiper-button-next:hover{background:Rgba(0, 0, 0, 0.4)}
.pc_banner .swiper-button-next:hover i{transform: translateY(4px);}
.pc_banner .swiper-button-prev:hover i{transform: translateY(4px);}
.pc_banner .swiper-button-next::after{position: absolute; top: 50%; display: block; transform: translate(-1px,-68%); content: ''; width: 2px; height: 14px; background: #fff; opacity: 0;transition: all 0.5s ease;}
.pc_banner .swiper-button-prev::after{position: absolute; top: 50%; display: block; transform: translate(-1px,-68%); content: ''; width: 2px; height: 14px; background: #fff; opacity: 0;transition: all 0.5s ease;}
.pc_banner .swiper-button-next:hover::after{opacity: 1; top: 50%; transform: translate(-1px,-50%);}
.pc_banner .swiper-button-prev:hover::after{opacity: 1; top: 50%; transform: translate(-1px,-55%);}
.pc_banner .swiper-slide-active img{-webkit-animation: scaleUpDown 4s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);animation: scaleUpDown 4s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);}
@-webkit-keyframes scaleUpDown {
	0% { -webkit-transform: scale(1.03); transform: scale(1.03); }
	100% { -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes scaleUpDown {
	0% { -webkit-transform: scale(1.03); transform: scale(1.03); }
	100% { -webkit-transform: scale(1); transform: scale(1); }
}
/* 产品推荐模块整体样式 */
.product-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.base_con {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 标题组样式 */
.header-group {
    text-align: center;
    margin-bottom: 60px;
}

.title-wrapper {
    margin-bottom: 20px;
}

.main-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.sub-title {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 装饰线条 */
.decoration-line {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    position: relative;
    height: 40px;
}

.line-main {
    width: 100%;
    height: 1px;
    background: #00928c;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    animation: lineExpand 1.5s ease forwards;
}

.line-sub {
    width: 60%;
    height: 1px;
    background: rgba(0, 146, 140, 0.5);
    position: absolute;
    top: 15px;
    left: 20%;
    transform: scaleX(0);
    animation: lineExpand 1.5s ease 0.3s forwards;
}

@keyframes lineExpand {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* 轮播容器 */
.product-slider-container {
    position: relative;
    padding: 0 60px;
    margin-top: 40px;
}

.product-slider {
    overflow: hidden;
}

/* 产品网格布局 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px; 
    padding: 15px 0;
}

/* 产品卡片样式 */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #fafafa;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    background: #fff;
	border-top: 1px solid rgba(0,0,0,0.03);
}

.product-title {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	line-height: 1.4;
}

.product-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 导航按钮样式 */
.slider-nav-prev,
.slider-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav-prev {
    left: -24px;
}

.slider-nav-next {
    right: -24px;
}

.slider-nav-prev i {
    transform: rotate(90deg);
}

.slider-nav-next i {
    transform: rotate(-90deg);
}

.slider-nav-prev:hover,
.slider-nav-next:hover {
    background: #00928c;
    color: #fff;
}

.slider-nav-prev.disabled,
.slider-nav-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .base_con {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .product-grid {
        gap: 20px;
    }
	.product-image {
        padding-top: 100%; /* 保持1:1比例 */
    }
    .product-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 50px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info {
        padding: 12px;
    }
	.product-title {
        font-size: 14px;
    }
    .slider-nav-prev,
    .slider-nav-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-slider-container {
        padding: 0 30px;
    }
	.product-image {
        padding-top: 100%; /* 保持1:1比例 */
    }
}

/* 关于企业模块样式 */
.about-sections {
    width: 100%;
    position: relative;
}

/* 第一个模块样式 */
.about-section.section-1 {
    position: relative;
    width: 100%;
    height: 840px;
}

/* 第二三模块布局 */
.sections-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}

.section-2,
.section-3 {
    width: 49.5%;
    height: 840px;
    position: relative;
}

/* 背景图片样式 */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文本内容样式 */
.text-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.title {
    font-size: 48px;
    margin-bottom: 20px;
}

.more-link {
    color: #333;
    text-decoration: none;
    font-size: 22px;
}


/* 响应式调整 */
@media (max-width: 768px) {
    .about-section.section-1 {
        height: 600px;
    }
    
    .sections-wrapper {
        flex-direction: column;
    }
    
    .section-2,
    .section-3 {
        width: 100%;
        height: 500px;
    }
    
    .title {
        font-size: 24px;
    }
}

/* 资讯部分样式 */
.news-section {
    padding: 60px 0;
}

.news-slider-container {
    padding: 20px 0 50px;
    margin: 0 auto;
    max-width: 1200px;
}

.news-slider {
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

/* 新闻卡片样式 */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 10px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

.news-image .image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

/* 分页器样式 */
.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    background: #00928c;
    border-radius: 4px;
}

/* 更多按钮样式 */
.base_con .section-footer {
    display: flex;
    justify-content: center;
}
.view-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #fff;
    color: #00928c;
    border: 2px solid #00928c;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: #00928c;
    transform: translateX(5px);
}

.view-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more:hover .arrow {
    transform: translateX(5px);
}



/* 关于基诺德模块样式 */
.about-overview {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    text-align: center;
}

/* 标题组样式 */
.header-group {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}


.main-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #00928c;
    border-radius: 2px;
}

.sub-title {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* 数据统计部分 */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: #00928c;
    line-height: 1;
}

.plus {
    font-size: 32px;
    color: #00928c;
    margin-left: 5px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* 按钮样式 */
.action-wrapper {
    margin-top: 40px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #00928c;
    border-radius: 25px;
    color: #00928c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-btn span {
    font-size: 16px;
    margin-right: 10px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.more-btn:hover {
    background: #00928c;
    color: #333;
}

.more-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* 数字滚动动画 */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count {
    animation: countUp 1s ease-out forwards;
}


.i1_box{
	padding-top: 90px;
	padding-bottom: 50px;
	background: #f8f9fa;
}
.i1_box .i1_menu{
	width: 745px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 35px;
}
.i1_box .i1_menu_nav{
	font-size: 16px;
	color:#474747;
	text-align: center;
}
.i_title {
	font-size: 40px;
	line-height: 40px;
	font-weight: bold;
	color: #333;
	text-align: center;
}
.i1_box .i1_menu_nav.on{
	font-weight: bold;
}
.i1_box .i1_menu_nav .img2{
	display: none;
}
.i1_box .i1_menu_nav.on .img1,
.i1_box .i1_menu_nav:hover .img1{
	display: none;
}
.i1_box .i1_menu_nav.on .img2,
.i1_box .i1_menu_nav:hover .img2{
	display: block;
}
.i1_box .i1_menu_nav .i1_menu_img{
	height: 58px;
}
.i1_box .i1_menu_nav .i1_menu_title{
	margin-top: 10px;
}
.i1_box .i1_content{
	display: none;
}
.i1_box .i1_content.on{
	display: block;
}
.i1_box .swiper-slide{
	width: 66%;
}
.i1_box .swiper-slide .i1_img{
	width: 100%;
  	border-radius: 10px;
  	box-shadow: 0px 0px 8.82px 0.18px rgba(14, 9, 5, 0.39);
}
.i1_box .swiper-slide .i1_con{
	margin-top: 35px;
	opacity: 0;
	visibility: hidden;
}
.i1_box .swiper-slide-active .i1_con{
	opacity: 1;
	visibility: visible;
}
.i1_box .i1_btn{
	width: 166px;
	height: 54px;
	text-align: center;
	line-height: 54px;
	color:#fff;
	background: #0a0a0a;
	border-radius: 8px;
	display: block;
}
.i1_box .i1_btn:hover{
	background: #0a0a0a;
}
.i1_box .i1_subtitle{
	color:#404040;
	font-size: 26px;
	line-height: 26px;
	font-weight: bold;
}
.i1_box .i1_txt{
	color:#666666;
	font-size: 24px;
	line-height: 24px;
	margin-top: 14px;
}
.i1_box .i2_img{
	width: 100%;
}
.i2_box{
	width: 100%;
	position: relative;
}
.i2_box .i2_inner{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
	left: 6.25%;
}
.i2_box .i2_img{
	width: 100%;
}
.i3_box{
	width: 100%;
	position: relative;
	margin-top: 15px;
}
.i3_box .i3_nav{
	width: calc((100% - 15px) / 2);
	position: relative;
}
.i3_box .i3_img{
	width: 100%;
}
.i3_box .i3_inner{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
	top: 10%;
	text-align: center;
	color:#fff;
}
.i3_box .i3_inner .i3_inner_title{
	font-size: 24px;
	line-height: 24px;
}
.i3_box .i3_inner .i3_inner_subtitle{
	font-size: 16px;
	line-height: 16px;
	margin-top: 18px;
}
.i3_box .i3_inner .i3_inner_btn{
	font-size: 15px;
	line-height: 15px;
	color:#fff;
	margin-top: 30px;
	display: block;
}
.i3_box .i3_inner .i3_inner_btn:hover{
	color:#0a0a0a;
}
.i4_box{
	width: 100%;
	position: relative;
	margin-top: 15px;
}
.i4_box .i4_inner{
	position: absolute;
	z-index: 10;
	top: 10%;
	width: 100%;
}
.i4_inner .i_inner_title{
	color:#fff;
	font-size: 40px;
	line-height: 40px;
}
.i4_inner .i_inner_subtitle{
	color:#fff;
	font-size: 14px;
	line-height: 14px;
}
.i4_box .i4_img{
	width: 100%;
}
.i5_box{
	width: 100%;
	position: relative;
}
.i5_box .i5_inner{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
	right: 6.25%;
}
.i5_box .i5_img{
	width: 100%;
}
.i7_box {
	padding-top: 85px;
}
.i7_box .i7_inner{
	padding-top: 50px;
}
.i7_box .i7_nav{
	width: calc((100% - 52px) / 3);
	margin-right: 26px;
}
.i7_box .i7_nav .i7_nav_img{
	border-radius: 10px;
	overflow: hidden;
}


.i7_box .i7_nav .i7_nav_img .img{
	width: 100%;
	border-radius: 10px;
}

.i7_box .i7_nav .i7_nav_title{
	color:#666666;
	font-size: 24px;
	line-height: 24px;
	margin-top: 18px;
}
.i7_box .i7_nav .i7_nav_subtitle{
	color:#999999;
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
	height: 48px;
}
.i7_box .i7_nav .i7_nav_txt{
	color:#0a0a0a;
	font-size: 15px;
	line-height: 15px;
	margin-top: 26px;
	display: block;
}
.i7_box .i7_nav:nth-child(3n){
	margin-right: 0;
}
.i7_box .i7_btn{
	width: 120px;
	height: 34px;
	text-align: center;
	line-height: 54px;
	color:#0a0a0a;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .14);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	margin-top: 66px;
	margin-bottom: 85px;
	font-weight: bolder;
}

/*响应式适配*/

@media screen and (max-width: 1861px) {
	
}
@media screen and (max-width: 1681px) {
	
}
@media screen and (max-width: 1450px) {
	.i_title {
	    font-size: 30px;
	    line-height: 30px;
	}
	.swiper_box .swiper_title {
	    font-size: 40px;
	    line-height: 40px;
	}
	.i_inner .i_inner_title {
	    font-size: 30px;
	    line-height: 30px;
	}
	.i_inner .i_inner_subtitle {
	    font-size: 20px;
	    line-height: 20px;
	    margin-top: 10px;
	}
	.swiper_box .swiper_subtitle {
	    font-size: 20px;
	    line-height: 20px;
	    margin-top: 10px;
	}
	.i1_box .i1_subtitle {
	    font-size: 20px;
	    line-height: 20px;
	}
	.i1_box .i1_txt {
	    font-size: 18px;
	    line-height: 18px;
	    margin-top: 10px;
	}
	.i_inner .i_inner_title{
		font-size: 24px;
	    line-height: 24px;
	}
	.i_inner .i_inner_subtitle{
		font-size: 14px;
		line-height: 14px;
	}
	.i1_box .i1_btn ,
	.i_inner .i_inner_btn,
	.i7_box .i7_btn{
	    width: 120px;
	    height: 36px;
	    line-height: 36px;
	    font-size: 14px;
	    margin-top: 30px;
	}
	.i1_box .i1_btn{
		margin-top: 0;
	}
}
@media screen and (max-width: 1335px) {
	
}
@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1100px) {
	
}
@media screen and (max-width: 1000px) {
	
}
@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 500px) {
	.swiper-pagination1{
	    left: initial !important;
	    right: 20px !important;
	    width: auto !important;
	}
	.swiper_box .swiper_title {
	    font-size: 18px;
	    line-height: 18px;
	}
	.swiper_box .swiper_subtitle {
	    font-size: 12px;
	    line-height: 12px;
	}
	.swiper-pagination1 .swiper-pagination-bullet {
	    width: 12px !important;
	    height: 2px !important;
	}
	.swiper-pagination1{
		bottom: 10px !important;
	}
	.i1_box .swiper-slide .i1_con{
		margin-top: 16px;
	}
	.i1_box .i1_btn, .i_inner .i_inner_btn, .i7_box .i7_btn {
	    width: 82px;
	    height: 30px;
	    line-height: 30px;
	    font-size: 12px;
	    margin-top: 20px;
	}
	.i1_box .i1_btn{
		margin-top: 0;
	}
	.i_title {
	    font-size: 18px;
	    line-height: 18px;
	}
	
	.i1_box .swiper-slide{
		width: 80%;
	}
	.i1_box {
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
	.i1_box .i1_menu{
		width: 80%;
		margin:20px auto;
	}
	.i1_box .i1_menu_nav{
		font-size: 12px;
	}
	.i1_box .i1_menu_nav .i1_menu_img{
		height: 38px;
	}
	.i1_box .i1_menu_nav .img{
		max-width: 100%;
		max-height: 100%;
	}
	.i1_box .i1_subtitle{
		font-size: 16px;
	}
	.i1_box .i1_txt {
	    font-size: 12px;
	    line-height: 12px;
	}
	.i2_box .i2_inner{
		left: 12%;
	}
	.i_inner .i_inner_title ,
	.i3_box .i3_inner .i3_inner_title{
	    font-size: 16px;
	    line-height: 20px;
	    padding: 0 20px;
	}
	.i_inner .i_inner_subtitle ,
	.i3_box .i3_inner .i3_inner_btn{
	    font-size: 12px;
	    line-height: 12px;
	}
	.i3_box .i3_inner .i3_inner_subtitle{
		font-size: 14px;
		line-height: 14px;
	}
	
	.i3_box .i3_content{
		display: block;
	}
	.i3_box .i3_nav{
		width: 100%;
	}
	.i3_box .i3_inner{
		width: 80%;
	}
	.i3_box,
	.i4_box{
		margin-top: 20px;
	}
	
	
	.i5_box .i5_img{
		width: 140%;
		position: relative;
		left: -25%;
	}
	.i7_box {
	    padding-top: 20px;
	}
	
	.i7_box .i7_inner{
		display: block;
		padding-top: 10px;
	}
	.i7_box .i7_nav{
		width: 100%;
		margin-bottom: 20px;
	}
	.i7_box .i7_nav .i7_nav_img{
		height: auto;
	}
	.i7_box .i7_nav .i7_nav_img .img{
		height: auto;
	}
	.i7_box .i7_nav .i7_nav_title {
	    font-size: 16px;
	    line-height: 20px;
	    margin-top: 10px;
	}
	.i7_box .i7_nav .i7_nav_subtitle{
	    height: auto;
	    text-overflow: initial;
		word-break: initial;
		-webkit-box-orient: initial;
		-webkit-line-clamp: 10;
	}
	.i7_box .i7_nav .i7_nav_txt {
	    font-size: 12px;
	    line-height: 12px;
	    margin-top: 10px;
	}
	.i7_box .i7_btn {
	    width: 110px;
	    height: 30px;
	    margin-bottom: 30px;
	}
}
/* 响应式调整 */
@media (max-width: 1200px) {
    .section-content {
        padding: 0 20px;
    }
    
    .text-content,
    .image-wrapper {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .text-content,
    .image-wrapper {
        flex: 0 0 100%;
    }
    
    .subtitle {
        font-size: 40px;
        top: -20px;
        left: -10px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .section-content.reverse .text-content,
    .section-content.reverse .image-wrapper {
        order: unset;
    }
}
/* 响应式调整 */
@media (max-width: 768px) {
    .news-slider-container {
        padding: 10px 20px 40px;
    }
    
    .news-card {
        margin: 5px;
    }
}
/* 响应式调整 */
@media (max-width: 768px) {
    .about-overview {
        padding: 50px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .number {
        font-size: 36px;
    }

    .plus {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }

	.decoration-lines {
        height: 40px;
        margin: 20px auto;
    }

    .line-1 {
        max-width: 300px;
    }

    .line-2 {
        max-width: 180px;
    }
}