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

html,
body,
.pc,
.mobile {
    width: 100%;
    height: 100%;
}

a {
    color: #ffffff;
    text-decoration: none;
}

html {
    font-size: 37.5px;
}

.mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}

.mobile .foot_bg {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.head {
    width: 100%;
    height: 1.2rem;
    padding: 0 .2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head .logo_img {
    height: .8rem;
}

.head .head_right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .25rem;
}

.head .head_right img {
    width: .6rem;
    height: .6rem;
}

.main {
    width: 100%;
    flex: 1;
    overflow-y: auto;
}

.main::-webkit-scrollbar {
    display: none;
}

.mobile_swiper {
    height: 6rem;
}

.mobile_swiper .swiper-slide {
    width: 5.86rem;
}

.mobile_swiper .swiper-slide-prev,
.mobile_swiper .swiper-slide-next {
    display: flex;
    align-items: center;
}

.mobile_swiper .swiper-slide-prev {
    justify-content: flex-end;
}

.mobile_swiper .swiper-slide-next {
    justify-content: flex-start;
}

.mobile_swiper .swiper-slide-prev img,
.mobile_swiper .swiper-slide-next img {
    width: 80%;
    height: 80%;
}

.mobile_swiper .swiper_img {
    width: 100%;
    height: 100%;
    border-radius: .1rem
}

.main .sub_title_img {
    width: 1.07rem;
    height: .35rem;
    margin: .26rem 0 0 .24rem;
}

.main .list_box_1 {
    width: calc(100% - .48rem);
    margin: 0 auto;
    height: 2.1rem;
    overflow: hidden;
}

.main .list_1 {
    display: flex;
    height: 100%;
    animation: move_right 30s linear infinite;
}

.main .list_1 .item_box {
    flex-shrink: 0;
    width: 3.3rem;
    height: 100%;
    padding: .1rem .12rem 0 0;
    background-size: 100% 100%;
}

.main .list_1 .item_box .item_img {
    width: 100%;
    height: 100%;
    border-radius: .08rem;
}

.main .list_box_2 {
    width: calc(100% - .48rem);
    margin: 0 auto;
    height: 1.5rem;
    overflow: hidden;
}

.main .list_2 {
    display: flex;
    height: 100%;
    animation: move_left 30s linear infinite;
}

.main .list_2 .item_box {
    flex-shrink: 0;
    width: 3.2rem;
    height: 100%;
    padding: .1rem .1rem 0 0;
    background-size: 100% 100%;
}

.main .list_2 .item_box .item_img {
    width: 100%;
    height: 100%;
    border-radius: .06rem;
}

.main .tip_img {
    display: block;
    width: 3.4rem;
    height: .24rem;
    margin: .2rem auto;
}

.foot {
    width: 100%;
    height: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.foot img {
    width: 3.12rem;
    height: .59rem;
}

@keyframes move_right {
    0% {
        transform: translate(-22rem);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes move_left {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-18rem);
    }
}