/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans SC', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* 全局链接样式 - 去除下划线 */
a {
    text-decoration: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

/* 统一背景色 */
.bg-white {
    background-color: #fff;
}

.bg-gray {
    background-color: #f5f5f5;
}

/* 统一文本颜色 */
.text-primary {
    color: #cdba6e;
}

.text-secondary {
    color: #333;
}

.text-tertiary {
    color: #666;
}

.text-muted {
    color: #999;
}

/* 容器样式 */
.container {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 明星产品板块样式 */

.star-product-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    font-weight: 600;
}

.star-product-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 80px;
}

.starProductSwiper {
    width: 100%;
    height: 100%;
}

.starProductSwiper .swiper-slide {
    overflow: hidden;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
}

.star-product-content {
    display: flex;
}

.star-product-image-container {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.star-product-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.star-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.star-product-image-container h3 {
    font-size: 28px;
    color: #cdba6e;
    margin-bottom: 20px;
    font-weight: 600;
}

.ecommerce-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.ecommerce-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ecommerce-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ecommerce-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-product-info {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.product-specs {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

.product-specs p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #666;
    font-size: 14px;
}

.product-specs strong {
    color: #333;
    font-weight: 600;
}

.star-product-info .btn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    background-color: #cdba6e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 197, 63, 0.3);
}

.star-product-info .btn-more:hover {
    background-color: #7ab434;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 197, 63, 0.4);
}

/* 明星产品 Swiper 导航按钮样式 - 大按钮 */
.star-product-section .starProductSwiper .swiper-button-next,
.star-product-section .starProductSwiper .swiper-button-prev {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #cdba6e 0%, #7ab434 100%) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(140, 197, 63, 0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.star-product-section .starProductSwiper .swiper-button-next:hover,
.star-product-section .starProductSwiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #7ab434 0%, #6aa32d 100%) !important;
    box-shadow: 0 12px 35px rgba(140, 197, 63, 0.6) !important;
    transform: translateY(-50%) scale(1.15) !important;
}

.star-product-section .starProductSwiper .swiper-button-next::after,
.star-product-section .starProductSwiper .swiper-button-prev::after {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #fff !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}

.star-product-section .starProductSwiper .swiper-button-next {
    right: 0 !important;
    left: auto !important;
}

.star-product-section .starProductSwiper .swiper-button-prev {
    left: 0 !important;
    right: auto !important;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .star-product-section .starProductSwiper .swiper-button-next {
        right: 20px !important;
    }
    .star-product-section .starProductSwiper .swiper-button-prev {
        left: 20px !important;
    }
}

@media (max-width: 768px) {
    .star-product-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .star-product-image-container,
    .star-product-info {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 轮播图样式 */
.banner {
    width: 100%;
    height: 600px;
    position: relative;
}

.myBannerSwiper {
    width: 100%;
    height: 100%;
}

.myBannerSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.myBannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-20px);
    text-align: center;
    color: #cdba6e;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 800px;
    height: 250px;
    margin-left: -400px;
    margin-top: -125px;
}

.banner-content h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #cdba6e;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
    text-align: center;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    text-align: center;
    line-height: 1.6;
}

.banner-content .banner-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #cdba6e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

.banner-btn:hover {
    background-color: #7ab434;
    transform: translateY(0) scale(1.05);
    box-shadow: 0 5px 15px rgba(140, 197, 63, 0.3);
}

/* Swiper 导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #cdba6e;
}

/* Swiper 分页样式 */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #cdba6e;
    opacity: 1;
}

