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

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background: radial-gradient(
        circle at center,
        #1e1e3f 0%,
        #0b0b15 100%
    );

    color: #fff;
}

.main-content {
    flex: 1 0 auto;
}


/* ==================== 基础链接 ==================== */

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}


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

.header-wrap {
    background: rgba(0, 0, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}


/* ==================== Container ==================== */

.container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    margin-bottom: 20px;

    padding: 0 15px;
}


/* ==================== 咨询按钮 ==================== */

.zixun {
    padding: 8px 25px;

    border: 2px solid #570dff;
    border-radius: 25px;

    font-weight: bold;
    font-size: 1.2rem;

    animation: lmZixunPulse 1s steps(1, end) infinite;
}

@keyframes lmZixunPulse {

    0%,
    49% {
        color: inherit;
        border-color: #570dff;
        text-shadow: none;
    }

    50%,
    100% {
        color: #ff3e3e;
        border-color: #ff3e3e;
        text-shadow: 0 0 10px rgba(255, 62, 62, 0.5);
    }
}


/* ==================== 联系区域 ==================== */

.lianxi {
    padding: 20px 0;
}

.center {
    background: rgba(255, 255, 255, 0);

    border: 1px solid #4a2bb3;
    border-radius: 12px;

    padding: 15px;

    text-align: center;

    overflow: hidden;
}


/* ==================== VIP ==================== */

.vip {
    display: block;

    font-weight: bold;
    font-size: 1.1rem;

    margin-bottom: 5px;
}

.vip p {
    background: linear-gradient(
        90deg,
        #ffeb00,
        #00e4ff,
        #ff00ff,
        #ffeb00
    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: textGradient 3s linear infinite;
}

@keyframes textGradient {
    to {
        background-position: 200% center;
    }
}


/* ==================== 波浪文字 ==================== */

.wave-text-container {
    padding: 10px 0;
    text-align: center;
}

.wave-text {
    display: inline-block;

    font-size: 1.2rem;
    font-weight: bold;

    background: linear-gradient(
        to right,
        #00e4ff 0%,
        #ffffff 25%,
        #00e4ff 50%,
        #ffffff 75%,
        #00e4ff 100%
    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: waveMove 3s linear infinite;
}

.wave-text span,
.wave-text a {
    margin: 0 10px;
}

@keyframes waveMove {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}


/* ==================== 系列分类 ==================== */

.xilie2 {
    display: grid;

    grid-template-columns: repeat(
        auto-fill,
        minmax(140px, 1fr)
    );

    gap: 12px;

    margin-bottom: 25px;
}


/* ==================== 分类按钮 ==================== */

.nav_box {
    display: block;

    padding: 12px 0;

    text-align: center;
    font-weight: bold;

    background: rgba(255, 255, 255, 0);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;

    color: #ccc;
}

.nav_box.current {
    background: linear-gradient(
        180deg,
        #7b42ff,
        #4306d8
    );

    color: #fff;

    border-color: #8a57ff;

    box-shadow: 0 4px 15px rgba(87, 13, 255, 0.4);
}


/* ==================== 平台列表 ==================== */

.pingtai {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==================== 平台卡片 ==================== */

.panel {
    display: flex;
    flex-direction: column;

    height: 100%;

    padding: 20px;

    background: rgba(255, 255, 255, 0);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.lm-card {
    padding: 10px;
}

.lm-card-body {
    border-radius: 10px !important;
    padding-top: 5px;
}


/* ==================== 平台 Logo ==================== */

.iconpal {
    display: block;

    width: 100%;
    height: 80px;

    margin-bottom: 15px;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.lm-icon-tall {
    height: 90px;
}

.lm-header-logo {
    width: auto;
    height: 70px;
}


/* ==================== 平台区域 ==================== */

.lm-xilie {
    width: 100%;
    overflow: hidden;
}


/* ==================== 标题 ==================== */

.lm-title-lg {
    color: #ffeb00;
    font-size: 1.5rem !important;
}

.lm-title-lg a {
    color: #ffeb00;
    font-size: 1.5rem !important;
}

.text-big {
    display: block;

    color: #ffeb00;

    font-size: 1.3rem;

    text-align: center;

    margin-bottom: 15px;
}


/* ==================== 操作按钮 ==================== */

.lm-action-row {
    width: 100%;
}

.lm-action-half {
    float: left;

    width: 48%;
    height: 50px;

    font-size: 1.5rem !important;
}

.lm-action-half + .lm-action-half {
    margin-left: 4%;
}

.lm-action-full {
    width: 100%;
    height: 50px;

    font-size: 1.5rem !important;
}


/* ==================== 按钮组 789==================== */

.btn-group {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: auto;
}

.button-block {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 45px;

    border-radius: 6px;

    font-weight: bold;
    font-size: 1rem;
}


/* ==================== 按钮颜色 ==================== */

.bg-green {
    background: linear-gradient(
        180deg,
        rgba(1, 241, 108, 0.7),
        rgba(10, 225, 55, 0.7)
    );
}

.bg-blue {
    background: linear-gradient(
        180deg,
        rgb(0 207 232 / 70%),
        rgb(1 123 255 / 70%)
    );
}

.bg-main {
    background: linear-gradient(
        180deg,
        #7b42ff,
        #570dff
    );

    grid-column: span 2;
}


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

.site-footer {
    flex-shrink: 0;

    width: 100%;

    padding: 30px 0;

    background: rgba(0, 0, 255, 0.05);

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: left;
}

.site-footer span {
    display: block;

    color: rgba(255, 255, 255, 0.8);

    font-size: 14px;
}


/* ==================== 平板 ==================== */

@media (max-width: 992px) {

    .pingtai {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==================== 手机 ==================== */

@media (max-width: 768px) {

    .mobile-hide {
        display: none !important;
    }

    .jiange {
        height: 10px;
    }

    .container {
        padding-top: 5px;
    }

    .yyjhzh {
        display: none !important;
    }

    .x12 label {
        display: none !important;
    }

    .site-footer {
        margin-top: 20px;
    }

    .text-big {
        font-size: 1.2rem;
    }

    .xilie2 {
        gap: 17px;
    }

    .header-content {
        height: 80px;
    }

    .header-wrap img {
        width: 40%;
    }

    .header-wrap a {
        width: 28%;

        font-size: 1.1rem;

        text-align: center;
    }

}


/* ==================== 小屏手机 ==================== */

@media (max-width: 600px) {

    .xilie2 {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }

}