﻿@charset "UTF-8";

:root {
    --mw-primary: #5B4AE0;
    --mw-primary-dark: #4A3BC8;
    --mw-primary-light: #EEECFB;
    --mw-accent: #FF6B6B;
    --mw-accent-hover: #FF5252;
    --mw-bg: #FFFFFF;
    --mw-bg-alt: #F8F9FC;
    --mw-bg-dark: #1A1A2E;
    --mw-text: #2D2D3A;
    --mw-text-secondary: #6B7280;
    --mw-text-light: #9CA3AF;
    --mw-border: #E5E7EB;
    --mw-border-light: #F3F4F6;
    --mw-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --mw-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --mw-shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
    --mw-shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
    --mw-radius-sm: 8px;
    --mw-radius: 12px;
    --mw-radius-lg: 16px;
    --mw-radius-xl: 24px;
    --mw-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --mw-container: 1200px;
    --mw-header-height: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--mw-text);
    background-color: var(--mw-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--mw-primary);
    text-decoration: none;
    transition: color var(--mw-transition);

    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: var(--mw-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.mw-container {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px;
}

.mw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--mw-header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mw-border-light);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.mw-header-inner {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mw-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mw-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mw-text);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mw-logo img {
    height: 38px;
    width: auto;
    border-radius: 8px;
}

.mw-logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-logo-text span {
    background: linear-gradient(135deg, var(--mw-primary), #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mw-nav {
    display: flex;
    align-items: center;
}

.mw-nav-close {
    display: none;
}

.mw-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mw-nav > ul > li {
    position: relative;
}

.mw-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--mw-radius-sm);
    color: var(--mw-text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--mw-transition);
    white-space: nowrap;
}

.mw-nav > ul > li > a:hover,
.mw-nav > ul > li > a.active {
    color: var(--mw-primary);
    background: var(--mw-primary-light);
}

.mw-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: var(--mw-radius-sm);
    color: var(--mw-text);
    font-size: 24px;
    transition: background var(--mw-transition);
    -webkit-tap-highlight-color: transparent;
}

.mw-menu-toggle:hover {
    background: var(--mw-border-light);
}

.mw-mobile-download {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 36px;
    background: var(--mw-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 18px;
    text-decoration: none;
    transition: opacity var(--mw-transition);
    -webkit-tap-highlight-color: transparent;
}

.mw-mobile-download:hover {
    opacity: 0.9;
}

.mw-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #F5F3FF 0%, #EEF2FF 30%, #F0F9FF 60%, #F5F3FF 100%);
    overflow: hidden;
}

.mw-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 74, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mw-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mw-hero-inner {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mw-hero-content {
    flex: 1;
}

.mw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--mw-primary-light);
    color: var(--mw-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.mw-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--mw-text);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.mw-hero-title span {
    background: linear-gradient(135deg, var(--mw-primary), #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mw-hero-desc {
    font-size: 18px;
    color: var(--mw-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.mw-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mw-hero-update {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--mw-text-secondary);
}

.mw-hero-update i {
    color: var(--mw-primary);
}

.mw-hero-image {
    flex-shrink: 0;
    width: 420px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mw-hero-image img {
    width: 100%;
    border-radius: var(--mw-radius-lg);
    box-shadow: var(--mw-shadow-xl);
}

.mw-phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(91, 74, 224, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mw-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.mw-phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 24px 30px;
    position: relative;
}

.mw-phone-home {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    opacity: 0.3;
}

.mw-app-frog {
    margin-bottom: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mw-frog-bounce 2.5s ease-in-out infinite;
}

.mw-frog-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

@keyframes mw-frog-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.mw-app-title {
    font-size: 16px;
    font-weight: 600;
    color: #2D2D3A;
    margin-bottom: 24px;
}

.mw-line-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.mw-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    font-size: 14px;
}

.mw-line-name {
    color: #333;
    font-weight: 500;
}

.mw-line-status {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.mw-line-status--ok {
    color: #22c55e;
    background: #f0fdf4;
}

.mw-app-footer {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
}

.mw-app-footer p {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.mw-app-highlight {
    color: #ef4444 !important;
    font-weight: 500;
}

.mw-app-email {
    margin-top: 8px !important;
    color: #333 !important;
    font-weight: 500;
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--mw-transition);
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.mw-btn-primary {
    background: linear-gradient(135deg, var(--mw-primary), #7C3AED);
    color: #fff;
    box-shadow: 0 4px 15px rgba(91, 74, 224, 0.35);
}

.mw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 74, 224, 0.45);
}

.mw-btn-outline {
    background: transparent;
    color: var(--mw-primary);
    border: 2px solid var(--mw-primary);
}

.mw-btn-outline:hover {
    background: var(--mw-primary);
    color: #fff;
    transform: translateY(-2px);
}

.mw-btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

.mw-section {
    padding: 100px 0;
}

.mw-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mw-section-label {
    display: inline-block;
    padding: 6px 18px;
    background: var(--mw-primary-light);
    color: var(--mw-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mw-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--mw-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mw-section-desc {
    font-size: 17px;
    color: var(--mw-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mw-features {
    background: var(--mw-bg);
}

.mw-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mw-feature-card {
    padding: 36px 32px;
    background: var(--mw-bg);
    border: 1px solid var(--mw-border-light);
    border-radius: var(--mw-radius-lg);
    transition: all var(--mw-transition);
    position: relative;
    overflow: hidden;
}

.mw-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mw-primary), #8B5CF6);
    transform: scaleX(0);
    transition: transform var(--mw-transition);
}

.mw-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mw-shadow-lg);
    border-color: transparent;
}

.mw-feature-card:hover::before {
    transform: scaleX(1);
}

.mw-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--mw-radius);
    background: var(--mw-primary-light);
    color: var(--mw-primary);
    font-size: 26px;
    margin-bottom: 20px;
}

.mw-feature-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--mw-text);
    margin-bottom: 12px;
}

