/*超小屏（Extra small screen），平常手机，范围是 [0, 576px)*/
@media (min-width: 0px) and (max-width: 576px) {
    .web-wrap {
        display: none !important;
    }
    .h-web-container {
        display: none;
    }
    .download-page-h5 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*小屏（Small screen），大手机，范围是 [576px, 768px)*/
@media (min-width: 576px) and (max-width: 768px) {
    .web-wrap {
        display: none;
    }
    .download-page-h5 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*中屏（Medium screen），平板电脑，范围是 [768px, 992px)*/
@media (min-width: 769px) and (max-width: 992px) {
    .h5-wrap {
        display: none !important;
    }
    .download-page-h5 {
        display: none !important;
    }
}

/*大屏（Large screen），桌面电脑，范围是 [992px, 1200px)*/
@media (min-width: 993px) and (max-width: 1200px) {
    .h5-wrap {
        display: none;
    }
}

/*超大屏（Extra large screen），大桌面电脑，范围是 [1200px, +∞)*/
@media (min-width: 1201px) {
    .h5-wrap {
        display: none;
    }
    .download-page-h5 {
        display: none;
    }
}

/* common */
.top-line-box {
    margin: 20px auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 25px;
}

.top-line-box img {
    width: 98px;
    height: 10px;
}

.gray .top-line-box span {
    background: -o-linear-gradient(312deg, #6C4119 0%, #6C4119 26%, #6C4119 50%, #6C4119 85%, #6C4119 100%);
    background: linear-gradient(138deg, #6C4119 0%, #6C4119 26%, #6C4119 50%, #6C4119 85%, #6C4119 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.green .top-line-box span {
    background: -o-linear-gradient(312deg, #00c979 0%, #009944 26%, #14bc5e 50%, #009944 85%, #009944 100%);
    background: linear-gradient(138deg, #00c979 0%, #009944 26%, #14bc5e 50%, #009944 85%, #009944 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gray .btn-box .common-btn {
    -webkit-box-shadow: 0 2px 0 #6C4119;
    box-shadow: 0 2px 0 #6C4119;
    background: -o-linear-gradient(top, #333333, #171717, #181818);
    background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(#171717), to(#181818));
    background: linear-gradient(to bottom, #333333, #171717, #181818);
    border-radius: 12px;
    border: 1px solid #6C4119;
    width: 320px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.green .btn-box .common-btn {
    -webkit-box-shadow: 0 2px 0 #15b542;
    box-shadow: 0 2px 0 #15b542;
    background: -o-linear-gradient(top, #333333, #171717, #181818);
    background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(#171717), to(#181818));
    background: linear-gradient(to bottom, #333333, #171717, #181818);
    border-radius: 12px;
    border: 1px solid #00ff57;
    width: 320px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.gray .btn-box .common-btn:hover {
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119);
}
.green .btn-box .common-btn:hover {
    background: -o-linear-gradient(top, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left top, left bottom, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to bottom, #15b542, #15b542, #15b542);
}

.common-btn-hover {
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119) !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119)) !important;
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119) !important;
}

.btn-box .common-btn .inner-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-box .common-btn img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.btn-box .common-btn span {
    font-size: 16px;
    color: #fff;
}

/* web */
.web-wrap {
    height: 100vh;
    min-width: 1000px;
}

.h-web-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-unclick {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.web-wrap .inner-top-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
}

.web-wrap .inner-top-box img:first-child {
    width: 1167px;
    margin-left: 130px;
}

.web-wrap .inner-top-box img:nth-child(2) {
    width: 162px;
    position: absolute;
    left: 0px;
    top: 0;
}

.web-wrap .top-line-box {
    margin-top: 20px;
}

.web-wrap .top-line-box img {
    width: 100px;
    height: 10px;
}

.web-wrap .top-line-box span {
    font-size: 28px;
    margin: 0 40px;
    line-height: 28px;
}

.web-wrap .btn-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .btn-box .common-btn {
    margin-left: 10px;
    margin-right: 10px;
    width: 320px;
    font-size: 18px;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: bold;
}

.web-wrap .web-clicked {
    min-width: 1000px;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .web-clicked .inner-left-box > img {
    width: 350px;
    height: 54px;
}

.web-wrap .web-clicked .top-line-box {
    margin-top: 10px;
}

.web-wrap .inner-left-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 910px;
}

.web-wrap .ewm-box {
    margin-top: 20px;
    width: 100%;
    max-width: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .ewm-box .ewm-inner-box {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .ewm-box .ewm-inner-box .qcr-code {
    width: 120px;
    height: 120px;
    background-color: #fff;
    margin-bottom: 14px;
    padding: 10px;
}

.web-wrap .ewm-box .ewm-inner-box .i18n {
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 3px;
}

.web-wrap .bottom-intro-box {
    width: 100%;
    max-width: 680px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.web-wrap .bottom-intro-box .inner-bottom-box {
    width: 23%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .bottom-intro-box .inner-bottom-box img {
    width: 70px;
    height: 70px;
}

.web-wrap .bottom-intro-box .inner-bottom-box span {
    color: #fff;
    margin-top: 24px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    margin-left: 40%;
}

.web-wrap .inner-left-box > img {
    width: 260px;
    height: 130px;
}
.web-wrap .inner-right-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .inner-right-box img {
    width: 725px;
    height: 625px;
}

.bottom-intro-text {
    max-width: 680px;
    margin-top: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

/* h5 */
.h5-wrap {
    padding: 10px 10px 30px 10px;
    width: 100%;
    min-height: 100vh;
}

.download-page-h5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.download-page-h5 .inner-top-bg {
    margin-top: 10px !important;
}

.h5-float-box-fixed {
    display: none;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
}

.h5-float-box-fixed .h5-home-float-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: -45%;
    max-height: 80%;
    width: 90%;
    bottom: unset;
}

.h5-float-box-fixed .home-float-box .inner-url-box span {
    font-size: 15px;
}

.h5-float-box-fixed .home-float-box .inner-url-box > a {
    width: 80px;
    height: 30px;
    line-height: 30px;
}

#h5-home .common-btn,
.btn-box .h5-common-btn {
    font-size: 14px;
    width: 290px;
    height: 40px;
    line-height: 40px;
}

#h5-home .common-btn img,
.btn-box .h5-common-btn img {
    width: 27px;
    height: 27px;
}

.h5-wrap .top-bg {
    width: 360px;
    height: 290px;
    margin-left: calc(50% - 180px);
}

.h5-wrap .h5-btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap .down-load-bg {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap .inner-top-bg {
    max-width: 21.8rem;
    max-height: 4rem;
    margin: 0.5rem auto 0px;
    display: block;
}

.h5-wrap .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap #clicked-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#h5-home-btn {
    position: relative;
}

.h5-download-float-box {
    display: none;
}

.home-float-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    max-height: 50vh;
    width: 390px;
    border-radius: 10px;
    bottom: 80px;
    overflow: hidden;
}
.gray .home-float-box {
    background: #9d7652;
    border: 1px solid #6C4119;
}
.green .home-float-box {
    background: #15b542;
    border: 1px solid #5afc88;
}
.home-float-box .inner-url-box {
    padding: 15px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.gray .home-float-box .inner-url-box {
    border-bottom: 1px solid #6C411980;
}
.green .home-float-box .inner-url-box {
    border-bottom: 1px solid #00c979;
}

.home-float-box .inner-url-box:last-child {
    border: none;
}

.home-float-box .inner-url-box span {
    font-size: 16px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.gray .home-float-box .inner-url-box > a {
    -webkit-box-shadow: 0 2px 0 #6C4119;
    box-shadow: 0 2px 0 #6C4119;
    border: 1px solid #6C4119;
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119);
    color: #fff;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
    transition: ease-in-out 0.4s;
}
.gray .home-float-box .inner-url-box > a:hover {
    background: -o-linear-gradient(bottom, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left bottom, left top, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to top, #6C4119, #6C4119, #066631);
}

.green .home-float-box .inner-url-box > a {
    -webkit-box-shadow: 0 2px 0 #15b542;
    box-shadow: 0 2px 0 #15b542;
    border: 1px solid #5afc88;
    background: -o-linear-gradient(top, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left top, left bottom, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to bottom, #15b542, #15b542, #15b542);
    color: #fff;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
    transition: ease-in-out 0.4s;
}
.green .home-float-box .inner-url-box > a:hover {
    background: -o-linear-gradient(bottom, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left bottom, left top, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to top, #15b542, #5afc88, #15b542);
}

.down-trigle {
    display: none;
    top: -18px;
    left: calc(50% - 10px);
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid rgba(0, 153, 68, 0.5);
    border-color: rgba(0, 153, 68, 0.5) transparent transparent transparent;
}

#web-home-btn {
    position: relative;
}

/* .web-down-trigle {
} */


.userH5Download{
    margin-right: 27px !important;
}

.userH5cs{
    margin-right: 27px !important;
}

.web-home-float-box {
    left: -18px;
    overflow: auto;
    display: none;
}

span[data-lang] {
    display: none;
}

.download-name span{
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 3px;
}