﻿*,
body,
html {
    margin: 0;
    padding: 0;
}

#app {
    position: relative;
}

.header-active {
    background-color: #fffeec;
    box-shadow: 0px 2px 8px 0px #0000001a;
}

.mobile-warp {
    /* position: relative; */
    width: 100%;
}

.m-page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: 0.8rem;
}

.m-logo {
    width: 2.7rem;
    margin-left: 0.6rem;
}

.m-page-1 {
    position: relative;
    width: 100%;
}

.m-img {
    width: 100%;
    display: block;
}

.m-btn-warp {
    position: absolute;
    bottom: 0.64rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.m-btn-img {
    width: 2.74rem;
    margin-right: 0.24rem;
}

.m-btn-img:last-child {
    margin-right: 0;
}

.m-code-warp {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: .3rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.m-close {
    width: 0.32rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
}

.m-code-img {
    width: 2.17rem;
}

.pc-warp {
    position: relative;
    width: 100%;
    display: none;
}

.pc-page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
}

.pc-logo {
    width: 311px;
    margin-left: 18%;
}

.pc-page-1 {
    position: relative;
    width: 100%;
}

.pc-img {
    width: 100%;
    display: block;
}

.pc-btn-warp {
    position: absolute;
    bottom: 20%;
    left: 18%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.pc-btn-img {
    width: 282px;
    margin-right: 37px;
    cursor: pointer;
}

.pc-code-warp {
    position: fixed;
    top: 50%;
    width: 100%;
    z-index: 1;
}

.pc-code {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-right: 50px;
    box-sizing: border-box;
}

.pc-close {
    width: 40px;
    margin-bottom: 13px;
    cursor: pointer;
}

.pc-code-img {
    width: 30%;
}

.copy {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 10px;
    background-color: whitesmoke;
    box-sizing: border-box;
}

.copy-img {
    vertical-align: middle;
    margin-right: 5px;
}

a {
    text-decoration: none;
}

@media (min-width: 1280px) {
    .mobile-warp {
        display: none;
    }

    .pc-warp {
        display: block;
    }
}