/* init start */
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0
}

body {
    font: 12px "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑;
    background: #fff;
    -webkit-text-size-adjust: 100%;
}

em {
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a:focus {
    background-color: transparent;
    text-decoration: none !important;
    outline: none !important;
}

p {
    word-wrap: break-word;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    --black: #333333;
    --white: #ffffff;
    --bg: #ECF1F8;
    --menuBg: #fafafa;
    --style: #FF4622;
    --border: #DDE3EB;
}

.page {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 320px) {
    html {
        font-size: 42.6665px;
    }
}

@media screen and (min-width: 360px) {
    html {
        font-size: 48px;
    }
}

@media screen and (min-width: 375px) {
    html {
        font-size: 50px;
    }
}

@media screen and (min-width: 384px) {
    html {
        font-size: 51.2px;
    }
}

@media screen and (min-width: 411px) {
    html {
        font-size: 54.8px;
    }
}

@media screen and (min-width: 414px) {
    html {
        font-size: 55.2px;
    }
}

@media screen and (min-width: 448px) {
    html {
        font-size: 59.7335px;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 64px;
    }
}

@media screen and (min-width: 512px) {
    html {
        font-size: 68.2665px;
    }
}

@media screen and (min-width: 544px) {
    html {
        font-size: 72.5335px;
    }
}

@media screen and (min-width: 576px) {
    html {
        font-size: 76.8px;
    }
}

@media screen and (min-width: 608px) {
    html {
        font-size: 81.0665px;
    }
}

@media screen and (min-width: 640px) {
    html {
        font-size: 85.3335px;
    }
}

@media screen and (min-width: 750px) {
    html {
        font-size: 100px;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 102.4px;
    }
}

@media screen and (min-width: 800px) {
    html {
        font-size: 106.6665px;
    }
}

@media screen and (min-width: 1024px) {
    html {
        font-size: 136.5335px;
    }
}

/* init end */


/* menu start */
#Menu {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 500ms cubic-bezier(0, .995, .99, 1);
    opacity: 0;
    display: flex;
    justify-content: flex-end;
    background-color: var(--menuBg);
}

#Menu.animate {
    opacity: 1;
    transition: all 500ms cubic-bezier(0, .995, .99, 1);
}

#Menu>ul {
    width: calc(100% - 1.1rem);
    margin-top: 1.1rem;
    overflow-y: auto;
}

#Menu>ul>li {
    list-style: none;
    width: 100%;
    min-height: 1rem;
    line-height: 1rem;
    font-size: 0.23rem;
    border-top: 1px solid #ebebeb;
    box-sizing: border-box;
}

#Menu>ul::before {
    content: "";
    width: 100%;
    height: 1.1rem;
    line-height: 1.1rem;
    box-shadow: 10px 0px 8px -15px #9a9a9a inset;
    position: absolute;
    top: 0;
}

#Menu>ul>li>a {
    width: 100%;
    height: 1rem;
    max-height: 1rem;
    color: #666;
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    overflow: hidden;
    padding: 0 0.6rem;
    box-sizing: border-box;
    font-size: 0.24rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#Menu>ul>li>a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 100%;
    border: 1px solid #d8d8d8;
    margin-right: 0.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    position: relative;
    top: -1px;
}

#Menu>ul>li.active .menu_a::before {
    border-color: var(--white);
    background-color: #666;
}

#Menu>ul>li.active .menu_a {
    color: #333;
    background-color: var(--white);
}

#Menu>ul>li.active .menu_a.select {
    background-color: #ebebeb;
}

.menu_a .more {
    display: block;
    width: 0.24rem;
    height: 0.24rem;
    position: relative;
    float: right;
    top: 50%;
    transform: translateY(-50%);
}

.menu_a .more>.h {
    width: 0.24rem;
    height: 0.04rem;
    transform: translate3d(0, 0.1rem, 0);
    -webkit-transform: translate3d(0, 0.1rem, 0);
}

.menu_a .more>.v {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transform: rotate3d(0, 0, 1, 90deg) translate3d(0.1rem, 0, 0);
    -webkit-transform: rotate3d(0, 0, 1, 90deg) translate3d(0.1rem, 0, 0);
}

.menu_a .more>span {
    background-color: #474747;
    position: absolute;
    left: 0;
}

