body, html {
    margin: 0;
    padding: 0;
    background: rgb(26,1,2);
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}
.main-bg {
    min-height: 100vh;
    background: rgb(26,1,2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header {
    width: 100vw;
    max-width: 576px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px  6px 12px 16px;
    box-sizing: border-box;
    background: #161213;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: contain;
}
.header-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.header-right .download-btn {
    display: flex;
    align-items: center;
    /* background: linear-gradient(90deg, #ffe082, #ffb300); */
    color: #3d2200;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.download-icon{margin-top: 8px;width: 80%;float: right;}
#scollpic {
    background: url(/images/img2.jpg) no-repeat center center;
    min-height:200px;
    background-size:cover;
    overflow: hidden;
    position: relative;
}
.scroll-imgs {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
    align-items: center;
    padding-top: 5vh;
}
.scroll-imgs img {
    height: 110px;
    width: auto;
    margin-right: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background: #fff;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.swiper-section {
    background: url(images/sbg.jpg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    max-width: 576px;
    margin: 0 auto 10px;
    box-sizing: border-box;
    padding:0 25px;
}
.mySwiper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.mySwiper img {
    width: 100%;
    display: block;
}
.static-img-section {
    width: 100vw;
    max-width: 576px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.static-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}
@media (max-width: 600px) {
    .header, .swiper-section, .static-img-section {
        max-width: 100vw;
        padding-left: 10px;
        padding-right: 10px;
    }
    .main-bg {
        align-items: stretch;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #1e90ff;
    padding: 16px 0;
    display: inline-block;
}
.nav {
    float: right;
    margin-top: 24px;
}
.nav-link {
    color: #222;
    text-decoration: none;
    margin-left: 32px;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
    color: #1e90ff;
}
.banner {
    margin-top: 0;
}
.banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}
.download-section {
    text-align: center;
    margin: 48px 0;
}
.download-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.download-btn:hover {
    background: linear-gradient(90deg, #00c6ff, #1e90ff);
}
.footer {
    background: #fff;
    text-align: center;
    padding: 24px 0;
    color: #888;
    font-size: 1rem;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
    .logo {
        font-size: 1.5rem;
        padding: 12px 0;
    }
    .nav {
        float: none;
        text-align: right;
        margin-top: 0;
    }
    .nav-link {
        margin-left: 16px;
        font-size: 1rem;
    }
    .banner img {
        height: 180px;
    }
    .download-section {
        margin: 32px 0;
    }
    .download-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .footer {
        padding: 16px 0;
        font-size: 0.95rem;
    }
} 


#btinfo{bottom:8%;width: 86%;padding: 10px 0;}
#btinfo p{color:#fff;margin: 0 auto;text-align: center;}

/* 中间跳转按钮 */
.jump-btn-section {
    width: 100vw;
    max-width: 576px;
    margin: 16px auto;
    padding: 0 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jump-btn {
    display: block;
    width: 100%;
    max-width: 420px;
    padding: 16px 24px;
    border-radius: 16px;
    border: 3px solid #b86a00;
    background: linear-gradient(180deg, #ffe566 0%, #ffc820 35%, #f5a800 70%, #e89000 100%);
    box-shadow:
        0 6px 0 #a05800,
        0 8px 20px rgba(0, 0, 0, 0.45),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -3px 6px rgba(180, 80, 0, 0.3);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.jump-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 13px 13px 50% 50%;
    pointer-events: none;
}
.jump-btn::after {
    content: '♠';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(180, 100, 0, 0.15);
    pointer-events: none;
    line-height: 1;
}
.jump-btn-text {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-shadow:
        -2px -2px 0 #7a3a00,
        2px -2px 0 #7a3a00,
        -2px 2px 0 #7a3a00,
        2px 2px 0 #7a3a00,
        0 3px 6px rgba(0, 0, 0, 0.4);
}
.jump-btn:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #a05800,
        0 4px 12px rgba(0, 0, 0, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(180, 80, 0, 0.3);
}
@media (max-width: 600px) {
    .jump-btn-section {
        padding: 0 16px;
    }
    .jump-btn-text {
        font-size: 1.15rem;
    }
}