﻿body {
    background: #f7f9fc;
}

.newuser-detail-hero {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    padding: 90px 0 50px;
}

    .newuser-detail-hero .hero-title {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 12px;
        text-align: center;
    }

    .newuser-detail-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.newuser-detail-section {
    padding: 30px 0 50px;
}

.newuser-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newuser-info-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .newuser-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .newuser-info-card.newuser::before {
        background: linear-gradient(90deg, #1890ff, #096dd9);
    }

    .newuser-info-card.company::before {
        background: linear-gradient(90deg, #722ed1, #9254de);
    }

.newuser-header-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.tld-name-large {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.user-type-badge-large {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

    .user-type-badge-large.newuser {
        background: #e6f7ff;
        color: #1890ff;
    }

    .user-type-badge-large.company {
        background: #f9f0ff;
        color: #722ed1;
    }

.registrar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.registrar-icon-large {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

    .registrar-icon-large.xinnet {
        background: #E53935;
    }

    .registrar-icon-large.alibaba {
        background: #FF6A00;
    }

    .registrar-icon-large.tencent {
        background: #1890FF;
    }

    .registrar-icon-large.namecheap {
        background: #FF6B35;
    }

.price-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.first-year-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #1890ff;
}

.price-currency {
    font-size: 20px;
    color: #666;
    margin-left: 5px;
}

.price-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.normal-price-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.normal-price-label {
    font-size: 14px;
    color: #999;
}

.normal-price-value {
    font-size: 18px;
    color: #666;
    margin-left: 10px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 13px;
    color: #999;
}

.detail-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.info-section {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

    .info-item i {
        color: #1890ff;
        width: 18px;
        margin-top: 2px;
    }

.description-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
}

.description-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.url-section {
    margin-bottom: 30px;
}

.url-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    word-break: break-all;
}

    .url-link:hover {
        text-decoration: underline;
    }

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
}

    .primary-btn:hover {
        background: linear-gradient(135deg, #096dd9, #0050b3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
    }

.secondary-btn {
    background: white;
    color: #1890ff;
    border: 1px solid #1890ff;
}

    .secondary-btn:hover {
        background: #e6f7ff;
    }

.error-btn {
    background: white;
    color: #666;
    border: 1px solid #e0e0e0;
}

    .error-btn:hover {
        background: #f0f0f0;
        border-color: #1890ff;
        color: #1890ff;
    }

.report-btn {
    background: white;
    color: #666;
    border: 1px solid #e0e0e0;
}

    .report-btn:hover {
        background: #f0f0f0;
        border-color: #ff4d4f;
        color: #ff4d4f;
    }

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}