.mw-feature-card p {
    font-size: 15px;
    color: var(--mw-text-secondary);
    line-height: 1.7;
}

.mw-audience {
    background: var(--mw-bg-alt);
}

.mw-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mw-audience-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--mw-bg);
    border-radius: var(--mw-radius-lg);
    transition: all var(--mw-transition);
    border: 1px solid var(--mw-border-light);
}

.mw-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mw-shadow-lg);
    border-color: var(--mw-primary);
}

.mw-audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mw-primary-light), #EDE9FE);
    color: var(--mw-primary);
    font-size: 28px;
    margin-bottom: 20px;
    transition: all var(--mw-transition);
}

.mw-audience-card:hover .mw-audience-icon {
    background: linear-gradient(135deg, var(--mw-primary), #7C3AED);
    color: #fff;
}

.mw-audience-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--mw-text);
    margin-bottom: 10px;
}

.mw-audience-card p {
    font-size: 14px;
    color: var(--mw-text-secondary);
    line-height: 1.6;
}

.mw-screenshots {
    background: var(--mw-bg);
    overflow: hidden;
}

.mw-screenshots-wrapper {
    position: relative;
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px;
}

.mw-screenshots-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.mw-screenshots-track-container::-webkit-scrollbar {
    display: none;
}

.mw-screenshots-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
}

.mw-screenshot-item {
    flex-shrink: 0;
    width: 250px;
    height: 450px;
    border-radius: var(--mw-radius-lg);
    overflow: hidden;
    box-shadow: var(--mw-shadow);
    background: #f5f5f5;
}

.mw-screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mw-screenshots-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mw-bg);
    border: 1px solid var(--mw-border);
    box-shadow: var(--mw-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--mw-transition);
    color: var(--mw-text);
    font-size: 18px;
    -webkit-tap-highlight-color: transparent;
}

.mw-screenshots-arrow:hover {
    background: var(--mw-primary);
    color: #fff;
    border-color: var(--mw-primary);
    box-shadow: var(--mw-shadow-lg);
}

.mw-screenshots-arrow--left {
    left: 0;
}

.mw-screenshots-arrow--right {
    right: 0;
}

.mw-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mw-lightbox.active {
    display: flex;
}

.mw-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--mw-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.mw-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--mw-transition);
    -webkit-tap-highlight-color: transparent;
}

.mw-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mw-download {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
}

.mw-download::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 74, 224, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mw-download .mw-section-label {
    background: rgba(255, 255, 255, 0.1);
    color: #A78BFA;
}

.mw-download .mw-section-title {
    color: #fff;
}

.mw-download .mw-section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.mw-download-inner {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.mw-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
}

.mw-download-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--mw-radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--mw-transition);
    backdrop-filter: blur(10px);
}

.mw-download-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--mw-primary);
    transform: translateY(-4px);
}

