* {
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: 'MyCustomFont', sans-serif;
    /* 使用自定义字体 */
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('../img/fonts/times.ttf') format('woff2'),
        /* 支持现代浏览器 */
        url('../img/fonts/times.ttf') format('woff');
    /* 支持旧版浏览器 */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'MyCustomFont', sans-serif;
    /* 使用自定义字体 */
}

:root {
    /* 主色调 */
    --primary-color: #e70012;
    --normall-color: #111E36;
    --orange-color: #FF8300
}

.main-bg {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.main-body {
    width: 100%;

    .top-banner {
        width: 100%;
        height: 5rem;
        background: url(../img/banner.png) no-repeat center 100%/ 100% 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        span {
            color: #fff;
            font-size: 0.24rem;
            margin-bottom: 0.24rem;
            display: block;
        }

        p {
            color: #fff;
            font-size: 0.48rem;
            font-weight: bold;
        }
    }

    .main-top {
        width: 100%;
        padding: 0.9rem 0.85rem 0.55rem 0.85rem;
        text-align: center;

        b {
            font-size: 0.48rem;
            color: #111;
            margin-bottom: 0.24rem;
            display: block;
        }

        p {
            font-size: 0.26rem;
            color: #333;
            line-height: 0.54rem;
        }
    }

    .main-mid {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 0.7rem;

        .top-two {
            flex-shrink: 0;
            margin: 0 auto;
            margin-bottom: 0.55rem;

            img {
                width: 2.8rem;
                height: 2.8rem;
                margin-right: 0.2rem;
                border: 1px solid #eee;
                box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.04);
            }
        }

        ul {
            width: 100%;

            li {
                width: 100%;
                height: 2.7rem;
                margin-bottom: 0.1rem;

                &:last-child {
                    margin-bottom: 0;
                }

                .mid-img {
                    width: 100%;
                    height: 2.7rem;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    .mid-words {
                        text-align: center;
                        padding: 0 0.85rem;

                        p {
                            color: #fff;
                            font-size: 0.6rem;
                            font-weight: bold;
                        }

                        .mid-line {
                            width: 0.4rem;
                            height: 1px;
                            background-color: #fff;
                            margin: 0.16rem auto;
                        }

                        span {
                            font-size: 0.28rem;
                            color: #fff;
                        }
                    }
                }
            }
        }
    }

    .main-bom {
        width: 100%;
        padding: 0 0.85rem;
        margin-bottom: 1rem;

        p {
            font-size: 0.26rem;
            color: #666;
            line-height: 0.54rem;
        }

    }
}

.top-list-placeholder {
    width: 100%;
    height: 0.8rem !important;
}