 /* 首页主体容器 */
        .main-container {
            max-width: 1400px;
            margin: 30px auto 50px;
            padding: 0 20px;
        }
         /* 英雄区域 - Banner + 会员登录 (5:1比例) */
        .hero-area {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: stretch;
            margin-bottom: 35px;
            gap: 20px;
        }
        .banner-area {
            flex: 5;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .banner-area:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        .banner-img {
            width: 100%;
            height: 100%;
            min-height: 180px;
            object-fit: cover;
            display: block;
        }
        /* 会员登录区域 - 无头部 */
        .member-login-area {
            flex: 1;
            min-width: 220px;
            background: linear-gradient(135deg, #fffef7, #fff8ec);
            border-radius: 24px;
            padding: 20px 20px;
            border: 1px solid #f0dc9c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .member-login-area:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
        }
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 14px;
        }
        .login-input {
            background: #fffef7;
            border: 1px solid #e2d0b0;
            border-radius: 40px;
            padding: 8px 16px;
            font-family: inherit;
            font-size: 13px;
            outline: none;
            transition: 0.2s;
        }
        .login-input:focus {
            border-color: #d4b87a;
            box-shadow: 0 0 0 3px rgba(212,184,122,0.2);
        }
        .login-submit {
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            border: none;
            padding: 8px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }
        .login-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212,156,92,0.3);
        }
        .login-divider {
            text-align: center;
            margin: 14px 0 10px;
            position: relative;
        }
        .login-divider span {
            background: #fffef7;
            padding: 0 10px;
            color: #b8946a;
            font-size: 11px;
        }
        .login-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2d0b0;
            z-index: -1;
        }
        .social-login-buttons {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
        }
        .social-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 40px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid #e2d0b0;
        }
        .social-btn.wechat-btn {
            background: #2d9c5c;
            color: white;
            border-color: #2d9c5c;
        }
        .social-btn.qq-btn {
            background: #12b7f5;
            color: white;
            border-color: #12b7f5;
        }
        .social-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
        }
        .login-links {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
        }
        .login-links a {
            color: #b8946a;
            text-decoration: none;
            transition: 0.2s;
        }
        .login-links a:hover {
            color: #d49c5c;
            text-decoration: underline;
        }
          /* ========== 会员中心样式（登录后显示） ========== */
        .member-center-area {
            flex: 1;
            min-width: 220px;
            background: linear-gradient(135deg, #fffef7, #fff8ec);
            border-radius: 24px;
            padding: 16px 16px;
            border: 1px solid #f0dc9c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .member-center-area:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
        }
        .member-welcome {
            text-align: center;
            padding-bottom: 12px;
            margin-bottom: 12px;
            border-bottom: 1px dashed #e2d0b0;
        }
        .member-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 20%, #f0dc9c, #d4b87a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: bold;
            color: #5e3a22;
            margin: 0 auto 8px;
        }
        .member-welcome .member-name {
            font-size: 14px;
            font-weight: 600;
            color: #5e3a22;
        }
        .member-welcome .member-level {
            font-size: 11px;
            color: #d49c5c;
            margin-top: 4px;
        }
        .member-menu {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .member-menu-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.2s;
            color: #6e4f2e;
            font-size: 13px;
            background: #fef8ef;
            border: 1px solid #f0dc9c;
        }
        .member-menu-item i {
            width: 20px;
            color: #d49c5c;
            font-size: 14px;
        }
        .member-menu-item:hover {
            background: #eedbbc;
            border-color: #c6a05b;
            transform: translateX(3px);
        }
        .member-menu-item.logout-item {
            margin-top: 8px;
            background: #fdf0e8;
            border-color: #e8c8a0;
        }
        .member-menu-item.logout-item i {
            color: #e8885c;
        }
        .member-menu-item.logout-item:hover {
            background: #fce4d8;
        }
        /* 英雄区域 - 真人算命一条街 + 立即抢购 整合 */
        .hero-area {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
            gap: 20px;
        }
        .street-sign {
            flex: 2;
            background: linear-gradient(125deg, #fffef7, #fff8ec);
            border-radius: 60px;
            padding: 16px 28px;
            border: 1px solid #f0dc9c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .street-sign:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
        }
        .street-sign h1 {
            font-family: "华文楷书", cursive;
            font-size: 32px;
            color: #c49a6c;
        }
        .street-sign p {
            color: #b8946a;
            font-size: 14px;
        }
        .hero-btn {
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(212,156,92,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        .hero-btn i {
            font-size: 20px;
        }
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212,156,92,0.4);
            background: linear-gradient(115deg, #f0c48a, #e0ac6c);
        }
        /* 广告位区域 - 多彩 */
        .ads-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 35px;
        }
        .ad-card {
            flex: 1;
            min-width: 200px;
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 5px 12px rgba(0,0,0,0.05);
        }
        .ad-card:nth-child(1) { background: linear-gradient(135deg, #fde8cd, #fce4c0); border: 1px solid #f0c48a; }
        .ad-card:nth-child(2) { background: linear-gradient(135deg, #e0f0e8, #d4e8dc); border: 1px solid #a8c8b0; }
        .ad-card:nth-child(3) { background: linear-gradient(135deg, #e8e0f0, #ddd0e8); border: 1px solid #c0a8d0; }
        .ad-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        .ad-icon { font-size: 38px; }
        .ad-card:nth-child(1) .ad-icon { color: #d48c5c; }
        .ad-card:nth-child(2) .ad-icon { color: #5c9c7c; }
        .ad-card:nth-child(3) .ad-icon { color: #9c6cbc; }
        .ad-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
        .ad-card:nth-child(1) .ad-content h4 { color: #c47a4a; }
        .ad-card:nth-child(2) .ad-content h4 { color: #4a8c6a; }
        .ad-card:nth-child(3) .ad-content h4 { color: #8a5cac; }
        .ad-content p { font-size: 12px; color: #8a6a4a; }
        /* 搜索和排名栏 */
        .search-rank-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            gap: 16px;
            background: #fffef7;
            padding: 12px 24px;
            border-radius: 60px;
            border: 1px solid #f0dc9c;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        .search-box {
            display: flex;
            gap: 12px;
            flex: 2;
            min-width: 200px;
        }
        .search-box input {
            flex: 1;
            background: #fffef7;
            border: 1px solid #e2d0b0;
            border-radius: 40px;
            padding: 10px 20px;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .search-box input:focus {
            border-color: #d4b87a;
            box-shadow: 0 0 0 3px rgba(212,184,122,0.2);
        }
        .search-box button {
            background: #e2ccaa;
            border: none;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #d4b87a;
            transform: translateY(-1px);
        }
        .rank-buttons {
            display: flex;
            gap: 12px;
        }
        .rank-btn {
            background: #fdf6e8;
            border: 1px solid #e1ceaa;
            border-radius: 40px;
            padding: 8px 20px;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        .rank-btn.active {
            background: #e2ccaa;
            border-color: #c6a05b;
            color: #3e2a1a;
            font-weight: 600;
        }
        /* 老师网格 */
        .teacher-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
        }
        .teacher-card {
            background: #fffefb;
            border: 1px solid #e8dcc8;
            border-radius: 20px;
            padding: 20px;
            transition: all 0.35s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }
        .teacher-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(60,40,20,0.15);
            border-color: #d4b87a;
        }
        .card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }
        .teacher-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #eedbba, #d4b87a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: #4a3724;
            border: 2px solid #f0dc9c;
            transition: 0.3s;
        }
        .teacher-card:hover .teacher-avatar {
            transform: scale(1.02);
        }
        .teacher-info {
            flex: 1;
        }
        .teacher-name {
            font-size: 20px;
            font-weight: 700;
            color: #5e3a22;
        }
        .teacher-tags {
            margin-top: 5px;
        }
        .tag {
            display: inline-block;
            background: #f5ede0;
            padding: 2px 10px;
            border-radius: 30px;
            font-size: 10px;
            color: #9b6e42;
            margin-right: 6px;
        }
        .rank-stats {
            font-size: 11px;
            color: #b8864b;
            margin-top: 4px;
        }
        .teacher-bio {
            font-size: 13px;
            color: #7c6442;
            line-height: 1.5;
            margin: 12px 0;
            background: #fef8ef;
            padding: 10px 12px;
            border-radius: 12px;
            flex: 1;
        }
        .price {
            font-size: 20px;
            font-weight: bold;
            color: #b3682c;
            margin: 10px 0;
        }
        .card-actions {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }
        .btn-card {
            flex: 1;
            background: #fdf6e8;
            border: 1px solid #e1ceaa;
            border-radius: 40px;
            padding: 8px 0;
            text-align: center;
            font-size: 13px;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            color: #6e4f2e;
        }
        .btn-card:hover {
            background: #eedbbc;
            border-color: #c6a05b;
            transform: translateY(-2px);
        }
        /* 状态标签样式 */
.status {
    font-size: 12px;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 12px;
    display: inline-block;
}

.status i {
    font-size: 8px;
    margin-right: 4px;
}

.status.online {
    color: #52c41a;
    background: #f6ffed;
    border: 1px solid #b7eb8f;
}

.status.offline {
    color: #8c8c8c;
    background: #f5f5f5;
    border: 1px solid #d9d9d9;
}

.status.busy {
    color: #ff4d4f;
    background: #fff2f0;
    border: 1px solid #ffccc7;
}

/* 图标样式 */
.status-icon {
    font-size: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

.status-icon.online {
    color: #52c41a;
}

.status-icon.offline {
    color: #8c8c8c;
}

.status-icon.busy {
    color: #ff4d4f;
}

/* 徽章样式 */
.status-badge {
    font-size: 11px;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: normal;
}

.online-badge {
    color: #52c41a;
    background: #f6ffed;
}

.offline-badge {
    color: #8c8c8c;
    background: #f5f5f5;
}

.busy-badge {
    color: #ff4d4f;
    background: #fff2f0;
}

/* 调整教师名称区域布局 */
.teacher-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}