.mw-download-card.featured {
    background: linear-gradient(135deg, rgba(91, 74, 224, 0.3), rgba(139, 92, 246, 0.2));
    border-color: var(--mw-primary);
    position: relative;
}

.mw-download-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--mw-accent), #FF8A80);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.mw-download-icon {
    font-size: 42px;
    color: #A78BFA;
    margin-bottom: 20px;
}

.mw-download-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.mw-download-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    line-height: 1.6;
}

.mw-download-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.mw-download-card .mw-btn {
    width: 100%;
    justify-content: center;
}

.mw-download-card .mw-btn-primary {
    background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.mw-download-card .mw-btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.mw-download-card .mw-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.mw-discuss {
    background: var(--mw-bg-alt);
}

.mw-comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mw-comment-card {
    background: var(--mw-bg);
    border: 1px solid var(--mw-border-light);
    border-radius: var(--mw-radius-lg);
    padding: 28px 24px;
    transition: all var(--mw-transition);
}

.mw-comment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--mw-shadow-lg);
    border-color: var(--mw-primary-light);
}

.mw-comment-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mw-comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mw-primary), #8B5CF6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.mw-comment-avatar .mw-icon {
    color: #fff;
}

.mw-comment-user {
    flex: 1;
    min-width: 0;
}

.mw-comment-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--mw-text);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.mw-comment-date {
    font-size: 13px;
    color: var(--mw-text-light);
}

.mw-comment-stars {
    display: flex;
    gap: 2px;
    color: #FFB800;
    font-size: 13px;
    width: 100%;
    margin-top: 4px;
    justify-content: flex-start;
    padding-left: 56px;
}

.mw-comment-text {
    font-size: 14px;
    color: var(--mw-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.mw-stats {
    padding: 60px 0;
    background: var(--mw-bg);
    border-top: 1px solid var(--mw-border-light);
    border-bottom: 1px solid var(--mw-border-light);
}

.mw-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.mw-stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--mw-primary);
    margin-bottom: 8px;
}

.mw-stat-item p {
    font-size: 15px;
    color: var(--mw-text-secondary);
}

.mw-footer {
    background: var(--mw-bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.mw-footer-inner {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.mw-footer-brand {
    max-width: 320px;
}

.mw-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mw-footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.mw-footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.mw-footer-slogan {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 500;
}

.mw-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

.mw-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

.mw-footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2.2;
    transition: color var(--mw-transition);
}

.mw-footer-col a:hover {
    color: #fff;
}

.mw-footer-qrcode {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.mw-footer-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mw-footer-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.mw-footer-bottom {
    max-width: var(--mw-container);
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.mw-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mw-primary);
    color: #fff;
    border: none;
    box-shadow: var(--mw-shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--mw-transition);
    -webkit-tap-highlight-color: transparent;
}

.mw-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mw-back-to-top:hover {
    background: var(--mw-primary-dark);
    transform: translateY(-2px);
}

.mw-animate {
    opacity: 1;
    transform: none;
}

.mw-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--mw-transition);
}

.mw-nav-overlay.active {
    display: block;
    opacity: 1;
}
/* 星星 */
.aiarticle-comment-rating-icon{
    display:inline-block !important;
    width:auto !important;
    height:auto !important;
    margin-right:2px;
    color:#ffb400 !important;
    font-style:normal !important;
    font-weight:normal !important;
    line-height:1 !important;
    vertical-align:middle;
    text-decoration:none !important;
}

.aiarticle-comment-rating-icon:before{
    font-family:Arial,"Segoe UI Symbol","Noto Sans Symbols","Microsoft YaHei",sans-serif !important;
    font-style:normal !important;
    font-weight:normal !important;
    line-height:1 !important;
}

.aiarticle-comment-rating-icon.fa-star:before{
    content:"\2605" !important;
}

.aiarticle-comment-rating-icon.fa-star-o:before{
    content:"\2606" !important;
}

