@charset "utf-8";
/* CSS Document */
* {
    padding: 0;
    margin: 0;
}

img {
    border: none;
}

li {
    list-style: none;
}

i {
    font-style: normal;
}

a {
    color: #333;
    text-decoration: none;
}

a:focus {
    outline: none;
}

a {
    blr: expression(this.onFocus=this.blur());
}

.red {
    color: red;
}

.green {
    color: green;
}

.blue {
    color: blue;
}

.none {
    display: none;
}

footer {
    font-size: 18px;
}

html {
    overflow-x: hidden;
}

body {
    padding-top: 40px !important;
    max-width: 750px;
    background: #ffffff;
    margin: 0 auto !important;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}


.timeout {
    width: 100%;
    padding: 30px 0;
    background-color: #f63222;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeout div {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.timeout div span {
    margin: 0 3px;
    width: 30px;
    height: 30px;
    font-size: 16px !important;
    border-radius: 15px;
    background-color: #fff;
    color: #f63222;
    text-align: center;
    line-height: 30px;
}


.banners {
}

.banners img {
    display: block;
    max-width: 100%;
    height: auto;
}

.topbar {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    height: 40px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
}

.topbar .back {
    display: block;
    width: 40px;
    height: 100%;
    background: url('../images/back.png') no-repeat 0px center;
    background-size: 20px auto;
    cursor: pointer;
    color: #fff;
}

.topbar .home {
    background: url('../images/home.png') no-repeat 0px center;
    background-size: 20px auto;
}

.topbar .tousu {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    padding-right: 10px;
}

.topbar .tousu img {
    width: 18px;
    height: auto;
    margin-right: 3px;
}

.promise .title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    background-color: #d21f17;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.promise div {
    box-sizing: border-box;
    float: left;
    width: 50%;
    padding: 25px 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.promise i {
    float: left;
    width: 26px;
    height: 30px;
    margin-left: 25px;
    margin-right: 10px;
    background-image: url(./images/sprite.png);
    background-size: 301px auto;
    background-repeat: no-repeat;
}

.promise-text {
    height: 12px;
    line-height: 12px;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    transform: scale(0.85);
    -o-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 65px center;
    -o-transform-origin: 65px center;
    -ms-transform-origin: 65px center;
    -moz-transform-origin: 65px center;
    -webkit-transform-origin: 65px center;
}

.shunfeng img {
    max-width: 100%;
    height: auto;
}

/* 倒计时 购买按钮 start */
.article-botton {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    background-color: #fff;
    display: flex;

}

.article-botton .buynum-time {
    display: flex;
    flex-direction: column;
    width: 190px;
}

.article-botton .buynum-time .buy-num {
    color: #861821;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}

.article-botton .buynum-time .time {
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 5px;
}

.article-botton .buynum-time .time img {
    display: block;
    width: 20px;
    height: auto;
}

.article-botton .buynum-time .time .clock {
    flex-grow: 1;
    font-size: 14px;
    color: #050304;
    padding-left: 5px;
}

.article-botton .buynum-time .time .clock span {
    color: #ff4c4b;
}

.buy {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d31e03;
    color: #fff;

    /* IE10、Firefox and Opera，IE9以及更早的版本不支持 */
    animation-name: breath; /* 动画名称 */
    animation-duration: 1s; /* 动画时长1秒 */
    animation-timing-function: ease-in-out; /* 动画速度曲线：以低速开始和结束 */
    animation-iteration-count: infinite; /* 播放次数：无限 */

    /* Safari and Chrome */
    -webkit-animation-name: breath; /* 动画名称 */
    -webkit-animation-duration: 1s; /* 动画时长3秒 */
    -webkit-animation-timing-function: ease-in-out; /* 动画速度曲线：以低速开始和结束 */
    -webkit-animation-iteration-count: infinite; /* 播放次数：无限 */
}

.buy img {
    width: 16px;
    height: auto;
}

@keyframes breath {
    from {
        opacity: 1;
    }
    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
        background-color: #fe9402;
    }
    /* 动画50% 时的不透明度 */
    to {
        opacity: 1;
    }
    /* 动画结束时的不透明度 */
}

@-webkit-keyframes breath {
    from {
        opacity: 1;
    }
    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
        background-color: #fe9402;
    }
    /* 动画50% 时的不透明度 */
    to {
        opacity: 1;
    }
    /* 动画结束时的不透明度 */
}

/* 倒计时 购买按钮 end */

/* 标题 价格 start */
.art-title {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding-bottom: 10px;
}

.art-title .price {
    display: flex;
    align-items: center;
}

.art-title .price strong {
    width: 100px;
    text-align: left;
    color: #d31e03;
    font-size: 28px;
    text-indent: 10px;;
}

