/*
 *全局样式
 */
 *{
    padding: 0;
    margin: 0;
}
body,
html,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    margin: 0;
    padding: 0;
    font-size: 13.333333333333333333vw;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

body {
    font-size: 0;
    color: #fff;
    font-family: PingFang SC;
    background: #fff;
}

.App {
    width: 100%;
    height: 100%;
}

button {
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
}

textarea,
input,
button,
select {
    outline: none;
}

li {
    list-style: none;
}

.p-oh {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    border-radius: .2rem;
}

a {
    display: block;
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #ED6238;
    text-decoration: none;
}

/* footer */

.footless {
    position: absolute;
    bottom: 0;
    left: 0;
}

footer {
    width: 100%;
    /* height: 3.36rem; */
    text-align: center;
    margin-top: .6rem;
    padding-top: 0.46rem;
    padding-bottom: 0.4rem;
    background: #222020;
}

footer>div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

footer>div>a {
    font-size: 0.24rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
    padding: 0 .11rem;
    margin-bottom: 0.26rem;
    margin-right: 0.25rem;
}


footer>div>a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -0.14rem;
    width: 0.02rem;
    height: 0.25rem;
    background-color: #fff;
}

@media screen and (min-width: 321px) {
    footer>div>a:nth-child(4)::before {
        display: none;
    }
    footer>div>a:nth-child(4) {
        margin-right: 0;
    }
}

footer>div>a:last-of-type::before {
    width: 0;
}

footer>p {
    font-size: 0.24rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #F6F6F6;
    margin-top: .15rem;
    margin-bottom: 0;
}
footer>p span {
    display: block;
}

footer>p a{
    display: block;
    font-size: .22rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0.2rem;
}
footer .copy {
    margin-top: 0.2rem;
}

/* 返回顶部 */

.goBack {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: .54rem;
    margin-bottom: .82rem;
    display: none;
    z-index: 999;
    animation-name: img-go-back;
}

@keyframes img-go-back {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.goBack a {
    height: .8rem;
    width: .8rem;
    display: inline-block;
}

.goBack a img {
    height: 100%;
}