/* Top.asp 头部导航样式 - 基于 #2DB7A4 主色调 */

/* 基础变量（避免冲突，这里直接使用颜色值） */
.main-navbar {
    --primary-color: #2DB7A4;
    --primary-hover: #239a8a;
    --text-white: #ffffff;
    --text-dark: #333333;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* 主导航栏 */
.main-navbar {
    background: var(--primary-color);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-navbar.green-navbar {
    background: var(--primary-color);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 100px;
}

/* Logo 区域 */
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: block;
    text-decoration: none;
}

.brand-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* 主导航菜单 */
.main-navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 37.5px 15px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
}

/* 下拉菜单 */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border-radius: 0 0 6px 6px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
}

/* 右侧功能区 */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 语言切换器 */
.language-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-icon {
    width: 16px;
    height: 16px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 120px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 5px;
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.lang-option:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
}

.lang-option.active {
    background: var(--primary-color);
    color: var(--text-white);
}

/* 语言图标样式 */
.lang-flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

/* 搜索功能 */
.navbar-search {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.search-form:hover,
.search-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 15px;
    color: var(--text-white);
    font-size: 14px;
    width: 180px;
    transition: var(--transition);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-icon {
    width: 16px;
    height: 16px;
}

.menu-icon {
    width: 28px;
    height: 28px;
}

.search-btn::before {
    font-size: 14px;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    content: '';
    width: 25px;
    height: 3px;

}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;

}

/* 移动端导航 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-navigation {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1999;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: var(--text-dark);
}

.mobile-nav-close::before {
    content: '×';
}

.mobile-nav-content {
    padding: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
}

.has-submenu {
    position: relative;
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #f8f9fa;
    display: block;
}

.mobile-submenu-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 40px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-submenu-link:hover {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .navbar-actions {
        gap: 15px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .nav-link {
        padding: 37.5px 15px;
        font-size: 17px;
    }
    
    .navbar-content {
        min-height: 100px;
    }
    
    .brand-logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .main-navigation,
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-content {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .brand-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-navigation {
        width: 280px;
        right: -280px;
    }
    
    .navbar-content {
        min-height: 60px;
    }
}

/* Foot.asp 页脚样式 - 基于 #2DB7A4 主色调 */

/* 现代化页脚 */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2DB7A4 0%, #4bc4b3 50%, #2DB7A4 100%);
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(45,183,164,0.1)"/><circle cx="90" cy="20" r="0.5" fill="rgba(45,183,164,0.05)"/><circle cx="20" cy="80" r="0.8" fill="rgba(45,183,164,0.08)"/><circle cx="80" cy="90" r="1.2" fill="rgba(45,183,164,0.06)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

/* 页脚主要内容 */
.footer-main {
    padding: 40px 0 0px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

/* 页脚列 */
.footer-column {
    min-height: 200px;
}

/* 公司信息区域 */
.company-info {
    padding-right: 20px;
}

.company-brand {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    background: rgba(45, 183, 164, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.company-brand:hover .footer-logo {
    transform: scale(1.05);
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 页脚标题 */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
}

/* 页脚链接列表 */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

/* 移除footer-links左边的绿色图标 */

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #2DB7A4;
    text-decoration: none;
    padding-left: 5px;
}

/* 联系信息 */
.contact-details {
    space-y: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    min-width: 60px;
    font-size: 14px;
    margin-right: 10px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

/* 页脚底部版权区域 */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2DB7A4 50%, transparent 100%);
}

.copyright-text {
    text-align: center;
}

.copyright-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 移动端底部导航 */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.mobile-nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
}

.mobile-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    color: #666666;
    transition: all 0.3s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a:active {
    color: #2DB7A4;
    text-decoration: none;
    transform: translateY(-1px);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mobile-nav-item a:hover .mobile-nav-icon img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(62%) sepia(89%) saturate(466%) hue-rotate(128deg) brightness(89%) contrast(89%);
}