.art-title .price ol {
    text-align: center;
    padding: 5px 0px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.art-title .price ol li {
    width: 30%;
}

.art-title .price ol li.yuan {
    color: #bf000c;
}

.art-title .tit {
    color: #000;
    font-size: 16px;
    padding: 0 12px;
}

/* 标题 价格 end */


/* 咨询服务 start */
.tab_ul_tit {
    display: flex;
    align-items: center;
    background-color: #fff;
}

.tab_ul_tit li {
    width: 50%;
    flex-grow: 1;
    font-size: 16px;
    text-align: center;
    color: #1f1b1c;
    padding: 10px 0px;
	cursor: pointer;
}

.tab_ul_tit li.this {
    color: #c40d2b;
}

.tab_ul_tit li.this div {
    visibility: visible;
}

.tab_ul_tit li div {
    visibility: hidden;
    width: 100px;
    height: 2px;
    border-radius: 2px;
    background-color: #c40d2b;
    margin: 0 auto;
    margin-top: 3px;
}

.tab_ul_con {
}

.tab_ul_con li.li {
    display: none;
}

.tab_ul_con li.cur {
    display: block;
}

.question {
    margin-top: 3px;
}

.question dt {
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 40px;
    padding: 0 20px;
    color: #333333;
    font-size: 16px;
}

.question dt img {
    width: 15px;
    height: auto;
    padding-right: 4px;
}

.question dd {
    padding: 0 20px 20px 20px;
    background-color: #fff;
    line-height: 22px;
    color: #9b969c;
    font-size: 14px;
}

/* 咨询服务 end */

/* 评论 start */
.comments {
    margin: 10px auto;
    background-color: #fff;
}

.comment-tit {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.comment-tit span {
    font-size: 16px;
    color: #120f16;
}

.comment-tit a.goodv {
    color: #d81e06;
    display: flex;
    align-items: center;
}

.comment-tit a.goodv img {
    width: 20px;
    padding-left: 0px;
}

.comment-con {
}

.comment-con dl {
    margin: 10px 10px;
    padding: 10 0px;
    border-bottom: solid 1px #f1eeee;
    margin-bottom: 10px;
}

.comment-con dl .u-info {
}

.comment-con dl .u-info p {
    color: #1f1f1f;
    display: flex;
    align-items: center;
}

.comment-con dl .u-info p img {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin-right: 10px;
}

.comment-con dl .u-info span {
    color: #a7a7a7;
    font-size: 12px;
}

.comment-con .con {
    color: #1f1f1f;
}

.comment-con .buy-color {
    color: #a5a1a2;
    font-size: 14px;
    margin: 10px 0;
}

.comment-con dl .imgs {
    margin-left: 2%;
}

.comment-con dl .imgs {
    display: flex;
    align-content: flex-start;
    flex-flow: row wrap;
}

.comment-con dl .imgs li {
    background-color: #000;
    margin: 5px;
    display: flex;
    align-items: center;
    width: 9%;
    height: auto !important;
    overflow: hidden;
}

.comment-con dl .imgs li img {
    max-width: 100%;
    height: auto;
}

/* 评论 end */

/* 购买成功 start */
.tishi {
    background: #ddd;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    color: #856D35;

}

.tishi div {
    text-align: center;
    font-size: 20px;
    padding-top: 20px;
}

.tishi p {
    font-size: 14px;
    padding-bottom: 20px;
}

.proinfo {
    margin: 10px auto;
    background-color: #fff;
    display: flex;
    padding: 30px auto;
    align-items: center;
    line-height: 23px;
}

.proinfo img {
    display: block;
    width: 20px;
    height: auto;
    margin-left: 10px;
}

.proinfo div {
    flex-grow: 1;
    padding-left: 10px;
    margin: 10px 0px;
}

.proinfo div p {
    font-size: 12px;
    color: #181818;
}

.proinfo div p.address {
    color: #5d5d5d;
}

.pay {
    margin: 10px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.pay .tit {
    color: #575757;
    padding: 8px 0px;
    width: 100px;
    padding-left: 10px;
}

.pay .money {
    color: #b96a7d;
    flex-grow: 1;
    text-align: right;
}

.qrcode {
    margin: 20px 0px;
    text-align: center;
}

.qrcode img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
}

.qrcode div {
    margin: 5px 0px;
}

.a-view {
    height: 60px;
    display: flex;
    margin: 0 60px;
    align-items: center;
    justify-content: space-between;
}

.a-view a {
    display: block;
    border: solid 1px #dcdcdc;
    padding: 8px 30px;
    border-radius: 20px;
    background-color: #fff;
}

/* 购买成功 end */

/* video */
.video_div {
    margin: 0;
}

.video_div video {
    background-color: #000;
    width: 100%;
    height: auto;
}

#mask {
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pop-container {
    width: 90%;
    height: 200px;
    background: white;
    border-radius: 5px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button {
    display: none;
    margin-top: 10px;
    width: 150px;
    height: 30px;
    font-size: 12px;
    border-radius: 4px;
}
