@charset "UTF-8";
/* 主横幅 */
.hero {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.hero h1 span {
    color: #FF0050;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* 分类筛选 */
.category-tabs {
    background-color: white;
    padding: 20px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    padding: 10px 25px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn.active, .category-btn:hover {
    background-color: #FF0050;
    color: white;
    border-color: #FF0050;
}

/* 账号列表区域 */
.accounts-section {
    padding: 40px 0 80px;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 账号列表表格样式 */
.accounts-table {
    width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    background-color: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

.account-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.account-row:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.account-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.tag.featured {
    background-color: #FFE4EC;
    color: #FF0050;
    font-weight: 500;
}

.tag.female {
    background-color: #FFE4EC;
    color: #FF0050;
}

.tag.male {
    background-color: #E3F2FD;
    color: #2196F3;
}

.tag.verified {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF0050;
}

.price-info span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin-left: 3px;
}

.status-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-badge {
    background-color: #E8F5E9;
    color: #4CAF50;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.status-badge.out-of-stock {
    background-color: #FFEBEE;
    color: #F44336;
}

.action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-button {
    background-color: #FF0050;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 140px;
    text-decoration: none;
}

.buy-button:hover {
    background-color: #e00046;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 0, 80, 0.2);
}

/* 订单查询部分 */
.order-query {
    padding: 80px 0;
    background-color: white;
}

.query-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.query-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #FF0050;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.1);
}

.query-button {
    background-color: #FF0050;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.query-button:hover {
    background-color: #e00046;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 0, 80, 0.2);
}

/* 常见问题部分 */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
}

.faq-question i {
    color: #FF0050;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

/* 流程部分 */
.process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: 50%;
    height: 2px;
    background-color: #FF0050;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0050 0%, #FF6B9D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .table-header, .account-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .table-header {
        display: none;
    }
    
    .account-row {
        border: 1px solid #eee;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .buy-button {
        width: 100%;
    }
    
    .query-container {
        padding: 30px 20px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
}