* {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-family: "å¾®è½¯é›…é»‘";
    font-weight: normal;
    color: #fff;
    border: none;
    vertical-align: baseline;
}

img {
    display: block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 0;
    font-size: 0;
}


.content {
    margin: auto;
    width: 100%;
}

.content img {
    width: 100%;
    margin-top: -3px;
}

@media all and (min-width:320px) {
    html {
        font-size: 10px;
    }

    .content {
        width: 100%;
    }
}

@media all and (min-width:360px) {
    html {
        font-size: 11.25px;
    }

    .content {
        width: 360px;
    }
}

@media all and (min-width:400px) {
    html {
        font-size: 12.5px;
    }

    .content {
        width: 100%;
    }
}

@media all and (min-width:640px) {
    html {
        font-size: 15px;
    }

    .content {
        width: 100%;
    }
}

@media all and (min-width:800px) {
    html {
        font-size: 15px;
    }

    .content {
        width: 800px;
    }
}

.fixed {
    position: fixed;
    bottom: 10px;
    left: 0px;
    width: 100%;
    z-index: 888;
    cursor: pointer;
}

.animat {
    animation: mymove 5s infinite;
    -webkit-animation: mymove 5s infinite;
    /*Safari and Chrome*/
    animation-direction: alternate;
    /*è½®æµåå‘æ’­æ”¾åŠ¨ç”»ã€‚*/
    animation-timing-function: ease-in-out;
    /*åŠ¨ç”»çš„é€Ÿåº¦æ›²çº¿*/
    /* Safari å’Œ Chrome */
    -webkit-animation: mymove 5s infinite;
    -webkit-animation-direction: alternate;
    /*è½®æµåå‘æ’­æ”¾åŠ¨ç”»ã€‚*/
    -webkit-animation-timing-function: ease-in-out;
    /*åŠ¨ç”»çš„é€Ÿåº¦æ›²çº¿*/
}

@keyframes mymove {
    0% {
        transform: scale(1);
        /*å¼€å§‹ä¸ºåŽŸå§‹å¤§å°*/
    }

    25% {
        transform: scale(1.1);
        /*æ”¾å¤§1.1å€*/
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

}

@-webkit-keyframes mymove

/*Safari and Chrome*/
    {
    0% {
        transform: scale(1);
        /*å¼€å§‹ä¸ºåŽŸå§‹å¤§å°*/
    }

    25% {
        transform: scale(1.1);
        /*æ”¾å¤§1.1å€*/
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}
.p-scroll__down {
    width: 100%;

    animation: slideDown 1s infinite;
}



@keyframes slideDown {
    0% {
        transform: translateY(-8px);
        /* å‘ä¸Šåç§»20px */
        opacity: 0;
        /* åˆå§‹é€æ˜Žåº¦ä¸º0 */
    }

    50% {
        transform: translateY(0);
        /* è¿”å›žåˆå§‹ä½ç½®ï¼Œæ— åç§» */
        opacity: 1;
        /* é€æ˜Žåº¦ä¸º1ï¼Œè¾¾åˆ°å®Œå…¨æ˜¾ç¤ºçŠ¶æ€ */
    }

    100% {
        transform: translateY(8px);
        /* å‘ä¸‹åç§»20px */
        opacity: 0;
        /* å›žåˆ°åˆå§‹é€æ˜Žåº¦ä¸º0ï¼Œéšè— */
    }
}

.ca {
    background-color: #f6f2ef;
    height: 100%;
}