﻿body {
    background: #f7f9fc;
}

.newuser-hero {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    color: #fff;
    padding: 90px 0 50px;
}

    .newuser-hero .hero-title {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 12px;
        text-align: center;
    }

    .newuser-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.newuser-section {
    padding: 30px 0 50px;
}

.newuser-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-filter-section {
    background: white;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
}

    .search-input .el-input__inner {
        height: 45px;
        font-size: 15px;
        padding: 0 20px;
    }

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #666;
}

    .filter-tab:hover {
        border-color: #1890ff;
        color: #1890ff;
    }

    .filter-tab.active {
        background: #1890ff;
        color: white;
        border-color: #1890ff;
    }

.submit-btn {
    padding: 8px 20px;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, #ff5722, #ff8c00);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }

.newuser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.newuser-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .newuser-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .newuser-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .newuser-card.newuser::before {
        background: linear-gradient(90deg, #1890ff, #096dd9);
    }

    .newuser-card.company::before {
        background: linear-gradient(90deg, #722ed1, #9254de);
    }

.user-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

    .user-type-badge.newuser {
        background: #e6f7ff;
        color: #1890ff;
    }

    .user-type-badge.company {
        background: #f9f0ff;
        color: #722ed1;
    }

.card-header {
    margin-bottom: 20px;
}

.tld-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.registrar-name {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.registrar-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
}

    .registrar-icon.xinnet {
        background: #E53935;
    }

    .registrar-icon.alibaba {
        background: #FF6A00;
    }

    .registrar-icon.tencent {
        background: #1890FF;
    }

    .registrar-icon.namecheap {
        background: #FF6B35;
    }

.price-section {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.first-year-price {
    font-size: 28px;
    font-weight: 700;
    color: #1890ff;
}

.price-currency {
    font-size: 16px;
    color: #666;
    margin-left: 4px;
}

.price-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.normal-price {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.normal-price-label {
    color: #999;
}

.normal-price-value {
    color: #666;
    margin-left: 5px;
}

.info-section {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

    .info-item i {
        color: #1890ff;
        width: 16px;
    }

.description {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.register-btn {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .register-btn:hover {
        background: linear-gradient(135deg, #096dd9, #0050b3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
    }

.action-buttons {
    display: flex;
    gap: 5px;
}

.action-btn {
    padding: 12px 15px;
    background: white;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

    .action-btn:hover {
        background: #f0f0f0;
        border-color: #1890ff;
        color: #1890ff;
    }

.error-icon {
    color: #999;
}

.report-icon {
    color: #999;
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #999;
    background: white;
    border-radius: 8px;
}

    .empty-state i {
        font-size: 48px;
        margin-bottom: 20px;
        color: #ddd;
    }

    .empty-state p {
        font-size: 16px;
        margin: 0;
    }

.pagination-section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .newuser-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
    }
}

