@charset "utf-8";
/* 免费cms模板 */
/* 精品与原创网站模板提供商，一站式建站 */
/* 免费模板下载：Www.mianfeicms.Com */
/* 网站建设公司：Www.gezhancn.Com */
/* QQ：1259880070  */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Microsoft YaHei", sans-serif;
            color: #1D2129;
            background: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		.ablogo{ height:50px}
        /* 导航 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(5px);
            z-index: 999;
            padding: 10px 0;
            transition: all 0.3s;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #165DFF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
        }

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            color: #165DFF;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav a {
            color: #555;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #165DFF;
        }

        .btn-download {
            background: #165DFF;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s;
        }

        .btn-download:hover {
            background: #0047CC;
        }

        #menuBtn {
            display: none;
            font-size: 22px;
            background: none;
            border: none;
            cursor: pointer;
        }

        #mobileMenu {
            display: none;
            background: #fff;
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        #mobileMenu a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        /* Banner */
        #home {
            padding: 120px 0 60px;
            background: linear-gradient(to bottom right, #F2F3F5, #fff);
        }

        .banner {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .banner-left {
            flex: 1;
        }

        .banner-right {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .banner h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .banner h1 span {
            color: #165DFF;
        }

        .banner p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .banner-btns {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .btn-android {
            background: linear-gradient(135deg, #165DFF, #36CFC9);
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
        }

        .btn-ios {
            background: #1D2129;
            color: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
        }

        .app-show {
            position: relative;
            width: 280px;
        }

        .app-show img {
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .tag {
            position: absolute;
            top: -15px;
            right: -15px;
            background: #36CFC9;
            color: #fff;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: bold;
        }

        .info-bar {
            display: flex;
            gap: 25px;
            margin-top: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .info-item i {
            color: #FFD000;
        }

        /* 通用标题 */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 价格 */
        #price {
            padding: 80px 0;
            background: #fff;
        }

        .price-wrap {
            display: flex;
            gap: 25px;
       
            margin: 0 auto;
        }

        .price-card {
            flex: 1;
            background: #F7F8FA;
            border-radius: 20px;
            padding: 35px 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(22,93,255,0.1);
        }

        .price-card.highlight {
            background: #165DFF;
            color: #fff;
            position: relative;
        }

        .price-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #FFD000;
            color: #222;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .price-card h3 {
            text-align: center;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .price {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 25px;
        }

        .price span {
            font-size: 14px;
            color: #999;
            font-weight: normal;
        }

        .highlight .price span {
            color: rgba(255,255,255,0.7);
        }

        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-features li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 10px;
        }

        .price-features i {
            color: #00C853;
            margin-top: 4px;
        }

        .price-features .disabled {
            color: #999;
        }

        .price-features .disabled i {
            color: #FF5252;
        }

        .price-btn {
            display: block;
            text-align: center;
            padding: 10px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .price-card:not(.highlight) .price-btn {
            border: 2px solid #165DFF;
            color: #165DFF;
        }

        .price-card:not(.highlight) .price-btn:hover {
            background: #165DFF;
            color: #fff;
        }

        .highlight .price-btn {
            background: #fff;
            color: #165DFF;
        }

        /* 优势 */
        #advantage {
            padding: 80px 0;
            background: #F7F8FA;
        }

        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .adv-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }

        .adv-card:hover {
            transform: translateY(-5px);
        }

        .adv-icon {
            width: 60px;
            height: 60px;
            background: rgba(22,93,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .adv-icon i {
            font-size: 22px;
            color: #165DFF;
        }

        .adv-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .adv-card p {
            color: #666;
            font-size: 14px;
        }

        .adv-extra {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 20px;
            max-width: 800px;
            margin: 30px auto 0;
        }

        .adv-extra-item {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .adv-extra-icon {
            width: 40px;
            height: 40px;
            background: rgba(22,93,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .adv-extra-icon i {
            color: #165DFF;
        }

        /* ======================
           新版酷炫APP展示板块
        ======================= */
        #gallery {
            padding: 100px 0;
            background: linear-gradient(145deg, #0F172A, #1E293B);
            color: white;
            position: relative;
            overflow: hidden;
        }

        #gallery .section-title h2 {
            color: #fff;
        }

        #gallery .section-title p {
            color: rgba(255,255,255,0.6);
        }

        .showcase-wrapper {
            
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .showcase {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 580px;
        }

        .phone-mock {
            position: relative;
            width: 280px;
            height: 560px;
            background: #111;
            border-radius: 40px;
            padding: 15px;
            box-shadow: 0 0 60px rgba(22,93,255,0.35), 0 40px 30px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .screen-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .screen-slide.active {
            opacity: 1;
        }

        .phone-mock::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 25px;
            background: rgba(0,0,0,0.3);
            border-radius: 40px 40px 0 0;
            z-index: 1;
        }

        .showcase-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .showcase-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            cursor: pointer;
            transition: 0.3s;
        }

        .showcase-dot.active {
            background: #165DFF;
            transform: scale(1.2);
        }

        .bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(22,93,255,0.15), transparent 60%);
            z-index: 1;
        }

        /* 联系 */
        #contact {
            padding: 80px 0;
            background: #F7F8FA;
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            
            margin: 0 auto;
        }

        .contact-item {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: rgba(22,93,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon i {
            color: #165DFF;
            font-size: 18px;
        }

        .contact-form {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: #555;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
        }

        .form-control:focus {
            border-color: #165DFF;
        }

        textarea.form-control {
            resize: none;
            min-height: 100px;
        }

        .submit-btn {
            background: #165DFF;
            color: #fff;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #0047CC;
        }

        /* 底部 */
        footer {
            background: #1D2129;
            color: #fff;
            padding: 40px 0 25px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #165DFF;
            font-weight: bold;
        }

        /* 微信悬浮二维码容器 */
                .social {
                    position: relative;
                }
                .wx-item {
                    position: relative;
                    display: inline-block;
                    cursor: pointer;
                }
                .wx-icon {
                    font-size: 20px;
                    color: rgba(255,255,255,0.7);
                    transition: color .3s;
                }
                .wx-icon:hover {
                    color:#fff;
                }
                /* 二维码默认隐藏 */
                .wx-qrcode {
                    position: absolute;
                    bottom: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    width:140px;
                    height:140px;
                    background:#fff;
                    padding:8px;
                    border-radius:8px;
                    display:none;
                    margin-bottom:12px;
                    box-shadow:0 5px 20px rgba(0,0,0,0.25);
                }
                .wx-qrcode img{
                    width:100%;
                    height:100%;
                    object-fit:cover;
                }
                /* 悬浮弹出 */
                .wx-item:hover .wx-qrcode{
                    display:block;
                    animation:fadeUp .3s ease;
                }
                @keyframes fadeUp {
                    from{opacity:0;transform:translateX(-50%) translateY(8px);}
                    to{opacity:1;transform:translateX(-50%) translateY(0);}
                }

        .footer-bottom {
            
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 13px; text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .banner {
                flex-direction: column;
                text-align: center;
            }

            .banner-btns {
                justify-content: center;
            }

            .info-bar {
                justify-content: center;
            }

            .price-wrap {
                flex-direction: column;
            }

            .adv-grid {
                grid-template-columns: repeat(2,1fr);
            }

            .contact-wrap {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            #menuBtn {
                display: block;
            }

            .adv-extra {
                grid-template-columns: 1fr;
            }

            .footer-top, .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .phone-mock {
                width: 240px;
                height: 480px;
            }
        }