/* 头部样式 */
header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 头部主要内容样式 */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* 头部电话样式 */
.header-phone {
    display: flex;
    align-items: center;
}
.service-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.service-phone:hover {
    background-color: #f0f9f0;
    transform: translateY(-2px);
}
.service-phone svg {
    color: #cdba6e;
    font-size: 18px;
}
.service-phone span {
    font-weight: 600;
}
.service-phone span strong {
    color: #cdba6e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.logo {
    float: left;
    padding: 10px 0;
}
.logo a {
    display: inline-block;
    transition: all 0.3s ease;
}
.logo a:hover {
    transform: scale(1.05);
}
.logo img {
    height: 60px;
    width: auto;
}
nav {
    float: right;
}
nav ul {
    list-style: none;
}
nav ul li {
    display: inline-block;
    margin-left: 35px;
}
nav ul li a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}
nav ul li a:hover,
nav ul li a.active {
    color: #cdba6e;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cdba6e;
    transition: width 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
.clearfix {
    clear: both;
}

/* 轮播图样式 */
.banner {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    height: 700px;
    background-color: #f5f5f5;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
}

/* 数据统计板块样式 */
.stats-section {
    background-color: #fff;
    padding: 80px 0;
}
.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.stats-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    width: calc(25% - 22.5px);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #cdba6e;
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Noto Sans SC', Arial, sans-serif;
    transition: transform 0.3s ease;
}
.stats-item:hover .stats-number {
    transform: scale(1.1);
}
.stats-label {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

/* 明星产品板块样式 */
.star-product-section {
    padding: 0;
    background-color: transparent;
    width: 100%;
}

.star-product-bg {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 80px 0;
    position: relative;
}

.star-product-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* 左侧导航区域 - 10% */
.star-product-nav-left {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 中间产品区域 - 80% */
.star-product-container {
    width: 80%;
    padding: 0 20px;
}

.star-product-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
    color: #333;
    font-weight: 600;
    letter-spacing: 2px;
}

.star-product-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* 右侧导航区域 - 10% */
.star-product-nav-right {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Swiper 容器 */
.starProductSwiper {
    width: 100%;
}

.starProductSwiper .swiper-slide {
    overflow: visible;
}

.star-product-content {
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.star-product-image-container {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.star-product-image {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.star-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.star-product-image-container h3 {
    font-size: 32px;
    color: #cdba6e;
    margin-bottom: 25px;
    font-weight: 600;
}

.ecommerce-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.ecommerce-icon {
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 5px;
}

.ecommerce-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ecommerce-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.star-product-info {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.product-specs {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 20px;
}

.product-specs p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

.product-specs strong {
    color: #333;
    font-weight: 600;
}

.star-product-info .btn-more {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 45px;
    background: linear-gradient(135deg, #cdba6e 0%, #b89a4a 50%, #9e8036 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(140, 197, 63, 0.3);
}

.star-product-info .btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(140, 197, 63, 0.45);
}

/* 导航按钮样式 */
.star-product-button-next,
.star-product-button-prev {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cdba6e 0%, #9e8036 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px #cdba6e;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-product-button-next:hover,
.star-product-button-prev:hover {
    background: linear-gradient(135deg, #cdba6e 0%, #9e8036 100%);
    box-shadow: 0 12px 35px #cdba6e;
    transform: scale(1.1);
}

.star-product-button-next::before,
.star-product-button-prev::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.star-product-button-prev::before {
    transform: rotate(135deg);
    margin-right: 4px;
}

.star-product-button-next::before {
    transform: rotate(-45deg);
    margin-left: 4px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .star-product-layout {
        max-width: 100%;
    }
    
    .star-product-nav-left,
    .star-product-nav-right {
        width: 8%;
    }
    
    .star-product-container {
        width: 84%;
    }
}

@media (max-width: 992px) {
    .star-product-layout {
        flex-direction: column;
    }
    
    .star-product-nav-left,
    .star-product-nav-right {
        width: 100%;
        height: 70px;
        margin: 10px 0;
    }
    
    .star-product-container {
        width: 100%;
        padding: 0;
    }
    
    .star-product-content {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .star-product-image-container,
    .star-product-info {
        opacity: 1;
        transform: translateX(0);
        width: 100%;
    }
    
    .star-product-image {
        max-width: 300px;
    }
    
    .star-product-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .star-product-bg {
        padding: 50px 0;
    }
    
    .star-product-container h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .star-product-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .star-product-content {
        padding: 20px;
    }
    
    .product-specs {
        max-height: 300px;
        font-size: 14px;
    }
    
    .star-product-info .btn-more {
        padding: 12px 35px;
        font-size: 15px;
    }
    
    .star-product-button-next,
    .star-product-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .star-product-button-next::before,
    .star-product-button-prev::before {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

/* 药品展示板块样式 */
.medicine-section {
    background-color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.medicine-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(140, 197, 63, 0.05);
    border-radius: 50%;
    transform: translate(50%, 50%);
    transition: transform 0.5s ease;
}
.medicine-section:hover::after {
    transform: translate(50%, 50%) scale(1.1);
}

/* 产品卡片样式 */
.product-card {
    margin-top: 20px;
    background-color: #fff;
    padding:20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.product-image {
    height: 150px;
    background-color: #f5f5f5;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.product-card:hover .product-image {
    transform: scale(1.02);
}
.product-image img {
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}
.product-card:hover h3 {
    color: #cdba6e;
}
.product-card p {
    height: 100px;
    overflow: hidden;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Swiper 样式 */
.swiper {
    width: 100%;
}
.swiper-wrapper {
    padding-bottom: 30px;
}
.swiper-button-next,
.swiper-button-prev {
    color: #cdba6e !important;
    background-color: #fff !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    transition: all 0.3s ease !important;
}

/* 将导航按钮移到容器两侧，确保完全显示且不挡住产品 */
.medicine-section .swiper {
    position: relative;
    padding: 0 70px;
}

.medicine-section .swiper-button-next {
    right: 10px !important;
    left: auto !important;
}

.medicine-section .swiper-button-prev {
    left: 10px !important;
    right: auto !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #fff !important;
    box-shadow: 0 6px 24px rgba(140, 197, 63, 0.2) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #cdba6e !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}

/* 响应式调整导航按钮位置 */
@media (max-width: 768px) {
    .medicine-section .swiper {
        padding: 0 60px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .medicine-section .swiper {
        padding: 0 50px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* 主营服务板块样式 */
.main-service-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}
.main-service-section .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.main-service-section .service-item {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main-service-section .service-item .service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.main-service-section .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.main-service-section .service-image {
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    padding: 0;
    border: none;
    transition: transform 0.3s ease;
}
.main-service-section .service-item:hover .service-image {
    transform: scale(1.02);
}
.main-service-section .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    display: block;
    transition: transform 0.3s ease;
}
.main-service-section .service-item:hover .service-image img {
    transform: scale(1.05);
}
.main-service-section .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}
.main-service-section .service-item:hover h3 {
    color: #cdba6e;
}
.main-service-section .service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* 大型平价药品零售超市板块样式 */
.retail-section-wrapper {
    background-color: #fff;
    padding: 80px 0;
}
.retail-section {
    margin-top: 0;
}
.retail-info {
    text-align: center;
    margin-bottom: 60px;
}
.retail-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.retail-title:hover {
    color: #cdba6e;
}
.retail-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #cdba6e;
    margin-bottom: 20px;
}
.retail-english {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
}
.retail-services {
    margin-bottom: 0;
}
.retail-services h3,
.retail-features h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}
.retail-services .service-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}
.retail-services .service-item {
    width: calc(33.333% - 17px);
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.retail-services .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.service-icon {
    color: #cdba6e;
    flex-shrink: 0;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.retail-services .service-item:hover .service-icon {
    transform: scale(1.1);
    color: #7ab434;
}
.retail-services .service-item .service-text {
    flex: 1;
}
.retail-services .service-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.retail-services .service-item:hover h4 {
    color: #cdba6e;
}
.retail-services .service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 公司简介板块样�?*/
.company-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}
.company-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.company-content:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.company-image {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
.company-content:hover .company-image {
    transform: scale(1.02);
}
.company-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.company-content:hover .company-image img {
    transform: scale(1.05);
}
.company-text {
    width: 55%;
}
.company-text h2 {
    margin-bottom: 30px;
    text-align: left;
    transition: color 0.3s ease;
}
.company-text h2:hover {
    color: #cdba6e;
}
.company-text h2::after {
    left: 0;
    transform: none;
    transition: width 0.3s ease;
}
.company-text h2:hover::after {
    width: 120px;
}
.company-text .content {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}
.company-text .content p {
    margin-bottom: 20px;
    text-align: justify;
}
.company-text .btn-more {
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.company-text .btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 197, 63, 0.3);
}

.content {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}
.content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* 新闻中心板块样式 */
.news-section {
    background-color: #fff;
    padding: 80px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.news-image {
    height: 200px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-item:hover .news-image img {
    transform: scale(1.05);
}
.news-content {
    padding: 20px;
}
.news-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.news-item h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-item h3 a:hover {
    color: #cdba6e;
}
.news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}
.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 合作客户板块样式 */
.case-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}
.customer-logo {
    height: 120px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(140, 197, 63, 0.1);
}
.customer-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(140, 197, 63, 0.3);
}
.customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.customer-logo:hover img {
    transform: scale(1.1);
}

/* 联系我们板块样式 */
.contact-section {
    background-color: #fff;
    padding: 80px 0;
}
.contact-info {
    width: 45%;
    padding: 20px;
}
.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}
.contact-info strong {
    color: #333;
    font-weight: 600;
}
.contact-form {
    width: 45%;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Noto Sans SC', Arial, sans-serif;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #cdba6e;
    box-shadow: 0 0 0 2px rgba(140, 197, 63, 0.2);
}
.contact-form button {
    padding: 12px 30px;
    background-color: #cdba6e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form button:hover {
    background-color: #cdba6e;
    transform: translateY(-2px);
}

/* 查看更多按钮样式 */
.btn-more {
    display: inline-block;
    padding: 14px 32px;
    background-color: #cdba6e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(140, 197, 63, 0.2);
}
.btn-more:hover {
    background-color: #7ab434;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 197, 63, 0.3);
}

/* 底部样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer-column {
    flex: 1;
    padding: 0 20px;
}
.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-column p {
    margin-bottom: 10px;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* 通用部分样式 */
section {
    padding: 80px 0;
}
h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    font-weight: 600;
    position: relative;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #cdba6e;
    transition: width 0.3s ease;
}
h2:hover::after {
    width: 120px;
}

h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* 统一容器间距 */
.container {
    margin-bottom: 0;
}

/* 统一卡片样式 */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 滚动动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* 滚动时触发动画 */
.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式调�?*/
@media (max-width: 1199px) {
    .main-service-section .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 头部响应式 */
    header {
        height: 80px;
    }
    .header-main {
        height: 80px;
    }
    .service-phone {
        font-size: 12px;
        padding: 8px 15px;
    }
    .service-phone svg {
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
    .service-phone span strong {
        font-size: 14px;
    }
    .logo img {
        height: 50px;
    }
    nav ul li {
        margin-left: 15px;
    }
    nav ul li a {
        font-size: 13px;
        padding: 10px 0;
    }
    
    /* 轮播图响应式 */
    .banner {
        margin-top: 80px;
        height: 500px;
    }
    
    /* 数据统计响应式 */
    .stats-item {
        width: 45%;
        min-width: 160px;
        padding: 30px 15px;
    }
    .stats-number {
        font-size: 40px;
    }
    
    /* 明星产品响应式 */
    .star-product-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .star-product-image {
        width: 100%;
    }
    .star-product-info {
        width: 100%;
    }
    .star-product-info h2 {
        text-align: center;
        font-size: 30px;
    }
    .star-product-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .star-product-info h3 {
        text-align: center;
        font-size: 24px;
    }
    .star-product-info .btn-more {
        display: block;
        text-align: center;
        margin: 20px auto 0;
    }
    
    /* 零售服务响应式 */
    .retail-services .service-item {
        width: 48%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* 新闻中心响应式 */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .news-image {
        height: 180px;
    }
    
    /* 公司简介响应式 */
    .company-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    .company-image {
        width: 100%;
    }
    .company-text {
        width: 100%;
    }
    .company-text h2 {
        text-align: center;
    }
    .company-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    /* 字体响应式 */
    .retail-title {
        font-size: 28px;
    }
    .retail-subtitle {
        font-size: 20px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 16px;
    }
    p {
        font-size: 15px;
    }
    
    /* 按钮响应式 */
    .btn-more {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    /* 合作客户响应式 */
    .customer-logo {
        height: 100px;
        padding: 20px;
    }
    
    /* 案例展示响应�?*/
    .case-card {
        width: 45%;
    }
    
    /* 联系我们响应�?*/
    .contact-info,
    .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .main-service-section .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* 头部响应式 */
    header {
        height: auto;
        position: relative;
    }
    .header-main {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    .logo {
        float: none;
        margin-bottom: 0;
    }
    nav {
        float: none;
        width: 100%;
    }
    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    nav ul li {
        margin: 0 10px;
    }
    nav ul li a {
        font-size: 12px;
        padding: 8px 0;
    }
    .header-phone {
        justify-content: center;
        width: 100%;
    }
    .service-phone {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 25px;
    }
    .service-phone svg {
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
    .service-phone span strong {
        font-size: 16px;
    }
    
    /* 轮播图响应式 */
    .banner {
        margin-top: 0;
        height: 400px;
    }
    
    /* 数据统计响应式 */
    .stats-item {
        width: 90%;
        min-width: 140px;
    }
    
    /* 零售服务响应�?*/
    .retail-services .service-item {
        width: 100%;
    }
    .retail-title {
        font-size: 24px;
    }
    .retail-subtitle {
        font-size: 18px;
    }
    
    /* 明星产品响应式 */
    .star-product-info h2 {
        font-size: 26px;
    }
    .star-product-info h3 {
        font-size: 22px;
    }
    
    /* 案例展示响应式 */
    .case-card {
        width: 100%;
    }
}

/* ==================== 分页样式 ==================== */
.page-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-bar a,
.page-bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* 普通页码 */
.page-bar a {
    color: #666;
    background: #f5f5f5;
}

.page-bar a:hover {
    color: #fff;
    background: #cdba6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 197, 63, 0.3);
}

/* 当前页码 */
.page-bar span.current,
.page-bar a.current {
    color: #fff;
    background: #cdba6e;
    box-shadow: 0 4px 12px rgba(140, 197, 63, 0.3);
}

/* 上一页/下一页 */
.page-bar a.prev,
.page-bar a.next {
    padding: 0 20px;
    font-weight: 600;
}

.page-bar a.prev::before {
    content: '←';
    margin-right: 5px;
}

.page-bar a.next::after {
    content: '→';
    margin-left: 5px;
}

/* 首页/末页 */
.page-bar a.first,
.page-bar a.last {
    padding: 0 18px;
}

/* 禁用状态 */
.page-bar span.disabled {
    color: #ccc;
    background: #f5f5f5;
    cursor: not-allowed;
}

/* 省略号 */
.page-bar span.ellipsis {
    color: #999;
    background: transparent;
    min-width: 30px;
}

/* 分页信息 */
.page-bar .page-info {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
    padding: 0 10px;
    border-left: 1px solid #eee;
}
