@charset "utf-8";
/*
Theme Name: 快连官网
Theme URI: 
Author: 阿叶
Author URI: 
Description:
Version: 0.0.1
*/
/* 基础样式 */


:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #8b5cf6;
    --accent: #0ea5e9;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a,a:hover {
    text-decoration: none;
}
body {
    font-family: 'Arial', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 导航栏 */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}
.logo a {
    font-weight: 700;
    color: var(--primary);
    font-size: 24px;
}
.logo img {
	width: 46px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* 英雄区域 */
.part-one {
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.part-one-content {
    flex: 1;
    z-index: 2;
}

.part-one .title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark);
}

.part-one .title span {
    color: var(--primary);
    position: relative;
}

.part-one .title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.part-one p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 40px;
}

.part-one-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.part-one-image img {
    max-width: 500px;
}



/* 功能区域 */
.features {
    padding: 100px 0;
    background-color: #f7fbff;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
}

.feature-card .h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
}


/* 价格计划 */
.pricing {
    padding: 100px 0;
    background-color: #f7fbff
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card .h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray);
}

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

.pricing-features li i {
    color: var(--success);
    margin-right: 10px;
}

  
/* 其他版本下载区域 - 新增部分 */
.other-versions {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.other-versions .section-title .h2 {
    color: var(--dark);
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto 0;
}

.version-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.version-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.version-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary);
}
.version-icon img {
    width: 100%;
    height: 100%;
}
.version-card .h3 {
    margin-bottom: 15px;
}
.version-card .h3 a {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--dark);
}

.version-card p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.version-download {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 180px;
}

.version-download:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
.version-more {
    display: block;
    background: #eee;
    color: var(--primary);
    border: none;
    padding: 16px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 50px;
}
.version-more:hover {
    background: var(--primary);
    color: #fff;
}
.part-comm {
    padding: 40px 0;
}
.part-comm .comm-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.part-comm .comm-item {
    width: 33.33%;
}
.part-comm .comm-item .item {
    margin: 20px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.part-comm .comm-item .item .name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.part-comm .comm-item .item .comm-content {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.part-comm .comm-item .item .comm-time {
    color: #999;
    font-size: 15px;
}

.post-content {
    padding: 100px 0;
    background-color: #f7fbff;
    position: relative;
}
.post-content .content-warp {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.post-content .content-warp p {
    font-size: 16px;
    color: #666;
    line-height: 32px;
}
/* 数据统计 */
.part-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item .h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 页脚 */
footer {
    background: var(--dark);
    color: white;
    padding: 50px;
}

.copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* 响应式设计 */

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
     .part-one {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .part-one-content {
        margin-bottom: 50px;
    }
    .part-one .title {
        font-size: 2rem;
    }
    .part-one p {
        margin: 0 auto 40px;
    }
    
    .part-one-image {
        margin-top: 20px;
    }
    .part-one-image img {
        max-width: 100%;
    }
    
    .versions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .features {
        padding: 40px 0;
    }
    .other-versions {
        padding: 40px 0;
    }
    .pricing {
        padding: 40px 0;
        background-color: #f7fbff;
    }
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    .section-title .title {
        font-size: 1.6rem;
    }
    .section-title p {
        font-size: .8rem;
    }
    .part-stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        gap: 20px;
        display: flex;
        justify-content: space-between;
    }
    .stats-grid .stat-item {
        text-align: center;
    }
    .stat-item .h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .stat-item p {
        font-size: .6rem;
        opacity: 0.9;
    }
    .part-comm .comm-item {
        width: 100%;
    }
}
