/*全局重置*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Microsoft Yahei",Helvetica,Arial,sans-serif;
}
body{
    background:#f9f9f9;
    color:#333;
    line-height:1.6;
}

/* ==========顶部导航========== */
.top-area{
    background:#ffffff;
    box-shadow:0 1px 6px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}
.nav-inner{
    max-width:1240px;
    margin:0 auto;
    padding:0 20px;
    height:72px;
    display:flex;
    justify-content: space-between; /* 关键：左边一块，右边一块，中间自动留白 */
    align-items:center;
}
.logo-box{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}
.logo-icon{
    width:36px;
    height:36px;
    object-fit:contain;
}
.logo-text{
    font-size:24px;
    font-weight:bold;
    color:#2c3e50;
}
.logo-text .red{
    color:#e74c3c;
}
.nav-list{
    list-style:none;
    display:flex;
    gap:32px;
    margin:0;
    padding:0;
}
.nav-list a{
    text-decoration:none;
    color:#555;
    font-size:16px;
}
.nav-list a:hover{
    color:#e74c3c;
}

/*hero首页大块区域*/
.hero-section{
    background:linear-gradient(135deg,#fff 0%,#f4f4f4 100%);
    padding:80px 40px;
    border-radius:12px;
    text-align:center;
    margin-bottom:60px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}
.hero-section h1{
    font-size:42px;
    color:#2c3e50;
    margin-bottom:20px;
}
.hero-section p{
    font-size:18px;
    color:#666;
    max-width:800px;
    margin:0 auto 30px;
}

/*通用按钮*/
.cta-button{
    display:inline-block;
    background:#e74c3c;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-size:16px;
}
.cta-button:hover{
    background:#c0392b;
}

/*卡片容器（首页6张feature卡片）*/
.features-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-bottom:50px;
}
.feature-card{
    background:#fff;
    padding:28px 22px;
    border-radius:10px;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
}
.feature-icon{
    font-size:32px;
    margin-bottom:12px;
}
.feature-card h3{
    margin-bottom:10px;
    color:#2c3e50;
}
.feature-card p{
    color:#666;
    margin-bottom:16px;
}

/*社交卡片区域 QQ/抖音等*/
.social-section{
    max-width:960px;
    margin:0 auto 60px;
}
.section-title{
    text-align:center;
    font-size:26px;
    color:#2c3e50;
    margin-bottom:36px;
}
.social-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:26px;
}
.social-card{
    background:#fff;
    padding:28px 18px;
    border-radius:10px;
    box-shadow:0 2px 14px rgba(0,0,0,0.05);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    color:#333;
    border-top:4px solid transparent;
    cursor:pointer;
}
.social-card:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(0,0,0,0.09);
}
.card-qq{border-top-color:#12B7F5;}
.card-douyin{border-top-color:#000;}
.card-kuaishou{border-top-color:#FF4906;}
.card-xhs{border-top-color:#FF2442;}

.social-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#fff;
    margin-bottom:18px;
}
.card-qq .social-icon{background:#12B7F5;}
.card-douyin .social-icon{background:#000;}
.card-kuaishou .social-icon{background:#FF4906;}
.card-xhs .social-icon{background:#FF2442;}

.social-card h3{
    margin-bottom:8px;
    color:#2c3e50;
    font-size:18px;
}
.social-card p{
    color:#777;
    font-size:14px;
    margin-bottom:18px;
    flex-grow:1;
}
.social-btn{
    padding:7px 18px;
    border-radius:20px;
    font-size:14px;
    font-weight:bold;
}
.card-qq .social-btn{border:1px solid #12B7F5;color:#12B7F5;}
.card-qq:hover .social-btn{background:#12B7F5;color:#fff;}

.card-douyin .social-btn{border:1px solid #000;color:#000;}
.card-douyin:hover .social-btn{background:#000;color:#fff;}

.card-kuaishou .social-btn{border:1px solid #FF4906;color:#FF4906;}
.card-kuaishou:hover .social-btn{background:#FF4906;color:#fff;}

.card-xhs .social-btn{border:1px solid #FF2442;color:#FF2442;}
.card-xhs:hover .social-btn{background:#FF2442;color:#fff;}

/*页脚*/
footer{
    background:#2c3e50;
    color:#ecf0f1;
    text-align:center;
    padding:30px 20px;
    margin-top:40px;
}
footer p{
    font-size:14px;
}
.nav-list a{
    text-decoration: none;
    color:#333;
    padding:4px 8px;
}
/* 当前页面高亮，下划线+红色，和你网站主题红色匹配 */
.nav-list a.active{
    color:#e74c3c;
    border-bottom:2px solid #e74c3c;
}
.modal-mask{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
    padding:12px;
    box-sizing: border-box;
}
.modal-box{
    background:#fff;
    border-radius:14px;
    width:100%;
    max-width:460px;
    max-height: 90vh;
    overflow-y:auto;
    padding:16px;
    box-sizing: border-box;
}
.modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}
.close-btn{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
    padding:4px 10px;
}
#skinCanvas{
    width:100%;
    border-radius:12px;
    box-sizing:border-box;
}
        /* 页面专属居中样式 */
        .coming-soon-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 60vh; /* 确保占据足够高度使其垂直居中 */
            text-align: center;
        }
        .coming-soon-icon {
            font-size: 60px;
            color: #e74c3c;
            margin-bottom: 30px;
            animation: pulse 2s infinite; /* 添加简单的呼吸动画 */
        }
        .coming-soon-text {
            font-size: 32px;
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .coming-soon-subtext {
            font-size: 16px;
            color: #7f8c8d;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }