
body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
    min-height: 100%;
    max-width: 450px;
    margin: 0 auto;
}

div {
    box-sizing: border-box;
}

.header {
    background: #3a2920;

    text-align: center;
    position: relative;
    /* background: url(./image/head-bg.png) no-repeat center center; */
    background-size: 100% 100%;
    height: 145px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.header .bg-img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.header-logo img {
    width: 72.5px;
    height: 72.5px;
}

.header-title {
    font-size: 32px;
    color: #ffd86a;
    font-weight: bold;
    letter-spacing: 2px;
}

.download-btn {
    background: linear-gradient(180deg, #FFD564 0%, #E2A148 100%);

    color: #3a2920;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.box {
    background: #fff;
    margin-top: -20px;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 9;
    padding: 15px;
}

.banner {

    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.banner img {
    width: 100%;
    display: block;
}

.entry-list {}

.entry-item {
    background: #EDF6FF;
    box-shadow: inset 0px 2px 5px 0px #CDDDEE;
    border-radius: 12px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.01em;
    color: #392822;
}

.entry-link {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: -0.01em;

    font-variation-settings: "opsz" auto;
    color: #705041;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.entry-link::after {
    content: "";
    background: url(../image/go.png) no-repeat center center;
    background-size: 100% 100%;
    width: 12px;
    height: 12px;
}

.download-section {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    gap: 16px;
}

.download-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.download-card.android {
    background: #3bb04a;
    color: #fff;
}

.download-card.ios {
    background: #3b7bfa;
    color: #fff;
}

.download-card .icon {
    width: 33.7px;
    height: 39.8px;
    font-size: 36px;
    margin-bottom: 8px;
    margin-right: 10px;
}

.download-card .icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.download-card .ver {
    font-size: 14px;
    margin-top: 4px;
}

.download-card-content {
    font-size: 16px;
    font-weight: 500;

}

.desc {
    text-align: center;
    margin: 20px 0 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.01em;

    color: #392822;
}

.tabs {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 18px;
}

.tab {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #E7E7E8;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" auto;
    color: #999999;
}

.tab.active {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.01em;
    color: #705041;
    border: 1px solid #705041;
}

a{
    text-decoration: none;
}
.icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0;
    /* justify-content: space-between; */
    margin: 24px auto 0 auto;
}

.icon-item {
    width: 25%;
    text-align: center;
    margin-bottom: 18px;
}

.icon-item img {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
}

.icon-item span {
    display: block;
    font-size: 16px;
    color: #444;
}

@media (max-width: 600px) {
    .header-title {
        font-size: 22px;
    }

    .download-btn {
        font-size: 15px;
        padding: 7px 16px;
    }

    .entry-item {
        font-size: 16px;
        padding: 12px 10px;
    }

    .download-section {
        gap: 10px;
    }

    .download-card {
        padding: 12px 0;

    }


    .tabs {
        gap: 10px;
    }



    .icon-item img {
        width: 32px;
        height: 32px;
    }

    .icon-item span {
        font-size: 13px;
    }
}

.line {
    margin-top: 25px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    height: 100%;

}


ul { list-style: none;padding: 0;}
.downbar ul { display: flex; flex-wrap: wrap; justify-content: space-between;}
.downbar ul li { width: calc(50% - 4px);}

.downbar ul li a { display: flex; align-items: center; justify-content: center; padding: 15px 0; color: #fff; border-radius: 10px; background: #07c160;}
.downbar ul li a img { width: 1.5em; margin-right: 5px; border: solid 2px #fff; border-radius: 5px;}
a { text-decoration: none; }