﻿/* ==========================================
   Laos Payment Developer
   关于我们SEO页面CSS
   PC + Mobile
========================================== */



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



html {
    scroll-behavior: smooth;
}



body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #020817;
    color: #fff;
    overflow-x: hidden;
}




p {
    color: #cbd5e1;
    line-height: 1.9;
}



a {
    text-decoration: none;
    color: #fff;
}







/* ===============================
科技背景
=============================== */


.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient( circle at 15% 20%, #164579, transparent 35% ), radial-gradient( circle at 80% 10%, #182f62, transparent 35% ), #020817;
}







/* ===============================
Header
=============================== */


.header {
    height: 80px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}




.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #00eaff;
}


    .logo span {
        color: white;
    }



.nav {
    display: flex;
    gap: 35px;
}



    .nav a {
        transition: .3s;
    }



        .nav a:hover {
            color: #00eaff;
        }

    /* ==========================
 当前导航选中状态
========================== */


    .nav a {
        position: relative;
        padding: 10px 18px;
        border-radius: 25px;
        transition: .35s;
    }



        /* 鼠标经过 */

        .nav a:hover {
            color: #00eaff;
            background: rgba(0,234,255,.08);
        }



        /* 当前页面 */

        .nav a.active {
            color: #00eaff;
            background: linear-gradient( 90deg, rgba(0,234,255,.18), rgba(37,99,235,.25) );
            border: 1px solid rgba(0,234,255,.45);
            box-shadow: 0 0 15px rgba(0,234,255,.35), inset 0 0 15px rgba(0,234,255,.15);
        }



            /* 底部发光线 */

            .nav a.active::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: 3px;
                width: 35px;
                height: 2px;
                transform: translateX(-50%);
                background: #00eaff;
                box-shadow: 0 0 10px #00eaff;
                border-radius: 10px;
            }


.menu-btn {
    display: none;
    font-size: 30px;
    color: #00eaff;
}








/* ===============================
Hero
=============================== */


.hero {
    min-height: 850px;
    padding: 160px 8% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient( 120deg, rgba(0,234,255,.08), transparent );
}



.hero-content {
    max-width: 720px;
}



    .hero-content h1 {
        font-size: 58px;
        line-height: 1.2;
        background: linear-gradient( 90deg, #00eaff, #8b5cf6 );
        -webkit-background-clip: text;
        color: transparent;
    }



    .hero-content h2 {
        font-size: 32px;
        margin: 25px 0;
    }



    .hero-content p {
        font-size: 18px;
    }




.btn {
    margin-top: 35px;
    padding: 15px 45px;
    border-radius: 50px;
    display: inline-flex;
    background: linear-gradient( 90deg, #00eaff, #2563eb );
    box-shadow: 0 0 40px rgba(0,234,255,.5);
    transition: .3s;
}



    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 60px rgba(0,234,255,.8);
    }









/* ===============================
技术展示
=============================== */


.tech-panel {
    width: 400px;
    height: 400px;
    position: relative;
}



.tech-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid #00eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 0 90px rgba(0,234,255,.8);
    animation: rotate 12s linear infinite;
}



@keyframes rotate {


    100% {
        transform: rotate(360deg);
    }
}



.floating-card {
    position: absolute;
    right: 0;
    bottom: 30px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(15px);
}









/* ===============================
公共区域
=============================== */


.section {
    padding: 100px 8%;
}



