[v-cloak] {
    display: none;
}

* {
    box-sizing: inherit;
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #ffffff;
    box-sizing: border-box;
    color: #333;
    font-size: 12px;
    max-width: 750px;
    margin: 0 auto;
}

li {
    list-style: none;
}

button,
input,
select {
    border: 0 none;
    outline: none;
}

button {
    background-color: transparent;
}

img {
    vertical-align: top;
}

a {
    text-decoration: none;
}

[v-cloak] {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}

@media screen and (min-width: 320px) {
    html {
        font-size: 85.33333333px;
    }
}

@media screen and (min-width: 360px) {
    html {
        font-size: 96px;
    }
}

@media screen and (min-width: 375px) {
    html {
        font-size: 100px;
    }
}

@media screen and (min-width: 414px) {
    html {
        font-size: 110.4px;
    }
}

@media screen and (min-width: 750px) {
    html {
        font-size: 200px;
    }
}

.loadingLine {
    padding: .1rem 0;
    text-align: center;
}

#huo_toast .zh-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    box-sizing: border-box;
    max-width: 80%;
    height: 40px;
    line-height: 20px;
    padding: 10px 20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    z-index: 9999;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    animation: show-toast .5s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#huo_toast .zh-toast.zh-word-wrap {
    width: 80%;
    white-space: inherit;
    height: auto;
}

#huo_toast .zh-toast.zh-toast-top {
    top: 50px;
    bottom: inherit;
}

#huo_toast .zh-toast.zh-toast-center {
    top: 50%;
    margin-top: -20px;
    bottom: inherit;
}

@keyframes show-toast {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
        -webkit-transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
    }
}

#preloader-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
}

.cube-folding {
    width: 50px;
    height: 50px;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 0;
}

.cube-folding span {
    position: relative;
    width: 25px;
    height: 25px;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    display: inline-block;
}

.cube-folding span::before {
    content: '';
    background-color: #007ee5;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 25px;
    height: 25px;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -moz-animation: folding 2.5s infinite linear both;
    -webkit-animation: folding 2.5s infinite linear both;
    animation: folding 2.5s infinite linear both;
}

.cube-folding .leaf2 {
    -moz-transform: rotateZ(90deg) scale(1.1);
    -ms-transform: rotateZ(90deg) scale(1.1);
    -webkit-transform: rotateZ(90deg) scale(1.1);
    transform: rotateZ(90deg) scale(1.1);
}

.cube-folding .leaf2::before {
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    background-color: #34a4ff;
}

.cube-folding .leaf3 {
    -moz-transform: rotateZ(270deg) scale(1.1);
    -ms-transform: rotateZ(270deg) scale(1.1);
    -webkit-transform: rotateZ(270deg) scale(1.1);
    transform: rotateZ(270deg) scale(1.1);
}

.cube-folding .leaf3::before {
    -moz-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    background-color: #83c7ff;
}

.cube-folding .leaf4 {
    -moz-transform: rotateZ(180deg) scale(1.1);
    -ms-transform: rotateZ(180deg) scale(1.1);
    -webkit-transform: rotateZ(180deg) scale(1.1);
    transform: rotateZ(180deg) scale(1.1);
}

.cube-folding .leaf4::before {
    -moz-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    background-color: #5cb6ff;
}

