* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    font-size: 14px;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

.fc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 100px;
}

@media (min-width: 576px) {
    .fc-container {
        padding: 20px 20px 100px;
    }
}

.fc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 70px;
}

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

@media (min-width: 576px) {
    .fc-header-content {
        padding: 0 20px;
    }
}

.fc-logo {
    display: flex;
    align-items: center;
}

.fc-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fc-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.fc-logo-text {
    margin-left: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .fc-logo-text {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-left: 8px;
        letter-spacing: 0.3px;
    }
}

.fc-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .fc-nav {
        display: none;
    }
}

.fc-nav-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fc-nav-item i {
    margin-right: 6px;
    font-size: 16px;
}

.fc-nav-item:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

.fc-nav-item.fc-nav-active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.12);
}

.fc-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 32px;
    min-width: 70px;
}

.fc-btn i {
    margin-right: 4px;
    font-size: 14px;
}

.fc-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.fc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

.fc-btn-outline {
    background: transparent;
    color: #667eea;
    border: 1.5px solid #667eea;
}

.fc-btn-outline:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
}

@media (max-width: 576px) {
    .fc-user .fc-btn {
        display: none;
    }
    
    .fc-btn {
        display: inline-flex;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 10px;
        height: 44px;
    }
    
    .fc-btn-lg {
        padding: 14px 24px;
        font-size: 16px;
        height: 48px;
    }
    
    .fc-btn-sm {
        padding: 8px 14px;
        font-size: 13px;
        height: 36px;
    }
    
    .fc-btn-fluid {
        width: 100%;
        justify-content: center;
    }
}

.fc-user-menu {
    position: relative;
}

@media (max-width: 576px) {
    .fc-user-menu {
        display: none;
    }
}

.fc-user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fc-user-trigger:hover {
    background: rgba(102, 126, 234, 0.08);
}

.fc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.fc-nickname {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.fc-badge-vip {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.fc-user-trigger .layui-icon {
    color: #999;
    font-size: 12px;
}

.fc-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.fc-user-menu:hover .fc-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fc-user-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.fc-user-dropdown a:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
}

.fc-user-dropdown a i {
    margin-right: 10px;
    font-size: 16px;
}

.fc-user-dropdown a.fc-logout {
    color: #ff6b6b;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
    padding-top: 14px;
}

.fc-user-dropdown a.fc-logout:hover {
    background: rgba(255, 107, 107, 0.08);
    color: #ff6b6b;
}

.fc-mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.fc-mobile-menu-btn:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
}

.fc-mobile-menu-btn .layui-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .fc-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.fc-mobile-menu {
    position: fixed;
    top: 80px;
    right: 15px;
    width: 200px;
    max-height: 640px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10001;
    transform: translateX(120%) translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.fc-mobile-menu-open {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

.fc-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fc-mobile-menu-header span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.fc-mobile-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: white;
    transition: all 0.3s ease;
}

.fc-mobile-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fc-mobile-close .layui-icon {
    font-size: 16px;
}

.fc-mobile-menu-content {
    padding: 8px;
}

.fc-mobile-menu-content a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.fc-mobile-menu-content a:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
}

.fc-mobile-menu-content a i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.fc-mobile-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fc-mobile-shade-open {
    opacity: 1;
    visibility: visible;
}

.fc-cheer-section {
    position: relative;
    text-align: center;
    padding: 20px 15px;
    min-height: 80px;
    overflow: hidden;
    margin: 0 -15px;
}

@media (min-width: 576px) {
    .fc-cheer-section {
        margin: 0 -20px;
    }
}

.fc-background-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.fc-bg-bubble {
    position: absolute;
    bottom: -25px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.6), 
        rgba(150, 200, 255, 0.4),
        rgba(100, 150, 255, 0.2));
    border-radius: 50%;
    border: 1px solid rgba(200, 220, 255, 0.5);
    box-shadow: 
        inset -1px -1px 2px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: fcBgBubbleRise linear infinite;
}

.fc-bg-bubble-1 {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-duration: 8s;
}

.fc-bg-bubble-2 {
    width: 12px;
    height: 12px;
    left: 30%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.fc-bg-bubble-3 {
    width: 6px;
    height: 6px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 4s;
}

.fc-bg-bubble-4 {
    width: 10px;
    height: 10px;
    left: 70%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.fc-bg-bubble-5 {
    width: 5px;
    height: 5px;
    left: 85%;
    animation-duration: 6s;
    animation-delay: 3s;
}

.fc-bg-bubble-6 {
    width: 7px;
    height: 7px;
    left: 40%;
    animation-duration: 11s;
    animation-delay: 5s;
}

@keyframes fcBgBubbleRise {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
        transform: translateX(15px) scale(1);
    }
    80% {
        opacity: 0.2;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-10px) scale(0.8);
    }
}

.fc-fish-container {
    position: relative;
    width: 100%;
    height: 60px;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    z-index: 2;
}

.fc-fish {
    position: absolute;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fc-fish:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.fc-fish .fc-fish-tail {
    transform-origin: center right;
    animation: fcTailWag 0.3s ease-in-out infinite;
}

.fc-fish-b .fc-fish-tail {
    transform-origin: center left;
}

.fc-fish-a {
    animation: fcSwimA 8s ease-in-out infinite;
    animation-fill-mode: both;
}

.fc-fish-b {
    animation: fcSwimB 10s ease-in-out infinite;
    animation-delay: 2s;
    animation-fill-mode: both;
    opacity: 0;
}

.fc-fish-b.animate-now {
    opacity: 1;
    animation-delay: 0s;
}

@keyframes fcSwimA {
    0% { left: 5%; top: 50%; transform: translateY(-50%); }
    25% { left: 25%; top: 30%; transform: translateY(-50%); }
    50% { left: 50%; top: 55%; transform: translateY(-50%) scaleX(-1); }
    75% { left: 70%; top: 35%; transform: translateY(-50%) scaleX(-1); }
    100% { left: 5%; top: 50%; transform: translateY(-50%); }
}

@keyframes fcSwimB {
    0% { right: 5%; top: 55%; transform: translateY(-50%); }
    25% { right: 30%; top: 40%; transform: translateY(-50%); }
    50% { right: 55%; top: 30%; transform: translateY(-50%) scaleX(-1); }
    75% { right: 25%; top: 55%; transform: translateY(-50%) scaleX(-1); }
    100% { right: 5%; top: 55%; transform: translateY(-50%); }
}

@keyframes fcTailWag {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.fc-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.fc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.fc-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.fc-card-title i {
    font-size: 20px;
    color: #667eea;
}

.fc-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fc-link:hover {
    color: #764ba2;
}

.fc-link i {
    font-size: 16px;
}

.fc-card-body {
    padding: 20px;
}

.fc-notice-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.fc-notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.fc-notice-header i {
    font-size: 18px;
    color: white;
}

.fc-notice-header span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.fc-notice-content {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
}

.fc-notice-content a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.fc-category-tabs {
    margin-bottom: 24px;
}

.fc-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fc-category-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f5f7fa;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fc-category-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.fc-category-item.fc-category-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fc-category-item i {
    font-size: 16px;
}

.fc-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 576px) {
    .fc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .fc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .fc-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fc-product-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.fc-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fc-product-link {
    display: block;
    text-decoration: none;
}

.fc-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.fc-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-product-card:hover .fc-product-image img {
    transform: scale(1.05);
}

.fc-product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-product-placeholder .layui-icon {
    font-size: 48px;
    color: #ccc;
}

.fc-product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fc-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}

.fc-badge-success {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: white;
}

.fc-badge-dark {
    background: linear-gradient(135deg, #434343 0%, #666 100%);
    color: white;
}

.fc-badge-warning {
    background: linear-gradient(135deg, #fa8c16 0%, #ffc53d 100%);
    color: white;
}

.fc-product-info {
    padding: 14px;
}

.fc-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fc-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.fc-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff4d4f;
}

.fc-product-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.fc-product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.fc-product-sold {
    color: #999;
}

.fc-product-stock {
    color: #666;
}

.fc-product-unlimited {
    color: #52c41a;
}

.fc-product-outofstock {
    color: #ff4d4f;
}

.fc-product-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.fc-product-disabled-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: #ff4d4f;
}

.fc-products-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.fc-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: fcSpinner 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes fcSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fc-products-loading p {
    font-size: 14px;
    color: #999;
}

.fc-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.fc-empty .layui-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 16px;
}

