:root {
    --primary: #004aad;
    --secondary: #e63946;
    --accent: #00b4d8;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* 顶部产品展示区 */
.hero {
    background: linear-gradient(rgba(0, 30, 80, 0.85), rgba(0, 30, 80, 0.9)), url('/tenau/2021/03/30/about-4.jpg?imageView2/2/w/1750/h/862/format/jpg/q/75');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: 350px;
    display: block;
}

/* 通用版块样式 */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 产品概述 */
.overview {
    background: var(--light);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.overview-image:hover img {
    transform: scale(1.05);
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.certifications {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
}

.cert-icon {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: var(--shadow);
    color: var(--primary);
    font-size: 1.8rem;
}

.cert-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* 产品参数表 */
.parameters table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.parameters th {
    background: var(--primary);
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
}

.parameters td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.parameters tr:nth-child(even) {
    background: #f9f9f9;
}

.parameters tr:hover {
    background: #e3f2fd;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* 产品优势 */
.advantages {
    background: var(--light);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* 产品特征 */
.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list-box {
    list-style: none;
}

.feature-list-box li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.feature-list-box li:last-child {
    border-bottom: none;
}

.feature-list-box i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.3rem;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* 对比表格 */
.comparison {
    background: var(--light);
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison th {
    background: var(--dark);
    color: white;
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
}

.comparison td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison tr:nth-child(even) {
    background: #f9f9f9;
}

.comparison tr:last-child td {
    border-bottom: none;
}

.check {
    color: #28a745;
    font-weight: bold;
}

.cross {
    color: var(--secondary);
    font-weight: bold;
}

/* 安装时间线 */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-item:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even):before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background-color: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

/* 应用场景 */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.application-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
    height: 200px;
    overflow: hidden;
}

.application-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.application-card:hover .application-img img {
    transform: scale(1.1);
}

.application-content {
    padding: 20px;
    background: white;
}

.application-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* 选择因素 */
.factors {
    background: var(--light);
}

.factors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.factor-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.factor-list {
    list-style: none;
}

.factor-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: flex-start;
}

.factor-list li:last-child {
    border-bottom: none;
}

.factor-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* 公司介绍 */
.company-intro {
    background: linear-gradient(rgba(0, 30, 80, 0.9), rgba(0, 30, 80, 0.95)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.company-intro .section-title h2 {
    color: white;
}

.company-intro .section-title:after {
    background: var(--accent);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.company-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.company-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.company-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

.commitment {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.commitment h3 {
    color: var(--accent);
    margin-bottom: 20px;
    text-align: center;
}

.language-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.language-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
}

/* 底部行动召唤 */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-option {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-option h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--secondary);
}

/* 页脚 */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content, .overview-content, .features-content, .factors-content {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd):before, .timeline-item:nth-child(even):before {
        left: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .advantage-grid, .applications-grid, .cta-grid {
        grid-template-columns: 1fr;
    }
}
.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free";
}
.fa-solid, .fas {
    font-weight: 900;
}
/* 电梯规格表 - 现代化CSS样式 */
/* 此样式完全基于原始HTML结构，无需修改HTML */

/* 表格容器样式 */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom right, #ffffff, #f8fafc);
}

/* 表格基础样式 */
.comp-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

/* 表格行样式 */
.comp-spec-table tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #eef2f7;
}

.comp-spec-table tr:last-child {
    border-bottom: none;
}

.comp-spec-table tr:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* 表格单元格样式 */
.comp-spec-table td {
    padding: 18px 24px;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: middle;
}

/* 第一列样式 - 规格名称 */
.comp-spec-table td:first-child {
    font-weight: 600;
    color: #2d3748;
    width: 35%;
    background-color: #f7fafc;
    border-right: 2px solid #e2e8f0;
    position: relative;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

.comp-spec-table td:first-child::before {
    content: "▶";
    position: absolute;
    left: 8px;
    color: #4299e1;
    font-size: 12px;
    opacity: 0.7;
}

/* 第二列样式 - 规格值 */
.comp-spec-table td:last-child {
    color: #4a5568;
    font-weight: 500;
    position: relative;
}

/* 特殊值样式 */
.comp-spec-table td:last-child {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* 数值范围样式 */
.comp-spec-table td:last-child {
    color: #2d3748;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .table-responsive {
        border-radius: 8px;
        margin: 15px 0;
    }
    
    .comp-spec-table {
        min-width: 100%;
    }
    
    .comp-spec-table td {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .comp-spec-table td:first-child {
        width: 40%;
        padding-left: 28px;
    }
}

/* 打印样式 */
@media print {
    .table-responsive {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .comp-spec-table tr {
        break-inside: avoid;
    }
}
.hero-text h1 {
    font-size: 5.2rem;
    line-height: 1.6;
    font-weight: 700;
}
.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 2;
}
.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 2;
}
.feature-list i {
    margin-right: 15px;
    font-size: 1.9rem;
}
.feature-list {
    margin-bottom: 70px;
}
.cta-buttons .btn-primary i.fas.fa-pencil-alt {
    margin-right: 15px;
}
.cta-buttons a.btn-secondary i.fas.fa-download {
    margin-right: 15px;
}
.cta-buttons a {
    font-size: 16px;
}
.section-title h2 {
    font-size: 35px;
    font-weight: 700;
}
.overview .section-title p {
    font-size: 16px;
}
.section-title:after {
    bottom: -30px;
}
.section-title {
    margin-bottom: 80px;
}
.overview-text p {
    font-size: 16px;
}
.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-size: 18px;
}
.cert-item span {
    font-size: 16px;
    font-weight: 600;
}
.overview-image img {
    height: 400px;
}
.overview-text {
    padding-top: 20px;
}
.section-title h2 {
    font-size: 35px;
    font-weight: 700;
}
.section-title p {
    font-size: 16px;
}
.advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
}
.advantage-icon i.fas {
    font-size: 30px;
}
p.comp-advantage-p {
    font-size: 16px;
    line-height: 2;
}
.feature-list-box i {
    margin-right: 25px;
    font-size: 25px;
}
.feature-list-box li {
    font-size: 16px;
    line-height: 2;
}
.comparison td {
    font-size: 16px;
    border-bottom: 2px solid #eee;
}
table tr {
    border: 2px solid #eee;
}
table td, table th {
    border: 1px solid #999;
}
.timeline-content h3 {
    font-size: 18px;
    font-weight: 500;
}
.timeline-content p {
    font-size: 16px;
    line-height: 2;
}
.applications-grid {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
}
.application-content h3 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}
.application-content p.comp-application-p {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 10px;
}
.application-content h3 {
    margin-top: 10px;
}
.factor-column h3 {
    font-size: 18px;
    font-weight: 500;
}
.factors-content i.fas {
    font-size: 20px;
}
.factor-list li {
    font-size: 16px;
    line-height: 2;
}
.factor-list li i.fas {
    margin-top: 10px;
}
.faq-question span {
    font-size: 18px;
    line-height: 2;
}
.faq-item {
    margin-bottom: 35px;
}
.faq-answer p {
    font-size: 16px;
    line-height: 2;
}
.company-card h3 {
    font-size: 18px;
    font-weight: 500;
}
.company-card p {
    line-height: 2;
    font-size: 14px;
}
.commitment h3 {
    font-size: 18px;
    font-weight: 700;
}
.commitment p {
    line-height: 2;
    font-size: 16px;
    margin: 10px 0;
}


