/* Index页面样式 */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 80px; /* 为固定头部留出空间 */
}
/* 基础样式 - 只作用于首页内容区域 */
.index-page {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.index-page * {
    box-sizing: border-box;
}

/* 禁止水平滚动 */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.index-page {
    max-width: 100%;
    overflow-x: hidden;
}

/* 确保所有图片不会超出容器 */
.index-page img {
    max-width: 100%;
    height: auto;
}

.index-container {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
}

/* 英雄区域样式 */
.hero-section {
    width: 100%;

    position: relative;
    overflow: hidden;
}

/* Swiper轮播图样式 */
.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-wrapper {
    height: 100%;
}

.banner-swiper .swiper-slide {
    height: 100%;
}

.single-banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.single-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.slide-text {
    position: absolute;
    top: 30%;
    left: 10%;
    color: white;
    z-index: 2;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.8),
        1px -1px 0 rgba(0,0,0,0.8),
        -1px 1px 0 rgba(0,0,0,0.8),
        1px 1px 0 rgba(0,0,0,0.8),
        2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 2px;
}

.slide-text p {
    font-size: 22px;
    max-width: 600px;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.6),
        1px -1px 0 rgba(0,0,0,0.6),
        -1px 1px 0 rgba(0,0,0,0.6),
        1px 1px 0 rgba(0,0,0,0.6),
        1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.slide-button {
    margin-top: 30px;
}

.btn-slide {
    display: inline-block;
    background: rgba(21, 123, 24, 0.9);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-slide:hover {
    background: rgba(21, 123, 24, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 123, 24, 0.3);
    color: white;
    text-decoration: none;
}

/* Swiper分页器样式 */
.banner-swiper .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #157b18;
    transform: scale(1.2);
}

/* Swiper导航按钮样式 */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    color: white;
    background: rgba(21, 123, 24, 0.8);
    transform: scale(1.1);
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.banner-swiper .swiper-button-next {
    right: 30px;
}

.banner-swiper .swiper-button-prev {
    left: 30px;
}

/* 文字动画效果 */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.8s ease-out forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 文字动画效果 */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* 卡片动画效果 */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.animate-slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.9s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 滚动动画基础样式 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 不同类型的滚动动画 */
.animate-on-scroll.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.animate-on-scroll.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.animate-on-scroll.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.animate-on-scroll.slide-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.animate-on-scroll.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRightScroll 1s ease-out 0.6s forwards;
}

.animate-on-scroll.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out;
}

.animate-on-scroll.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}



/* 通用标题样式 */
.section-title {
    text-align: center;
    margin-top: 40px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff4747;
}

/* 关于我们区域样式 */
.about-section {
/*    padding: 50px 0;*/

}

