﻿/* =====================================
   老挝支付资讯新闻页 CSS
   Laos Payment News
   PC + Mobile Responsive
===================================== */


/* =========================
 全局
========================= */

* {
    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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient( circle at top, #174477, #020817 70% );
}





/* =========================
 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: #fff;
    }





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



    .nav a {
        font-size: 16px;
        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新闻Banner
========================= */


.hero {
    min-height: 820px;
    padding: 160px 8% 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.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 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    padding: 15px 45px;
    border-radius: 40px;
    background: linear-gradient( 90deg, #00eaff, #2563eb );
    box-shadow: 0 0 35px rgba(0,234,255,.5);
}









/* =========================
 新闻科技图标
========================= */


.news-tech {
    width: 380px;
    height: 380px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



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



@keyframes rotate {


    from {
        transform: rotate(0deg);
    }


    to {
        transform: rotate(360deg);
    }
}




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







/* =========================
 通用区域
========================= */


.section {
    padding: 90px 8%;
}



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





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









/* =========================
 新闻分类
========================= */


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



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



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







/* =========================
 SEO资讯介绍区域
========================= */


.news-intro {
    max-width: 1000px;
    margin: auto;
    padding: 50px;
    border-radius: 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 18px;
}







/* =========================
 文章列表
========================= */


.article-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}




.article-card {
    padding: 35px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    transition: .4s;
}





    .article-card:hover {
        transform: translateY(-12px);
        border-color: #00eaff;
        box-shadow: 0 0 40px rgba(0,234,255,.25);
    }




    .article-card h3 {
        font-size: 22px;
        line-height: 1.6;
    }





    .article-card a {
        margin-top: 20px;
        color: #00eaff;
    }







/* =========================
 趋势模块
========================= */


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




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



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








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


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



    .faq h3 {
        margin-top: 35px;
        font-size: 20px;
        color: #00eaff;
    }




    .faq p {
        margin-top: 10px;
    }







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


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



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








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


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



    .friend-links h3 {
        color: #00eaff;
        margin-bottom: 20px;
    }



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



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



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








/* =========================
 手机适配
========================= */


@media(max-width:900px) {



    .header {
        height: 70px;
        padding: 0 20px;
    }



    .menu-btn {
        display: block;
    }



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



        .nav.show {
            display: flex;
        }




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



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



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



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





    .news-tech {
        margin-top: 60px;
        width: 240px;
        height: 240px;
    }




    .circle {
        width: 190px;
        height: 190px;
        font-size: 25px;
    }



    .section {
        padding: 60px 20px;
    }



    .title {
        font-size: 30px;
    }



    .category,
    .article-grid,
    .trend {
        grid-template-columns: 1fr;
    }




    .news-intro {
        padding: 25px;
        font-size: 16px;
    }



    .article-card {
        padding: 25px;
        min-height: auto;
    }



    .btn {
        width: 100%;
    }



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





@media(max-width:375px) {


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


    .title {
        font-size: 26px;
    }
}
