/* User Style Sheet */
/* Generated on: 2026-02-27 */
/* Optimized and deduplicated */

/* ==================== Base Layout ==================== */
body {
    background: #e6e6e6;
}

.user-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.user-left {
    width: 200px;
    flex-shrink: 0;
}

.user-main {
    flex: 1;
    min-width: 0;
}

.user-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ==================== User Menu ==================== */
.user-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.user-menu-item {
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item a {
    display: block;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
}

.user-menu-item a:hover {
    background: #f8f9fa;
    color: #ff5f33;
}

.user-menu-item.active a {
    background: linear-gradient(135deg, #ff5f33 0%, #ff7f50 100%);
    color: #fff;
}

/* ==================== Card & Content ==================== */
.space-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.user-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.user-info-section {
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    text-align: center;
}

/* ==================== Section Header ==================== */
.section-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    min-height: 50px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ==================== Tab Navigation ==================== */
.tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
}

.tab-list {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 6px;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-item a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.tab-item:hover {
    background: #e9ecef;
}

.tab-item:hover a {
    color: #ff5f33;
}

.tab-item.active {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-item.active a {
    color: #ff5f33;
    font-weight: 500;
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ==================== Sub Tab Navigation ==================== */
.sub-tab-header {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
    padding: 0 20px;
    background: #fff;
}

.sub-tab-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    -webkit-overflow-scrolling: touch;
}

.sub-tab-item {
    white-space: nowrap;
}

.sub-tab-item a {
    display: block;
    padding: 6px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s;
    font-size: 13px;
    background: #f8f9fa;
}

.sub-tab-item.active a {
    background: #ff5f33;
    color: #fff;
}

.sub-tab-item a:hover {
    color: #ff5f33;
    background: #f0f0f0;
}
/* ==================== Pass Page ==================== */
.pass-container {
    margin: 50px auto 60px;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pass-box,
.pass-sidebar {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pass-header {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0 30px;
    height: 60px;
}

.pass-tab {
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.pass-tab:hover {
    color: #ff5f33;
}

.pass-tab.active {
    color: #ff5f33;
    border-bottom-color: #ff5f33;
}

.pass-content {
    padding: 30px;
}

.pass-content .form-group {
    margin-bottom: 20px;
}

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

.pass-content .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.pass-content .form-input:focus {
    outline: none;
    border-color: #ff5f33;
    box-shadow: 0 0 0 3px rgba(255, 95, 51, 0.1);
}

.pass-content .form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pass-content .form-input-wrapper .form-input {
    flex: 1;
    padding-right: 100px;
}

.pass-content .captcha-img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 38px;
    cursor: pointer;
    border-radius: 4px;
}

.pass-content .form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pass-content .btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.pass-content .btn-primary {
    background: #ff5f33;
    color: #fff;
}

.pass-content .btn-primary:hover {
    background: #e54d2a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 95, 51, 0.3);
}

.pass-content .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.pass-content .btn-secondary:hover {
    background: #e9ecef;
}

.pass-content .alert-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: #ff5f33;
    color: #fff;
}

.btn-primary:hover {
    background: #e54d2a;
}

.btn-outline {
    background: transparent;
    color: #ff5f33;
    border: 1px solid #ff5f33;
}

.btn-outline:hover {
    background: #ff5f33;
    color: #fff;
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #333;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-small {
    padding: 6px 14px;
    background: linear-gradient(135deg, #ff5f33 0%, #ff7f50 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 95, 51, 0.3);
}

.btn-checkin {
    display: inline-block;
    padding: 6px 20px;
    background: #ff5f33;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-checkin:hover {
    background: #e64d26;
    transform: translateY(-2px);
}

.btn-code {
    padding: 0 18px;
    height: 46px;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.btn-code:hover {
    background: #e9ecef;
    color: #333;
}

.create-btn {
    margin-left: auto;
    background: linear-gradient(135deg, #ff5f33 0%, #ff7f50 100%);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.create-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 95, 51, 0.3);
}

.upload-btn {
    padding: 10px 28px;
    background: linear-gradient(135deg, #ff5f33 0%, #ff7f50 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,95,51,0.3);
}

/* ==================== Form Elements ==================== */
.form-group {
    margin-bottom: 20px;
}

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

.form-input,
.form-field-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
}

.form-input:focus,
.form-field-input:focus {
    outline: none;
    border-color: #ff5f33;
}

.form-input:disabled {
    background: #e9ecef;
    color: #666;
}

.form-textarea,
.form-field-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
    resize: vertical;
    min-height: 100px;
}

.form-textarea:focus,
.form-field-textarea:focus {
    outline: none;
    border-color: #ff5f33;
}

.form-select,
.form-field-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
    cursor: pointer;
}

.form-select:focus,
.form-field-select:focus {
    outline: none;
    border-color: #ff5f33;
}

.form-value {
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.form-value .highlight {
    color: #ff5f33;
    font-weight: 600;
}

.form-value a {
    color: #28a745;
    text-decoration: none;
}

.form-value a:hover {
    text-decoration: underline;
}

.form-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-input-wrapper .form-input {
    flex: 1;
    min-width: 150px;
}

.form-input-wrapper .form-hint {
    font-size: 13px;
    color: #666;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-item {
    flex: 1;
    min-width: 200px;
}

.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.form-tab {
    padding: 6px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
}

.form-tab:hover {
    background: #ff5f33;
    color: #fff;
}

.form-tab.active {
    background: #ff5f33;
    color: #fff;
}

.form-field-item {
    margin-bottom: 20px;
}

.form-field-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-field-group-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.form-field-upload {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.form-field-upload-input {
    flex: 1;
    min-width: 200px;
}

.form-field-upload-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: #ff5f33;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.form-field-upload-btn:hover {
    background: #e54d2a;
}

.input-with-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.input-with-btn .form-input {
    flex: 1;
    min-width: 200px;
}

.captcha-img {
    height: 46px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.captcha-img:hover {
    border-color: #ff5f33;
}

/* ==================== Radio & Checkbox ==================== */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
}

.radio-item:hover {
    border-color: #ff5f33;
    background: #fff;
}

.radio-item input[type="radio"] {
    margin-right: 10px;
    accent-color: #ff5f33;
}

.radio-item label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

/* ==================== Avatar ==================== */
.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-avatar {
    text-align: center;
    padding: 25px 20px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.user-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.user-avatar-center {
    margin-bottom: 20px;
}

.user-avatar-link {
    display: block;
    flex-shrink: 0;
}

.user-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    object-fit: cover;
    transition: border-color 0.3s;
}

.user-avatar-img:hover {
    border-color: #ff5f33;
}

/* ==================== User Info ==================== */
.user-info {
    padding: 20px 20px 15px;
    text-align: center;
}

.user-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.user-name span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.user-name-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.user-name-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.user-level {
    background: #ff5f33;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.user-level-badge {
    background: #ff5f33;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.user-sex {
    font-size: 16px;
}

.user-sex-badge {
    font-size: 18px;
}

.user-badge {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.user-badge.normal {
    background: #e9ecef;
    color: #666;
}

.user-badge.vip {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
}

.vip-badge {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.user-checkin {
    margin-bottom: 10px;
}

/* ==================== User Stats ==================== */
.user-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: #999;
}

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

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

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.stat-value.highlight {
    color: #ff5f33;
}

.stat-unit {
    font-size: 12px;
    color: #999;
}

/* ==================== User Details ==================== */
.user-details {
    padding: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.detail-item.full-width {
    flex-wrap: wrap;
}

.detail-label {
    color: #666;
    min-width: 80px;
}

.detail-value {
    color: #333;
    margin-right: 8px;
}

.detail-value.highlight {
    color: #ff5f33;
    font-weight: 600;
}

.detail-link {
    color: #ff5f33;
    text-decoration: none;
    font-size: 13px;
    margin-left: 8px;
}

.detail-link:hover {
    text-decoration: underline;
}

.detail-url {
    color: #666;
    text-decoration: none;
    word-break: break-all;
    font-size: 13px;
}

.detail-url:hover {
    color: #ff5f33;
}

/* ==================== Experience Bar ==================== */
.user-experience {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.user-experience-bar {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.exp-header,
.exp-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.exp-label span:first-child {
    color: #666;
}

.exp-percent {
    color: #ff5f33;
    font-weight: 600;
}

.exp-progress-container,
.exp-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.exp-progress-bar,
.exp-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff5f33 0%, #ff8c5f 100%);
    border-radius: 4px;
    transition: width 0.3s;
}

.exp-detail,
.exp-hint {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* ==================== Blog Publish ==================== */
.blog-publish {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.blog-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s;
}

.blog-input:focus {
    outline: none;
    border-color: #ff5f33;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ==================== Dynamic Item ==================== */
.dt-item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s;
}

.dt-item:hover {
    background: #f8f9fa;
}

.dt-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

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

.dt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.dt-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.dt-author a {
    color: #ff5f33;
    text-decoration: none;
}

.dt-time {
    font-size: 13px;
    color: #999;
}

.dt-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.dt-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.dt-action:hover {
    background: #ff5f33;
    color: #fff;
    border-color: #ff5f33;
}

.dt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==================== No Data ==================== */
.zanwu,
.no-data {
    text-align: center;
    padding: 50px 20px;
    color: #999;
    font-size: 14px;
}

.no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

/* ==================== Pagination ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    background: #f8f9fa;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #ff5f33;
    color: #fff;
}

.pagination .current {
    background: #ff5f33;
    color: #fff;
}

/* ==================== Login & Register ==================== */
.login-container,
.reg-container {
    margin: 50px auto 0;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.login-box,
.reg-box {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header,
.reg-header {
    display: flex;
    height: 55px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.login-tab,
.reg-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.login-tab.active,
.reg-tab.active {
    color: #ff5f33;
    border-bottom-color: #ff5f33;
    font-weight: 600;
}

.login-tab:hover,
.reg-tab:hover {
    color: #ff5f33;
}

.login-content,
.reg-content {
    padding: 35px 30px;
}

/* ==================== Social Login ==================== */
.social-login {
    padding: 25px 30px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    color: #fff;
    font-weight: 500;
}

.social-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-item.qq { background: #12b7f5; }
.social-item.qq:hover { background: #0ea5e0; }
.social-item.weibo { background: #e6162d; }
.social-item.weibo:hover { background: #c91225; }
.social-item.baidu { background: #2932e1; }
.social-item.baidu:hover { background: #2228c4; }
.social-item.renren { background: #005eac; }
.social-item.renren:hover { background: #004d8f; }
.social-item.kaixin { background: #f6c302; }
.social-item.kaixin:hover { background: #e4b002; }
.social-item.douban { background: #007722; }
.social-item.douban:hover { background: #00631d; }

/* ==================== Share Page ==================== */
.share-content {
    padding: 20px;
    background: #fff;
}

.share-info {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #ff5f33;
    border: 1px solid #e9ecef;
}

.share-info-item {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
    color: #666;
}

.share-info-item:last-child {
    margin-bottom: 0;
}

.share-info-label {
    display: inline-block;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.share-info-label.colorl { color: #ff5f33; }
.share-info-label.colorn { color: #28a745; }
.share-info-label.colord { color: #ffc107; }

.share-info-value {
    color: #666;
}

.share-info-value.highlight {
    color: #dc3545;
    font-weight: 600;
}

.share-form {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* ==================== Share List Page ==================== */
.sharelist-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sharelist-body {
    padding: 20px;
}

.sharelist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.sharelist-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}

.sharelist-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.sharelist-table tr:hover {
    background: #f8f9fa;
}

.sharelist-table .share-ip {
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.sharelist-table .share-cion {
    color: #ff5f33;
    font-weight: 600;
}

.sharelist-table .share-jinyan {
    color: #28a745;
    font-weight: 600;
}

.sharelist-table .share-time {
    color: #999;
    font-size: 13px;
}

/* ==================== Pay Page ==================== */
.pay-content {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==================== Spend Page ==================== */
.spend-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.spend-tabs {
    display: flex;
    gap: 5px;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    flex-wrap: wrap;
}

.spend-tab {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    background: #f8f9fa;
    transition: all 0.3s;
}

.spend-tab:hover {
    background: #e9ecef;
    color: #333;
}

.spend-tab.active {
    background: #ff5f33;
    color: #fff;
}

.spend-body {
    padding: 20px;
}

.spend-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spend-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}

.spend-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.spend-table tr:hover {
    background: #f8f9fa;
}

.spend-table .spend-title {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spend-table .spend-type-coin {
    color: #ff5f33;
    font-weight: 600;
}

.spend-table .spend-type-cny {
    color: #28a745;
    font-weight: 600;
}

.spend-table .spend-amount {
    font-weight: 600;
    color: #dc3545;
}

.spend-table .spend-time {
    color: #999;
    font-size: 13px;
}

/* ==================== Pay List Page ==================== */
.paylist-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.paylist-tabs {
    display: flex;
    gap: 5px;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    flex-wrap: wrap;
}

.paylist-tab {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    background: #f8f9fa;
    transition: all 0.3s;
}

.paylist-tab:hover {
    background: #e9ecef;
    color: #333;
}

.paylist-tab.active {
    background: #ff5f33;
    color: #fff;
}

.paylist-body {
    padding: 20px;
}

.paylist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.paylist-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}

.paylist-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.paylist-table tr:hover {
    background: #f8f9fa;
}

.paylist-table .pay-order {
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.paylist-table .pay-amount {
    font-weight: 600;
    color: #ff5f33;
}

.paylist-table .pay-time {
    color: #999;
    font-size: 13px;
}

.paylist-table .status-completed {
    color: #28a745;
    font-weight: 600;
}

.paylist-table .status-pending {
    color: #ffc107;
    font-weight: 600;
}

.paylist-table .status-shipped {
    color: #fd7e14;
    font-weight: 600;
}

.paylist-table .status-failed {
    color: #dc3545;
    font-weight: 600;
}

/* ==================== Open Page ==================== */
.open-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.open-tab {
    flex: 1;
    padding: 12px 20px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    text-align: center;
}

.open-tab:hover {
    color: #ff5f33;
}

.open-tab.active {
    color: #ff5f33;
    border-bottom-color: #ff5f33;
    font-weight: 600;
}

.open-content {
    padding: 25px 35px;
}

.verify-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.verify-input {
    flex: 1;
}

.verify-btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: #6c757d;
    color: #fff;
    white-space: nowrap;
}

.verify-btn:hover {
    background: #5a6268;
}

/* ==================== Message Page ==================== */
.msg-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.msg-body {
    padding: 20px;
}

.msg-detail {
    padding: 25px 35px;
}

.msg-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.msg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.msg-author {
    font-size: 14px;
    color: #666;
}

.msg-author a {
    color: #ff5f33;
    text-decoration: none;
    font-weight: 600;
}

.msg-author a:hover {
    text-decoration: underline;
}

.msg-time {
    font-size: 13px;
    color: #999;
}

.msg-body {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
    line-height: 1.8;
    color: #666;
    font-size: 14px;
}

.msg-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Message List Styles */
.msg-item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s;
}

.msg-item:hover {
    background: #f8f9fa;
}

.msg-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.msg-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff5f33 0%, #ff7f50 100%);
    color: #fff;
    font-weight: 600;
}

.msg-icon.system {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.msg-content-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.msg-content-text a {
    color: #333;
    text-decoration: none;
}

.msg-content-text a:hover {
    color: #ff5f33;
}



/* ==================== Journal Page ==================== */
.journal-content {
    padding: 20px;
    background: #fff;
}

.journal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.journal-table thead {
    background: #f8f9fa;
}

.journal-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}

.journal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.journal-table tbody tr:hover {
    background: #f8f9fa;
}

.journal-table .text-center {
    text-align: center;
}

/* ==================== Group Page ==================== */
.group-content {
    padding: 25px 20px;
    background: #fff;
}

/* ==================== Guestbook Page ==================== */
.gbook-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.gbook-list {
    padding: 20px;
}

.gbook-item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s;
}

.gbook-item:hover {
    background: #f8f9fa;
}

.gbook-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

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

.gbook-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.gbook-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.gbook-author a {
    color: #ff5f33;
    text-decoration: none;
}

.gbook-time {
    font-size: 13px;
    color: #999;
}

.gbook-content-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gbook-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gbook-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.gbook-action-btn:hover {
    background: #ff5f33;
    color: #fff;
    border-color: #ff5f33;
}

.gbook-reply-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    margin-top: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #ff5f33;
}

.gbook-reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.gbook-reply-info {
    flex: 1;
    min-width: 0;
}

.gbook-reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 5px;
}

.gbook-reply-author {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.gbook-reply-author a {
    color: #ff5f33;
    text-decoration: none;
}

.gbook-reply-time {
    font-size: 12px;
    color: #999;
}

.gbook-reply-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.gbook-reply-box {
    padding: 12px;
    margin-top: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.gbook-reply-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s;
}

.gbook-reply-input:focus {
    outline: none;
    border-color: #ff5f33;
}

.gbook-reply-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* ==================== Change Page ==================== */
.change-content {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==================== Add Page ==================== */
.add-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-content {
    padding: 20px;
}

/* ==================== Edit Page ==================== */
.sp-cont-r {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.edit-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ==================== Avatar Page ==================== */
.avatar-content {
    padding: 35px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: flex-start;
    justify-content: center;
}

.avatar-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-image {
    width: 150px;
    height: 150px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-label {
    color: #666;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: 500;
}

.avatar-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-tips {
    font-size: 13px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

/* ==================== Crop Modal ==================== */
.crop-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

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

.crop-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.crop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.crop-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.crop-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-close:hover {
    color: #ff5f33;
}

.crop-body {
    margin-bottom: 18px;
}

.crop-area {
    width: 280px;
    height: 280px;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.crop-area img {
    display: block;
    max-width: 100%;
}

.crop-area.has-image {
    border-style: solid;
    border-color: #ff5f33;
}

.crop-workspace {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.crop-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.crop-preview {
    width: 150px;
    height: 150px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
}

.crop-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crop-preview-label {
    font-size: 13px;
    color: #666;
    text-align: center;
}

.crop-zoom-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.crop-zoom-btn,
.crop-rotate-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    color: #666;
}

.crop-zoom-btn:hover,
.crop-rotate-btn:hover {
    background: #ff5f33;
    color: #fff;
    border-color: #ff5f33;
}

.crop-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.crop-btn {
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-weight: 500;
}

.crop-btn-primary {
    background: #ff5f33;
    color: #fff;
}

.crop-btn-primary:hover {
    background: #e54d2a;
}

.crop-btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.crop-btn-secondary:hover {
    background: #e9ecef;
}

.crop-input {
    display: none;
}

/* ==================== Sync Page ==================== */
.sync-container {
    padding: 25px 20px;
}

.sync-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.sync-item:hover {
    border-color: #ff5f33;
    background: #fff;
    box-shadow: 0 2px 8px rgba(255, 95, 51, 0.1);
}

.sync-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 18px;
    flex-shrink: 0;
}

.sync-icon.qq { background: #12b7f5; color: #fff; }
.sync-icon.sina { background: #e6162d; color: #fff; }
.sync-icon.baidu { background: #2932e1; color: #fff; }
.sync-icon.renren { background: #005eac; color: #fff; }
.sync-icon.kaixin { background: #f6c302; color: #fff; }
.sync-icon.douban { background: #007722; color: #fff; }

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

.sync-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

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

.sync-action {
    flex-shrink: 0;
}

.sync-btn {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.sync-btn-bind {
    background: #ff5f33;
    color: #fff;
}

.sync-btn-bind:hover {
    background: #e64d26;
}

.sync-btn-unbind {
    background: #dc3545;
    color: #fff;
}

.sync-btn-unbind:hover {
    background: #c82333;
}

/* ==================== User Info Bar ==================== */
.user-info-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.msg-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #ff5f33;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.msg-badge::before {
    content: '🔔';
    font-size: 16px;
}

.msg-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #dc3545;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    border: 2px solid #fff;
}

.user-info-content {
    flex: 1;
    min-width: 0;
}

.user-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.user-name:hover {
    color: #ff5f33;
}

.user-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-outline {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    padding: 5px 12px;
    font-size: 13px;
}

.btn-outline:hover {
    background: #ff5f33;
    color: #fff;
    border-color: #ff5f33;
}

.btn-logout:hover {
    background: #dc3545;
    border-color: #dc3545;
}

/* ==================== Fav Page Styles ==================== */
.fav-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.fav-body {
    padding: 20px;
}

.fav-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.fav-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
    background: #f8f9fa;
}

.fav-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.fav-table tr:hover td {
    background: #f8f9fa;
}

.fav-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.fav-name a:hover {
    color: #ff5f33;
}

.fav-time {
    color: #999;
    font-size: 13px;
}

/* ==================== Down Page Styles ==================== */
.down-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.down-body {
    padding: 20px;
}

.down-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.down-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
    background: #f8f9fa;
}

.down-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.down-table tr:hover td {
    background: #f8f9fa;
}

.down-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.down-name a:hover {
    color: #ff5f33;
}

.down-time {
    color: #999;
    font-size: 13px;
}

/* ==================== Card List Page Styles ==================== */
.cardlist-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.cardlist-body {
    padding: 20px;
}

.cardlist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cardlist-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
    background: #f8f9fa;
}

.cardlist-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.cardlist-table tr:hover {
    background: #f8f9fa;
}

.cardlist-table .card-number {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: #333;
}

.cardlist-table .card-value {
    color: #ff5f33;
    font-weight: 600;
}

.cardlist-table .card-time {
    color: #999;
    font-size: 13px;
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 768px) {
    .user-container {
        flex-direction: column;
    }
    
    .user-left,
    .user-sidebar {
        width: 100%;
    }
    
    .login-container,
    .reg-container {
        margin: 30px auto 0;
    }
    
    .login-box,
    .reg-box {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        padding: 12px 15px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .form-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-input-wrapper .form-input {
        flex: none;
        width: 100%;
    }
}
