* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* ===== 漂浮金币容器 ===== */
#coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.coin {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ffd700, #ff9800);
    border-radius: 50%;
    opacity: 0.7;
    animation: float linear infinite;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
    }

    to {
        transform: translateY(-10vh) rotate(720deg);
    }
}

/* ===== 主容器 ===== */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* ===== Banner ===== */
.banner {
    border-radius: 20px;
    padding: 50px;
    background: linear-gradient(135deg, #00c6ff, #ff2e63);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;                  /* 水平排列 */
    align-items: center;            /* 垂直居中 */
    justify-content: space-between; /* 左右分布 */
    padding: 20px;                  /* 上下左右间距 */
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.meinv{
    width: 100%;
    max-height: 320px;
    border-radius: 20px;
    object-fit:contain;
    align-items: flex-end;
}

.logo{
    width: 80px;
    height: 80px; 
    object-fit: contain;
    align-items: flex-start;
    border-radius: 10px;
}

/* ===== 发光按钮 ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.glow-btn:hover {
    background: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffd700;
}

/* ===== 右侧卡片 ===== */
.side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    border-radius: 18px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    cursor: pointer;
    display: flex; 
    align-items: center; 
    padding: 10px; 
    gap: 10px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* ===== 业务咨询 ===== */
.business {
    margin-top: 40px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== APP区域 ===== */
.apps {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.app {
    border-radius: 20px;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    display: flex; 
    align-items: center; 
    padding: 10px; 
    gap: 10px;
}

.app:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ===== 底部 ===== */
.footer {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.footer button {
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.footer button:hover {
    background: #ff2e63;
    transform: scale(1.05);
}

.notice-box{
    display:flex;
    align-items:center;
}

.notice-box img{
    width:20px;
    margin-right:6px;
    flex-shrink:0;
}

.notice-box p{
    margin:0;
}

@media(max-width:768px){
    .notice-box{
        align-items:flex-start;
    }
}

.pay-box{
    display:flex;
    align-items:center;
    margin-top: 10px;
    gap:6px;
}

/* 图片自适应 */
.pay-box img{
    height:20px;
    width:auto;
    max-width:60%;
}

/* 手机端 */
@media(max-width:768px){
    .pay-box img{
        height:16px;
    }
}

/* ===== 手机适配 ===== */
@media(max-width: 768px) {

    .top {
        grid-template-columns: 1fr;
    }

    .banner {
        text-align: center;
    }

    .apps {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .banner {
        flex-direction: column-reverse;
        align-items: center;
    }
    .banner img {
        margin-top: 20px;
    }
}



.consult-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.consult-img{
    max-width:200px;
    max-height:200px;
    object-fit:cover;
}

@media (max-width:768px){

    .consult-box{
        flex-direction:column;   /* 改为上下排列 */
        text-align:start;
    }

    .consult-img{
        order:-1;               /* 图片移动到上面 */
        max-width:300px;
        max-height:300px;
        margin-bottom:15px;
    }

}

.reward-table{
    margin:40px 0;
    width:100%;
}

.table-title{
    font-size:18px;
    margin-bottom:15px;
    font-weight:bold;
}

/* 外层增加滚动 */
.reward-table{
    overflow-x:auto;
}

/* 表格最小宽度防止挤压 */
.reward-table table{
    width:100%;
    min-width:600px; /* 关键 */
    border-collapse:collapse;
    background:transparent;
     border-radius:12px;         /* 圆角 */
    overflow:hidden;            /* 裁切内容 */
}

.reward-table th,
.reward-table td{
   border:1px solid #4ebf5d;
    padding:12px;
    text-align:center;
    font-size:14px;
    white-space:nowrap; /* 不换行 */
}

.reward-table th{
    background:transparent;
    font-weight:bold;
}

.reward-table tbody tr:hover{
    background:#4ebf5d;
}

/* 手机字体稍微小一点 */
@media (max-width:768px){
    .reward-table th,
    .reward-table td{
        padding:10px;
        font-size:12px;
    }
}

.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

/* .card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
} */

.lang-btn{
    padding:6px 14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.6);
    background:rgba(0,0,0,0.4);
    color:#fff;
    cursor:pointer;
    transition:all .3s ease;
    backdrop-filter:blur(6px);
    font-size:14px;
}

.lang-btn:hover{
    background:linear-gradient(45deg,#ffcc00,#ff8800);
    color:#000;
    box-shadow:0 0 12px rgba(255,180,0,0.8);
    transform:translateY(-2px);
}

.lang-btn:active{
    transform:scale(0.95);
}

.lang-btn.active{
    background:linear-gradient(45deg,#00eaff,#007bff);
    border:none;
    box-shadow:0 0 12px rgba(0,200,255,0.8);
}