.leader-board {
    background-color: #1b1b1b;
}

.leader-board-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 44px 16px;
}

    .leader-board-wrap .title {
        color: #ffffff;
        font-size: 24px;
        font-weight: 700;
        line-height: 36px;
        text-align: center;
        word-break: normal;
        width: 310px;
    }

    .leader-board-wrap .tab-content {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 38px;
        box-sizing: border-box;
        border-radius: 24px;
        background: #ffffff;
        width: 280px;
        height: 28px;
    }

        .leader-board-wrap .tab-content .board-text {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 12;
            font-size: 12px;
            font-weight: 700;
            line-height: 14px;
            cursor: pointer;
        }

        .leader-board-wrap .tab-content .active-tab {
            /* 矩形 136 */
            position: absolute;
            width: 50%;
            height: 24px;
            border-radius: 20px;
            left: 3px;
            background: #e6ff00;
            z-index: 11;
        }

    .leader-board-wrap .board-content {
        width: 100%;
        margin-top: 13px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

        .leader-board-wrap .board-content .shop-item {
            display: flex;
            align-items: center;
            padding: 0 10px 0 20px;
            width: 100%;
            height: 72px;
            border-radius: 8px;
            color: #1b1b1b;
            background: #ffffff;
        }

            .leader-board-wrap .board-content .shop-item .index {
                font-size: 18px;
                font-weight: 700;
                line-height: 25px;
                width: 50px;
            }

            .leader-board-wrap .board-content .shop-item .shop-data {
                display: flex;
                align-items: center;
            }

                .leader-board-wrap .board-content .shop-item .shop-data .logo {
                    border-radius: 50%;
                    width: 42px;
                    height: 42px;
                    background: #dadada;
                    margin-right: 10px;
                    overflow: hidden;
                }

                    .leader-board-wrap .board-content .shop-item .shop-data .logo img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }

                .leader-board-wrap .board-content .shop-item .shop-data .data-source .name,
                .leader-board-wrap .board-content .shop-item .shop-data .data-source .desc {
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    width: 206px;
                }

                .leader-board-wrap .board-content .shop-item .shop-data .data-source .name {
                    font-size: 18px;
                }

                .leader-board-wrap .board-content .shop-item .shop-data .data-source .desc {
                    font-size: 14px;
                }

            .leader-board-wrap .board-content .shop-item .entry-arrow {
                margin-left: auto;
                margin-right: 0;
            }

                .leader-board-wrap .board-content .shop-item .entry-arrow .entry-btn {
                    width: 84px;
                    height: 42px;
                    box-sizing: border-box;
                    border: 1px solid #ffffff;
                    border-radius: 20px;
                    color: #1b1b1b;
                    font-size: 24px;
                    font-weight: 700;
                    line-height: 41px;
                    text-align: center;
                    background: #e6ff00;
                    cursor: pointer;
                    display: none;
                }

@media screen and (min-width: 672px) {
    .leader-board {
        padding-top: 100px;
    }

    .leader-board-wrap .title {
        width: 640px;
        font-size: 64px;
        font-weight: 700;
        line-height: 80px;
    }

    .leader-board-wrap .tab-content {
        margin-top: 60px;
        width: 480px;
        height: 48px;
    }

        .leader-board-wrap .tab-content .board-text {
            font-size: 20px;
            font-weight: 700;
        }

        .leader-board-wrap .tab-content .active-tab {
            height: 40px;
        }

    .leader-board-wrap .board-content {
        gap: 12px;
        margin-top: 28px;
    }

        .leader-board-wrap .board-content .shop-item {
            width: 640px;
            height: 140px;
            padding: 0 30px 0 40px;
        }

            .leader-board-wrap .board-content .shop-item .index {
                font-size: 28px;
                font-weight: 700;
                width: 50px;
            }

            .leader-board-wrap .board-content .shop-item .shop-data .logo {
                width: 80px;
                height: 80px;
                margin-right: 16px;
            }

            .leader-board-wrap .board-content .shop-item .shop-data .data-source .name,
            .leader-board-wrap .board-content .shop-item .shop-data .data-source .desc {
                width: 299px;
            }

            .leader-board-wrap .board-content .shop-item .shop-data .data-source .name {
                font-size: 32px;
            }

            .leader-board-wrap .board-content .shop-item .shop-data .data-source .desc {
                font-size: 18px;
            }
}

@media screen and (max-width: 375px) {
    .leader-board {
        width: 375px;
    }
}