#Menu>ul>li.open .menu_a .more .v {
    transform: rotate3d(0, 0, 0, 0) translate3d(0, 0.1rem, 0);
}

#Menu .dropList {
    height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#Menu .dropList>li>.dropList_a {
    width: 100%;
    height: 1rem;
    max-height: 1rem;
    color: #999;
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    overflow: hidden;
    padding: 0 0.6rem;
    box-sizing: border-box;
    font-size: 0.24rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#Menu .dropList>li>.dropList_a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    margin-right: 0.36rem;
    margin-left: 0.06rem;
}

/* menu end */


/* screen content start */
#Screen {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 500ms cubic-bezier(0, .995, .99, 1);
    overflow: hidden;
}

#Screen.animate {
    left: calc(-1 * (100% - 1.1rem));
    transition: all 500ms cubic-bezier(0, .995, .99, 1);
}

/* screen content end */


/* header start */
#header {
    width: 100%;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.4rem;
    box-sizing: border-box;
    background-color: var(--white);
    /* border-bottom: 1px solid #e3e3e3; */
    border-bottom: 1px solid #ecf1f8;
}

.header_left {
    height: 0.55rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header_left::after {
    width: 4px;
    content: '';
    display: inline-block;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: -10%;
    top: 0;
    transform: rotate(30deg);
    filter: blur(2px);
    animation: logoAfter 2.8s infinite cubic-bezier(0.39, 0.58, 0.57, 1);
}

@keyframes logoAfter {
    from {
        left: -10%;
    }

    to {
        left: 100%;
    }
}

.header_left>a {
    display: block;
    width: 1.88rem;
    height: 0.55rem;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.header_right {
    width: 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0.4rem;
    position: relative;
    box-sizing: border-box;
    margin-top: -0.3rem;
}

.header_right_x,
.header_right_y,
.header_right_z {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0.3rem;
    height: 0.04rem;
    background-color: #111;
    transition: all 200ms ease-out;
    margin: auto;
    background-color: var(--style);
}

.header_right_x {
    top: 0;
}

.header_right_y {
    top: 0.28rem;
}

.header_right_z {
    top: 0.56rem;
}

.header_right>div.rotate45 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 200ms ease-out;
    top: 0.4rem;
}

.header_right>div.rotate135 {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: all 200ms ease-out;
    top: 0.4rem;
}

.header_right>span {
    width: 0.3rem;
    height: 0.28rem;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* header end */

/* section start */

#section {
    width: 100%;
    height: calc(100% - 1.1rem);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    margin-top: 0.01rem;
}

#section.animate {
    overflow: hidden !important;
}

#section::-webkit-scrollbar {
    width: 0 !important
}

#section {
    -ms-overflow-style: none;
}

#section {
    overflow: -moz-scrollbars-none;
}

/* section end */


/* footer start */
#footer {
    width: 100%;
    background-color: #31333e;
    padding: 0.37rem 0.2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


#footer>p {
    font-size: 0.24rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    line-height: 0.3rem;
}

#footer>p>a {
    color: var(--white);
}

#footer>p>a:hover {
    color: var(--style);
}

/* footer end */

/* 置顶 */
#Top {
    position: fixed;
    bottom: 4rem;
    right: 0.5rem;
    opacity: 0;
    cursor: pointer;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    background-color: #ffffff;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, .3);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    z-index: 99;
}

#Top>img {
    width: 0.3rem;
}

/* 弹框 */

.qrCode_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
}

.qrCode_popup_mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    background-color: #000000;
}

.qrCode_popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    background-color: #ffffff;
    border-radius: 0.2rem;
    margin-top: -2rem;
    margin-left: -2rem;
    z-index: 2;
    opacity: 0;
    transform: scale(1.15);
    padding: 0.4rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qrCode_popup_content.show {
    transform: scale(1);
    opacity: 1;
    transition: all 0.25s linear 0s;
}

.popup_close {
    position: absolute;
    top: -0.2rem;
    right: -0.3rem;
    width: 0.3rem;
    height: 0.3rem;
    cursor: pointer;
}

.popup_code {
    width: 2.5rem;
    height: 2.5rem;
}

.popup_title {
    margin-top: 0.2rem;
    font-size: 0.2rem;
    color: #9e9c9c;
}