.dark {
    background: linear-gradient( 180deg, #020817, #071b38 );
}



.title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 55px;
    background: linear-gradient( 90deg, white, #00eaff );
    -webkit-background-clip: text;
    color: transparent;
}







/* ===============================
介绍模块
=============================== */


.about-box {
    max-width: 1000px;
    margin: auto;
    padding: 45px;
    border-radius: 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    font-size: 18px;
}





    .about-box p {
        margin-bottom: 25px;
    }









/* ===============================
Grid
=============================== */


.grid {
    display: grid;
    gap: 25px;
}



    .grid.three {
        grid-template-columns: repeat(3,1fr);
    }



    .grid.four {
        grid-template-columns: repeat(4,1fr);
    }









/* ===============================
卡片
=============================== */


.card {
    padding: 35px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    transition: .35s;
}



    .card h3 {
        color: #00eaff;
        margin-bottom: 15px;
    }



    .card:hover {
        transform: translateY(-10px);
        border-color: #00eaff;
        box-shadow: 0 0 35px rgba(0,234,255,.3);
    }







/* ===============================
生态能力
=============================== */


.ecosystem {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}



    .ecosystem div {
        padding: 40px;
        text-align: center;
        font-size: 22px;
        border-radius: 20px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        transition: .3s;
    }


        .ecosystem div:hover {
            transform: translateY(-8px);
            border-color: #00eaff;
        }








/* ===============================
技术能力
=============================== */


.tech-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}



    .tech-list div {
        padding: 35px;
        text-align: center;
        border-radius: 20px;
        background: rgba(255,255,255,.08);
        font-size: 20px;
    }








/* ===============================
研发流程架构
=============================== */


.architecture {
    max-width: 700px;
    margin: auto;
    padding: 35px;
    text-align: center;
    font-size: 22px;
    line-height: 1.8;
}



    .architecture div {
        padding: 18px;
        margin: 12px;
        border-radius: 15px;
        background: rgba(0,234,255,.08);
        border: 1px solid rgba(0,234,255,.3);
        transition: .3s;
    }



        .architecture div:hover {
            background: rgba(0,234,255,.18);
        }









/* ===============================
选择我们
=============================== */


.choose {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}



    .choose div {
        padding: 35px;
        text-align: center;
        border-radius: 20px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        transition: .3s;
    }



        .choose div:hover {
            transform: translateY(-8px);
            border-color: #00eaff;
        }








/* ===============================
合作流程
=============================== */


.process {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}



    .process span {
        padding: 20px 35px;
        border-radius: 20px;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.15);
    }









/* ===============================
FAQ
=============================== */


.faq {
    max-width: 900px;
    margin: auto;
}



    .faq h3 {
        padding: 20px;
        margin-top: 25px;
        border-radius: 15px;
        background: rgba(0,234,255,.08);
        color: #00eaff;
    }



    .faq p {
        padding: 20px;
    }









/* ===============================
友情链接
=============================== */


.friend-links {
    margin: 40px auto;
}



.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}



    .links a {
        padding: 10px 25px;
        border-radius: 30px;
        background: rgba(0,234,255,.08);
        border: 1px solid rgba(0,234,255,.3);
        transition: .3s;
    }



        .links a:hover {
            background: #00eaff;
            color: #001018;
        }









/* ===============================
Footer
=============================== */


.footer {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient( 120deg, #071b38, #020817 );
}



    .footer h2 {
        font-size: 40px;
    }









/* ===============================
Mobile
=============================== */


@media(max-width:900px) {


    .header {
        padding: 0 20px;
    }


    .menu-btn {
        display: block;
    }


    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #06152d;
        padding: 25px;
        flex-direction: column;
    }



        .nav.show {
            display: flex;
        }




    .hero {
        padding: 120px 25px 60px;
        flex-direction: column;
        text-align: center;
    }



    .hero-content h1 {
        font-size: 36px;
    }


    .hero-content h2 {
        font-size: 22px;
    }



    .tech-panel {
        margin-top: 60px;
        width: 230px;
        height: 230px;
    }



    .tech-circle {
        width: 180px;
        height: 180px;
        font-size: 22px;
    }



    .section {
        padding: 60px 20px;
    }



    .title {
        font-size: 30px;
    }



    .grid.three,
    .grid.four,
    .ecosystem,
    .tech-list,
    .choose {
        grid-template-columns: 1fr;
    }



    .about-box {
        padding: 25px;
    }



    .architecture {
        font-size: 18px;
    }



    .process {
        flex-direction: column;
    }



        .process span {
            width: 100%;
            text-align: center;
        }



    .footer h2 {
        font-size: 28px;
    }



    .btn {
        width: 100%;
    }
}
