/* 通用样式（PC+移动） */
* {
    box-sizing: border-box;
}

/* 密码输入框容器和显示/隐藏按钮 */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 45px !important;
    width: 100%;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 18px;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle-btn:hover {
    color: #FFC107;
}

.password-toggle-btn:focus {
    outline: none;
    color: #FFC107;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #F5F5F5;
    overflow-x: hidden;
}

.container {
    width: 98%;
    margin: 0 auto;
    padding: 20px;
    background: #F5F5F5;
    min-height: 100vh;
}

/* 头部导航栏 - 浅黄色+浅灰色主题 */
header {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%) 1;
    padding: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 98%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

header h1 {
    color: #616161;
    margin: 0;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    padding: 12px 20px;
    background: transparent;
    color: #616161;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    transition: width 0.3s ease;
}

nav a:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border-color: #FFD54F;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.4);
}

nav a:hover::before {
    width: 100%;
}

nav a.active {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border-color: #FFD54F;
    font-weight: 700;
}

nav a.active::before {
    width: 100%;
}

/* VIP徽章样式 */
.vip-badge {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    font-weight: 700;
    padding: 12px 20px;
    border: 2px solid #FFD54F;
}

.vip-badge:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFEB3B 50%, #FFD54F 100%);
    color: #424242;
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.5);
}

.vip-badge.active {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border-color: #FFD54F;
}

/* 首页导航条透明覆盖样式 - 满屏显示 */
.banner-wrapper {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.banner-wrapper .banner-container {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    border: none;
}

/* 桌面端：浮动导航条 - 独立容器，背景动态切换 */
@media (min-width: 769px) {
    .banner-wrapper {
        position: relative;
        margin-top: 0;
    }

    .header-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1002;
        padding: 0;
        margin: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1) !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: none !important;
    }

    .header-overlay.header-hidden {
        transform: translateY(-100%);
    }

    .header-overlay.header-over-banner {
        background: rgba(0, 0, 0, 0.1) !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-overlay.header-transparent {
        background: rgba(0, 0, 0, 0.1) !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-overlay.header-fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1002 !important;
        background: rgba(0, 0, 0, 0.1) !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-overlay.header-fixed .header-container {
        background: rgba(0, 0, 0, 0) !important;
        background-color: rgba(0, 0, 0, 0) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .header-overlay .header-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
        background: rgba(0, 0, 0, 0) !important;
        background-color: rgba(0, 0, 0, 0) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0;
        box-shadow: none !important;
        border: none !important;
    }

    .header-overlay h1 {
        color: #FFFFFF !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
        margin: 0;
        font-weight: 700;
        font-size: 24px;
        letter-spacing: 0.5px;
        text-transform: none;
        transition: all 0.3s ease;
    }

    .header-overlay h1:hover {
        color: #FFFFFF !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
    }

    .header-overlay nav {
        display: flex;
        gap: 0;
        align-items: center;
        flex-wrap: wrap;
    }

    .header-overlay nav a {
        color: #FFFFFF !important;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        background: transparent !important;
        border: none !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
        border-radius: 0;
        text-transform: none;
        letter-spacing: 0;
    }

    .header-overlay nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #FFFFFF;
        transition: all 0.3s ease;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .header-overlay nav a:hover {
        background: transparent !important;
        border: none !important;
        color: #FFFFFF !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.3);
        box-shadow: none;
        transform: translateY(0);
    }

    .header-overlay nav a:hover::after {
        width: 80%;
        background: #FFFFFF;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    .header-overlay nav a.active {
        background: transparent !important;
        border: none !important;
        color: #FFFFFF !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.4);
        font-weight: 600;
    }

    .header-overlay nav a.active::after {
        width: 80%;
        background: #FFFFFF;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }
    
    /* 桌面端BANNER高度调小20% */
    .banner-wrapper .banner-container .banner-slider {
        height: 480px !important;
    }
}
}

.header-overlay nav a::before {
    display: none;
}

main {
    padding: 20px 0;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

/* 表单样式 */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* 按钮样式 - 浅黄色+浅灰色主题 */
button,
.btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border: 2px solid #FFD54F;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 213, 79, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

button:hover,
.btn:hover {
    background: #FFF9C4;
    color: #424242;
    border-color: #FFF9C4;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 249, 196, 0.4);
}

.btn-primary {
    background: #FFD54F;
    color: #424242;
    border-color: #FFD54F;
}

.btn-primary:hover {
    background: #FFF9C4;
    color: #424242;
    border-color: #FFF9C4;
}

.btn-secondary {
    background: #FFD54F;
    color: #424242;
    border-color: #FFD54F;
}

.btn-secondary:hover {
    background: #FFF9C4;
    color: #424242;
    border-color: #FFF9C4;
}

/* 表格样式 */
table {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #ddd;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background: #F5F5F5;
    font-weight: bold;
    color: #333;
}

table tr:hover {
    background: #F5F5F5;
}

/* 卡片样式 */
.stat-card,
.summary-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: #333;
}

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

.stat-number,
.points-number {
    font-size: 32px;
    font-weight: bold;
    color: #FFC107;
    margin-top: 10px;
}

/* 分页样式 */
.pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 16px;
    display: inline-block;
}