/* 主容器样式 - 基于您的HTML结构 */
.more-info {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    padding: 25px 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

/* 标题样式 - 如果有标题可以这样使用 */
.more-info .info-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
}

.more-info .info-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Segoe UI', sans-serif;
}

/* 内容区域样式 */
.more-info .info-content {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 25px;
    width: 100%;
}

/* 链接容器样式 */
.more-info .links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

/* 单个链接样式 */
.more-info .links-container a {
    display: inline-block;
    padding: 10px 18px;
    background-color: white;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.02em;
    width: calc(25% - 12px); /* 4列布局 */
    box-sizing: border-box;
    text-align: center;
}

.more-info .links-container a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

/* 链接悬停效果 */
.more-info .links-container a:hover {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
}

.more-info .links-container a:hover:before {
    left: 100%;
}

/* 链接激活状态 */
.more-info .links-container a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* 链接内文字样式 */
.more-info .links-container a span.link-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 链接前的图标（可选） */
.more-info .links-container a:before {
    content: '';
    margin-right: 6px;
    font-size: 12px;
    opacity: 0.7;
}

/* 响应式设计 - 平板端 (769px - 1024px) */
@media screen and (max-width: 1024px) {
    .more-info {
        padding: 22px 18px;
        margin: 25px 0;
    }
    
    .more-info .info-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .more-info .links-container a {
        width: calc(33.333% - 12px); /* 3列布局 */
        padding: 9px 16px;
        font-size: 13.5px;
    }
    
    .more-info .info-content {
        font-size: 14.5px;
    }
}