.aiarticle-comment-rating-icon:last-child{
    margin-right:0;
}
/* 结束 */
@media (max-width: 1024px) {
    :root {
        --mw-header-height: 64px;
    }

    .mw-hero {
        padding: 130px 0 70px;
    }

    .mw-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .mw-hero-title {
        font-size: 38px;
    }

    .mw-hero-desc {
        margin: 0 auto 32px;
        font-size: 16px;
    }

    .mw-hero-actions {
        justify-content: center;
    }

    .mw-hero-image {
        width: 100%;
        max-width: 380px;
    }

    .mw-phone-mockup {
        width: 260px;
        height: 520px;
        transform: none;
    }

    .mw-app-frog {
        width: 64px;
        height: 64px;
    }

    .mw-frog-logo {
        border-radius: 12px;
    }

    .mw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw-download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw-section {
        padding: 70px 0;
    }

    .mw-section-title {
        font-size: 30px;
    }

    .mw-screenshots-arrow {
        display: none;
    }

    .mw-screenshots-track {
        padding: 0 20px;
    }

    .mw-comments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --mw-header-height: 60px;
    }

    body {
        font-size: 15px;
    }

    .mw-menu-toggle {
        display: flex;
    }

    .mw-mobile-download {
        display: inline-flex;
    }

    .mw-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        background: var(--mw-bg);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 70px 24px 30px;
        flex-direction: column;
        transition: right var(--mw-transition);
        overflow-y: auto;
    }

    .mw-nav.active {
        right: 0;
    }

    .mw-nav-close {
        display: flex;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border: none;
        background: var(--mw-border-light);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--mw-text);
        font-size: 16px;
        transition: background var(--mw-transition);
        -webkit-tap-highlight-color: transparent;
    }

    .mw-nav-close:hover {
        background: var(--mw-border);
    }

    .mw-nav > ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .mw-nav > ul > li {
        width: 100%;
    }

    .mw-nav > ul > li > a {
        display: flex;
        padding: 14px 18px;
        font-size: 16px;
        border-radius: var(--mw-radius-sm);
    }

    .mw-hero {
        padding: 110px 0 50px;
    }

    .mw-hero-title {
        font-size: 30px;
    }

    .mw-hero-desc {
        font-size: 15px;
    }

    .mw-hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .mw-phone-mockup {
        width: 240px;
        height: 480px;
        transform: none;
        border-radius: 30px;
    }

    .mw-phone-screen {
        padding: 44px 20px 24px;
    }

    .mw-phone-notch {
        width: 100px;
        height: 20px;
    }

    .mw-app-frog {
        width: 56px;
        height: 56px;
    }

    .mw-app-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .mw-line-item {
        padding: 10px 14px;
        font-size: 13px;
    }

    .mw-app-footer p {
        font-size: 11px;
    }

    .mw-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .mw-hero-actions .mw-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .mw-section {
        padding: 60px 0;
    }

    .mw-section-title {
        font-size: 26px;
    }

    .mw-section-desc {
        font-size: 15px;
    }

    .mw-section-header {
        margin-bottom: 40px;
    }

    .mw-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mw-feature-card {
        padding: 28px 22px;
    }

    .mw-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .mw-audience-card {
        padding: 28px 16px;
    }

    .mw-screenshots-track {
        padding: 0 10px;
        gap: 14px;
    }

    .mw-screenshot-item {
        width: 200px;
        height: 360px;
    }

    .mw-screenshots-arrow {
        display: none;
    }

    .mw-download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .mw-download-card {
        padding: 32px 22px;
    }

    .mw-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mw-stat-item h3 {
        font-size: 28px;
    }

    .mw-comments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mw-comment-card {
        padding: 22px 18px;
    }

    .mw-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .mw-footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    .mw-footer-logo {
        justify-content: center;
    }
    .mw-footer-col h4 {
        text-align: center;
    }
    .mw-footer-col a {
        text-align: center;
    }
    .mw-footer-qrcode {
        margin: 0 auto 10px;
    }

    .mw-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mw-hero-title {
        font-size: 26px;
    }

    .mw-hero-badge {
        font-size: 13px;
        padding: 4px 14px;
    }

    .mw-hero-image {
        max-width: 260px;
    }

    .mw-phone-mockup {
        width: 220px;
        height: 440px;
        transform: none;
    }

    .mw-phone-screen {
        padding: 40px 16px 20px;
    }

    .mw-app-frog {
        width: 48px;
        height: 48px;
    }

    .mw-line-item {
        padding: 9px 12px;
        font-size: 12px;
    }

    .mw-app-footer p {
        font-size: 10px;
        line-height: 1.7;
    }

    .mw-section-title {
        font-size: 23px;
    }

    .mw-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mw-audience-card {
        padding: 22px 12px;
    }

    .mw-audience-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .mw-screenshot-item {
        width: 250px;
    }

    .mw-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    .mw-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}