.fc-empty p {
    font-size: 14px;
    color: #999;
}

.fc-info-card {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.fc-info-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 576px) {
    .fc-info-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fc-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-info-icon .layui-icon {
    font-size: 22px;
    color: white;
}

.fc-info-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.fc-info-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.fc-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fc-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.fc-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.fc-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.fc-footer-links a:hover {
    color: #667eea;
}

.fc-footer-divider {
    color: #ddd;
    font-size: 12px;
}

.fc-footer-copyright {
    font-size: 12px;
    color: #999;
}

.fc-footer-copyright a {
    color: #667eea;
    text-decoration: none;
}

.fc-footer-copyright a:hover {
    text-decoration: underline;
}

.fc-detail-card {
    overflow: visible;
}

.fc-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .fc-detail-grid {
        grid-template-columns: 40% 1fr;
        align-items: start;
    }
}

.fc-detail-image-col {
    display: flex;
    justify-content: center;
}

.fc-detail-image-box {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fc-detail-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.fc-detail-header {
    margin-bottom: 16px;
}

.fc-detail-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-top: 8px;
}

.fc-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-radius: 12px;
}

.fc-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #ff4d4f;
}

.fc-detail-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.fc-detail-discount {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: #fafafa;
    border-radius: 8px;
}

.fc-discount-label {
    font-size: 14px;
    color: #666;
}

.fc-discount-link {
    color: #667eea;
    cursor: pointer;
    font-size: 14px;
    margin-left: 8px;
    text-decoration: underline;
}

.fc-discount-link:hover {
    color: #764ba2;
}

.fc-detail-form {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
}

.fc-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.fc-form-row:last-child {
    margin-bottom: 0;
}