/* 响应式设计 - 大手机端 (481px - 768px) */
@media screen and (max-width: 768px) {
    .more-info {
        padding: 20px 16px;
        margin: 20px 0;
        border-left-width: 3px;
    }
    
    .more-info .info-title {
        font-size: 19px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .more-info .info-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .more-info .links-container {
        gap: 10px;
    }
    
    .more-info .links-container a {
        width: calc(50% - 10px); /* 2列布局 */
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .more-info .info-content {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* 响应式设计 - 小手机端 (480px及以下) */
@media screen and (max-width: 480px) {
    .more-info {
        padding: 18px 14px;
        margin: 15px 0;
        border-left-width: 3px;
        border-radius: 10px;
        width: calc(100% - 8px); /* 留出边距 */
        margin-left: 4px;
        margin-right: 4px;
    }
    
    .more-info .info-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 14px;
        padding-bottom: 6px;
        line-height: 1.4;
        width: 100%;
    }
    
    .more-info .info-subtitle {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
        line-height: 1.5;
        width: 100%;
    }
    
    .more-info .info-content {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
        width: 100%;
    }
    
    .more-info .links-container {
        display: flex;
        flex-direction: column; /* 单列布局 */
        gap: 8px;
        margin-top: 16px;
        width: 100%;
    }
    
    .more-info .links-container a {
        width: 100%; /* 单列全宽 */
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 6px;
        text-align: left;
        box-sizing: border-box;
        margin: 0;
    }
    
    /* 移动端链接文字优化 */
    .more-info .links-container a span.link-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }
    
    /* 移动端链接图标调整 */
    .more-info .links-container a:before {
        margin-right: 8px;
        font-size: 11px;
    }
    
    /* 移动端触摸友好性 */
    .more-info .links-container a {
        min-height: 44px; /* 触摸友好最小高度 */
        display: flex;
        align-items: center;
    }
    
    /* 移动端悬停效果调整 */
    .more-info .links-container a:hover {
        transform: none; /* 移动端取消Y轴移动 */
        box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
    }
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    .more-info {
        background-color: #1e293b;
        border-left-color: #60a5fa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .more-info .info-title {
        color: #f1f5f9;
        border-bottom-color: #334155;
    }
    
    .more-info .info-subtitle {
        color: #94a3b8;
    }
    
    .more-info .info-content {
        color: #cbd5e1;
    }
    
    .more-info .links-container a {
        background-color: #334155;
        color: #60a5fa;
        border-color: #475569;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .more-info .links-container a:hover {
        background-color: #60a5fa;
        color: #0f172a;
        border-color: #60a5fa;
    }
}

/* 打印样式 */
@media print {
    .more-info {
        background-color: transparent !important;
        border: 1px solid #ddd;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .more-info .links-container a {
        border: 1px solid #999;
        color: #333 !important;
        background-color: transparent !important;
        box-shadow: none !important;
        text-decoration: underline;
    }
    
    .more-info .links-container a:hover {
        background-color: transparent !important;
        color: #333 !important;
        transform: none !important;
    }
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
}
.footer-column p {
    font-size: 15px;
    line-height: 2;
}
.contact-info li {
    font-size: 15px;
    line-height: 2;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    line-height: 2;
}
.more-info {
    margin: 100px auto;
    padding: 10px 20px 30px;
    max-width: 1200px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}
.more-info h2 {
    display: block;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.75rem;
    padding-top: 25px;
}
.more-info a {
    display: inline-block;
    margin: 0 1rem 1rem 0;
    padding: 1.1rem 1.8rem;
    background-color: #ffffff;
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.final-cta h2 {
    font-size: 35px;
    font-weight: 700;
}
.final-cta p {
    font-size: 16px;
    line-height: 2;
}
.nav-links a {
    font-size: 18px;
}
.nav-container {
    margin: 20px auto;
}
.nav-cta {
    font-size: 16px;
}
/* 基础样式重置 */
.simple-contact-form * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 主容器样式 */
.simple-contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 20px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-contact-form .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

/* 头部样式 */
.simple-contact-form .form-header {
    text-align: center;
    margin-bottom: 40px;
}

.simple-contact-form .form-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.simple-contact-form .form-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 表单样式 */
.simple-contact-form .simple-form {
    width: 100%;
}

/* 表单行（两列布局） */
.simple-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* 表单组样式 */
.simple-contact-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

/* 输入框基础样式 */
.simple-contact-form input,
.simple-contact-form select,
.simple-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

/* 输入框占位符样式 */
.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

/* 输入框焦点样式 */
.simple-contact-form input:focus,
.simple-contact-form select:focus,
.simple-contact-form textarea:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 输入框悬停样式 */
.simple-contact-form input:hover,
.simple-contact-form select:hover,
.simple-contact-form textarea:hover {
    border-color: #cbd5e1;
}

/* 下拉选择框样式 */
.simple-contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

/* 文本域样式 */
.simple-contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* 提交按钮样式 */
.simple-contact-form .form-footer {
    margin-top: 40px;
}

.simple-contact-form .submit-btn {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.simple-contact-form .submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.simple-contact-form .submit-btn:active {
    transform: translateY(0);
}

.simple-contact-form .btn-text {
    position: relative;
    z-index: 1;
}

.simple-contact-form .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.simple-contact-form .submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* 表单说明文字 */
.simple-contact-form .form-note {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.6;
}

/* 错误状态样式 */
.simple-contact-form input:invalid:not(:placeholder-shown),
.simple-contact-form select:invalid {
    border-color: #ef4444;
}

.simple-contact-form input:invalid:not(:placeholder-shown):focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* 平板端适配 (769px - 1024px) */
@media screen and (max-width: 1024px) {
    .simple-contact-form .container {
        padding: 40px;
        max-width: 700px;
    }
    
    .simple-contact-form .form-title {
        font-size: 28px;
    }
    
    .simple-contact-form .form-row {
        gap: 16px;
    }
}

/* 手机端适配 (481px - 768px) */
@media screen and (max-width: 768px) {
    .simple-contact-form {
        padding: 40px 16px;
    }
    
    .simple-contact-form .container {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .simple-contact-form .form-header {
        margin-bottom: 32px;
    }
    
    .simple-contact-form .form-title {
        font-size: 26px;
    }
    
    .simple-contact-form .form-subtitle {
        font-size: 15px;
    }
    
    .simple-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .simple-contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .simple-contact-form input,
    .simple-contact-form select,
    .simple-contact-form textarea {
        padding: 15px 18px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .simple-contact-form .submit-btn {
        padding: 18px;
        font-size: 17px;
        border-radius: 10px;
    }
    
    .simple-contact-form .form-note {
        font-size: 13px;
    }
}

/* 小手机端适配 (480px及以下) */
@media screen and (max-width: 480px) {
    .simple-contact-form {
        padding: 30px 12px;
        width: 100%;
    }
    
    .simple-contact-form .container {
        padding: 28px 20px;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
    }
    
    .simple-contact-form .form-header {
        margin-bottom: 28px;
        width: 100%;
    }
    
    .simple-contact-form .form-title {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }
    
    .simple-contact-form .form-subtitle {
        font-size: 14px;
        line-height: 1.5;
        width: 100%;
    }
    
    .simple-contact-form .form-group {
        margin-bottom: 18px;
        width: 100%;
    }
    
    .simple-contact-form input,
    .simple-contact-form select,
    .simple-contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 10px;
        width: 100%;
        border-width: 1.5px;
    }
    
    .simple-contact-form select {
        background-position: right 16px center;
        padding-right: 45px;
    }
    
    .simple-contact-form textarea {
        min-height: 100px;
        font-size: 14px;
    }
    
    .simple-contact-form .submit-btn {
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        width: 100%;
        min-height: 54px; /* 触摸友好 */
    }
    
    .simple-contact-form .btn-text {
        font-size: 16px;
    }
    
    .simple-contact-form .btn-icon {
        font-size: 18px;
    }
    
    .simple-contact-form .form-footer {
        margin-top: 32px;
        width: 100%;
    }
    
    .simple-contact-form .form-note {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 14px;
        width: 100%;
    }
    
    /* 移动端焦点状态优化 */
    .simple-contact-form input:focus,
    .simple-contact-form select:focus,
    .simple-contact-form textarea:focus {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    .simple-contact-form {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .simple-contact-form .container {
        background: #1e293b;
        border-color: #334155;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .simple-contact-form .form-title {
        color: #f1f5f9;
    }
    
    .simple-contact-form .form-subtitle {
        color: #94a3b8;
    }
    
    .simple-contact-form input,
    .simple-contact-form select,
    .simple-contact-form textarea {
        background: #0f172a;
        border-color: #334155;
        color: #f1f5f9;
    }
    
    .simple-contact-form input::placeholder,
    .simple-contact-form textarea::placeholder {
        color: #64748b;
    }
    
    .simple-contact-form input:focus,
    .simple-contact-form select:focus,
    .simple-contact-form textarea:focus {
        background: #0f172a;
        border-color: #3b82f6;
    }
    
    .simple-contact-form .form-note {
        color: #94a3b8;
    }
    
    .simple-contact-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    }
}

/* 打印样式 */
@media print {
    .simple-contact-form {
        background: white !important;
        padding: 20px !important;
    }
    
    .simple-contact-form .container {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        padding: 30px !important;
    }
    
    .simple-contact-form .submit-btn {
        background: #f0f0f0 !important;
        color: #000 !important;
        border: 1px solid #999 !important;
    }
}
.simple-contact-form form#addForm3 li.column span {
    font-size: 16px;
}
.simple-contact-form input, .simple-contact-form select, .simple-contact-form textarea {
    margin: 15px 0;
}
.simple-contact-form li span {
    font-size: 16px;
}
@media (max-width: 500px) {
    .application-content {
    width: 374px;
}
}
/* 手机端导航栏适配 */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 10px 0;
    }
    
    .container.nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        height: 60px;
    }
    
    /* 调整logo大小 */
    .logos img {
        max-height: 40px;
        width: auto;
        max-width: 150px;
    }
    
    /* 隐藏桌面导航链接和CTA按钮 */
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    /* 桌面CTA按钮在手机端隐藏 */
    .nav-cta {
        display: none !important;
    }
    
    /* 汉堡菜单按钮 - 只有一个按钮 */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #007bff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .hamburger-menu:hover {
        background: #0056b3;
        transform: scale(1.05);
    }
    
    .hamburger-menu span {
        display: block;
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hamburger-menu span:nth-child(1) {
        top: 16px;
    }
    
    .hamburger-menu span:nth-child(2) {
        top: 21px;
    }
    
    .hamburger-menu span:nth-child(3) {
        top: 26px;
    }
    
    /* 汉堡菜单激活状态 - 变成X */
    .hamburger-menu.active {
        background: #dc3545;
        z-index: 1002;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        top: 21px;
        transform: translateX(-50%) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-50%) scaleX(0);
    }
    
    .hamburger-menu.active span:nth-child(3) {
        top: 21px;
        transform: translateX(-50%) rotate(-45deg);
    }
    
    /* 从右侧滑出的侧边栏 */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        padding-top: 70px;
    }
    
    .mobile-sidebar.active {
        right: 0;
    }
    
    /* 侧边栏遮罩层 */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* 侧边栏导航链接 */
    .sidebar-nav {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .sidebar-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sidebar-nav a {
        display: block;
        padding: 16px 25px;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .sidebar-nav a:hover {
        background-color: #f8f8f8;
        color: #007bff;
        padding-left: 30px;
    }
    
    .sidebar-nav a:active {
        background-color: #f0f0f0;
    }
    
    /* 侧边栏CTA按钮 */
    .sidebar-cta {
        display: block;
        background: #007bff;
        color: white;
        padding: 16px 25px;
        border-radius: 0;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        margin: 20px 25px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: none;
    }
    
    .sidebar-cta:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    }
    
    /* 侧边栏底部信息 */
    .sidebar-footer {
        margin-top: auto;
        padding: 20px 25px;
        border-top: 1px solid #f0f0f0;
        font-size: 14px;
        color: #666;
    }
    
    .sidebar-footer p {
        margin: 5px 0;
    }
    
    /* 添加body滚动控制 */
    body.sidebar-open {
        overflow: hidden;
    }
}

/* 平板设备适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container.nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* 平板端隐藏移动端元素 */
    .hamburger-menu,
    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

/* 确保在桌面端隐藏移动端元素 */
@media (min-width: 769px) {
    .hamburger-menu,
    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }

}
@media (max-width: 769px) {
    .logos img {
    top: -15px;
    }
    .hamburger-menu {
        top: -68px;
        left: 172px;
        width: 32px;
    }
    .hamburger-menu span {
        width: 30px;
        background: black;
    }
    .footer-column.profoocol {
        display: none;
    }
    .more-info a {
        margin: 0 5px 5px 0;
        padding: 5px 10px;
    }
    .commitment p {
        text-align: center;
    }

}
.commitment p a {
    font-size: 16px;
}
a.foota {
    font-size: 15px;
}
.prodet-8.product-lists .swiper-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}
.prodet-8.product-lists .swiper-slide {
    width: 21.6%;
    margin: 20px 20px;
}
.prodet-8.product-lists .title {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}
.prodet-8.product-lists .title h4 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.prodet-8.product-lists .item-content a h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0 5px;
}
.prodet-8.product-lists .item-content p {
    text-align: center;
    line-height: 2;
}
.prodet-8.product-lists .swiper-container .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}