.mobile-nav-label {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        margin-top: 40px;
    }
    
    .footer-main {
        display: none;
    }
    
    .company-info {
        margin-bottom: 30px;
    }
    
    .footer-title {
        text-align: center;
        font-size: 16px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-item {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .contact-label {
        min-width: auto;
        margin-right: 5px;
        margin-bottom: 3px;
    }
    
    /* 显示移动端底部导航 */
    .mobile-bottom-nav {
        display: block;
    }
    
    /* 为移动端底部导航留出空间 */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .footer-logo {
        max-height: 50px;
    }
}

/* Index.asp 首页样式 - 基于 #2DB7A4 主色调 */

/* 轮播Banner样式 */
.hero-banner {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #f8f9fa;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 轮播Banner广告语样式 */
.banner-text {
    position: absolute;
    z-index: 10;
    width: 80%;
    max-width: 500px;
}

/* 右下角位置 - 第一幅图 */
.banner-text-bottom-right {
    bottom: 80px;
    right: 280px;
    text-align: right;
    width: 1200px;
    max-width: 1200px;
}

/* 左上角位置 - 第二幅图 */
.banner-text-top-left {
    top: 120px;
    left: 200px;
    text-align: left;
}

.banner-slogan {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 轮播控制按钮 */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(45, 183, 164, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 18px;
}

.carousel-btn:hover {
    background: #2DB7A4;
    transform: scale(1.1);
}

.carousel-btn::before {
    font-family: Arial, sans-serif;
}

.carousel-prev::before {
    content: '‹';
}

.carousel-next::before {
    content: '›';
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2DB7A4;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(45, 183, 164, 0.8);
}

/* 通用区域样式 */
.section {
    padding: 30px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title span {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2DB7A4;
    border-radius: 2px;
}

/* 推荐产品样式 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(45, 183, 164, 0.15);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 25px 20px;
}

.product-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #2DB7A4;
}

/* 关于我们部分 */
.section-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    color: white;
    position: relative;
}

.section-about .section-title {
    margin-top: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 20px;
}

.about-text {
    z-index: 2;
    position: relative;
    background-color: #fff;
    height: 400px;
    padding: 20px;
}

.about-subtitle {
    font-size: 24px;
    color: #2DB7A4;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #2DB7A4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #239a8a;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* 视频展示区域 */
.about-videos {
    margin-top: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: scale(1.02);
}

.video-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(45, 183, 164, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
}

.video-item:hover .video-play-btn {
    background: #2DB7A4;
    transform: translate(-50%, -50%) scale(1.1);
}

/* 新闻资讯部分 */
.section-news {
    background: #f8f9fa;
}

.news-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.news-section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-section-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.news-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* 封面新闻 */
.news-featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.news-featured-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.news-featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-featured-card:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-content {
    padding: 30px;
}

.news-featured-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.news-featured-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-featured-title a:hover {
    color: #2DB7A4;
}

.news-featured-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.news-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.news-date {
    color: #999;
    font-size: 14px;
}

.news-read-more {
    color: #2DB7A4;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #239a8a;
}

/* 新闻列表 */
.news-list-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2DB7A4;
}

.news-simple-list {
    space-y: 20px;
}

.news-simple-item {
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.news-simple-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-simple-title {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.4;
}

.news-simple-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-simple-title a:hover {
    color: #2DB7A4;
}

.news-simple-description {
    color: #999999;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.news-simple-date {
    color: #999;
    font-size: 12px;
}

/* 查看更多按钮 */
.news-more-section {
    text-align: center;
}

.news-more-btn {
    padding: 15px 40px;
    font-size: 16px;
    background: transparent;
    color: #2DB7A4;
    border: 2px solid #2DB7A4;
}

.news-more-btn:hover {
    background: #2DB7A4;
    color: white;
}

/* 联系我们部分 */
.section-contact {
    background: white;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* 联系信息卡片 */
.contact-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    height: fit-content;
}

.contact-card-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #2DB7A4;
}

.contact-logo-wrapper {
    margin-bottom: 20px;
}

.contact-company-logo {
    height: 60px;
    width: auto;
}

.contact-company-name {
    font-size: 16px;
    color: #333;
    margin: 15px 0 10px 0;
    font-weight: 700;
}

.contact-company-slogan {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.contact-info-list {
    space-y: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #2DB7A4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* 联系表单 */
.contact-form-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 17.5px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.required-mark {
    color: #dc3545;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2DB7A4;
    box-shadow: 0 0 0 3px rgba(45, 183, 164, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    padding-left: 15px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 验证码 */
.verify-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.verify-wrapper .input-wrapper {
    flex: 1;
}

.verify-image {
    width: 120px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-image:hover {
    border-color: #2DB7A4;
}

/* 提交按钮 */
.form-actions {
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2DB7A4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #239a8a;
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* 空状态 */
.empty-state,
.news-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .about-content,
    .news-main-layout,
    .contact-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title span {
        font-size: 28px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .carousel-controls {
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .about-content {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text {
        height: auto;
        min-height: auto;
        padding: 25px 25px 40px 25px;
        display: flex;
        flex-direction: column;
    }
    
    .section-about .section-title {
        margin-top: 0;
    }
    
    .about-description,
    .about-description p {
        color: #333333 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-text .btn {
        margin-top: auto;
        align-self: flex-start;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .news-main-layout {
        gap: 30px;
    }
    
    .news-section-subtitle {
        text-align: center !important;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-subtitle {
        text-align: center !important;
    }
    
    .contact-company-slogan {
        text-align: center !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .input-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 移动设备Banner广告语样式 - 768px */
    .banner-text {
        width: 90%;
        max-width: none;
    }
    
    .banner-text-bottom-right {
        bottom: 40px;
        right: 20px;
        width: 75%;
        max-width: 75%;
    }
    
    .banner-text-top-left {
        top: 40px;
        left: 20px;
        width: 70%;
    }
    
    .banner-slogan {
        font-size: 32px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 200px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title span {
        font-size: 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .about-image img {
        height: 330px;
    }
    
    .about-text {
        height: auto;
        min-height: auto;
        padding: 20px 20px 50px 20px;
        display: flex;
        flex-direction: column;
    }
    
    .about-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        flex: 1;
    }
    
    .news-featured-content,
    .news-list-section {
        padding: 20px;
    }
    
    .contact-card-header {
        padding-bottom: 20px;
    }
    
    /* 移动设备Banner广告语样式 - 480px */
    .banner-text {
        width: 95%;
        padding: 0 10px;
    }
    
    .banner-text-bottom-right {
        bottom: 30px;
        right: 15px;
        width: 85%;
        max-width: 85%;
    }
    
    .banner-text-top-left {
        top: 30px;
        left: 15px;
        width: 80%;
    }
    
    .banner-slogan {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }
}

/* 移动端语言切换样式 */
.mobile-language-switcher {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-toggle:hover {
    background: #e9ecef;
}

.mobile-lang-toggle .lang-icon {
    filter: grayscale(1) brightness(0.6);
}

.mobile-lang-dropdown {
    margin-top: 10px;
    display: none;
}

.mobile-language-switcher.active .mobile-lang-dropdown {
    display: block;
}

.mobile-lang-dropdown .lang-option {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.mobile-lang-dropdown .lang-option:hover {
    background: #f8f9fa;
}

.mobile-lang-dropdown .lang-option.active {
    background: var(--primary-color);
    color: white;
}

/* 移动端语言图标样式 */
.mobile-lang-dropdown .lang-flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

/* 子菜单箭头样式已移除 - 直接显示模式 */

/* 改进的移动端子菜单 - 直接显示 */
.mobile-submenu {
    background: #f8f9fa;
    margin-top: 5px;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    display: block;
}