@-moz-keyframes folding {
    0%, 10% {
        -moz-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -moz-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -moz-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@-webkit-keyframes folding {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes folding {
    0%, 10% {
        -moz-transform: perspective(140px) rotateX(-180deg);
        -ms-transform: perspective(140px) rotateX(-180deg);
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -moz-transform: perspective(140px) rotateX(0deg);
        -ms-transform: perspective(140px) rotateX(0deg);
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -moz-transform: perspective(140px) rotateY(180deg);
        -ms-transform: perspective(140px) rotateY(180deg);
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

#cube-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    text-align: center;
}

#cube-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
    width: 90px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 1;
    -moz-animation: shadow 0.5s ease infinite alternate;
    -webkit-animation: shadow 0.5s ease infinite alternate;
    animation: shadow 0.5s ease infinite alternate;
}

#cube-wrapper .loading {
    font-size: 12px;
    letter-spacing: 0.1em;
    display: block;
    color: #007ee5;
    position: relative;
    top: 25px;
    z-index: 2;
    -moz-animation: text 0.5s ease infinite alternate;
    -webkit-animation: text 0.5s ease infinite alternate;
    animation: text 0.5s ease infinite alternate;
}

#app {
    background: #F8F8F8;
}

.header {
    width: 100%;
    text-align: center;
    background: #ffffff;
    height: 1.5rem;
    overflow: hidden;
}

.header .return {
    position: absolute;
    width: .5rem;
    height: .5rem;
    top: 0;
    left: 0;
    z-index: 2;
}

.header_top {
    width: 100%;
    height: 100%;
}

.header_top .bg {
    width: 100%;
    height: 100%;
}

.no-data-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.no-data-box .no-data {
    width: 218px;
    height: 180px;
    margin: auto;
}

.no-data-box .text {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.deal-wrap {
    display: flex;
    background: #FFF;
    margin-bottom: 60px;
}

.deal-wrap .item {
    display: flex;
    height: 94px;
    width: 100%;
}

.deal-wrap .item .cover {
    width: 145px;
    height: 94px;
    background-size: cover;
    background-position: center center;
}

.deal-wrap .item .info {
    flex: 1;
    display: flex;
    position: relative;
    flex-direction: column;
    height: 94px;
    padding-left: 10px;
}

.deal-wrap .item .info .title {
    color: #333333;
    font-size: 15px;
    font-family: PingFangSC;
    font-weight: bold;
}

.deal-wrap .item .info .desc {
    color: #666666;
    line-height: 18px;
    font-size: 12px;
    margin-top: 8px;
}

.deal-wrap .item .info .srever-wrap {
    position: absolute;
    left: 10px;
    right: 15px;
    bottom: 0;
    display: flex;
    align-items: center;
}

.deal-wrap .item .info .srever-wrap .server-info {
    display: flex;
    align-items: center;
    padding: 3px 6px;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    background: #e6f4ff;
    border-radius: 4px;
    color: #008FFF;
}

.deal-wrap .item .info .srever-wrap .server-info .server-name {
    display: inline-flex;
    color: #008FFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deal-wrap .item .info .srever-wrap .price {
    display: inline-flex;
    color: #FF3300;
    font-size: 18px;
    flex: 1;
    text-align: right;
    justify-content: flex-end;
}

.game-info-wrap {
    background: #FFF;
    display: flex;
    padding: 0.15rem;
    flex-direction: column;
}

.game-info-wrap .top {
    display: flex;
    width: 100%;
    align-items: center;
}

.game-info-wrap .top .cover {
    width: 0.8rem;
    height: 0.8rem;
}

.game-info-wrap .top .center-box {
    padding-left: 0.1rem;
    flex: 1;
    height: 0.8rem;
    position: relative;
}

.game-info-wrap .top .center-box .title {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 5px;
    font-family: Semibold;
    overflow-x: scroll;
    max-width: 184px;
}

.game-info-wrap .top .center-box .title .label {
    margin-left: 10px;
    height: 16px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    color: #Fff;
    font-size: 10px;
    background: linear-gradient(316deg, #ff9356 0%, #ff5d45 100%);
    border-radius: 8px;
}

.game-info-wrap .top .center-box .type span {
    display: inline-flex;
    margin-right: 5px;
}

.game-info-wrap .top .center-box .size {
    position: absolute;
    bottom: 0;
    left: 0.1rem;
    font-size: 12px;
    font-weight: 400;
    color: #999999;
}

.game-info-wrap .top .appraise-wrap {
    width: 68px;
    height: 68px;
    background: white;
    box-shadow: 0px 0px 7px 0px rgba(0, 61, 110, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.game-info-wrap .top .appraise-wrap .score {
    text-align: center;
    font-size: 23px;
    font-family: Helvetica;
    color: #333333;
    font-weight: bold;
}

.game-info-wrap .top .appraise-wrap .star {
    margin-top: 5px;
}

.game-info-wrap .label-wrap {
    padding-top: 20px;
    max-width: 80%;
}

.game-info-wrap .label-wrap .tag {
    font-size: .11rem;
    color: #FA7661;
    background: rgba(250, 118, 97, 0.1);
    display: inline-block;
    margin-left: .05rem;
    padding: .04rem .09rem;
    text-align: center;
    margin-bottom: .06rem;
}

.game-info-wrap .participants-wrap {
    margin-top: 0.25rem;
    display: flex;
    width: 100%;
    height: 0.52rem;
    align-items: center;
    background: white;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.game-info-wrap .participants-wrap .list {
    padding: 0 15px;
    display: flex;
    align-items: center;
    border-right: 1px solid #D8D8D8;
}

.game-info-wrap .participants-wrap .list .co {
    width: 25px;
    height: 25px;
    margin-left: -5px;
    border-radius: 50%;
    overflow: hidden;
}

.game-info-wrap .participants-wrap .right-box {
    flex: 1;
    padding: 0 14px;
    display: flex;
    align-items: center;
}

.game-info-wrap .participants-wrap .right-box p {
    width: 127px;
    color: #666666;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-info-wrap .participants-wrap .right-box .btn {
    width: 52px;
    height: 26px;
    color: #fff;
    margin-left: 10px;
    outline: none;
    border: none;
    background: #008fff;
    border-radius: 26px;
}

.rater-box {
    display: flex;
    align-items: center;
}

.rater-box .rater-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rater-box .rater-wrap .rater {
    width: 9px;
    height: 9px;
    margin: 2px;
}

.activity-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    margin: 10px 0;
    padding: 0 0.15rem;
    background: #FFF;
}

.activity-wrap .title {
    font-size: 14px;
    font-family: PingFangSC;
    color: #333333;
    margin-right: 12px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.activity-wrap .text {
    display: flex;
    align-items: center;
    flex: 1;
    text-align: left;
    font-size: 14px;
    font-family: PingFangSC;
    font-weight: 400;
    color: #666666;
}

.activity-wrap .arrow-wrap {
    width: 7px;
    height: 100%;
    display: flex;
    align-items: center;
}

.activity-wrap .arrow-wrap .icon {
    width: 7px;
    height: 12px;
}

.rebate-wrap {
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 2px solid #ffbd9f;
    min-height: 30px;
    padding: 10px;
    min-height: 119px;
}

.rebate-wrap .top-box {
    display: flex;
    height: 50px;
    align-items: center;
    margin-bottom: 17px;
}

.rebate-wrap .top-box .text {
    color: #333333;
    font-size: 15px;
    text-align: left;
    flex: 1;
}

.rebate-wrap .top-box .btn {
    width: 65px;
    height: 25px;
    background: linear-gradient(315deg, #ff9666 0%, #f35a58 100%);
    border-radius: 15px;
    color: #FFF;
}

.line {
    width: 100%;
    background: #F8F8F8;
    height: 10px;
}

.evaluate-wrap {
    display: flex;
    padding: 0.15rem;
    margin: 10px 0;
    background: #FFF;
    flex-direction: column;
}

.evaluate-wrap .top {
    display: flex;
}

.evaluate-wrap .top .score-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evaluate-wrap .top .score-wrap .text {
    text-align: center;
    font-size: 13px;
    font-family: PingFangSC;
    font-weight: 500;
}

.evaluate-wrap .top .score-wrap .score {
    font-size: 44px;
    text-align: center;
    font-family: Helvetica;
    color: #333333;
    margin-bottom: 8px;
    margin-top: 3px;
    font-weight: bold;
}

.evaluate-wrap .top .score-wrap .total {
    color: #999999;
    font-size: 12px;
    text-align: center;
}

.evaluate-wrap .top .list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.evaluate-wrap .top .list li {
    display: flex;
    align-items: center;
    height: 24px;
}

.evaluate-wrap .top .list li .nub {
    display: inline-flex;
    margin-right: 7px;
}

.evaluate-wrap .top .list li .progress {
    width: 100%;
    display: flex;
    height: 6px;
    padding-left: 10px;
}

.evaluate-wrap .btn {
    width: 332px;
    margin: auto;
    margin-top: 30px;
    height: 44px;
    background: white;
    border-radius: 10px;
    border: 1px solid #999999;
    text-align: center;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}

.evaluate-wrap .comment-wrap {
    display: flex;
    background: #FFF;
    margin: 30px 0;
    flex-direction: column;
}

.evaluate-wrap .comment-wrap .item {
    display: flex;
    width: 100%;
    margin: 20px 0;
    flex-direction: column;
}

.evaluate-wrap .comment-wrap .item .head {
    display: flex;
    align-items: center;
    height: 40px;
}

.evaluate-wrap .comment-wrap .item .head .cover {
    width: 32.5px;
    height: 32.5px;
    border-radius: 50%;
}

.evaluate-wrap .comment-wrap .item .head .box {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.evaluate-wrap .comment-wrap .item .head .box .name {
    font-size: 12px;
    color: #333333;
    font-weight: bold;
}

.evaluate-wrap .comment-wrap .item .head .box .rater-wrap {
    text-align: left;
    margin-top: 2px;
}

.evaluate-wrap .comment-wrap .item .head .time {
    flex: 1;
    text-align: right;
    font-size: 12px;
    color: #999999;
}

.evaluate-wrap .comment-wrap .item .content-box {
    margin-top: 8px;
    font-size: 13px;
    padding-left: 22px;
    color: #333333;
    font-weight: 400;
    line-height: 20px;
}

.percent-wrap {
    display: flex;
    width: 100%;
    height: 6px;
    align-items: center;
}

.percent-wrap p {
    height: 100%;
}

.severInfo {
    margin-top: .09rem;
    background: #ffffff;
    padding: .15rem 0;
}

.severInfo_title {
    font-size: .16rem;
    font-weight: bold;
    color: #333333;
    padding-left: .2rem;
}

.severInfo_title::before {
    content: '';
    width: .05rem;
    height: .15rem;
    background: red;
    display: inline-block;
    position: relative;
    top: .02rem;
    right: .05rem;
}

.severInfo .severInfotime {
    display: flex;
    justify-items: center;
    text-align: center;
}

.severInfo .severInfotime_item {
    flex: 1;
}

.severInfo .severInfotime_time {
    border-bottom: 2px solid #EDEDED;
    position: relative;
    height: .4rem;
    line-height: .4rem;
}

.severInfo .severInfotime_time::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: .02rem solid #FDBCB0;
    background: #F66B5C;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -.06rem;
    margin-top: -0.08rem;
}

.severInfo .severInfotime_place {
    height: .4rem;
    line-height: .4rem;
    color: #F64B4E;
    font-size: .13rem;
}

.content {
    margin-top: .09rem;
    background: #ffffff;
    color: #666660;
}

.content .contentHeader {
    display: flex;
    text-align: center;
    font-size: .16rem;
    line-height: .45rem;
    height: .45rem;
}

.content .contentHeader_item {
    flex: 1;
    color: #666666;
}

.content .contentHeader .active {
    position: relative;
    font-weight: bold;
    color: #333333;
}

.content .contentHeader .active::after {
    content: "";
    width: .25rem;
    height: .03rem;
    background: #F35A58;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -.14rem;
    border-radius: .01rem;
}

.content_desc {
    padding: .15rem;
}

.content_desc .imglist::-webkit-scrollbar {
    display: none;
}

.content_desc .imglist {
    overflow-x: auto;
    white-space: nowrap;
    webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.content_desc .imglist_wrapper {
    height: 100%;
}

.content_desc .imglist_item {
    display: inline-block;
}

.content_desc .imglist_item span {
    height: 1.65rem;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

.content_desc .imglist_item img {
    height: 1.65rem;
    width: auto;
}

.content_desc .textdesc {
    padding-top: .1rem;
    font-size: .15rem;
    line-height: .2rem;
}

.content_desc .showtextdesc {
    color: #F35A58;
    text-align: right;
    font-size: .12rem;
}

.content_gift {
    padding: .13rem .13rem 0.62rem .13rem;
}

.content_gift_itme {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: .05rem;
    border-bottom: 1px solid #EDEDED;
}

.content_gift_left {
    flex: 1;
    font-size: .15rem;
    line-height: .2rem;
}

.content_gift_left_title {
    color: #333333;
    font-size: .2rem;
    line-height: .25rem;
}

.content_gift_left_desc {
    color: #FF9666;
}

.content_gift_left_content {
    color: #999999;
    width: 2.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content_gift_right {
    width: .55rem;
}

.content_gift_right button {
    color: #F35A58;
    font-size: .13rem;
    border: 1px solid #F35A58;
    height: .3rem;
    width: .5rem;
    border-radius: .05rem;
}

.content_gift .lookMoreGift {
    color: #FF9666;
    text-align: center;
    line-height: .3rem;
    font-size: .12rem;
}

.content_gift .color9 {
    color: #999999;
}

.youLike {
    margin-top: .09rem;
    background: #ffffff;
    padding-top: .12rem;
    padding-bottom: .6rem;
}

.youLike_title {
    font-size: .16rem;
    font-weight: bold;
    color: #333333;
    padding-left: .2rem;
}

.youLike_title::before {
    content: '';
    width: .05rem;
    height: .15rem;
    background: red;
    display: inline-block;
    position: relative;
    top: .02rem;
    right: .05rem;
}

.youLike .youLikecontent::-webkit-scrollbar {
    display: none;
}

.youLike .youLikecontent {
    padding: .1rem .08rem .08rem .14rem;
    overflow-x: auto;
    webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.youLike .youLikecontent_wrapper {
    height: 100%;
    white-space: nowrap;
}

.youLike .youLikecontent_item {
    height: 100%;
    display: inline-block;
    width: .5rem;
    position: relative;
    margin-right: .32rem;
}

.youLike .youLikecontent_item img {
    width: .5rem;
    height: .5rem;
    border-radius: 12px;
}

.youLike .youLikecontent_item p {
    margin-top: .15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.youLike .youLikecontent_tag {
    position: absolute;
    width: .5rem;
    height: .18rem;
    color: #ffffff;
    background: linear-gradient(315deg, #ff9666 0%, #f35a58 100%);
    left: 0;
    top: .4rem;
    border-radius: .09rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .1rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-items: center;
}

.youLike .youLikecontent_tag span {
    flex: 1;
}

.download {
    margin-top: .09rem;
    background: #ffffff;
    padding: .1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #F8F8F8;
}

.download button {
    background: #F35A58;
    width: 3rem;
    height: .4rem;
    font-size: .15rem;
    line-height: .4rem;
    color: #ffffff;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
}

.CustomPopupContent_wrapper {
    background: #ffffff;
    text-align: center;
    padding-bottom: .2rem;
}

.CustomPopupContent_cancle {
    height: .4rem;
    display: flex;
    align-items: center;
    padding: 0 .2rem;
    background: #F8F8F8;
    font-size: .14rem;
    color: #999999;
}

.CustomPopupContent_cancle .canclebtn {
    flex: 1;
    text-align: right;
}

.CustomPopupContent_tip {
    margin-top: .25rem;
    line-height: .2rem;
}

.CustomPopupContent_title {
    color: #FF6E00;
    font-size: .24rem;
    line-height: .6rem;
}

.CustomPopupContent_desc {
    font-size: .13rem;
    line-height: .2rem;
}

.CustomPopupContent_desc_tag {
    color: #F35A58;
    margin-left: .06rem;
}

.CustomPopupContent_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F35A58;
    border-radius: .04rem;
    width: 2.51rem;
    height: .4rem;
    color: #ffffff;
    font-size: .15rem;
    margin-top: .18rem;
}

.CustomPopup {
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.CustomPopupContent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    transform: translateY(100%);
    z-index: 3000;
}

.CustomPopupContentShow {
    transform: translateY(0);
}

.wechatPop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.wechatPop img {
    position: absolute;
    right: .02rem;
    top: .05rem;
    height: 2rem;
    width: 4rem;
}

.alert {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: none;
}

.alert_body {
    width: 3rem;
    top: 50%;
    left: 50%;
    margin-left: -1.5rem;
    background: #ffffff;
    position: absolute;
    padding: .2rem;
    border-radius: .1rem;
    text-align: center;
    transform: translateY(-50%);
}

.alert_title {
    font-size: .16rem;
    font-weight: 700;
}

.alert_text {
    margin-top: .2rem;
    font-size: .14rem;
}

.alert_sure {
    margin-top: .2rem;
    font-size: .14rem;
    height: .3rem;
    border-radius: 152rem;
    width: 1.1rem;
    font-size: .16rem;
    background: #4c94ec;
    color: #fff;
}

.wechatPop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
}

.wechatPop img {
    position: absolute;
    right: .02rem;
    top: .05rem;
    height: 2rem;
    width: 4rem;
}

.rate {
    background: linear-gradient(315deg, #ff9666 0%, #f35a58 100%);
    font-size: .1rem;
    padding: 0 .08rem;
    border-radius: .1rem;
    color: #ffffff;
    font-weight: normal;
    margin-left: .07rem;
    height: .16rem;
    line-height: .18rem;
    display: inline-block;
}

.nogift {
    text-align: center;
}

.nogift img {
    width: 3rem;
    height: 1.8rem;
}

.install {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 9999;
    justify-content: center;
}

.install .install-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.install .install-body {
    width: 80%;
    position: relative;
    background-color: white;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    border-radius: 0.1rem;
    padding-top: 40px;
}

.install .install-header {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 190px;
    text-align: center;
    line-height: 30px;
    background-color: #F5A623;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    font-size: 14px;
    color: white;
}

.install-content {
    width: 100%;
    overflow: hidden;
    height: 300px;
    padding: 10px;
}

.install-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.install-stop {
    box-sizing: border-box;
    padding: 0 20px;
}

.install-stop-text {
    font-size: 12px;
    padding: 10px 0;
    color: #333;
    font-weight: 400;
    text-align: center;
}

.install-img {
    display: block;
    margin: 0 auto;
    height: 100%;
}

.install-footer {
    width: 100%;
    line-height: 50px;
    border-top: 1px solid #F5A623;
    color: #F5A623;
    font-size: 14px;
    text-align: center;
}

.install-pagination .swiper-pagination-bullet-active {
    border: none;
    background-color: #999 !important;
}

.install-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: transparent;
    border: 1px solid #999999;
}

.install-stop-img {
    display: block;
    width: 124px;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    border: none;
    background-color: #999;
}

/*# sourceMappingURL=detail.css.map */


.dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.6;
    z-index: 10;
}

.dialog_box {
    position: fixed;
    width: 3.55rem;
    height: 2.17rem;
    background: #ffffff;
    bottom: 0.15rem;
    left: 50%;
    margin-left: -1.775rem;
    z-index: 20;
    border-radius: 0.2rem;
}

.dialog_box p {
    width: 100%;
    overflow: hidden;
}

.dialog_box_close {
    font-size: 0.14rem;
    margin-top: 0.17rem;

}

.dialog_box_close span {
    float: right;
    margin-right: 0.15rem;
}

.dialog_box_message {
    font-size: 0.16rem;
    text-align: center;
    margin-top: 0.15rem;
}

.dialog_box_message span {
    font-size: 0.2rem;
    color: #00C698;
}

.dialog_box_btn span {
    display: block;
    width: 1.625rem;
    font-size: 0.16rem;
    height: 0.44rem;
    background: #FF8C2D;
    color: #ffffff;
    line-height: 0.44rem;
    text-align: center;
    margin: 0.25rem auto 0;
    border-radius: 0.22rem;
}

.dialog_box_video {
    width: 1.32rem !important;
    margin: 0.2rem auto 0;
    font-size: 0.12rem;
}

.dialog_box_video img {
    width: 0.12rem;
    height: 0.13rem;
    float: left;
}

.dialog_box_video span {
    display: block;
    width: 1.1rem;
    float: left;
    color: #FF8C2D;
    margin-left: 0.05rem;
    text-align: center;
}

.dialog_install {
    position: fixed;
    width: 3.41rem;
    height: 2.88rem;
    background: #ffffff;
    bottom: 0.15rem;
    left: 50%;
    margin-left: -1.705rem;
    z-index: 20;
    border-radius: 0.1rem;
}

.dialog_install p {
    width: 100%;
    text-align: center;
}

.dialog_install_now {
    margin-top: 0.5rem;
}

.dialog_install_now img {
    width: 1.15rem;
    height: 0.19rem;
}

.dialog_install_progess {
    color: #666666;
    font-size: 0.14rem;
    margin-top: 0.12rem;
}

.dialog_install_msg {
    color: #FF2D2D;
    font-size: 0.12rem;
    margin-top: 0.4rem;
}

.dialog_install_btn span {
    display: block;
    width: 1.675rem;
    font-size: 0.15rem;
    height: 0.44rem;
    background: #DDDDDD;
    color: #666666;
    line-height: 0.44rem;
    text-align: center;
    margin: 0.25rem auto 0;
    border-radius: 0.22rem;
}

.dialog_install_udid {
    color: #999999;
    font-size: 0.14rem;
    margin-top: 0.2rem;
}

.video_box {
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 50;
}

.video_box p {
    color: #ffffff;
    font-size: 0.15rem;
    margin-top: 0.4rem;
    margin-left: 0.2rem;
}

.video_box video {
    position: absolute;
    width: 100%;
    height: 3.8rem;
    margin-top: 0.75rem;
    z-index: 90;
}

.dialog_udid {
    position: fixed;
    width: 3.41rem;
    height: 2.18rem;
    background: #ffffff;
    bottom: 0.15rem;
    left: 50%;
    margin-left: -1.7rem;
    z-index: 20;
    border-radius: 0.1rem;
}

.dialog_udid_title {
    font-size: 0.17rem;
    color: #00C698;
    width: 100%;
    text-align: center;
    margin-top: 0.59rem;
}

.dialog_udid_gif {
    width: 100%;
    overflow: hidden;
}

.dialog_udid_gif img {
    display: block;
    margin: 0.245rem auto 0;
    width: 1.16rem;
    height: 0.655rem;
}

.dialog_udid_msg {
    width: 100%;
    text-align: center;
    color: #999999;
    font-size: 0.17rem;
}