@charset "utf-8";
*{margin:0;padding:0;outline:0;font-family:'UKIJ Tor'}
@font-face {
				font-family: UKIJ Tor;
				src: url('/fonts/UKIJTor.ttf');
			}
        /* 基础样式 */
        :root {
            --primary: #6C63FF;
            --primary-dark: #554fd8;
            --secondary: #FF6584;
            --accent: #36D1DC;
            --dark: #2D3748;
            --light: #F7FAFC;
            --gray: #A0AEC0;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 16px;
            --card-radius: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            font-family: 'UKIJ Tor', UKIJ Tor;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            /*background-color: #f0f2f5; /* 灰色背景 */
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: UKIJ Tor;
        }

        .container {
            width: 100%;
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 20px 0;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.8;
            margin-bottom: 1rem;
            direction: rtl;
        }

        h1 {
            font-size: 1.5rem;
        }

        h2 {
            /*font-size: 2rem;*/
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
         h5 {
            font-size: 0.95rem;
            text-align: right;
            direction: rtl;
        }

        p {
            /*margin-bottom: 1.5rem;*/
            font-size: 1.1rem;
            color: rgba(0,0,0,.5);
        }


  pp {
            /*margin-bottom: 1.5rem;*/
            font-size: 1.1rem;
           
        }
        
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--light);
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 25px;
            left: 5%;
            width: 90%;
            direction: rtl;
            border-radius: 15px;
            background: rgba(227, 223, 223, 0.6);
            /*backdrop-filter: blur(10px);*/
            /*padding: 5px 0;*/
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .navbar.scrolled {
            /*padding: 5px 0;*/
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

 .logo img{
           width: 150px;
           height: 40px;
           margin-right: -10px;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

               .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            /*font-size: 1.5rem;*/
            color: var(--dark);
            cursor: pointer;
        }
 .mobile-menu-btn img{
    width: 120px;
    height: 40px;
    margin-top: 8px;
    margin-left: -10px;
 }
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .nav-links a {
            display: block;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 12px 0;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover:after {
            width: 40px;
        }

        /* 幻灯片区域 */
        .slider {
            position: relative;
            /*width: 100%;*/
            height: 35vh;
            min-height: 200px;
            overflow: hidden;
            border-radius:10px;
            margin: 10px 10px 10px 10px;
        }

        .slides {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .slide {
            width: 25%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 8s ease;
        }

        .slide:hover .slide-image {
            transform: scale(1.05);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, rgba(108, 99, 255, 0.7), rgba(255, 101, 132, 0.5));*/
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, #e70dc2, #ff0505);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide-content p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .slider-nav {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .slider-dot:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 4s linear;
        }

        .slider-dot.active:after {
            left: 0;
        }

        .slider-dot.active {
            transform: scale(1.3);
        }

        .slider-arrow {
           /* position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 4;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);*/
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        /* 英雄区域 */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(54, 209, 220, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 100%;
            text-align: center;
            z-index: 2;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            margin-bottom: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            margin: 50px auto 0;
            z-index: 1;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
            margin: 10px;
            padding: 15px;
            min-width: 100px;
        }

        .stat h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        /* 品牌区域 */
        .brands {
            background: white;
            text-align: center;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /*gap: 10px; /* 修改为10px间距 */
            /*margin-top: 30px;*/
            background:#EFEFEF;
            border-radius: 20px;
            padding: 5px;
            direction: rtl;
        }

        .brand-card {
            background: white;
            padding: 5px 5px;
            border-radius: var(--card-radius);
            /*box-shadow: var(--shadow);*/
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            /* 添加灰色边框和间距 */
            border: 1px solid #E1E1E1;
            margin: 5px; /* 边框与卡片内容距离10px */
        }

        .brand-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /*background: var(--gradient);*/
        }

        .brand-card:hover {
            /* 移除放大效果 */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .brand-icon {
            width: 100%;
            height: 72px;
            max-width: 160px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: white;
            /*background: var(--gradient);*/
            transition: all 0.3s ease;
        }
        
        .brand-icon img{
            width: 100%;
            height: 100%;
        }

        .brand-card:hover .brand-icon {
            transform: rotateY(180deg);
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: rgba(0,0,0,.5);
        }


 .brand-name a{
     color: white;
 }
        .brand-desc {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* 价格标签 */
        .price-tag {
            background: #F8F8F8;
            border: 2px solid #F3F3F3;
            border-radius: 15px;
            padding: 5px 5px;
            margin-top: auto;
            text-align: center;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .price-tag:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 71, 87, 0.1), transparent);
            transform: translateX(-100%);
        }

        .brand-card:hover .price-tag:before {
            animation: shine 1.5s ease;
        }

        @keyframes shine {
            100% {
                transform: translateX(100%);
            }
        }

        .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ff4757;
            margin-bottom: 5px;
        }

        .price-desc {
            font-size: 0.95rem;
            color: #ACACAC;
        }

        /* 功能区域 */
        .features {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px; /* 修改为10px间距 */
        }

        .feature-card {
            background: white;
            padding: 15px 10px;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            /* 添加灰色边框和间距 */
            border: 1px solid #e2e8f0;
            margin: 10px; /* 边框与卡片内容距离10px */
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .feature-card:hover:before {
            opacity: 0.05;
        }

        .feature-card:hover {
            /* 移除放大效果 */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
            background: var(--gradient);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
            direction: rtl;
        }

        /* 下载区域 */
        .download {
            background: var(--gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .download:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"></path></svg>');
            background-size: cover;
        }

        .download h2, .download p {
            color: white;
        }

        .download h2:after {
            background: white;
        }

        .download-content {
            max-width: 100%;
            margin: 0 auto;
        }

        .qr-container {
            display: flex;
            justify-content: center;
            gap: 10px; /* 修改为10px间距 */
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .qr-code {
            background: white;
            padding: 20px;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            text-align: center;
            color: var(--dark);
            transition: all 0.3s ease;
            /* 添加灰色边框和间距 */
            border: 1px solid #e2e8f0;
            margin: 10px; /* 边框与卡片内容距离10px */
        }

        .qr-code:hover {
            /* 移除放大效果 */
        }

        .qr-code img {
            width: 150px;
            height: 150px;
            margin-bottom: 15px;
        }

        /* 产品标题简介样式 */
        .section-intro {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 5px 10px;
            margin: 0 auto 20px;
            max-width: 800px;
            text-align: center;
            border: 1px solid #e2e8f0;
            align-self: flex-end;
        }

        /* 页脚 */
        .footer {
            background: var(--dark);
            color: white;
            padding: 30px 0 30px;
            direction: rtl;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #A0AEC0;
            font-size: 0.9rem;
        }
        .footer-bottom p{
             color: #fff;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            direction: ltr;
            line-height: 30px;
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* 浮动动画 */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        /* 响应式设计 */
        @media (min-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .slide-content h1 {
                font-size: 4rem;
            }

            .slide-content p {
                font-size: 1.6rem;
            }
        }

        @media (min-width: 992px) {
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }

            .slide-content h1 {
                font-size: 4.5rem;
            }
        }

        /* 加载动画 */
        .loading-bar {
            height: 4px;
            width: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            background-size: 200% 100%;
            animation: loading 2s infinite linear;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        /* 粒子背景效果 */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }