﻿body {
    background: #f7f9fc;
}

.tld-item-hero {
    background: linear-gradient(135deg, #0b2b6b 0%, #1a4a8a 100%);
    color: #fff;
    padding: 90px 0 50px;
}

    .tld-item-hero .hero-title {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 12px;
        text-align: center;
    }

    .tld-item-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.tld-item-section {
    padding: 30px 0 50px;
}

.tld-item-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Introduction Section */
.intro-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b2b6b;
    margin: 0 0 20px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px;
}

.intro-logo {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tld-logo {
    font-size: 120px;
    font-weight: 800;
    color: #0b2b6b;
    text-transform: lowercase;
    position: relative;
}

    .tld-logo::before {
        content: '.';
        position: absolute;
        left: -40px;
        color: #4a9eff;
        font-size: 80px;
    }

/* Info Table Section */
.info-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.info-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0b2b6b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

    .info-table tr {
        border-bottom: 1px solid #eee;
    }

        .info-table tr:last-child {
            border-bottom: none;
        }

    .info-table td {
        padding: 15px 20px;
        font-size: 14px;
    }

        .info-table td:first-child {
            width: 200px;
            color: #666;
            font-weight: 500;
        }

        .info-table td:last-child {
            color: #333;
        }

    .info-table a {
        color: #0b2b6b;
        text-decoration: none;
    }

        .info-table a:hover {
            text-decoration: underline;
        }

/* Rules Section */
.rules-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.rules-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b2b6b;
    margin: 0 0 20px;
}

.rules-content {
    margin-bottom: 30px;
}

.rules-item {
    margin-bottom: 20px;
}

.rules-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.rules-item-content {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.consult-btn {
    background: #0b2b6b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .consult-btn:hover {
        background: #1a4a8a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 43, 107, 0.3);
    }

/* Promotion Section - hzdetail-header style */
.promo-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.promo-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.promo-title-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.promo-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.promo-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
    display: inline-block;
}

.promo-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 25px;
    line-height: 1.6;
}

.promo-search-box {
    display: flex;
    gap: 12px;
    max-width: 100%;
    margin-top: 20px;
}

.promo-search-input {
    flex: 1;
}

    .promo-search-input .el-input__inner {
        height: 50px;
        font-size: 15px;
        padding: 0 18px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
        transition: all 0.3s;
    }

        .promo-search-input .el-input__inner:focus {
            border-color: #4a9eff;
            box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
        }

.promo-search-btn {
    height: 50px;
    padding: 0 30px;
    font-size: 15px;
    background: #4a9eff;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .promo-search-btn:hover {
        background: #3a8eef;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
    }

/* Price Card */
.price-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    flex: 0 0 300px;
    position: relative;
    z-index: 1;
    border: 1px solid #e9ecef;
}

.price-card-header {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-card-title {
    font-size: 14px;
    font-weight: 500;
}

.price-card-tld {
    background: rgba(255,255,255,0.25);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.price-card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .price-item:last-child {
        border-bottom: none;
    }

.price-item-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px;
}

.price-label-desc {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #0b2b6b;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-section {
        flex-direction: column;
    }

    .intro-logo {
        flex: 1;
        width: 100%;
    }

    .promo-section {
        flex-direction: column;
        padding: 30px 25px;
    }

    .promo-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .promo-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-card {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tld-logo {
        font-size: 80px;
    }

        .tld-logo::before {
            font-size: 60px;
            left: -30px;
        }

    .promo-section {
        padding: 25px 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-price {
        font-size: 28px;
    }

    .promo-subtitle {
        font-size: 14px;
    }

    .promo-search-box {
        flex-direction: column;
    }

    .promo-search-btn {
        width: 100%;
    }

    .price-card-header {
        padding: 18px 15px;
    }

    .price-card-body {
        padding: 20px 15px;
    }

    .price-item {
        padding: 15px 0;
    }

    .price-value {
        font-size: 20px;
    }

    .info-table td:first-child {
        width: 150px;
    }

    .info-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}