.pagination .current {
    background: #FFD54F;
    color: #424242;
    border-color: #FFD54F;
    font-weight: 700;
}

.pagination a:hover {
    background: #FFD54F;
    color: #424242;
    border-color: #FFD54F;
    text-decoration: none;
    font-weight: 700;
}

/* 提示信息 */
.alert {
    padding: 12px 15px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 作品网格 */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.design-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.design-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.design-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.design-info {
    padding: 15px;
}

.design-info h3 {
    margin-bottom: 10px;
}

.design-info h3 a {
    color: #333;
}

.design-info h3 a:hover {
    color: #FFC107;
}

.designer,
.stats {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

/* 响应式导航栏 */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        min-height: auto;
    }
    
    header h1 {
        font-size: 24px;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    nav a {
        padding: 10px 15px;
        font-size: 16px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    nav {
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
    }
    
    nav a {
        padding: 14px 12px;
        font-size: 18px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 14px;
    }

    table th,
    table td {
        padding: 8px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .how-it-works {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero区域 - 引导下单 */
/* 新的专业设计服务区域样式 */
.hero-section-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 70px 50px;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFD54F 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content-new {
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #424242;
    font-size: 14px;
    font-weight: 700;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title-new {
    font-size: 48px;
    font-weight: 800;
    color: #616161;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle-new {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 90%;
}

.hero-features-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-feature-card:hover {
    border-color: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 213, 79, 0.3);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid #FFD54F;
}

.feature-icon {
    font-size: 28px;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.hero-cta-new {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #FFD54F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 249, 196, 0.4);
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    color: #424242;
    border-color: #FFF9C4;
}

.btn-hero-primary-new svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary-new:hover svg {
    transform: translateX(5px);
}

/* 独特的提交需求按钮样式 */
.btn-submit-requirement {
    position: relative;
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD54F 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.5),
        0 0 0 0 rgba(255, 107, 53, 0.7),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    text-transform: none;
    letter-spacing: 1px;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.btn-submit-requirement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-submit-requirement:hover::before {
    left: 100%;
}

.btn-submit-requirement .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-submit-requirement:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-submit-requirement .btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.btn-submit-requirement .btn-icon {
    font-size: 24px;
    animation: rocketFloat 2s ease-in-out infinite;
    display: inline-block;
}

.btn-submit-requirement .btn-text {
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-submit-requirement .btn-arrow {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.btn-submit-requirement:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 0 8px rgba(255, 107, 53, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

.btn-submit-requirement:hover .btn-arrow {
    transform: translateX(8px) rotate(0deg);
}

.btn-submit-requirement:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.5),
        0 0 0 4px rgba(255, 107, 53, 0.3);
}

/* 动画定义 */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 8px 30px rgba(255, 107, 53, 0.5),
            0 0 0 0 rgba(255, 107, 53, 0.7),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 40px rgba(255, 107, 53, 0.7),
            0 0 0 10px rgba(255, 107, 53, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pulseGlowTech {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(91, 141, 239, 0.4),
            0 0 60px rgba(255, 107, 53, 0.3),
            0 8px 30px rgba(0, 0, 0, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.9),
            0 0 60px rgba(91, 141, 239, 0.7),
            0 0 90px rgba(255, 107, 53, 0.5),
            0 8px 30px rgba(0, 0, 0, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.5);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
        filter: blur(8px);
    }
    50% {
        opacity: 1;
        filter: blur(12px);
    }
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

@keyframes explode {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.3) rotate(-10deg);
        filter: brightness(1.5);
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        filter: brightness(1.3);
    }
    75% {
        transform: scale(1.2) rotate(-5deg);
        filter: brightness(1.4);
    }
}

.btn-hero-secondary-new {
    padding: 18px 35px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border: 2px solid #FFD54F;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-secondary-new:hover {
    background: #FFF9C4;
    color: #424242;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 249, 196, 0.4);
}

.hero-visual-new {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: 16px;
    border: 3px solid #FFD54F;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-visual-new:hover .hero-visual-bg {
    transform: rotate(0deg);
}

.hero-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.visual-icon {
    font-size: 120px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.visual-text {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* 响应式设计 */
@media (max-width: 968px) {
    .hero-section-new {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .hero-title-new {
        font-size: 36px;
    }
    
    .hero-features-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-visual-new {
        height: 300px;
    }
    
    .visual-icon {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 30px 20px;
    }
    
    .hero-title-new {
        font-size: 28px;
    }
    
    .hero-subtitle-new {
        font-size: 16px;
    }
    
    .btn-submit-requirement {
        padding: 18px 35px;
        font-size: 18px;
        border-radius: 45px;
    }

    .btn-submit-requirement .btn-content {
        gap: 10px;
    }

    .btn-submit-requirement .btn-icon {
        font-size: 20px;
    }

    .btn-submit-requirement .btn-arrow {
        width: 20px;
        height: 20px;
    }
    
    .hero-cta-new {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary-new,
    .btn-hero-secondary-new {
        width: 100%;
        justify-content: center;
    }

    .btn-submit-requirement {
        width: 100%;
        padding: 20px 30px;
        font-size: 18px;
        border-radius: 50px;
        animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    }

    .btn-submit-requirement .btn-content {
        gap: 10px;
        justify-content: center;
    }

    .btn-submit-requirement .btn-icon {
        font-size: 22px;
    }

    .btn-submit-requirement .btn-arrow {
        width: 22px;
        height: 22px;
    }

    .btn-submit-requirement:hover {
        transform: translateY(-3px) scale(1.03);
    }
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFE0B2 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(255,193,7,0.2);
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #856404;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #856404;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    background: #FFD54F;
    color: #333;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #424242;
    font-size: 18px;
    font-weight: bold;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255,140,0,0.4);
    transition: all 0.3s;
    border: 3px solid #fff;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 249, 196, 0.5);
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    color: #424242;
}

.btn-hero-primary .btn-icon {
    font-size: 24px;
}

.btn-hero-primary .btn-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    padding: 18px 30px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #424242;
    border: 2px solid #FFD54F;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #FFF9C4;
    color: #424242;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255,140,0,0.3);
}

.hero-image-icon {
    font-size: 120px;
    margin-bottom: 20px;
}

.hero-image-placeholder p {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* 用户通道区域 */
.channels-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 100%);
}

.channels-header {
    text-align: center;
    margin-bottom: 60px;
}

.channels-title {
    font-size: 42px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.channels-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 100%);
}

.channels-subtitle {
    font-size: 18px;
    color: #666;
    margin: 25px 0 0 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    width: 98%;
    margin: 0 auto;
}

.channel-card {
    position: relative;
    height: 100%;
}

.channel-card-inner {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 5px solid transparent;
}

.channel-card.channel-buyer .channel-card-inner {
    border-top-color: #3498db;
}

.channel-card.channel-designer .channel-card-inner {
    border-top-color: #9b59b6;
}

.channel-card:hover .channel-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.channel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-buyer .channel-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.channel-designer .channel-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.channel-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.channel-icon {
    font-size: 64px;
    line-height: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(5deg);
}

.channel-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.channel-buyer .channel-icon-bg {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.channel-designer .channel-icon-bg {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.channel-card:hover .channel-icon-bg {
    opacity: 0.2;
}

.channel-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: center;
}

.channel-buyer .channel-title {
    color: #2980b9;
}

.channel-designer .channel-title {
    color: #8e44ad;
}

.channel-desc {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.channel-divider {
    width: 60px;
    height: 3px;
    margin: 0 auto 30px;
    border-radius: 16px;
}

.channel-buyer .channel-divider {
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
}

.channel-designer .channel-divider {
    background: linear-gradient(90deg, #9b59b6 0%, #8e44ad 100%);
}

.channel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.channel-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.channel-features li:last-child {
    border-bottom: none;
}

.channel-features li:hover {
    color: #333;
    padding-left: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 16px;
    flex-shrink: 0;
}

.channel-buyer .feature-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.channel-designer .feature-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.channel-action {
    margin-top: auto;
}

.btn-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.btn-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s;
    z-index: 0;
}

.btn-channel:hover::before {
    left: 0;
}

.btn-channel span,
.btn-channel .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-channel .btn-arrow {
    transition: transform 0.3s;
}

.btn-channel:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-channel-buyer {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #424242;
    border-color: #FFD54F;
}

.btn-channel-buyer::before {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
}

.btn-channel-buyer:hover {
    box-shadow: 0 6px 20px rgba(255, 249, 196, 0.4);
    transform: translateY(-2px);
}

.btn-channel-designer {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #424242;
    border-color: #FFD54F;
}

.btn-channel-designer::before {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
}

.btn-channel-designer:hover {
    box-shadow: 0 6px 20px rgba(255, 249, 196, 0.4);
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .channels-section {
        padding: 50px 20px;
    }

    .channels-title {
        font-size: 32px;
    }

    .channels-subtitle {
        font-size: 16px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .channel-card-inner {
        padding: 40px 30px;
    }

    .channel-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .channel-icon {
        font-size: 48px;
        line-height: 80px;
    }
}

/* 如何下单流程 */
.how-it-works {
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #FFC107;
    margin-bottom: 50px;
    font-weight: bold;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: 16px;
    border: 2px solid #FFD54F;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
    border-color: #FFC107;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    color: #333;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}

.step-card h3 {
    font-size: 20px;
    color: #FFC107;
    margin-bottom: 12px;
    font-weight: bold;
}

.step-card p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.steps-cta {
    text-align: center;
}

.btn-cta-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD54F 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.5),
        0 0 0 0 rgba(255, 107, 53, 0.7),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    text-transform: none;
    letter-spacing: 1px;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.btn-cta-large .btn-icon-rocket {
    font-size: 22px;
    animation: rocketFloat 2s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

.btn-cta-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-cta-large:hover::before {
    left: 100%;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large .btn-icon-rocket {
    font-size: 22px;
    animation: rocketFloat 2s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

.btn-cta-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 0 8px rgba(255, 107, 53, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

/* 首页统计数据 */
.home-stats {
    margin-bottom: 40px;
}

.home-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.home-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 工作台样式 */
.dashboard-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFD54F;
}

.page-title {
    color: #616161;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #757575;
    font-size: 16px;
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-btn:hover {
    border-color: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(255, 213, 79, 0.2);
}

.action-btn.primary {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    border-color: #FFD54F;
    color: #424242;
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

.action-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.action-text {
    color: #616161;
    font-size: 16px;
    font-weight: 600;
}

.action-btn.primary .action-text {
    color: #424242;
}

.recent-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    color: #616161;
    font-size: 24px;
    font-weight: 700;
}

.view-all-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #FFD54F;
    text-decoration: underline;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #FAFAFA;
    border: 2px dashed #E0E0E0;
    border-radius: 16px;
}

.empty-state p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 20px;
}

.design-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.design-item {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.design-item:hover {
    border-color: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(255, 213, 79, 0.2);
}

/* 作品详情页 - 多图片显示（垂直列表） */
.design-images-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.design-image-item {
    width: 100%;
    text-align: center;
    background: #F5F5F5;
    padding: 0;
    border-radius: 8px;
    border: 2px solid #E0E0E0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.design-image-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
    min-height: 400px;
}

.design-preview {
    width: 100%;
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 400px;
}

.design-preview img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.design-info {
    padding: 20px;
}

.design-info h4 {
    margin: 0 0 15px 0;
}

.design-info h4 a {
    color: #616161;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.design-info h4 a:hover {
    color: #FFC107;
}

.design-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: #FFF3CD;
    color: #856404;
}

.status-badge.status-approved {
    background: #D4EDDA;
    color: #155724;
}

.status-badge.status-rejected {
    background: #F8D7DA;
    color: #721C24;
}

.status-badge.status-offline {
    background: #E2E3E5;
    color: #383D41;
}

.meta-item {
    color: #757575;
    font-size: 13px;
}

@media (max-width: 768px) {
    .dashboard-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .design-list {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.home-stats .stat-card:nth-child(2) {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.home-stats .stat-card:nth-child(3) {
    background: linear-gradient(135deg, #ffed4e 0%, #FFD54F 100%);
}

.home-stats .stat-card:nth-child(4) {
    background: linear-gradient(135deg, #fff176 0%, #ffd54f 100%);
}

.stat-icon {
    font-size: 48px;
    line-height: 1;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.stat-content p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #856404;
}

/* 功能入口 */
.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    border-color: #FFD54F;
    box-shadow: 0 20px 60px rgba(255, 213, 79, 0.4);
    transform: translateY(-12px) scale(1.03);
    background: #FFFFFF;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.feature-card:hover h3 {
    transform: translateY(-3px);
    color: #FFC107;
}

.feature-card p {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
    font-size: 15px;
}

.feature-card:hover p {
    transform: translateY(-2px);
}

.feature-card .btn {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    font-weight: 600;
}

.feature-card:hover .btn {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 213, 79, 0.4);
}

.feature-card.highlight {
    border-color: #FFC107;
    background: #FFFFFF;
    border-width: 3px;
}

.feature-card.highlight::before {
    transform: scaleX(1);
}

/* VIP相关样式 */
.vip-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.vip-badge.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vip-notice {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border: 2px solid #FFD54F;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.vip-notice p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #856404;
}

.vip-required-page {
    text-align: center;
    padding: 60px 20px;
}

.vip-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.vip-icon-large {
    font-size: 100px;
    margin-bottom: 20px;
}

.vip-benefits {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vip-benefits h3 {
    margin-bottom: 20px;
    color: #333;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 98%;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 16px;
}

.benefit-icon {
    font-size: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.benefits-list p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.vip-pricing {
    margin-top: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #FFD54F;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FFD54F;
    color: #333;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h4 {
    margin-bottom: 15px;
    color: #333;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.pricing-card .price-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.vip-status {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.vip-expires {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

/* 供应商相关样式 */
.supplier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.supplier-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.supplier-logo {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.supplier-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-logo.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.supplier-info {
    padding: 20px;
}

.supplier-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.supplier-contact,
.supplier-address {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}

.supplier-teaser {
    color: #999;
    font-style: italic;
    margin: 15px 0;
}

.supplier-actions {
    margin-top: 15px;
}

.supplier-detail {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.supplier-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.supplier-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.supplier-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-title h2 {
    margin-bottom: 10px;
    color: #333;
}

.info-section {
    margin-bottom: 30px;
}

.info-section h3 {
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    width: 150px;
    background: #f8f9fa;
    padding: 12px;
    text-align: right;
    font-weight: bold;
    color: #666;
}

.info-table td {
    padding: 12px;
    color: #333;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    border-left: 4px solid #007bff;
}

.product-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h2 {
    margin-bottom: 20px;
}

.login-notice {
    background: #FFF9E6;
    border: 2px solid #FFD54F;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.login-notice p {
    color: #616161;
    font-size: 16px;
    margin-bottom: 15px;
}

.login-notice .btn {
    margin: 0 10px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    background: #FAFAFA;
    border: 2px dashed #E0E0E0;
    border-radius: 16px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-secondary {
    background: #FFD54F;
    color: #424242;
    border-color: #FFD54F;
}

.btn-secondary:hover {
    background: #FFF9C4;
    color: #424242;
    border-color: #FFF9C4;
}

/* 首页供应商展示（企业黄页样式） */
.home-suppliers {
    margin: 40px 0;
    padding: 30px 0;
    background: #f8f9fa;
    border-radius: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.section-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.view-all {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: #0056b3;
    text-decoration: underline;
}

.suppliers-yellow-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 0 20px;
    align-items: stretch;
}

/* 移动端：前6个单独大模块，第7个开始2个一起展示 */
@media (max-width: 768px) {
    .suppliers-yellow-pages {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 15px;
        padding: 0 10px;
    }
    
    /* 前6个：单独大模块，占满一行 */
    .supplier-yellow-card.supplier-card-large {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    /* 第7个开始：2个一起展示，每行2个 */
    .supplier-yellow-card.supplier-card-small {
        flex: 0 0 calc(50% - 7.5px);
        width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    /* 设计师网格同样处理 */
    .designers-grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 15px;
    }
    
    .designer-card-link.designer-card-large {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .designer-card-link.designer-card-small {
        flex: 0 0 calc(50% - 7.5px);
        width: calc(50% - 7.5px);
    }
}

.supplier-yellow-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.supplier-yellow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.supplier-yellow-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.supplier-yellow-card:hover {
    box-shadow: 0 20px 60px rgba(255, 213, 79, 0.4);
    transform: translateY(-12px) scale(1.03);
    border-color: #FFD54F;
}

.supplier-yellow-card:hover::before {
    width: 100%;
}

.supplier-yellow-card:hover::after {
    opacity: 1;
}

.supplier-header-yellow {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.supplier-logo-yellow {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-logo-yellow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-logo-yellow .logo-placeholder {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.supplier-title-yellow {
    flex: 1;
}

.supplier-title-yellow h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.supplier-tagline {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.supplier-info-yellow {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

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

.info-label {
    color: #666;
    min-width: 80px;
    flex-shrink: 0;
    font-weight: 500;
}

.info-value {
    color: #333;
    flex: 1;
    word-break: break-word;
}

.info-value a {
    color: #007bff;
    text-decoration: none;
}

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

.vip-lock-info {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border: 1px solid #FFD54F;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    margin-top: 10px;
}

.vip-lock-info p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.login-lock-info {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border: 1px solid #FFD54F;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    margin-top: 10px;
}

.login-lock-info p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

.supplier-actions-yellow {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* 小屏幕设备额外优化 */
@media (max-width: 480px) {
    .container {
        padding: 8px;
    }

    header {
        padding: 12px 8px;
    }

    header h1 {
        font-size: 18px;
    }

    nav {
        gap: 6px;
    }

    nav a {
        padding: 5px 8px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-features-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .step-card h3 {
        font-size: 16px;
    }
}

/* 设计师展示区域 */
.designers-section {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-top: 2px solid #FFD54F;
    border-bottom: 2px solid #FFD54F;
}

.designers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.designer-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.designer-card {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.designer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 50%, #FFEB3B 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.designer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.designer-card-link:hover .designer-card {
    border-color: #FFD54F;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 213, 79, 0.4);
}

.designer-card-link:hover .designer-card::before {
    width: 100%;
}

.designer-card-link:hover .designer-card::after {
    opacity: 1;
}

.designer-card-link:hover .designer-info h3 {
    transform: translateY(-3px);
    color: #FFC107;
}

.designer-card:hover {
    border-color: #FFD54F;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 213, 79, 0.4);
}

.designer-card:hover::before {
    width: 100%;
}

.designer-card:hover::after {
    opacity: 1;
}

.designer-card:hover .designer-info h3 {
    transform: translateY(-3px);
    color: #FFC107;
}

.designer-action {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
    position: relative;
    z-index: 2;
}

.view-profile-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #FFD54F;
    color: #424242;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #FFD54F;
    transition: all 0.3s ease;
}

.designer-card-link:hover .view-profile-btn {
    background: #FFC107;
    border-color: #FFC107;
    transform: translateX(5px);
}

.designer-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #FFD54F;
    background: #FAFAFA;
}

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

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #424242;
    font-size: 36px;
    font-weight: 700;
}

.designer-info {
    position: relative;
    z-index: 2;
}

.designer-info h3 {
    color: #616161;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.designer-company {
    color: #757575;
    font-size: 14px;
    margin: 5px 0;
    font-weight: 600;
}

.designer-type {
    color: #FFC107;
    font-size: 13px;
    margin: 5px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.designer-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.designer-stats .stat-item {
    color: #757575;
    font-size: 13px;
    font-weight: 600;
}

.designer-website {
    display: inline-block;
    margin-top: 10px;
    color: #FFC107;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.designer-website:hover {
    color: #FFD54F;
    text-decoration: underline;
}

.designer-website span {
    margin-right: 5px;
}

/* 页脚样式 */
.site-footer {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    color: #616161;
    margin-top: 80px;
    padding: 0;
    border-top: 4px solid #FFD54F;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD54F 50%, transparent);
}

.footer-container {
    width: 98%;
    margin: 0 auto;
    padding: 0;
}

.footer-main {
    padding: 60px 30px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 0;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: #616161;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #FFD54F;
    padding-bottom: 12px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFC107;
}

.footer-description {
    color: #616161;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(97, 97, 97, 0.1);
    border: 2px solid #616161;
    border-radius: 16px;
    color: #616161;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #616161;
    color: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(97, 97, 97, 0.4);
}

.footer-section p {
    color: #616161;
    font-size: 14px;
    line-height: 1.8;
    margin: 12px 0;
}

.footer-section p strong {
    color: #616161;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 12px 0;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #616161;
    font-size: 12px;
}

.footer-section ul li a {
    color: #616161;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #616161;
    padding-left: 5px;
    text-decoration: none;
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    line-height: 1.6;
}

.contact-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #616161;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span:last-child {
    flex: 1;
    color: #616161;
    font-size: 14px;
}

.contact-item a {
    color: #616161;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #616161;
    text-decoration: underline;
}

.website-info {
    margin-top: 10px;
}

.info-item {
    margin: 12px 0;
    color: #616161;
    font-size: 14px;
    line-height: 1.8;
}

.info-item strong {
    color: #616161;
    font-weight: 600;
    margin-right: 5px;
}

.info-item a {
    color: #616161;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #616161;
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(232, 232, 232, 0.5);
    border-top: 1px solid rgba(255, 213, 79, 0.3);
    padding: 25px 30px;
    margin-top: 40px;
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    color: #616161;
    font-size: 13px;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.copyright a {
    color: #616161;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #616161;
    text-decoration: underline;
}

.footer-note {
    color: #616161;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

/* 响应式设计 - 设计师展示和页脚 */
@media (max-width: 768px) {
    .designers-section {
        margin: 40px 0;
        padding: 30px 0;
    }

    .designers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .designer-card-link {
        -webkit-tap-highlight-color: rgba(255, 213, 79, 0.3);
        touch-action: manipulation;
    }

    .designer-card {
        padding: 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 213, 79, 0.3);
    }

    .designer-card:active {
        transform: scale(0.98);
        background: #FFF9E6;
    }

    .designer-avatar {
        width: 80px;
        height: 80px;
    }

    .site-footer {
        margin-top: 60px;
    }

    .footer-main {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-note {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .designers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .designer-card-link {
        -webkit-tap-highlight-color: rgba(255, 213, 79, 0.3);
        touch-action: manipulation;
    }

    .designer-card {
        padding: 18px;
        min-height: 200px;
    }

    .designer-card:active {
        transform: scale(0.97);
        background: #FFF9E6;
    }

    .designer-avatar {
        width: 70px;
        height: 70px;
    }

    .designer-info h3 {
        font-size: 18px;
    }

    .footer-main {
        padding: 30px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 213, 79, 0.2);
        padding-bottom: 20px;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding: 15px;
    }

    .copyright {
        font-size: 11px;
        line-height: 1.8;
    }

    .footer-note {
        font-size: 10px;
    }

    .step-card p {
        font-size: 13px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-large {
        font-size: 15px;
        padding: 14px 20px;
    }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        padding: 25px 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: row;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        flex: 1;
    }
}

