@charset "UTF-8";

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            max-width: 750px;
            margin: 0 auto;
            background-color: #fff;
            min-height: 100vh;
            padding-top: 70px; /* 导航栏的高度 */
        }
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            max-width: 750px;
            margin: 0 auto;
            background-color: #07140f;
            color: #fff;
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            z-index: 1000;
            backface-visibility: hidden;
            transform: translateZ(0);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }
        
        .logo-img {
            width: 30px;
            height: 30px;
            border-radius: 5px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: bold;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 20px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ffd93d;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 30px;
            justify-content: center;
            align-items: center;
        }
        
        .menu-toggle span {
            width: 20px;
            height: 2px;
            background-color: #fff;
            margin: 2px 0;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(3px, 3px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(3px, -3px);
        }
        
        .hero {
            background: #fff;
            color: #333;
            padding: 20px;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 650px;
            margin: 0 auto;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 30px;
        }
        
        .hero h1 {
            font-size: 36px;
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 5px;
        }
        

        .hero p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .hero-stats {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            font-size: 12px;
            color: #666;
        }
        
        .hero-description {
            flex: 1;
            padding-left: 30px;
            border-left: 2px solid #eee;
        }
        
        .hero-description h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        
        .about-content {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ff6b6b;
            margin-top: 10px;
        }
        
        .about-content p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 10px;
        }
        
        .about-content p:last-child {
            margin-bottom: 0;
        }
        
        .search-box {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .search-box input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .search-box button {
            background-color: #4ecdc4;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .download-buttons {
            display: flex;
            gap: 10px;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 130px;
        }
        
        .download-btn.ios {
            background-color: #007aff;
            color: #fff;
        }
        
        .download-btn.android {
            background-color: #34a853;
            color: #fff;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .btn-icon {
            font-size: 16px;
        }
        
        .btn-text {
            text-align: left;
        }
        
        .btn-text small {
            font-size: 10px;
            font-weight: normal;
            opacity: 0.9;
        }
        
        .btn-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            height: 100%;
        }
        
        .screenshot-section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .screenshot-nav {
            margin-top: 15px;
        }
        
        .screenshot-list {
            display: flex;
            overflow-x: auto;
            padding-bottom: 10px;
            -webkit-overflow-scrolling: touch;
        }
        
        .screenshot-list::-webkit-scrollbar {
            height: 6px;
        }
        
        .screenshot-list::-webkit-scrollbar-track {
            background-color: #f5f5f5;
            border-radius: 3px;
        }
        
        .screenshot-list::-webkit-scrollbar-thumb {
            background-color: #ddd;
            border-radius: 3px;
        }
        
        .screenshot-item {
            flex-shrink: 0;
            margin-right: 15px;
            text-align: center;
        }
        
        .screenshot-container {
            width: 250px;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 8px solid #000;
            background-color: #000;
        }
        
        .screenshot-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        

        
        .update-section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        

        
        .update-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .update-item {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 15px;
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            transition: box-shadow 0.3s;
            align-items: center;
        }
        
        .update-item:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .app-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .app-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .app-details {
            flex: 1;
            min-width: 0;
            margin-right: 15px;
        }
        
        .app-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }
        
        .app-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        
        .app-title a {
            color: #333;
            text-decoration: none;
        }
        
        .app-title a:hover {
            color: #ff6b6b;
            text-decoration: none;
        }
        
        .app-icon a {
            display: block;
        }
        
        .app-rating {
        }
        
        .app-info {
            display: block;
        }
        
        .app-info span {
            display: block;
            margin-bottom: 5px;
            font-size: 12px;
            color: #999;
        }
        
        .app-desc {
        }
        
        .app-intro {
            padding: 10px;
            border-radius: 4px;
            font-size: 13px;
            line-height: 1.4;
            width: 400px;
            height: 60px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            flex-shrink: 0;
        }
        
        .app-download {
            margin-left: 15px;
            flex-shrink: 0;
        }
        
        .update-item .download-btn {
            display: block;
            padding: 8px 10px;
            background-color: #4caf50;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            text-decoration: none;
            width: 70px;
            text-align: center;
            min-width: 70px;
        }
        
        .update-item .download-btn:hover {
            background-color: #45a049;
        }
        
        .app-features {
            padding: 20px;
            background-color: #f9f9f9;
            margin: 20px 0;
        }
        
        .feature-list {
            margin-top: 15px;
        }
        
        .feature-list-item {
            display: flex;
            align-items: flex-start;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list-icon {
            width: 40px;
            height: 40px;
            background-color: #ff6b6b;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-list-content {
            flex: 1;
        }
        
        .feature-list-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .feature-list-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        .faq-section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .faq-list {
            margin-top: 20px;
        }
        
        .faq-item {
            margin-bottom: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
        
        .faq-question:hover {
            background-color: #f0f0f0;
        }
        
        .faq-toggle {
            font-size: 14px;
            transition: transform 0.5s ease;
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-answer p {
            margin: 15px 0;
            line-height: 1.6;
            color: #666;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 15px 15px;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        
        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        
        .footer-copyright {
            font-size: 12px;
            color: #999;
        }
        
        .footer-link {
            color: #fff;
            text-decoration: none;
        }
        
        .comment-area {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        @media (max-width: 750px) {
            .container {
                width: 100%;
            }
            
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 0;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                border-radius: 0 0 12px 12px;
                overflow: hidden;
                max-height: 0;
                transition: max-height 0.3s ease-out;
                pointer-events: none;
                z-index: 999;
            }
            
            .nav-links.active {
                max-height: 300px;
                pointer-events: all;
            }
            
            .nav-links li {
                width: 100%;
                margin: 0;
            }
            
            .nav-links a {
                display: block;
                color: #333;
                padding: 15px 20px;
                font-size: 16px;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.3s ease;
            }
            
            .nav-links a:hover {
                background-color: #f5f5f5;
                color: #ff6b6b;
                padding-left: 25px;
            }
            
            .nav-links li:last-child a {
                border-bottom: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            

            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .download-buttons {
                justify-content: center;
            }
            
            .hero-description {
                padding-left: 0;
                border-left: none;
                margin-top: 20px;
                text-align: left;
            }
            
            .about-content {
                padding: 12px;
                border-radius: 6px;
            }
            
            .screenshot-container {
                width: 250px;
                height: 450px;
                border: 6px solid #000;
            }
            
            .update-item {
                flex-direction: row;
                align-items: center;
            }
            
            .app-icon {
                margin-bottom: 0;
                margin-right: 10px;
                width: 50px;
                height: 50px;
            }
            
            .app-details {
                flex: 1;
                margin-bottom: 0;
                min-width: 0;
            }
            
            .app-title {
                font-size: 14px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .app-info {
                gap: 8px;
                margin-bottom: 0;
            }
            
            .app-info span {
                font-size: 11px;
            }
            
            .app-download {
                margin-left: 10px;
                flex-shrink: 0;
            }
            
            .update-item .download-btn {
                padding: 6px 8px;
                font-size: 15px;
                width: 60px;
                min-width: 60px;
            }
            
            .app-intro {
                display: none;
            }
        }