.fc-form-label {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

@media (min-width: 576px) {
    .fc-form-label {
        width: 100px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

.fc-form-input {
    flex: 1;
    min-width: 0;
}

.fc-form-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fc-form-hint {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}

.fc-form-hint.full {
    width: 100%;
    margin-top: 4px;
}

.fc-quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d9d9d9;
    background: white;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.fc-quantity-input {
    width: 80px;
    height: 36px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
}

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

.fc-btn-lg {
    padding: 12px 24px;
    font-size: 15px;
}

.fc-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.fc-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fc-btn-fluid {
    width: 100%;
}

.fc-detail-tabs {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.fc-detail-tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.fc-detail-tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.fc-detail-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.fc-detail-tab-btn.fc-tab-active {
    color: #667eea;
}

.fc-detail-tab-btn.fc-tab-active::after {
    width: 100%;
}

.fc-detail-tab-panel {
    display: none;
    padding: 16px 0;
    line-height: 1.8;
}

.fc-detail-tab-panel.fc-panel-show {
    display: block;
}

.fc-discount-table-wrap {
    overflow-x: auto;
}

.fc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.fc-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fc-table th {
    padding: 12px 16px;
    text-align: left;
    color: white;
    font-weight: 500;
}

.fc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.fc-table tbody tr:hover {
    background: #fafafa;
}

.fc-table-link {
    color: #667eea;
    text-decoration: none;
}

.fc-table-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.fc-order-summary {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
}

.fc-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fc-order-row:last-child {
    border-bottom: none;
}

.fc-order-row.fc-order-total {
    padding-top: 16px;
    margin-top: 10px;
    border-top: 2px solid #e8e8e8;
    border-bottom: none;
}

.fc-order-label {
    font-size: 14px;
    color: #666;
}

.fc-order-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.fc-total-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff4d4f;
}

.fc-pay-success {
    text-align: center;
    padding: 40px 20px;
}

.fc-pay-success .layui-icon {
    font-size: 64px;
    color: #52c41a;
    margin-bottom: 16px;
}

.fc-pay-success h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.fc-pay-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fc-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.fc-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.fc-payment-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.fc-payment-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.fc-payment-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.fc-quote {
    padding: 16px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff3cd 100%);
    border-left: 4px solid #faad14;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
}

.fc-quote .layui-icon {
    color: #faad14;
    margin-right: 8px;
}

.fc-query-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.fc-query-nav-item {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fc-query-nav-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.fc-query-nav-item.fc-nav-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fc-query-form {
    max-width: 500px;
}

.fc-yzm {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.fc-yzm img {
    height: 36px;
    border-radius: 6px;
}

.fc-error-box {
    text-align: center;
    padding: 40px 20px;
}

.fc-error-box .layui-icon {
    font-size: 64px;
    color: #ff4d4f;
    margin-bottom: 16px;
}

.fc-error-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.fc-mobile-order-info {
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

.fc-order-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.fc-order-detail-list {
    padding: 0 16px;
}

.fc-order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fc-order-detail-item:last-child {
    border-bottom: none;
}

.fc-order-detail-label {
    font-size: 14px;
    color: #666;
}

.fc-order-detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.fc-collapse {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.fc-collapse-item {
    border-bottom: 1px solid #f0f0f0;
}

.fc-collapse-item:last-child {
    border-bottom: none;
}

.fc-collapse-title {
    padding: 14px 16px;
    background: #fafafa;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.fc-collapse-title::after {
    content: '\e602';
    font-family: layui-icon!important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: transform 0.3s ease;
}

.fc-collapse-item.layui-show .fc-collapse-title::after {
    transform: translateY(-50%) rotate(180deg);
}

.fc-collapse-content {
    display: none;
    padding: 16px;
    background: white;
}

.fc-collapse-item.layui-show .fc-collapse-content {
    display: block;
}

.fc-about-content {
    text-align: center;
    padding: 40px 20px;
}

.fc-about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.fc-about-icon .layui-icon {
    font-size: 40px;
    color: white;
}

.fc-about-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.fc-about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.fc-about-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.fc-about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fc-about-feature .layui-icon {
    font-size: 32px;
    color: #667eea;
}

.fc-about-feature span {
    font-size: 14px;
    color: #666;
}

.fc-group-table-wrap {
    overflow-x: auto;
}

.layui-input-block,
.layui-input-inline {
    margin-left: 0;
}

.layui-form-pane .layui-form-label {
    width: auto;
    padding: 9px 15px;
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    .fc-header {
        height: 60px;
    }
    
    .layui-input,
    .layui-textarea {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        border-color: #e8e8e8;
        font-size: 15px;
        padding: 0 14px;
        background: white;
        color: #333;
        box-sizing: border-box;
    }
    
    .layui-input::placeholder,
    .layui-textarea::placeholder {
        color: #999;
    }
    
    .layui-input:focus,
    .layui-textarea:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .fc-form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .fc-form-label {
        width: 100% !important;
        margin-bottom: 8px !important;
        text-align: left;
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }
    
    .fc-form-input,
    .fc-form-input-group {
        width: 100%;
    }
    
    .fc-form-input-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .fc-form-input-group .layui-input {
        flex: 1;
        min-width: 0;
    }
    
    .fc-quantity-input {
        height: 44px !important;
        font-size: 15px;
    }
    
    .fc-quantity-btn {
        height: 44px !important;
        width: 44px !important;
        font-size: 20px;
    }
    
    .fc-logo img {
        height: 32px;
    }
    
    .fc-card {
        border-radius: 12px;
    }
    
    .fc-card-header {
        padding: 12px 16px;
    }
    
    .fc-card-body {
        padding: 16px;
    }
    
    .fc-notice-card {
        border-radius: 12px;
        padding: 12px 16px;
    }
    
    .fc-category-item {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .fc-product-name {
        font-size: 13px;
    }
    
    .fc-product-price {
        font-size: 18px;
    }
    
    .fc-info-item {
        padding: 14px;
    }
    
    .fc-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .fc-info-icon .layui-icon {
        font-size: 20px;
    }
    
    .fc-detail-title {
        font-size: 18px;
    }
    
    .fc-detail-price {
        font-size: 24px;
    }
    
    .fc-detail-form {
        padding: 16px;
    }
    
    .fc-form-actions {
        flex-direction: column;
    }
    
    .fc-form-actions .fc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .fc-table th,
    .fc-table td {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .fc-payment-item {
        padding: 16px;
        min-width: 100px;
    }
    
    .fc-payment-item img {
        width: 40px;
        height: 40px;
    }
    
    .fc-query-nav-item {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.fc-member-page {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 15px 100px;
}

@media (min-width: 576px) {
    .fc-member-page {
        padding: 0 20px 100px;
    }
}

.fc-member-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.fc-member-header {
    padding: 30px 24px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fc-member-header h2 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fc-member-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.fc-member-body {
    padding: 24px;
}

.fc-member-form {
    max-width: 100%;
}

.fc-member-form .layui-form-item {
    margin-bottom: 20px;
}

.fc-member-form .layui-form-label {
    width: 80px;
    padding: 9px 15px;
    font-weight: 500;
    color: #333;
}

.fc-member-form .layui-input-inline {
    margin-left: 0;
    width: calc(100% - 80px);
}

.fc-member-form .layui-input,
.fc-member-form .layui-textarea {
    border-radius: 8px;
    border-color: #e8e8e8;
    transition: all 0.3s ease;
}

.fc-member-form .layui-input:focus,
.fc-member-form .layui-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.fc-member-form .layui-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.fc-member-form .layui-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fc-member-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.fc-member-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.fc-member-links a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.fc-member-tab-nav {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
}

.fc-member-tab-item {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.fc-member-tab-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.fc-member-tab-item.fc-tab-active {
    color: #667eea;
}

.fc-member-tab-item.fc-tab-active::after {
    width: 100%;
}

.fc-member-yzm {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.fc-member-yzm .layui-input-inline {
    flex: 1;
    min-width: 0;
}

.fc-member-yzm img {
    height: 38px;
    width: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.fc-member-register-info {
    background: linear-gradient(135deg, #f6ffed 0%, #e8f5e0 100%);
    border-left: 4px solid #52c41a;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #52c41a;
    line-height: 1.6;
}

.fly-marginTop {
    margin-top: 0;
}

.fly-panel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin: 20px;
}

.layui-tab-brief > .layui-tab-title .layui-this {
    color: #667eea;
}

.layui-tab-brief > .layui-tab-title .layui-this:after {
    border-bottom-color: #667eea;
}

.layui-tab-title {
    border-bottom-color: #f0f0f0;
}

.layui-tab-title li {
    font-weight: 500;
}

.layui-form-label {
    color: #333;
}

.layui-input,
.layui-textarea {
    border-radius: 8px;
    border-color: #e8e8e8;
}

.layui-input:focus,
.layui-textarea:focus {
    border-color: #667eea !important;
}

.layui-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    border: none;
}

.layui-btn:hover {
    opacity: 0.9;
}

.zlkb_yzm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    vertical-align: middle;
}

.zlkb_yzm img {
    height: 38px;
    width: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    background: white;
}

@media (min-width: 769px) {
    .fly-panel-user {
        padding: 30px 40px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .fly-panel-user .layui-form-item {
        margin-bottom: 20px;
    }
    
    .fly-panel-user .layui-form-label {
        width: 100px;
        padding: 9px 15px;
        font-weight: 500;
        color: #333;
    }
    
    .fly-panel-user .layui-input-inline {
        width: calc(100% - 120px);
        margin-left: 0;
    }
    
    .fly-panel-user .layui-input {
        width: 100%;
        height: 40px;
        border-radius: 8px;
        border-color: #e8e8e8;
        font-size: 14px;
        padding: 0 14px;
    }
    
    .fly-panel-user .layui-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .fly-panel-user .layui-form-item:last-child {
        text-align: center;
        padding-left: 0;
        margin-left: -80px;
        padding-top: 10px;
    }
    
    .fly-panel-user .layui-form-item:last-child .layui-btn {
        width: 100%;
        max-width: 200px;
        height: 42px;
        line-height: 42px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
    }
    
    .fly-panel-user .layui-form-item:last-child span {
        display: block;
        padding-left: 0;
        margin-top: 12px;
        font-size: 14px;
    }
    
    .fly-panel-user .layui-form-item:last-child span a {
        color: #667eea;
        text-decoration: none;
    }
    
    .fly-panel-user .zlkb_yzm {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-left: -20px;
        vertical-align: middle;
    }
    
    .fly-panel-user .zlkb_yzm .layui-input-inline {
        width: calc(100% - 100px);
    }
    
    .fly-panel-user .zlkb_yzm img {
        width: 80px;
        height: 38px;
        border-radius: 6px;
        flex-shrink: 0;
    }
}

.layui-elem-quote {
    background: linear-gradient(135deg, #fffbe6 0%, #fff3cd 100%);
    border-left: 4px solid #faad14;
    border-radius: 8px;
    padding: 16px;
}

.layui-elem-quote p {
    color: #666;
}

@media (max-width: 768px) {
    .layui-container {
        padding: 0 15px;
    }
    
    .fly-panel {
        margin: 15px 0;
        border-radius: 16px;
        padding: 20px;
    }
    
    .fly-panel-user {
        padding: 24px;
    }
    
    .fly-panel-user .layui-tab-title {
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .fly-panel-user .layui-tab-title li {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .fly-panel-user .layui-tab-content {
        padding: 0;
    }
    
    .layui-form-pane .layui-form-label {
        width: 100%;
        margin-bottom: 8px;
        display: block;
        text-align: left;
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }
    
    .layui-form-pane .layui-input-inline {
        width: 100%;
        margin-left: 0;
    }
    
    .layui-form-pane .layui-input {
        width: 100%;
        height: 44px;
        border-radius: 10px;
        border-color: #e8e8e8;
        font-size: 15px;
        padding: 0 14px;
    }
    
    .layui-form-pane .layui-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .layui-form-item {
        margin-bottom: 20px;
    }
    
    .fly-panel-user .layui-form-item:last-child {
        text-align: center;
        margin-top: 24px;
    }
    
    .fly-panel-user .layui-form-item:last-child .layui-btn {
        width: 100%;
        height: 44px;
        line-height: 44px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 500;
    }
    
    .fly-panel-user .layui-form-item:last-child span {
        display: block;
        padding-left: 0;
        margin-top: 12px;
        font-size: 14px;
    }
    
    .fly-panel-user .layui-form-item:last-child span a {
        color: #667eea;
        text-decoration: none;
    }
    
    .fly-panel-user .layui-form-item:last-child span a:hover {
        text-decoration: underline;
    }
    
    .fly-panel-user .zlkb_yzm {
        display: flex;
        gap: 10px;
        width: 100%;
    }
    
    .fly-panel-user .zlkb_yzm .layui-input-inline {
        flex: 1;
    }
    
    .fly-panel-user .zlkb_yzm img {
        width: 80px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid #e8e8e8;
        cursor: pointer;
        flex-shrink: 0;
    }
}

.fc-member-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

@media (min-width: 576px) {
    .fc-member-center {
        padding: 20px 20px;
    }
}

.fc-member-nav {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fc-member-nav ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}

.fc-member-nav li {
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.fc-member-nav li:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.fc-member-nav li.layui-this {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fc-member-nav li a {
    color: inherit;
    text-decoration: none;
}

.fc-member-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.fc-member-table .layui-table {
    margin: 0;
}

.fc-member-table .layui-table thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fc-member-table .layui-table th {
    color: white;
    font-weight: 500;
    border: none;
}

.fc-member-table .layui-table td {
    border-color: #f0f0f0;
}

.fc-member-table .layui-table tbody tr:hover {
    background: #fafafa;
}

.fc-member-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fc-member-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fc-member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.fc-member-user-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.fc-member-user-info p {
    font-size: 14px;
    color: #666;
}

.fc-member-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

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

.fc-member-stat-item {
    padding: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.fc-member-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.fc-member-stat-label {
    font-size: 13px;
    color: #666;
}

@media (max-width: 576px) {
    .fc-member-nav ul {
        flex-direction: column;
    }
    
    .fc-member-nav li {
        text-align: center;
    }
    
    .fc-member-info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .fc-member-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
