/* 全局样式 */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f5;
    padding: 0;
}

/* 网站 Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover {
    background: rgba(255,255,255,0.2);
}

.nav-item.active {
    background: rgba(255,255,255,0.3);
    font-weight: 500;
}


.header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.header-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 移动端菜单 */
@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    
    .header-mobile-toggle {
        display: flex;
    }
}

body {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    z-index: 100;
}

.back-btn:hover {
    background: #5568d3;
}

/* 地区选择器 */
.region-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.region-btn {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.region-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.region-btn.active {
    background: #4c63d2;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 日期选择器 */
.date-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.date-selector h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.date-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.date-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.date-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.date-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* 统计信息 */
.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    flex-wrap: wrap;
    border-radius: 6px;
}

.stat-item {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

/* 订阅按钮样式 */
.stat-subscribe {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 136, 204, 0.2);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #006699 0%, #005588 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 136, 204, 0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.subscribe-icon {
    font-size: 18px;
}

.subscribe-text {
    font-weight: 500;
}

/* 资料卡片网格 */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.profile-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.profile-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #f0f0f0;
}

.profile-info {
    padding: 15px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.profile-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.profile-meta span {
    margin-right: 12px;
}

.profile-id {
    font-weight: 600;
    color: #667eea !important;
}

.profile-summary {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 详情页样式 */
.detail-header {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.detail-image-wrapper {
    flex: 0 0 300px;
    max-width: 100%;
}

.detail-image-main {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.detail-content {
    flex: 1;
    min-width: 0;
    padding-right: 0;
}

.detail-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.detail-meta-item strong {
    color: #333;
    font-weight: 500;
}

.detail-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.detail-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 12px;
    padding: 12px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 联系方式区域 - 列表页 */
.stat-contact {
    flex: 1;
    min-width: 200px;
}

.contact-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-btn .contact-icon {
    font-size: 18px;
}

.contact-btn .contact-text {
    font-size: 14px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: white;
    border-color: #0088cc;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0077b5 0%, #0066a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* 联系方式区域 - 详情页 */
.contact-section {
    margin-top: 30px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact-buttons-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.contact-btn-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-btn-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.whatsapp-btn-detail:hover {
    border-color: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.telegram-btn-detail:hover {
    border-color: #0088cc;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.2);
}

.contact-icon-detail {
    font-size: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.whatsapp-btn-detail .contact-icon-detail {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.telegram-btn-detail .contact-icon-detail {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.contact-info-detail {
    flex: 1;
    min-width: 0;
}

.contact-name {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-name::after {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
    display: none;
}

.telegram-btn-detail .contact-name::after {
    content: 'Telegram';
    color: #0088cc;
    background: #e3f2fd;
    display: inline-block;
}

.whatsapp-btn-detail .contact-name::after {
    content: 'WhatsApp';
    color: #25d366;
    background: #e8f5e9;
    display: inline-block;
}

.contact-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.contact-arrow {
    font-size: 18px;
    color: #999;
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.contact-btn-detail:hover .contact-arrow {
    transform: translateX(6px);
    color: #667eea;
    opacity: 1;
}

.whatsapp-btn-detail:hover .contact-arrow {
    color: #25d366;
}

.telegram-btn-detail:hover .contact-arrow {
    color: #0088cc;
}

/* 详情页竖排联系方式 */
.contact-section-vertical {
    flex: 0 0 180px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
}

.contact-title-vertical {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.contact-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.contact-btn-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-icon-vertical {
    font-size: 28px;
}

.contact-text-vertical {
    font-size: 14px;
}

.whatsapp-btn-vertical {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border-color: #25d366;
}

.whatsapp-btn-vertical:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.telegram-btn-vertical {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: white;
    border-color: #0088cc;
}

.telegram-btn-vertical:hover {
    background: linear-gradient(135deg, #0077b5 0%, #0066a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}


/* 媒体区域 */
.detail-media-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.media-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid #e5e5e5;
}

.media-tab {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.media-tab:hover {
    color: #333;
}

.media-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.media-content {
    display: none;
}

.media-content.active {
    display: block;
}

.detail-media {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.media-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    aspect-ratio: 1;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-item:hover {
    opacity: 0.9;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
}

/* 图片和视频放大查看模态框 */
.image-modal, .video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    cursor: pointer;
}

.image-modal.active, .video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.video-modal video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    opacity: 0.7;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    .detail-header {
        flex-direction: column;
    }
    
    .detail-image-wrapper {
        flex: 1;
        width: 100%;
    }
    
    .detail-image-main {
        max-width: 100%;
    }
    
    .contact-section-vertical {
        flex: 1;
        width: 100%;
        margin-top: 20px;
    }
    
    .contact-buttons-vertical {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-btn-vertical {
        flex: 1;
        min-width: 140px;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .contact-buttons {
        flex-wrap: wrap;
    }
    
    .contact-buttons-inline {
        flex-wrap: wrap;
    }
    
    .profile-image {
        height: 200px;
    }
    
    .detail-media {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 6px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-contact {
        min-width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons-detail {
        gap: 10px;
    }
    
    .contact-btn-detail {
        padding: 14px 16px;
    }
    
    .contact-icon-detail {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .stat-subscribe {
        justify-content: center;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .region-selector {
        gap: 8px;
    }
    
    .region-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 18px;
    }
    
    .detail-meta {
        font-size: 12px;
    }
}

/* 验证弹出层 */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.verify-modal.active {
    display: flex;
}

.verify-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: verifySlideIn 0.3s ease-out;
    position: relative;
    z-index: 10001;
    overflow: visible; /* 允许下拉菜单溢出 */
}

@keyframes verifySlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.verify-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.verify-form {
    margin-bottom: 30px;
}

.verify-field {
    margin-bottom: 20px;
    position: relative;
}

.verify-field label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.verify-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.verify-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.verify-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
}

.verify-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.verify-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.verify-submit-btn:active {
    transform: translateY(0);
}

.verify-contact {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
}

.verify-contact-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.verify-contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.verify-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.verify-contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.verify-contact-btn.telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.verify-contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.verify-contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* 会员ID徽章（详情页右下角） */
.member-id-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    user-select: none;
}

.member-id-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.member-id-label {
    font-weight: 500;
    opacity: 0.9;
}

.member-id-value {
    font-weight: 700;
    font-size: 16px;
}

.member-id-hint {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

@media (max-width: 768px) {
    /* 返回列表按钮：移动端固定在左下角 */
    .back-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 998;
        margin-bottom: 0;
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        font-size: 14px;
    }
    
    .back-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
    }
    
    .member-id-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .member-id-value {
        font-size: 14px;
    }
    
    .member-id-hint {
        display: none;
    }
    
    .verify-content {
        padding: 30px 20px;
        max-width: 95%;
        margin: 10px;
    }
    
    .verify-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .verify-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .verify-field {
        margin-bottom: 18px;
    }
    
    .verify-field label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .verify-input {
        padding: 16px 20px;
        font-size: 16px; /* 防止iOS自动缩放 */
        border-radius: 10px;
        min-height: 52px; /* 确保触摸目标足够大 */
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }
    
    .verify-submit-btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 10px;
        min-height: 52px;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    }
    
    .verify-contact {
        padding-top: 20px;
    }
    
    .verify-contact-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .verify-contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .verify-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }
}

@media (max-width: 480px) {
    /* 小屏幕：返回按钮调整位置和大小 */
    .back-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .verify-content {
        padding: 24px 16px;
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .verify-title {
        font-size: 18px;
    }
    
    .verify-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .verify-field {
        margin-bottom: 16px;
    }
    
    .verify-field label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .verify-input {
        padding: 14px 18px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .verify-submit-btn {
        padding: 14px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .verify-contact-title {
        font-size: 13px;
    }
    
    .verify-contact-btn {
        padding: 12px 18px;
        font-size: 14px;
        min-height: 44px;
    }
}

