@charset "utf-8";
/*
    Theme Name: 漫画2官网
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

:root {
    --primary: #40a535;
    --primary-dark: #2d7a25;
    --primary-light: #5bc452;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #f5f5f5;
    --gray-dark: #666666;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* 导航栏 */
.mw2-dh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(64, 165, 53, 0.1);
}

.mw2-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mw2-logo-tb {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: white;
    box-shadow: 0 4px 15px rgba(64, 165, 53, 0.3);
}
.mw2-logo-tb img {
    width: 80%;
}
.mw2-logo-wz {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.mw2-dh-lj {
    display: flex;
    gap: 35px;
    list-style: none;
}

.mw2-dh-lj a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.mw2-dh-lj a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.mw2-dh-lj a:hover {
    color: var(--primary);
}

.mw2-dh-lj a:hover::after {
    width: 100%;
}

.mw2-xz-an {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(64, 165, 53, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mw2-xz-an:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 165, 53, 0.4);
}

/* Hero区域 */
.mw2-zt {
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    padding: 140px 0;
    background: linear-gradient(135deg, #f8fff7 0%, #e8f5e6 50%, #f0f9ef 100%);
    position: relative;
    overflow: hidden;
}

.mw2-zt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(64, 165, 53, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.mw2-zt-rq {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0%;
    position: relative;
    z-index: 1;
}

.mw2-zt-nr {
    max-width: 600px;
}

.mw2-bq {
    display: inline-block;
    background: rgba(64, 165, 53, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(64, 165, 53, 0.2);
}

.mw2-zt h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--black);
}

.mw2-zt h1 span {
    color: var(--primary);
    position: relative;
}

.mw2-zt h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(64, 165, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.mw2-zt p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 35px;
}

.mw2-zt-an {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mw2-an-zc {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(64, 165, 53, 0.35);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.mw2-an-zc:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(64, 165, 53, 0.45);
}

.mw2-an-cz {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.mw2-an-cz:hover {
    background: var(--primary);
    color: white;
}

.mw2-zt-tp {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
}

.mw2-sj-mx {
    position: relative;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

.mw2-sj-kj {
    width: 100%;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mw2-sj-pm {
    background: linear-gradient(180deg, #40a535 0%, #2d7a25 100%);
    border-radius: 30px;
    aspect-ratio: 9/19;
    overflow: hidden;
    position: relative;
}

.mw2-pm-nr {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mw2-app-dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mw2-app-logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.mw2-app-cd {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mw2-app-cd span {
    height: 2px;
    background: white;
    border-radius: 2px;
}

.mw2-mh-wg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex: 1;
}

.mw2-mh-kp {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mw2-mh-ft {
    position: relative;
    overflow: hidden;
}

.mw2-mh-ft img {
    object-fit: cover;
    display: block;
}

/* 特色区域 */
.mw2-ts {
    padding: 100px 5%;
    background: white;
}

.mw2-qt-dt {
    text-align: center;
    margin-bottom: 60px;
}

.mw2-qt-dt h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.mw2-qt-dt h2 span {
    color: var(--primary);
}

.mw2-qt-dt p {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.mw2-ts-wg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mw2-ts-kp {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mw2-ts-kp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.mw2-ts-kp:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 165, 53, 0.15);
}

.mw2-ts-kp:hover::before {
    transform: scaleX(1);
}

.mw2-ts-tb {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(64, 165, 53, 0.3);
    color: #fff;
}

.mw2-ts-kp h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mw2-ts-kp p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* 常见问题 */
.mw2-cjwt-qy {
    padding: 100px 5%;
    background: white;
}

.mw2-cjwt-rq {
    max-width: 800px;
    margin: 0 auto;
}

.mw2-cjwt-xm {
    background: var(--gray);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.mw2-cjwt-xm:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mw2-cjwt-wt {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s;
}

.mw2-cjwt-wt:hover {
    color: var(--primary);
}

.mw2-cjwt-wt i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.mw2-cjwt-xm.active .mw2-cjwt-wt i {
    transform: rotate(180deg);
}

.mw2-cjwt-hd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mw2-cjwt-xm.active .mw2-cjwt-hd {
    max-height: 300px;
}

.mw2-cjwt-hd-nr {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.mw2-cjwt-hd-nr a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.mw2-cjwt-hd-nr a:hover {
    text-decoration: underline;
}

/* 用户评价 */
.mw2-yhpj-qy {
    padding: 100px 5%;
    background: linear-gradient(180deg, #f8fff7 0%, white 100%);
}

.mw2-yhpj-wg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.mw2-yhpj-kp {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid rgba(64, 165, 53, 0.08);
}

.mw2-yhpj-kp:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(64, 165, 53, 0.12);
}

.mw2-yhpj-dt {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.mw2-yhpj-tx {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.mw2-yhpj-yh {
    flex: 1;
}

.mw2-yhpj-xm {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.mw2-yhpj-pf {
    color: #ffb800;
    font-size: 14px;
    letter-spacing: 2px;
}

.mw2-yhpj-wb {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
}
.mw2-fbsj {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
}

/* 页脚 */
.mw2-yj {
    background: var(--black);
    color: white;
    padding: 30px 5%;
}

.mw2-yj-nr {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mw2-yj-zb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.mw2-yj-yb {
    display: flex;
    gap: 24px;
}

.mw2-yj-yb a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.mw2-yj-yb a:hover {
    color: var(--primary-light);
}

/* 响应式 */
@media (max-width: 1024px) {
    .mw2-zt {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .mw2-zt-rq {
        padding: 0 0%;
    }

    .mw2-zt-nr {
        max-width: 96%;
        margin: 0 auto;
    }

    .mw2-zt h1 {
        font-size: 40px;
    }

    .mw2-zt-an {
        justify-content: center;
    }

    .mw2-zt-tp {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        max-width: 350px;
        margin-top: 50px;
    }

    .mw2-dh-lj {
        display: none;
    }
}

@media (max-width: 768px) {
    .mw2-zt h1 {
        font-size: 32px;
    }

    .mw2-qt-dt h2 {
        font-size: 28px;
    }

    .mw2-ts-wg {
        grid-template-columns: 1fr;
    }

    .mw2-yhpj-wg {
        grid-template-columns: 1fr;
    }

    .mw2-zt-tp {
        display: none;
    }
    .mw2-an-zc {
        width: 100%;
        display: block;
    }
    .mw2-an-cz {
        display: none;
    }
}

/* 装饰元素 */
.mw2-zs {
    position: absolute;
    border-radius: 50%;
    background: rgba(64, 165, 53, 0.1);
}

.mw2-zs-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
}

.mw2-zs-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
}