:root {
    --primary-green: #16d17f;
    --primary-green-light: #3ce396;
    --primary-green-dark: #10b56d;
    --secondary-green: #e8f9f1;
    --accent-green: #7ae0b5;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f5fdf9;
    --shadow-light: rgba(22, 209, 127, 0.1);
    --border-radius: 8px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}
.header_right{
    display: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.cta-button {
    background: linear-gradient(to right, var(--primary-green), var(--primary-green-light));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(to right, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 154, 87, 0.3);
    color:var(--text-white);
}

/* 主体部分 */
.hero-section {
    padding: 80px 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.section-titles p {
    max-width: 700px;
    margin: 10px 0;
    font-size: 1.1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

/* 全文模板展示区 */
.templates-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.template-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.category-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background-color: var(--secondary-green);
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.category-btn.active {
    background-color: var(--primary-green);
    color: white;
}

.category-btn:hover {
    transform: translateY(-3px);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.template-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-light);
}

.template-preview {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.template-content {
    text-align: center;
    color: white;
}

.template-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.template-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.template-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.template-tags span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.template-info {
    padding: 20px;
}

.template-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.template-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 素材分类展示区 */
.material-categories {
    padding: 40px 0;
    background-color: var(--text-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-green);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-light);
}

.category-header {
    padding: 20px;
    background-color: var(--secondary-green);
    display: flex;
    align-items: center;
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-green);
    font-size: 24px;
}

.category-title {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.category-content {
    padding: 20px;
}

.material-list {
    list-style: none;
}

.material-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.material-item:hover {
    background-color: var(--secondary-green);
}

.material-item:last-child {
    border-bottom: none;
}

.material-icon {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-green);
    font-size: 14px;
}

.material-name {
    flex: 1;
}

.svg-showcase{
    padding: 40px 0;
    margin-bottom: 40px;
}

.svg-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.svg-feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    border-top: 4px solid var(--primary-green);
}

.svg-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-light);
}

.svg-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 40px;
}

.svg-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.svg-feature-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* 核心功能展示区 */
.core-features {
    padding: 40px 0;
    background: linear-gradient(to right, var(--primary-green), var(--primary-green-light));
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.navbar {
    flex-direction: column;
    gap: 20px;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 0 10px;
}

.section-titles h2 {
    font-size: 2rem;
}


/* 响应式设计 */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}


