:root {
    --primary-gradient: linear-gradient(135deg, #073090 0%, #022474 100%);
    --primary-color: #073090;
    --primary-dark: #022474;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B35;
    --accent-light: #FF9A76;
    --dark-color: #1a1a2e;
    --light-color: #f8f9ff;
    --gray-color: #666;
    --light-gray: #f5f5f5;
    --border-radius: 12px;
    --shadow: 0 8px 32px rgba(2, 36, 116, 0.15);
    --shadow-hover: 0 15px 45px rgba(2, 36, 116, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: white;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: white;
    box-shadow: 0 4px 20px rgba(2, 36, 116, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(7, 48, 144, 0.25);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-subtext {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: width 0.3s;
    border-radius: 1.5px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 英雄区域 */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #edf2ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(7, 48, 144, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(7, 48, 144, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(7, 48, 144, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: #f0f5ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(7, 48, 116, 0.15);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.btn-accent:hover {
    background: #FF5722;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
}

/* 功能展示区 */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(7, 48, 144, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.feature-1 .feature-icon {
    background: linear-gradient(135deg, rgba(7, 48, 144, 0.1) 0%, rgba(2, 36, 116, 0.1) 100%);
    color: var(--primary-color);
}

.feature-2 .feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    color: var(--accent-color);
}

.feature-3 .feature-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f5ff;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(7, 48, 144, 0.15);
}

.feature-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.feature-details p {
    font-size: 15px;
    margin-bottom: 8px;
}

/* 小程序引导区 */
.mini-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6eeff 100%);
}

.mini-program-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.mini-program-text {
    flex: 1;
    min-width: 300px;
}

.mini-program-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.mini-program-text p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.mini-program-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.qrcode-container {
    display: inline-block;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.qrcode-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.qrcode-container img {
    width: 200px;
    height: 200px;
    display: block;
    margin-bottom: 15px;
}

.qrcode-container p {
    color: var(--gray-color);
    font-size: 15px;
}

/* 免责声明 */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #edf2ff 100%);
}

.disclaimer-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 8px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.disclaimer-content h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
}

.disclaimer-content ul {
    list-style-type: none;
}

.disclaimer-content li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
}

.disclaimer-content li:last-child {
    border-bottom: none;
}

.disclaimer-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

/* 页脚 */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 25px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo p {
    color: #bbb;
    margin-top: 15px;
    max-width: 300px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 1.5px;
}

.footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .mini-program-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-bottom: 25px;
    }
}