@charset "utf-8";
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold;
    font-family: "微软雅黑";
    /*移除默认点击高亮*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    -o-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    /*移除文字选中*/
    /*-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;*/
}

[v-cloak] {
    display: none !important;
}

body {
    background: #fff;
}

ul,
ol,
li {
    list-style: none;
}

img {
    border: none;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-out 0s;
}

a:hover {
    color: #df5666;
}


/**************************************************************/


/**************************************************************/


/**************************************************************/


/* 1rem=75px */

.main {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.shouye>img {
    width: 100%;
    height: auto;
}


/* 菜单样式 */

.menu-btn {
    position: fixed;
    top: 0.24rem;
    left: 0.24rem;
    width: 1.2rem;
    height: 1.2rem;
}

.menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 7.3rem;
    height: 100%;
    background-color: #141414;
    opacity: 0.98;
}

.close-btn {
    width: 0.64rem;
    height: 0.64rem;
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
}

.nav {
    font-size: 0.53rem;
    font-family: PingFang-SC-Regular;
    font-weight: 400;
    color: rgba(228, 46, 57, 1);
    height: 1.2rem;
    line-height: 1.2rem;
    margin-top: 2.9rem;
    margin-left: 0.9rem;
}

.nav>div {
    margin-top: 0.2rem;
}

.nav span {
    display: inline-block;
    width: 4.85rem;
    border-bottom: 1px solid #E42E39;
}

.nav img {
    width: 0.3rem;
    height: 0.3rem;
    vertical-align: middle;
    visibility: hidden;
}

.nav .show {
    visibility: visible;
}

@keyframes wordsLoop {
    0% {
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
    }
    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }
}

@-webkit-keyframes wordsLoop {
    0% {
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
    }
    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }
}