.about-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-text {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-cards {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text h3 {
    font-size: 32px;
    margin-top: 0;
    color: #009b44;
    margin-bottom: 25px;
    font-weight: bold;
}

.about-text h2 {
    font-size: 19px;
    color: #009647;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.about-text p {
    color: #333;
    line-height: 2;
    font-size: 16px;
    text-indent: 2em;
}

.about-text .text-content {
    flex: 1;
}

.about-text .features {
    margin-top: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #eef1f6;
    padding: 8px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-bottom: 2px solid #4CAF50;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
  
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item span {
    font-size: 12px;
    font-weight: 500;
    color: #4caf50;
}

.about-cards {
    display: flex;
    flex-direction: row; 
    gap: 20px;

}

.about-card {
    background: linear-gradient(135deg, rgba(43, 140, 133, 0.8), rgba(56, 177, 59, 0.8));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.about-card .card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.about-card .card-image img {
    display: none;
}

/* 背景图片通过内联样式设置 */

.about-card h4 {
    padding: 90px 25px 15px;
    font-size: 19px;
    color: white;
    margin: 0;
    font-weight: bold;
}

.about-card p {
    padding: 0 25px 25px;
    color: white;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* 产品展示区域样式 */
.products-section {
    margin-top: 40px;
    padding-top: 1px;
    padding-bottom: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 产品展示区域蒙版效果 */
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(21, 123, 24, 0.15) 0%, 
        rgba(34, 139, 34, 0.25) 50%, 
        rgba(21, 123, 24, 0.35) 100%
    );
    z-index: 1;
}

/* 确保内容在蒙版之上 */
.products-section .index-container {
    position: relative;
    z-index: 2;
}

.products-section-content {
    color: #fff !important;
}
.products-section-content::after {
    background: #fff !important;
}

.index-page .products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    width: 100%;
}

.product-item {
    text-align: center;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 12px 0 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s;
    height: 300px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.product-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(21, 123, 24, 0.1);
    box-shadow: 0 15px 35px rgba(21, 123, 24, 0.25);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-item h4 {
    padding: 15px 15px;
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.product-item h4 a {
    text-decoration: none;
}

/* 为什么选择我们区域样式 */
.why-choose-section {
/*    padding: 50px 0;*/
 
}

.section-title-why {
    text-align: center;
    font-size: 32px;
    color: #0e7c28;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

.choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.choose-card {
    background: #009944;
    border-radius: 15px;

    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.choose-card .card-image {
    overflow: hidden;
    position: relative;
}

.choose-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.choose-card:hover .card-image img {
    transform: scale(1.05);
}

.choose-card h4 {
    padding: 25px 25px 15px;
    font-size: 21px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.choose-card p {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* 新闻资讯区域样式 */


.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.news-wrapper {
    display: flex;
    flex-direction: column;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.news-image {
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    background: white;
    padding: 20px;
    padding-bottom: 50px;
    text-align: left;
    margin-top: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-date {
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgba(0, 153, 68, 0.7);
    color: white;
    font-weight: bold;
	padding: 6px 16px 10px;
    text-align: center;
    margin: 0 auto;
    border-radius:0 4px 0 4px;
    z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.news-date-year {
	font-size: 20px;
	line-height: 1;
}

.news-date-day {
	font-size: 16px;
	line-height: 1;
}

.news-content h4 {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-weight: 600;
}

.news-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 40px; /* 为右下角按钮留出空间 */
}

/* 新闻卡片右下角三角跳转按钮 */
.news-arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #157b18;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.news-arrow-btn img {
    color: white;
    width: 20px;
    margin-left: 2px; /* 微调图标位置 */
}

.news-arrow-btn:hover {
    background: #45a049;
    transform: scale(1.1);
    text-decoration: none;
}

.news-arrow-btn:hover i {
    color: white;
}

.news-more {
    text-align: center;
    margin-top: 20px;
}

.about-more {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    background: #157b18;
    color: white;
    padding: 12px 30px;
    border-radius: 0 8px 0 8px;
    text-decoration: none;
    font-weight: normal;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-more:hover {
    background: #45a049;
    color: white;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .index-container {
        margin: 0;
        width: 100%;
        padding: 0 15px;
    }

    
    .slide-text h2 {
        font-size: 36px;
    }
    
    .slide-text p {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .index-container {
        width: 100%;
        padding: 0 12px;
    }
    

    
    .slide-text h2 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .index-page .products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .index-container {
        width: 100%;
        padding: 0 10px;
    }
    
    /* Swiper移动端样式调整 */
    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .banner-swiper .swiper-button-next:after,
    .banner-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .banner-swiper .swiper-button-next {
        right: 15px;
    }
    
    .banner-swiper .swiper-button-prev {
        left: 15px;
    }
    
    .banner-swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .banner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .slide-text {
        top: 35%;
        left: 5%;
    }
    
    .slide-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-text p {
        font-size: 16px;
        max-width: 90%;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .section-title-why {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .about-section, .products-section, .why-choose-section, .news-section {
        padding: 30px 0;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-text h2 {
        font-size: 16px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .index-page .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
    }
    
    .product-item {
        height: 250px;
    }
    
    .product-item h4 {
        font-size: 14px;
        padding: 10px;
    }
    
    .choose-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    
    .choose-card h4 {
        font-size: 18px;
    }
    
    .choose-card p {
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
	.news-content {
		padding: 15px;
		padding-bottom: 25px;
		margin-top: 10px;
	}
	
	.news-subtitle {
		padding-right: 0;
	}
    
    .news-arrow-btn {
		position: static;
		width: 30px;
		height: 30px;
		margin-top: 10px;
	}
	
	.news-arrow-btn img {
		width: 16px;
		margin-left: 0;
    }
    
    .news-arrow-btn i {
        font-size: 12px;
    }
    
    .news-item h4 {
        font-size: 16px;
    }
    
    .btn-more {
        padding: 10px 25px;
        font-size: 14px;
    }
	
	.news-date {
		padding: 6px 12px 8px;
	}
	
	.news-date-year {
		font-size: 18px;
	}
	
	.news-date-day {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
    .index-container {
        width: 100%;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .index-page {
        overflow-x: hidden;
    }
    
    /* Swiper小屏幕样式调整 */
    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        display: none; /* 小屏幕隐藏导航按钮 */
    }
    
    .banner-swiper .swiper-pagination {
        bottom: 15px;
    }
    
    .banner-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .slide-text {
        top: 30%;
        left: 3%;
    }
    
    .slide-text h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .slide-text p {
        font-size: 12px;
        max-width: 95%;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .section-title-why {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .about-section, .products-section, .why-choose-section, .news-section {
        padding: 20px 0;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text h2 {
        font-size: 14px;
    }
    
    .about-text p {
        font-size: 12px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .about-cards {
        gap: 15px;
    }
    

    
    .feature-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    

    
    .product-item {
        height: 200px;
    }
    
    .product-item h4 {
        font-size: 13px;
        padding: 8px;
    }
    
    .choose-cards {
        gap: 15px;
    }
    

    
    .choose-card h4 {
        font-size: 16px;
    }
    
    .choose-card p {
        font-size: 13px;
    }
    
    .news-grid {
        gap: 15px;
    }
    
    .news-item h4 {
        font-size: 14px;
    }
	
	.news-date {
		padding: 4px 10px 6px;
	}
	
	.news-date-year {
		font-size: 16px;
	}
	
	.news-date-day {
		font-size: 13px;
	}
	
	.news-arrow-btn {
		width: 28px;
		height: 28px;
		margin-top: 8px;
	}
	
	.news-arrow-btn img {
		width: 15px;
	}
    
    .btn-more {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .index-container {
        width: 100%;
        padding: 0 8px;
        max-width: 100%;
    }
    
    .index-page {
        overflow-x: hidden;
    }
    

    
    .slide-text h2 {
        font-size: 18px;
    }
    
    .slide-text p {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .section-title-why {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .about-section, .products-section, .why-choose-section, .news-section {
        padding: 10px 0;
    }
    
    .about-text h3 {
        font-size: 18px;
    }
    
    .about-text h2 {
        font-size: 13px;
    }
    
    .about-text p {
        font-size: 11px;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .about-cards {
        gap: 12px;
    }
    
    .features {
        gap: 8px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .index-page .products-section .products-grid {
        gap: 10px;
    }
    
    .product-item {
        height: 180px;
    }
    
    .product-item h4 {
        font-size: 12px;
        padding: 6px;
    }
    
    .choose-cards {
        gap: 12px;
    }
    

    
    .choose-card h4 {
        font-size: 15px;
    }
    
    .choose-card p {
        font-size: 12px;
    }
    
    .news-grid {
        gap: 12px;
    }
    
    .news-item h4 {
        font-size: 13px;
    }
	
	.news-date {
		padding: 4px 8px 6px;
	}
	
	.news-date-year {
		font-size: 14px;
	}
	
	.news-date-day {
		font-size: 12px;
	}
	
	.news-arrow-btn {
		width: 26px;
		height: 26px;
		margin-top: 6px;
	}
	
	.news-arrow-btn img {
		width: 14px;
	}
    
    .btn-more {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .slide-text h2 {
        font-size: 16px;
    }
    
    .slide-text p {
        font-size: 10px;
    }
    
    .about-text h3 {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 12px;
    }
    
    .about-text p {
        font-size: 10px;
    }
    
    .news-date {
        padding: 3px 6px 5px;
    }
    
    .news-date-year {
        font-size: 13px;
    }
    
    .news-date-day {
        font-size: 11px;
    }
	
	.news-arrow-btn {
		width: 24px;
		height: 24px;
		margin-top: 5px;
	}
	
	.news-arrow-btn img {
		width: 13px;
	}
}