/* 首页模板样式 - 专业官方版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* 顶部导航栏 - 专业设计 */
.home-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.home-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #1E9FFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E9FFF;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* 主要内容区域 */
.home-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.home-section {
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-weight: 400;
}

/* 功能特色区域 */
.features-section {
    background: #fff;
    border-radius: 12px;
    padding: 80px 40px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E9FFF, #5FB878);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 52px;
    color: #1E9FFF;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 价格方案区域 */
.pricing-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 80px 40px;
    margin-top: 40px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #1E9FFF;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.price-symbol {
    font-size: 22px;
    color: #1E9FFF;
    font-weight: 600;
}

.price-amount {
    font-size: 52px;
    color: #1E9FFF;
    font-weight: 700;
    margin-left: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.pricing-features {
    margin-bottom: 35px;
    min-height: 200px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 14px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #5FB878;
    margin-right: 12px;
    font-size: 18px;
}

.pricing-action {
    margin-top: 30px;
}

.pricing-action .layui-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

/* 关于我们区域 */
.about-section {
    background: #fff;
    border-radius: 12px;
    padding: 80px 40px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: center;
}

.about-text p {
    margin-bottom: 24px;
}

/* 底部区域 */
.home-footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-container p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* 订单查询结果样式 */
#orderResult {
    margin-top: 30px;
}

#orderResult .layui-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#orderResult .layui-card-header {
    background: #f8f9fa;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

#orderResult .layui-table {
    margin: 0;
}

#orderResult .layui-table td {
    padding: 12px 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .home-header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .home-nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .home-nav #queryOrderBtn {
        margin-left: 0;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .features-section,
    .pricing-section,
    .about-section {
        padding: 50px 20px;
        margin-top: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .price-amount {
        font-size: 42px;
    }

    .home-section {
        padding: 50px 0;
    }

    .home-main {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .home-logo h1 {
        font-size: 22px;
    }

    .nav-link {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 42px;
    }
}
