* {
    margin: 0;
    touch-action: pan-y;    /* é˜»æ­¢æ‰‹åŠ¿é»˜è®¤ï¼ˆæ‹–åŠ¨/ç¼©æ”¾ï¼‰*/        
    overscroll-behavior: none;    /* é˜»æ­¢æº¢å‡ºæ»šåŠ¨è¿žå¸¦è¡Œä¸º */
}

/* html {
    font-size: calc(100vw / 7.5);
} */

/* å½“å±å¹•å®½åº¦ >= 750px æ—¶ï¼Œå›ºå®š rem å­—å·ä¸ºè®¾è®¡ç¨¿å¯¹åº”çš„åŸºå‡†å€¼ */
/* å‡è®¾ä½ çš„è®¾è®¡ç¨¿æ˜¯ä»¥ 750px å®½åº¦ä¸ºåŸºç¡€ï¼Œ1rem = 100px */
/* @media screen and (min-width: 750px) {
    html {
        font-size: 100px;
    }
} */




.wrap {
    width: 100%;
    max-width: 750px;
    min-height: 100vh;
    /*background: url('../img/bg.jpg') top center no-repeat;*/
    background-size: cover;
    margin: 0 auto;
}

.header {
    width: 100%;
}

.content {
    width: 100%;
}

.img {
    margin-top: -0.5px;
    width: 100%;
    display: flex;
}

.img-box1 {
    width: 100%;
    position: relative;
}

.img-box3 {
    width: 100%;
    position: relative;
}

.img-box1-btn {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.img-update {
    position: absolute;
    right: 0.2rem;
    display: flex;
    width: 2.8rem;
    top: 30%;
    /* transform: translate(0, -50%); */
    animation: myfirst 1s infinite;
}

.footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.content-box {
    width: 100%;
}

.mySwiper {
    width: 100%;
}

.swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    /* height: 55px; */
    display: flex;
    justify-content: center;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    opacity: 1 !important;
    background: url('../img/D2.png') no-repeat center center !important;
    background-size: 100% 100% !important;
}

.swiper-pagination-bullet-active {
    background: url('../img/D.png') no-repeat center center !important;
    background-size: 100% 100% !important;
}

@-webkit-keyframes myfirst {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.9)
    }

    to {
        transform: scale(1)
    }
}

@keyframes myfirst {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.9)
    }

    to {
        transform: scale(1)
    }
}


@media screen and (min-width: 750px) {
    .img-box3 > div {
        bottom: 2rem !important;
    }
}