Commit 930bb3ab by 肖康

x

parent 104c3b04
Showing with 69 additions and 62 deletions
......@@ -412,6 +412,8 @@ export const apis = {
changeUserInfo: productionUrlApi + '/user/changeUserInfo',
/**优惠券数量**/
ucouponCount: productionUrlApi + '/ucoupon/count',
/**获取优惠券**/
issue: productionUrlApi + '/coupon/issue',
/**优惠券列表**/
ucouponLists: productionUrlApi + '/ucoupon/lists',
/***订单列表**/
......@@ -750,6 +752,10 @@ export const services = {
ucouponLists(params) {
return axios.post(apis.ucouponLists, params)
},
issue(params) {
return axios.post(apis.issue, params)
},
orderLists(params) {
return axios.post(apis.orderLists, params)
},
......
......@@ -5,7 +5,7 @@ import { services as Services } from '../../../api/index'
Vue.use(Toast);
var qs = require('qs');
const state = {
loading:false,
}
const mutations = {
......@@ -13,8 +13,30 @@ const mutations = {
}
const actions = {
issue({commit},payload){
state.loading=true;
var params = {
id: payload.id
}
Services.issue(qs.stringify(params)).then((res) => {
state.loading=false;
let data = res.data;
if (data.err_code == 0) {
Toast({
message: '领取成功',
duration: 2000
});
}else {
Toast({
message: data.err_msg,
duration: 3000
});
}
}).catch(function (err) {
state.loading = false;
});
},
//issue
}
const getters = {}
......
......@@ -4,19 +4,19 @@
<img src="../../assets/images/ac618/header.png">
</div>
<div class="yhq-boxs row ">
<div class="yhq-item ">
<div class="yhq-item " @click="getYuq(258)">
<div class="t1">满1500可用</div>
<div class="t2">全场券</div>
<div class="t3">有效期:5.28-6.30</div>
<div class="t4">5.28 抢券</div>
</div>
<div class="yhq-item item100">
<div class="yhq-item item100" @click="getYuq(259)">
<div class="t1">满3000可用</div>
<div class="t2">全场券</div>
<div class="t3">有效期:5.28-6.30</div>
<div class="t4">5.28 抢券</div>
</div>
<div class="yhq-item item100 ">
<div class="yhq-item item100 " @click="getYuq(260)">
<div class="t1">满100.1可用</div>
<div class="t2">6.18券</div>
<div class="t3">有效期:5.28-6.30</div>
......@@ -299,15 +299,16 @@
</div>
</div>
<div class="rule-box">
<div class="titleac">活动规则</div>
<p>1、活动时间:2021年5月24日-2021年6月30日;</p>
<p>2、活动期间内需在此页面点击参与活动后即可享受奖励;</p>
<p>3、订单以实付金额为准,若期间产生退款则取消奖励;</p>
<p>4、注册即送288元优惠券组合,优惠券奖励前往会员中心>我的优惠券查看;</p>
<p>5、活动奖励发放以月为单位,奖励在次月15个工作日内完成统计并发放;</p>
<p>6、在法律允许范围内,本活动最终解释权归猎芯网所有,详情可致电4008-755-881。</p>
</div>
<SideBar :carshow="carshow" :isWindow="isWindow" ></SideBar>
<div class="titleac">活动规则</div>
<p>1、活动时间:2021年5月24日-2021年6月30日;</p>
<p>2、活动期间内需在此页面点击参与活动后即可享受奖励;</p>
<p>3、订单以实付金额为准,若期间产生退款则取消奖励;</p>
<p>4、注册即送288元优惠券组合,优惠券奖励前往会员中心>我的优惠券查看;</p>
<p>5、活动奖励发放以月为单位,奖励在次月15个工作日内完成统计并发放;</p>
<p>6、在法律允许范围内,本活动最终解释权归猎芯网所有,详情可致电4008-755-881。</p>
</div>
<van-loading type="spinner" color="#000" class="loading-background" v-if="loading1" />
<SideBar :carshow="carshow" :isWindow="isWindow"></SideBar>
</div>
</template>
<script>
......@@ -316,13 +317,11 @@
mapState
} from "vuex";
import SideBar from '@/views/common/SideBar.vue';
// import {
// Loading,
// Toast
// } from 'vant';
// import Menu from "@/views/common/Menu.vue";
// import Util from "../../util";
// Vue.use(Loading).use(Toast);
import Util from "../../util";
import {
Loading
} from 'vant';
Vue.use(Loading)
export default {
name: "ac618",
......@@ -330,15 +329,20 @@
return {
isWindow: true,
carshow: false,
loading:false
};
},
watch: {},
watch: {
loading(val){
console.log(val)
}
},
created() {
},
computed: {
...mapState({
...mapState({
loading1: state => state.ac618.loading,
})
},
methods: {
......@@ -347,7 +351,18 @@
document.getElementById("kubtn2020").click()
})
},
getYuq(id) {
if (Util.getCookie("Yo4teW_uid") && Util.getCookie('Yo4teW_skey')) {
//登录
this.$store.dispatch({
type: 'issue',
id: id
})
} else {
//未登录
window.location.href = '/v3/login?referer=' + encodeURIComponent(window.location.href);
}
}
},
components: {
......
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
.slide-bar .iconimg{width:50px;height:50px;display:block}.slide-bar .icon-kefu666{background:url(../img/kfp.6a6ca2c2.png) no-repeat;background-size:100%}.slide-bar .icon-gouwuche666{background:url(../img/carp.d37969b5.png) no-repeat;background-size:100%}.slide-bar .icon-xiangshangs666{background:url(../img/arrowtop.c6ef8ec1.png) no-repeat;background-size:100%}.user-inquiry{min-height:100%;background:#f2f9fc}.user-inquiry .customer-service{display:none}.user-inquiry .user-inquiry-head{padding-top:.75rem;padding-bottom:.81rem}.user-inquiry .user-inquiry-head img{width:81px;height:40px;margin:0 auto;display:block}.user-inquiry .user-inquiry-head p{margin-top:.59rem;font-size:12px;color:#6f6f6f;text-align:center}.user-inquiry .section{padding:.73rem 0 1.48rem 0;margin:0 .2rem;background:#fff;-webkit-box-shadow:0 0 4px 0 rgba(180,202,211,.38);box-shadow:0 0 4px 0 rgba(180,202,211,.38);border-radius:3px}.user-inquiry .section .input-box{margin-bottom:.33rem}.user-inquiry .section .input-box label{text-align:right;width:77px;font-size:12px;color:#333;margin-left:.4rem}.user-inquiry .section .input-box label em{color:#f01d1d;margin-right:.1rem}.user-inquiry .section .input-box .input-wrap{margin-left:.3rem}.user-inquiry .section .input-box .input-wrap .imgcode{width:2.15rem;height:35px;margin-left:.27rem}.user-inquiry .section .input-box .input-wrap .imgcode img{width:100%;height:100%}.user-inquiry .section .input-box .input-wrap .code-input{width:3.9rem;height:35px;border-radius:2px;border:1px solid #d2d5d7;text-indent:1em}.user-inquiry .section .input-box .input-wrap .code{width:2.15rem;height:35px;background:#fff;border-radius:1px;border:1px solid #08d;font-size:12px;color:#08d;margin-left:.27rem}.user-inquiry .section .input-box .input-wrap .code.code-curr{color:#ccc;border:1px solid #ccc}.user-inquiry .section .input-box .input-wrap .inp{width:6.3rem;height:35px;border-radius:2px;border:1px solid #d2d5d7;text-indent:1em}.user-inquiry .section .btn{margin-top:1rem}.user-inquiry .section .btn .btn1{width:110px;height:32px;background:#fff;border-radius:1px;border:1px solid #1969f9;font-size:15px;color:#1969f9;text-align:center;margin-right:.67rem}.user-inquiry .section .btn .btn2{width:112px;height:34px;background:#1969f9;border-radius:1px;font-size:15px;color:#fff}
\ No newline at end of file
.slide-bar .iconimg{width:50px;height:50px;display:block}.slide-bar .icon-kefu666{background:url(../img/kfp.6a6ca2c2.png) no-repeat;background-size:100%}.slide-bar .icon-gouwuche666{background:url(../img/carp.d37969b5.png) no-repeat;background-size:100%}.slide-bar .icon-xiangshangs666{background:url(../img/arrowtop.c6ef8ec1.png) no-repeat;background-size:100%}.user-index{padding-bottom:2rem}.user-index .customer-service{display:none}.user-index .header{background:#fff}.user-index .header .banner{width:10rem;height:2.78rem;background:url(../img/htb.4972d824.png) no-repeat;background-size:100%;padding-top:.55rem}.user-index .header .banner img{height:1.55rem;width:1.55rem;margin-left:.45rem}.user-index .header .banner .usernamelk{margin-left:.37rem;height:1.55rem;line-height:1.55rem;color:#333;font-size:18px;width:5.4rem}.user-index .header .banner a{position:relative;height:1.55rem;line-height:1.55rem;margin-right:.41rem;color:#333}.user-index .header .banner a.kfgh{margin-right:.61rem}.user-index .header .banner a span{position:absolute;width:55px;height:23px;top:1rem;left:-.4rem;background:url(../img/userindexkf.4e1d2a00.png) no-repeat;background-size:100% 100%}@media screen and (max-width:320px){.user-index .header .banner a span{width:1.55rem}}.user-index .header .banner a i{font-size:22px}.user-index .header .link-con .item{width:25%;text-align:center}.user-index .header .link-con .item span{font-size:14px;color:#333;display:block}.user-index .header .link-con .item font{margin-top:.1rem;display:block;font-size:12px;color:#6f6f6f}.user-index .header .orders-con{width:9.67rem;height:4.53rem;background:#fff;-webkit-box-shadow:.01rem .01rem .24rem .01rem rgba(120,140,177,.5);box-shadow:.01rem .01rem .24rem .01rem rgba(120,140,177,.5);border-radius:.05rem 0 0 0;margin:0 auto;font-size:12px;color:#6f6f6f;margin-top:.57rem}.user-index .header .orders-con .title-o{color:#333;font-size:16px;padding:.33rem}.user-index .header .orders-con .title-o a{color:#a4a4a4;font-size:12px}.user-index .header .orders-con .title-o a i{font-size:12px;margin-left:.2rem}.user-index .header .orders-con .o-group{margin-top:.6rem}.user-index .header .orders-con .o-group .item{width:20%;text-align:center;font-size:12px;font-weight:500;color:#6f6f6f;position:relative}.user-index .header .orders-con .o-group .item span{position:absolute;width:.72rem;height:.49rem;text-align:center;line-height:.42rem;right:4px;top:-10px;background:url(../img/duihua.d48e510f.png) no-repeat;background-size:100% 100%;font-size:10px;color:#ff693d}.user-index .header .orders-con .o-group .item img{width:.93rem;height:.93rem;display:block;margin:0 auto;margin-bottom:.28rem}.user-index .wl-box{height:1.22rem;padding:.53rem .88rem;font-size:12px;color:#6f6f6f;display:block;background:#f8f8f8;border:1px solid #ececec}.user-index .wl-box p{height:.6rem;line-height:.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.user-index .wl-box.nowl{height:1.62rem;text-align:center}.user-index .wl-box.nowl a{color:#1969f9}.user-index .wl-box img{width:1.23rem;height:1.23rem;margin:0 auto;display:block;margin-bottom:.1rem}.user-index .bottom{width:10rem;height:2.2rem;background:#fff;border-bottom:1px solid #ececec}.user-index .bottom .b-group{padding:.45rem 0;height:1.3rem;text-align:center;color:#6f6f6f;font-size:12px;font-weight:400}.user-index .bottom .b-group .item{width:25%;color:#6f6f6f}.user-index .bottom .b-group i{font-size:30px;color:grey}
\ No newline at end of file
.order{padding-top:89px}.order .o-header{height:40px;background:#8d9598;position:fixed;z-index:2;left:0;top:0;right:0}.order .o-header .order-back{margin-left:.36rem;margin-right:.25rem;color:#fff;font-size:20px;position:relative;top:.2rem;cursor:pointer}.order .o-header .search-box{padding-top:.17rem;position:relative}.order .o-header .search-box i{font-size:20px;position:absolute;top:.22rem;left:.24rem;color:#999;cursor:pointer}.order .o-header .search-box input{width:5.33rem;height:27px;border-radius:27px;padding-left:1rem;background:#fff}.order .o-header .shift{color:#fff;font-size:15px;margin-left:.4rem;margin-top:.25rem;cursor:pointer}.order .o-header .order-kf{color:#fff;font-size:20px;cursor:pointer;margin-top:.22rem;margin-right:.37rem}.order .o-tabnav{height:49px;position:fixed;z-index:2;left:0;top:40px;right:0}.order .o-tabnav .van-tabs__wrap{height:49px}.order .o-tabnav .van-tab__text{color:#333;font-size:14px}.order .o-tabnav .van-tab--active .van-tab__text{color:#1969f9}.order .o-tabnav .van-tabs__line{background-color:#1969f9;width:55px}.order .o-list .van-hairline--surround:after,.order .o-list .van-hairline--top:after{border:1px solid #e5e5e5}.order .o-list .list-group{background:#fff;margin-top:.4rem;padding:.33rem}.order .o-list .list-group .l-h{color:#6f6f6f;font-size:12px;height:17px;line-height:17px;margin-bottom:.44rem}.order .o-list .list-group .l-h a{color:#666}.order .o-list .list-group .l-h span{color:#333;display:inline-block;width:1.12rem;height:17px;background:#f9f9f9;border-radius:2px;border:1px solid #e5e5e5;text-align:center;cursor:pointer;margin-left:.22rem;margin-right:.22rem}@media screen and (max-width:320px){.order .o-list .list-group .l-h span{margin-left:.1rem;margin-right:.1rem}.order .o-list .list-group .l-h p{height:17px;width:67px;overflow:hidden}}.order .o-list .list-group .l-h font{color:#333}.order .o-list .list-group .l-h font.yellows{color:#f1730f}.order .o-list .list-group .l-h font.reds{color:#e25555}.order .o-list .list-group .l-h font.greens{color:#2ca521}.order .o-list .list-group .l-c{background:#f9f9f9;margin-bottom:.33rem}.order .o-list .list-group .l-c .goods-group{padding:.24rem .3rem;height:17px;line-height:17px}.order .o-list .list-group .l-c .goods-group a{width:4.88rem;margin-right:.4rem;color:#333}@media screen and (max-width:320px){.order .o-list .list-group .l-c .goods-group a{width:4rem;margin-right:.2rem}}.order .o-list .list-group .l-b{font-size:12px;text-align:right}.order .o-list .list-group .l-b span{color:#6f6f6f}.order .o-list .list-group .l-b div{color:#ff693d;margin-left:.31rem}.order .o-list .list-group .l-b p{color:#333;font-size:17px}.order .o-list .list-group .l-b p b{color:#ff693d;font-weight:400}.order .o-list .list-group .l-b p i{display:block;color:#999;font-size:12px;margin-top:10px}.order .o-list .list-group .l-b p i .mr10{margin-right:10px}.order .o-list .list-group .l-b .van-count-down{font-size:12px;margin-left:0;margin-top:-.02rem}.order .o-list .list-group .btn-boxs{margin-top:.61rem}.order .o-list .list-group .btn-boxs .btn{width:2.4rem;height:.73rem;line-height:.73rem;display:block;background:#1969f9;border-radius:2px;text-align:center;margin-left:10px;color:#fff;cursor:pointer;border:1px solid #1969f9}.order .o-list .list-group .btn-boxs .btn.btn-lk{background:#fff;color:#1969f9}.order .o-list .list-group .btn-boxs .btn.btn-default{background:#fff;border:1px solid #d2d2d2;color:#333}.order .shift-panel{position:fixed;top:0;bottom:0;left:0;right:0;background:rgba(0,0,0,.4);z-index:3;padding-left:.85rem}.order .shift-panel .shift-box{width:100%;height:100%;background:#fff;padding-top:.37rem;padding-left:.33rem;padding-right:.33rem;position:relative;overflow:hidden}.order .shift-panel .shift-box .group-t{margin-bottom:.64rem}.order .shift-panel .shift-box .group-t h3{font-size:16px;font-weight:600;color:#333;margin-bottom:.4rem}.order .shift-panel .shift-box .group-t .con-t .timepickers{width:3.45rem;height:.8rem;padding-left:.15rem;color:#959595;line-height:.8rem;background:#f9f9f9;border:1px solid #e5e5e5;position:relative}.order .shift-panel .shift-box .group-t .con-t .timepickers i{font-style:20px;margin-right:.3rem}.order .shift-panel .shift-box .group-t .con-t .line-h{color:#e5e5e5;margin-left:.2rem;margin-right:.2rem;height:.8rem;line-height:.8rem}.order .shift-panel .shift-box .group-t .con-t .c-item{width:2.67rem;height:.67rem;line-height:.67rem;background:#f4f4f4;border-radius:.03rem;color:#333;font-style:13px;text-align:center;margin-right:.27rem;margin-bottom:.47rem}.order .shift-panel .shift-box .group-t .con-t .c-item.act{color:#fff;background:#1969f9}.order .shift-panel .shift-box .foor-btn{position:absolute;bottom:.37rem;left:-.33rem;width:100%}.order .shift-panel .shift-box .foor-btn .fl{width:50%;height:49px;text-align:center;line-height:49px}.order .shift-panel .shift-box .foor-btn span{color:#999;border-top:1px solid #e5e5e5}.order .shift-panel .shift-box .foor-btn p{color:#fff;background:#1969f9;border-top:1px solid #1969f9}.order .again-box{z-index:5}.order .again-box,.order .again-box .mask{position:fixed;top:0;bottom:0;left:0;right:0}.order .again-box .mask{background:rgba(0,0,0,.4)}.order .again-box .type1{width:7.47rem;padding-top:1.52rem;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:.11rem;margin:0 auto;position:relative;top:50%;margin-top:-3.33rem;text-align:center}.order .again-box .type1 i{font-size:55px;color:#52c41a;display:block;margin-bottom:.64rem}.order .again-box .type1 p{font-size:14px;color:#333;line-height:30px}.order .again-box .type1 .foot-box{border-top:1px solid #e5e5e5;padding:.24rem 0;margin-top:.4rem;position:relative}.order .again-box .type1 .foot-box:before{content:"";height:.75rem;width:1px;background:#e5e5e5;position:absolute;text-align:center}.order .again-box .type1 .foot-box .btn{height:.75rem;line-height:.75rem;color:#999;font-size:16px;width:50%}.order .again-box .type1 .foot-box .carlink{color:#1969f9}.order .again-box .type2{top:4.5rem;margin-top:0;padding-top:.73rem}.order .again-box .type2 i{margin-bottom:.44rem}.order .again-box .type2 .t-hp{font-size:12px}.order .again-box .type2 .t-hp .f-red{color:#f44949}.order .again-box .type2 .t-list{width:6.88rem;background:#f9f9f9;border:1px solid #e5e5e5;border-bottom:0;margin:0 auto;margin-top:.35rem}.order .again-box .type2 .t-list a{display:block;color:#333;padding:.18rem .39rem;text-align:left;border-bottom:1px solid #e5e5e5}.order .again-box .type3 i{color:#e14e4e}.order .van-empty__image{width:244px;height:184px}
\ No newline at end of file
.user-setting{min-height:100%;background:#f8f8f8}.user-setting .pic-head{padding-top:.55rem;padding-left:.45rem;margin-bottom:.49rem}.user-setting .pic-head img{width:58px;height:58px;border:1px solid #fff;border-radius:50%}.user-setting .pic-head span{font-size:18px;color:#333;font-weight:700;margin-left:.37rem}.user-setting .list{padding:0 .2rem}.user-setting .list,.user-setting .list li{-webkit-box-sizing:border-box;box-sizing:border-box}.user-setting .list li{height:45px;background:#fff;-webkit-box-shadow:0 0 4px 0 rgba(180,202,211,.38);box-shadow:0 0 4px 0 rgba(180,202,211,.38);border-radius:3px;margin-bottom:.27rem;padding-left:.43rem}.user-setting .list li a{height:100%}.user-setting .list li a span{font-size:13px;color:#333}.user-setting .list li a .iconfont{color:#a6a6a6;font-size:11px;margin-right:.8rem}.user-setting .exit{font-size:13px;color:#6f6f6f;text-align:center;margin:3rem auto 0;display:block}
\ No newline at end of file
.slide-bar .iconimg{width:50px;height:50px;display:block}.slide-bar .icon-kefu666{background:url(../img/kfp.6a6ca2c2.png) no-repeat;background-size:100%}.slide-bar .icon-gouwuche666{background:url(../img/carp.d37969b5.png) no-repeat;background-size:100%}.slide-bar .icon-xiangshangs666{background:url(../img/arrowtop.c6ef8ec1.png) no-repeat;background-size:100%}.ac618{background:#ee194b;padding-bottom:50px}.ac618 .header img{width:100%}.ac618 .yhq-boxs .yhq-item{text-align:center;-webkit-box-flex:1;-ms-flex:1;flex:1;height:158px;background:url(../img/yh50.18c5d196.png) no-repeat;background-size:100% 100%;position:relative}.ac618 .yhq-boxs .yhq-item .t1{color:#35156e;font-size:10px;position:relative;top:52px}.ac618 .yhq-boxs .yhq-item .t2{color:#35156e;font-size:12px;font-weight:700;position:relative;top:62px}.ac618 .yhq-boxs .yhq-item .t3{color:#fff;font-size:9px;position:relative;top:68px}.ac618 .yhq-boxs .yhq-item .t4{color:#fff;font-size:12px;position:absolute;text-align:center;height:31px;bottom:0;width:100%;line-height:31px}.ac618 .yhq-boxs .yhq-item.item100{background:url(../img/yh100.12298478.png) no-repeat;background-size:100% 100%}.ac618 .prize-boxs{padding:10px;margin-top:20px}.ac618 .prize-boxs .titleac{font-size:16px;color:#fff;padding-left:10px;border-left:5px solid #35156e;height:20px;line-height:20px}.ac618 .prize-boxs .titleac span{color:#ffa7b4;font-size:10px;float:right}.ac618 .prize-boxs .prize-cons{margin-top:15px;background-size:100% 100%}.ac618 .prize-boxs .prize-cons img{width:100%}.ac618 .new-prizes{padding:10px;margin-top:10px}.ac618 .new-prizes .titleac{font-size:16px;color:#fff;padding-left:10px;border-left:5px solid #ffac00;height:20px;line-height:20px}.ac618 .new-prizes .titleac span{color:#ffa7b4;font-size:10px}.ac618 .new-prizes .titleac p{float:right;color:#f9e958;font-size:10px}.ac618 .new-prizes .prize-cons{margin-top:15px}.ac618 .new-prizes .prize-cons img{width:100%;height:120px;margin-bottom:10px}.ac618 .supplier-boxs{padding:10px;position:relative}.ac618 .supplier-boxs .titleac{font-size:16px;color:#fff;padding-left:10px;border-left:5px solid #3a0a72;height:20px;line-height:20px}.ac618 .supplier-boxs .prize-cons{margin-top:20px}.ac618 .supplier-boxs .prize-cons a{display:block;margin-left:10px;margin-bottom:10px}.ac618 .supplier-boxs .prize-cons a img{display:block;border-radius:3px;width:100%;height:44px}.ac618 .supplier-boxs .prize-cons a div{font-size:12px;color:#fff;margin-top:10px;font-weight:700;text-align:center}.ac618 .supplier-boxs .prize-cons a p{color:#ffabb8;font-size:10px;margin-top:5px;text-align:center}.ac618 .supplier-boxs .prize-cons a.firstpr{margin-left:0}.ac618 .zy-mall{padding:10px;position:relative}.ac618 .zy-mall .titleac{font-size:16px;color:#fff;padding-left:10px;border-left:5px solid #ffac00;height:20px;line-height:20px}.ac618 .zy-mall .list-cons{margin-top:15px}.ac618 .zy-mall .list-cons a{height:46px;display:block;background:#fff;border-radius:3px;margin-bottom:5px;padding:10px}.ac618 .zy-mall .list-cons a .item{width:50%;height:22px;line-height:22px;overflow:hidden}.ac618 .zy-mall .list-cons a .item.t2{font-size:14px;color:#1483e0;font-weight:700}.ac618 .zy-mall .list-cons a .item.t3{font-size:11px;color:#727272;text-align:right}.ac618 .zy-mall .list-cons a .item.t3 span{text-decoration:line-through}.ac618 .zy-mall .list-cons a .item.t1{font-size:12px;color:#404040}.ac618 .zy-mall .list-cons a .item.t4{color:#727272;font-size:11px;text-align:right}.ac618 .zy-mall .list-cons a .item.t4 span{color:#d10020;font-size:12px;font-weight:700}.ac618 .zy-mall .kfbtng{display:block;height:30px;width:100px;color:#fff;font-size:14px;line-height:30px;text-align:center;margin:0 auto;margin-top:20px;border-radius:6px;background:#0082e7}.ac618 .rule-box{padding:10px;margin-top:10px}.ac618 .rule-box .titleac{font-size:16px;color:#fff;padding-left:10px;border-left:5px solid #3a0a72;height:20px;line-height:20px;margin-bottom:10px}.ac618 .rule-box p{font-size:10px;color:#ffa7b4;line-height:30px;padding-left:14px}.slide-bar{display:none}
\ No newline at end of file
.menu-fade{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.menu{position:fixed;right:10px;top:13px;z-index:999}.menu b{font-size:18px;color:#666}.menu .popover-arrow{position:absolute;z-index:1000;top:11px;right:0;overflow:hidden;width:26px;height:26px}.menu .popover-arrow:after{position:absolute;top:19px;left:0;width:26px;height:26px;content:" ";-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:3px;background:#333}.menu .menu-view{margin-top:36px;background:#333;font-size:15px;border-radius:2px;max-height:300px}.menu .menu-view li{position:relative;overflow:hidden;padding:11px 15px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.menu .menu-view li a{color:#fff}.menu .menu-view li a i{margin-right:.1rem}.help{padding-top:40px}.help .head{height:40px;padding:0 .45rem;color:#333;line-height:40px;position:fixed;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.help .head a{color:#333;margin-right:30px}.help .head i{font-size:20px}.help .con .group{width:2.35rem;height:1rem;line-height:1rem;padding-left:.45rem;border-top:1px solid #f8f8f8;border-bottom:1px solid #f8f8f8}.help .con .group h3{font-size:13px;color:#333;height:100%;left:1px;position:relative}.help .con .group.act h3{color:#1969f9}.help .con .group.act h3:before{content:"";position:absolute;width:.11rem;height:.67rem;background:#1969f9;left:-.48rem;top:.16rem}.help .con .group .gro-c{display:none;position:fixed;top:40px;left:2.8rem;right:0;bottom:0;background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #e9e8e8;border-right:0}.help .con .group .gro-c a{display:block;padding-left:.45rem}.help .con .group .gro-c .title{color:#333;font-size:15px;padding-left:.45rem;font-weight:700}.help .con .group .gro-c .text{font-size:14px;color:#6f6f6f;height:1rem;line-height:1rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.help .con .group.act{background:#fff;border-top:1px solid #e9e8e8;border-bottom:1px solid #e9e8e8}.help .con .group.act h3{z-index:1;background:#fff}.help .con .group.act .gro-c{display:block}.help .detail{background:#fff;padding:.45rem;-webkit-box-sizing:border-box;box-sizing:border-box;height:calc(100vh - 40px)}.help .detail .title{font-size:20px;color:#333;margin-bottom:.4rem;font-weight:700}.help .detail .text{color:#333;font-size:14px;line-height:28px}.help .icon-liedanbiao{font-size:14px;color:#333;position:relative;top:-1px;left:-10px}
\ No newline at end of file
.inquery-list{padding-top:49px}.inquery-list .o-tabnav{height:49px;position:fixed;z-index:2;left:0;top:0;right:0}.inquery-list .o-tabnav .van-tabs__wrap{height:49px}.inquery-list .o-tabnav .van-tab__text{color:#333;font-size:14px}.inquery-list .o-tabnav .van-tab--active .van-tab__text{color:#1969f9}.inquery-list .o-tabnav .van-tabs__line{background-color:#1969f9;width:55px}.inquery-list .in-data .in-group{padding:.28rem;-webkit-box-sizing:border-box;box-sizing:border-box;width:9.6rem;height:2.35rem;background:#fff;-webkit-box-shadow:0 0 .09rem 0 rgba(180,202,211,.38);box-shadow:0 0 .09rem 0 rgba(180,202,211,.38);border-radius:.08rem;margin:0 auto;margin-top:.27rem}.inquery-list .in-data .in-group .ig-t{font-size:12px;color:#6f6f6f;padding-bottom:.25rem;border-bottom:1px solid #e5e5e5}.inquery-list .in-data .in-group .ig-t .f-rrr{color:#e25555}.inquery-list .in-data .in-group .ig-t .f-gree{color:#2ca521}.inquery-list .in-data .in-group p{padding-top:.35rem;color:#333;font-size:12px}.inquery-list .van-empty__image{width:244px;height:184px}
\ No newline at end of file
.risk{width:100%;padding-bottom:1rem}.risk .banner{width:100%;height:297px;background:url(../img/bg.805f7079.png) no-repeat top;background-size:cover}.risk .content{position:relative;top:-21px}.risk .content .t1{text-align:center;font-size:20px;color:#666;margin-bottom:.293rem}.risk .content .t2{text-align:center;font-size:13px;color:#666}.risk .content .form-box{width:8.8rem;background-color:#f6f6f6;border-radius:2px;margin:.453rem auto 0;padding:.413rem .653rem .52rem .653rem}.risk .content .form-box .fx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.risk .content .form-box .inpt-wrap{margin-bottom:.4rem}.risk .content .form-box .inpt-wrap .inp{width:100%}.risk .content .form-box .inpt-wrap .inp,.risk .content .form-box .inpt-wrap .inps{height:25px;padding:10px 0;background-color:#fff;border-radius:2px;border:1px solid #37d1a0;font-size:14px;color:#999;text-indent:1em}.risk .content .form-box .inpt-wrap .inps{width:54%}.risk .content .form-box .inpt-wrap .imgcode,.risk .content .form-box .inpt-wrap .imgcode img{width:100px;height:45px}.risk .content .form-box .inpt-wrap .codebtn{width:100px;height:45px;line-height:45px;background-color:#1080d0;font-size:14px;color:#fefeff}.risk .content .form-box .inpt-wrap .codebtn.codebtndisabled{background-color:#c2c2c2}.risk .content .form-box .btn{height:38px;line-height:38px;text-align:center;background-color:#1080d0;border-radius:2px;display:block;font-size:17px;color:#fefeff;margin-top:.707rem}.risk .content .form-box .txt{text-align:left;font-size:12px;color:#0e8f66}.risk-success{width:100%}.risk-success .head{height:6.8rem;background-color:#37d1a0}.risk-success .head .tit{width:7.933rem;height:1.893rem;background-color:#fff;-webkit-box-shadow:0 3px 9px 0 rgba(17,166,119,.55);box-shadow:0 3px 9px 0 rgba(17,166,119,.55);border-radius:2px;font-size:30px;color:#f3b717;line-height:1.893rem;margin:0 auto;text-align:center;font-weight:500}.risk-success .head .level{text-align:center;color:#fff;font-size:51px;margin-top:.5rem;margin-bottom:.64rem}.risk-success .head .txt{text-align:center;font-size:25px;color:#fff}.risk-success .head .tt{text-align:center;font-size:12px;color:#fff;margin-top:.3rem}.risk-success .content{padding-bottom:3rem}.risk-success .content .list{padding-top:.56rem}.risk-success .content .list li{padding:0 0 .973rem 0}.risk-success .content .list li img{width:328px;height:45px;margin:0 auto;display:block}.risk-success .content .list li .t1{text-align:center;font-size:18px;color:#1080d0;margin-top:.387rem;margin-bottom:.613rem;font-weight:700}.risk-success .content .list li .t2{width:84%;margin:0 auto;font-size:15px;color:#333;text-align:justify}.risk-success .share{bottom:10px;width:98%;height:59px;background:url(../img/1.ebdedfbb.gif) no-repeat 50%;background-size:cover;display:block}.risk-success .shade,.risk-success .share{position:fixed;left:0;right:0;margin:0 auto}.risk-success .shade{width:100%;height:100%;top:0;z-index:99;background:rgba(38,38,38,.85)}.risk-success .shade .im{position:absolute;right:7px;top:0;width:261px;height:345px;background:url(../img/share.cc6d04ce.png) no-repeat;background-size:cover;z-index:100}
\ No newline at end of file
.coupon{background:#f8f8f8}.coupon .van-tab--active span{color:red!important}.coupon .van-tabs .van-tabs__wrap{position:fixed;top:44px;left:0;right:0;background:#fff;z-index:99}.coupon .coupon-box{padding:44px 5px 0}.coupon .coupon-box .block{overflow:hidden;margin-top:15px;border-radius:5px;background:#fff;-webkit-box-shadow:0 2px 5px #ddd;box-shadow:0 2px 5px #ddd}.coupon .coupon-box .block dt{width:125px;padding:10px 8px;float:left}.coupon .coupon-box .block dt h4{font-size:36px;font-family:Impact;height:40px;line-height:40px;text-align:center}.coupon .coupon-box .block dt h4 span{font-size:18px;position:relative;top:-15px;font-weight:400;line-height:20px}.coupon .coupon-box .block dt h4 b{font-size:16px;font-weight:400;line-height:20px}.coupon .coupon-box .block dt p{text-align:center;font-size:14px;padding-top:2.5px;line-height:16px;overflow:hidden}.coupon .coupon-box .block .text{padding:10px 8px 8px 125px;position:relative}.coupon .coupon-box .block .text .tag{font-size:12px;position:absolute;top:0;right:0;display:block;width:50px;height:50px}.coupon .coupon-box .block .text .tag span{-webkit-transform:rotate(45deg);transform:rotate(45deg);position:absolute;top:8px;right:-3px;z-index:2;color:#fff;overflow:hidden;display:block;width:40px;text-align:center}.coupon .coupon-box .block .text .tag i{position:absolute;top:0;right:0;z-index:1;display:block;border-top:50px solid red;border-left:50px solid transparent}.coupon .coupon-box .block .text h4{padding-right:50px;font-size:12px;color:#666;font-weight:400;line-height:20px;height:40px;overflow:hidden}.coupon .coupon-box .block .text h4 b{position:relative;color:#fff;display:inline-block;height:16px;font-weight:400;line-height:16px;padding:0 5px;margin:5px 6px}.coupon .coupon-box .block .text h4 i{float:left;position:absolute;top:0;left:-12px;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-width:8px 6px}.coupon .coupon-box .block .text p{font-size:12px;position:relative}.coupon .coupon-box .block .text p span{padding-top:12px;display:block;color:#999}.coupon .coupon-box .block .text .but-bg{height:30px;line-height:30px;font-size:14px;border-radius:30px;padding:0 12px;text-decoration:none;text-align:center;background:#fff}.coupon .coupon-box .block .text .but-bg:hover{color:#fff}.coupon .coupon-box .box-orange .text .but-bg{color:#ffa200;border:1px solid #ffa200}.coupon .coupon-box .box-blue .text .but-bg{color:#1080d0;border:1px solid #1080d0}.coupon .coupon-box .box-green .text .but-bg{color:#52bd61;border:1px solid #52bd61}.coupon .coupon-box .box-gray .text .but-bg{color:#999;border:1px solid #999}.coupon .coupon-box .block .number{height:33px;padding:8px;font-size:12px;color:#666;background:url(https://m.ichunt.com/v3/dist/res/m/images/coupon/coupon_bg.png) repeat-x;background-size:12px}.coupon .coupon-box .box-orange .text .tag i{border-top-color:#ffa200}.coupon .coupon-box .box-orange dt,.coupon .coupon-box .box-orange dt p{color:#ffa200}.coupon .coupon-box .box-orange .text .but-bg:hover,.coupon .coupon-box .box-orange .text h4 b{background:#ffa200}.coupon .coupon-box .box-orange .text h4 i{border-right-color:#ffa200}.coupon .coupon-box .box-blue .text .tag i{border-top-color:#1080d0}.coupon .coupon-box .box-blue dt,.coupon .coupon-box .box-blue dt p{color:#1080d0}.coupon .coupon-box .box-blue .text .but-bg:hover,.coupon .coupon-box .box-blue .text h4 b{background:#1080d0}.coupon .coupon-box .box-blue .text h4 i{border-right-color:#1080d0}.coupon .coupon-box .box-green .text .tag i{border-top-color:#52bd61}.coupon .coupon-box .box-green dt,.coupon .coupon-box .box-green dt p{color:#52bd61}.coupon .coupon-box .box-green .text .but-bg:hover,.coupon .coupon-box .box-green .text h4 b{background:#52bd61}.coupon .coupon-box .box-green .text h4 i{border-right-color:#52bd61}.coupon .coupon-box .box-gray .text .tag i{border-top-color:#999}.coupon .coupon-box .box-gray dt,.coupon .coupon-box .box-gray dt p{color:#999}.coupon .coupon-box .box-gray .text .but-bg:hover,.coupon .coupon-box .box-gray .text h4 b{background:#999}.coupon .coupon-box .box-gray .text h4 i{border-right-color:#999}.coupon .coupon-box .box-orange .text h4 span{color:#ffa200}.coupon .coupon-box .box-blue .text h4 span{color:#1080d0}.coupon .coupon-box .box-green .text h4 span{color:#52bd61}.coupon .coupon-box i.icon-get{font-size:72px;position:absolute;right:10px;top:-50px;text-align:right;color:#999}.coupon .coupon-box .dangxuan{height:30px}.coupon .coupon-box .dangxuan span{font-size:12px;float:left;padding-top:13px}.coupon .coupon-box .dangxuan .mui-radio{float:right;width:28px;margin-top:13px}.coupon .coupon-box .dangxuan .mui-radio input[type=radio]{right:0;top:0;width:18px}.coupon .coupon-box .nonuse{overflow:hidden;margin-top:15px;height:30px;line-height:30px;font-size:14px;border-radius:5px;background:#fff;-webkit-box-shadow:0 2px 3px #eee;box-shadow:0 2px 3px #eee}.coupon .coupon-box .nonuse span{font-size:14px;float:left;padding-top:0;padding-left:5px;color:#666}.coupon .coupon-box .nonuse .dangxuan .mui-radio{margin:8px 5px 0 0}.coupon .coupon_no{text-align:center;padding:25px 20px}.coupon .coupon_no dd{font-size:12px}.coupon .coupon_no span{width:162px;height:182px;padding-bottom:20px;display:inline-block;background:url(https://m.ichunt.com/v3/dist/res/m/images/coupon/coupon_no.png);background-size:contain;background-repeat:no-repeat}
\ No newline at end of file
.exchange{font-family:Helvetica Neue,Helvetica,sans-serif;position:relative;height:100%;overflow:hidden;background:#fff}.exchange .f-r{float:right}.exchange .f-l{float:left}.exchange .point-list-head1{height:42px;line-height:42px;padding:0 5%;border-bottom:1px solid #e1e1e1;width:100%;display:inline;white-space:nowrap;overflow-x:scroll;float:left;overflow-y:hidden}.exchange .point-list-head1 li{display:inline-block;width:30%;text-align:center;font-size:16px;height:42px;line-height:42px;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box}.exchange .point-list-head1 li.act{color:#1080d0;border-bottom:2px solid #1080d0}.exchange .exchange_content{position:absolute;top:86px;left:0;right:0;padding:0 .32rem;bottom:0;overflow-y:auto}.exchange .exchange_content .data-group{border-bottom:1px solid #e1e1e1;-webkit-box-sizing:border-box;box-sizing:border-box}.exchange .exchange_content .data-group .f-l{height:70px;padding-top:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.exchange .exchange_content .data-group .f-l .imgbox{overflow:hidden;margin-right:10px}.exchange .exchange_content .data-group .f-l .imgbox img{width:2rem;height:1.33rem;border-radius:4px}.exchange .exchange_content .data-group .f-l.infotext{width:3.6rem}.exchange .exchange_content .data-group .f-l.infotext .boxtextx{height:32.5px;word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;line-height:16.5px;color:#333;font-size:.37rem}.exchange .exchange_content .data-group .f-l.infotext span{color:#999;font-size:.32rem}.exchange .exchange_content .data-group .f-r{height:70px;line-height:70px;color:#ffa200;font-size:.37rem}
\ No newline at end of file
.slide-bar .iconimg{width:50px;height:50px;display:block}.slide-bar .icon-kefu666{background:url(../img/kfp.6a6ca2c2.png) no-repeat;background-size:100%}.slide-bar .icon-gouwuche666{background:url(../img/carp.d37969b5.png) no-repeat;background-size:100%}.slide-bar .icon-xiangshangs666{background:url(../img/arrowtop.c6ef8ec1.png) no-repeat;background-size:100%}.findthing-content{background:#072565;width:100%}.findthing-content .seo-head{width:100%;height:7.6rem;background:url(../img/banner22.faf63e71.png) no-repeat;background-size:100% 100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:1.3rem}.findthing-content .seo-head .head-nav{width:100%;height:22px;background:#c9b086}.findthing-content .seo-head .head-nav li{float:left;width:20%;text-align:center;height:22px;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:2px}.findthing-content .seo-head .head-nav li a{color:#181c27;display:block;cursor:pointer;width:100%;height:18px;line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1px solid #9f8d70}.findthing-content .seo-head .head-nav li a.last-nav{border-right:0}.findthing-content .seo-section .form-box1 .form-group{width:9.2rem;height:50px;line-height:50px;text-align:center;margin:0 auto;margin-top:15px;background:#fff;border-radius:4px;overflow:hidden}.findthing-content .seo-section .form-box1 .form-group .pr{position:relative}.findthing-content .seo-section .form-box1 .form-group span{width:3.2rem;height:50px;line-height:50px;font-size:16px;text-align:right;padding:0 .2rem;-webkit-box-sizing:border-box;box-sizing:border-box}.findthing-content .seo-section .form-box1 .form-group span font{color:red}.findthing-content .seo-section .form-box1 .form-group span .hiddenvi{visibility:hidden}.findthing-content .seo-section .form-box1 .form-group .input-box{width:6rem;height:50px;line-height:50px;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .2rem}.findthing-content .seo-section .form-box1 .form-group .input-box input{font-size:16px;text-align:left;width:100%;float:left;height:100%}.findthing-content .seo-section .form-box1 .form-group .input-box .code{position:absolute;right:0;height:50px;width:3rem;top:0;cursor:pointer;color:#1080d0;text-align:center;line-height:50px;font-size:15px}.findthing-content .seo-section .form-box1 .form-group .input-box .code.dis{color:#ccc}.findthing-content .seo-section .form-box1 .form-group .input-box .img-code{position:absolute;right:0;height:50px;width:3rem;top:0;cursor:pointer}.findthing-content .seo-section .form-box1 .submit-button{border-radius:50px;width:9.2rem;height:50px;margin:0 auto;background:url(../img/submitbtn.259a087d.png) no-repeat;background-size:100% 100%;cursor:pointer}.findthing-content .seo-section .form-box1 .form1-tips{text-align:center;color:red;font-size:14px;margin-top:15px;margin-bottom:5px}.findthing-content .seo-section .form-box1 .form1-warn{font-size:12px;color:#8c98b2;width:9.2rem;margin:0 auto;margin-top:5px}.findthing-content .seo-section .form-box1 .form1-warn font{color:red}.findthing-content .seo-section .img-show-static{height:14.706rem;background:url(../img/staticx.b75fe82b.png) no-repeat;background-size:100% 100%;margin-top:30px}.findthing-content .seo-section .zizi-box{height:10.333rem;width:8.4rem;background:url(../img/lxzz.99f6a2ce.png) no-repeat;background-size:100% 100%;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:3.786rem}.findthing-content .seo-section .zizi-box .zizi-ct{width:7.333rem;height:3.4rem;border-style:solid;border-width:.08rem;border-color:#c1b193;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:.826rem}.findthing-content .seo-section .zizi-box .zizi-ct .slide-box{margin:0 auto;width:3rem;height:2.28rem}.findthing-content .seo-section .zizi-box .zizi-ct .slide-box .slide-pic{width:3rem;height:2.28rem}.findthing-content .seo-section .foot-box{height:2.2rem;background:url(../img/foot.2df97c93.png) no-repeat;background-size:100% 100%;margin:0 auto}.findthing-content .seo-section .foot-box .foot-box-ct{margin-top:50px;height:30px;line-height:30px;background-color:#e8b778;text-align:center;font-size:14px;color:#181c27;position:relative;top:-10px}.findthing-content .seo-section .foot-box .foot-box-ct i{font-size:14px!important}.findthing-content .seo-section .foot-box .foot-box-ct a{color:#181c27!important}
\ No newline at end of file
.oscilloscope{padding-top:1.067rem;padding-bottom:1.513rem}.oscilloscope .top-users{height:1.067rem;background-color:#5267ff;font-size:15px;color:#fff;position:fixed;top:44px;left:0;right:0;overflow:hidden;z-index:2}.oscilloscope .top-users ul{position:absolute;top:0;left:0;right:0}.oscilloscope .top-users ul.animate-ul{top:-1.067rem;-webkit-transition:all .5s;transition:all .5s}.oscilloscope .top-users ul li{height:1.067rem;line-height:1.067rem;text-align:center}.oscilloscope .oscilloscope-wrapper .banner-div{height:5.333rem}.oscilloscope .oscilloscope-wrapper .banner-div .my-swipe .swiper-img{height:5.333rem;width:100%}.oscilloscope .oscilloscope-wrapper .prize-div{padding:.667rem .4rem 0;background-color:#edf6ff}.oscilloscope .oscilloscope-wrapper .prize-div .title{margin:0 auto;background-repeat:no-repeat;background-size:100% 100%}.oscilloscope .oscilloscope-wrapper .prize-div .title.title1{width:7.28rem;height:.827rem;background-image:url(../img/title1.2f5905c1.png);margin-bottom:.21rem}.oscilloscope .oscilloscope-wrapper .prize-div .title.title2{width:6.6rem;height:.84rem;background-image:url(../img/title2.30382b4e.png);margin-bottom:.21rem;margin-top:.853rem}.oscilloscope .oscilloscope-wrapper .prize-div .title.title3{width:6.613rem;height:.827rem;background-image:url(../img/title3.5795accf.png);margin-bottom:.533rem;margin-top:.853rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper{background-color:#fff;-webkit-box-shadow:0 0 .24rem 0 rgba(131,189,246,.31);box-shadow:0 0 .24rem 0 rgba(131,189,246,.31);border-radius:.053rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-title{text-align:center;padding:.333rem 0 .373rem;font-size:15px;color:#333}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items{text-align:center}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item{margin-bottom:1.04rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item:nth-child(2n){margin-left:1.773rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-top{-webkit-box-sizing:border-box;box-sizing:border-box;width:2.933rem;height:2.187rem;border-radius:.053rem;border:.08rem solid #bcf3f9;text-align:center;line-height:2.187rem;position:relative}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-top img{width:2.427rem;height:1.747rem;margin-top:.12rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-top .text{display:block;width:.827rem;height:.827rem;background-color:#5267ff;border-radius:50% 50%;color:#fff;text-align:center;line-height:.827rem;font-size:18px;position:absolute;right:-.28rem;top:-.253rem}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-bottom{position:relative}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-bottom .arrow-bottom{display:block;width:0;height:0;border-right:.313rem solid transparent;border-left:.313rem solid transparent;border-top:.52rem solid #bcf3f9}.oscilloscope .oscilloscope-wrapper .prize-div .prize-items-wrapper .prize-items .prize-item .item-bottom .num{position:absolute;font-size:14px;color:#fff;padding:.1rem .25rem;min-width:2rem;max-width:2.5rem;background-color:#cfa972;border-radius:.053rem;top:-.2rem;left:1rem;white-space:nowrap;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div{-webkit-box-shadow:0 0 .24rem 0 rgba(131,189,246,.31);box-shadow:0 0 .24rem 0 rgba(131,189,246,.31);border-radius:.053rem;font-size:14px;color:#333;padding:.093rem;background-color:#fff}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div .reward-div-header{padding:.2rem 0;background-color:#fffbf4}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div .reward-div-header div{width:33.33%;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div .reward-datas{padding:.2rem 0}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div .reward-datas .reward-data div{width:33.33%;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:.387rem 0;-webkit-box-sizing:border-box;box-sizing:border-box}.oscilloscope .oscilloscope-wrapper .prize-div .reward-div .reward-datas .reward-data div.no-data{width:100%}.oscilloscope .oscilloscope-wrapper .prize-div .rule-datas{font-size:12px;color:#333;padding-bottom:1.333rem}.oscilloscope .oscilloscope-wrapper .prize-div .rule-datas p{line-height:.801rem}.oscilloscope .oscilloscope-wrapper .prize-div .rule-datas p span{color:#3247e1}.oscilloscope .oscilloscope-wrapper .footer-btns{position:fixed;bottom:0;left:0;right:0}.oscilloscope .oscilloscope-wrapper .footer-btns .btn{width:50%;height:1.513rem;text-align:center;line-height:1.513rem;font-size:20px;color:#fff}.oscilloscope .oscilloscope-wrapper .footer-btns .btn.gm-btn{background-color:#869fff}.oscilloscope .oscilloscope-wrapper .footer-btns .btn.fx-btn{background-color:#3c5fe3}
\ No newline at end of file
.zl_Detail *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,sans-serif}.zl_Detail .hidex{display:none}.zl_Detail .details-head .head_top{border-bottom:1px solid #d6d7dc;padding:10px}.zl_Detail .details-head .head_top .head_top_left{width:56px}.zl_Detail .details-head .head_top .head_top_left img{display:block;width:56px;height:56px;border:1px solid #e5e5e5}.zl_Detail .details-head .head_top .head_top_right{padding-left:66px}.zl_Detail .details-head .head_top .head_top_right h4{padding-bottom:10px;font-size:18px;color:#333}.zl_Detail .details-head .head_bottom{border-bottom:1px solid #d6d7dc;padding:5px 10px}.zl_Detail .details-head .head_bottom li{width:50%;line-height:20px;height:20px;font-size:12px;color:#999}.zl_Detail .details-head .head_bottom li b{display:block;float:left;line-height:20px;height:20px;font-weight:400}.zl_Detail .details-head .head_bottom li span{color:#333;line-height:20px;height:20px;display:block;padding:0 5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zl_Detail .details-head .head_bottom li .f-orange{color:#ffa200;margin-left:5px}.zl_Detail .details-cont{position:absolute;top:149px;bottom:44px;width:100%;padding:10px;overflow-y:auto}.zl_Detail .details-cont .gradient{width:100%}.zl_Detail .details-cont .gradient table{width:100%;line-height:32px;font-size:12px;text-align:center;color:#666;border:1px solid #d9d9d9}.zl_Detail .details-cont .gradient table .xs-6{width:50%}.zl_Detail .details-cont .gradient table .xs-4{width:33.33%}.zl_Detail .details-cont .gradient table .xs-3{width:25%}.zl_Detail .details-cont .gradient table th{border:1px solid #d9d9d9;font-weight:400;color:#666}.zl_Detail .details-cont .gradient table td{border:1px solid #d9d9d9;color:#333}.zl_Detail .details-cont .gradient .zkxk{font-size:12px;height:24px;line-height:24px;border:1px solid #e5e5e5;border-top:none;text-align:center;color:#666}.zl_Detail .details-cont .gradient .zkxk .icon-top{bottom:9px;position:relative;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-bottom-color:#4d4d4d;border-width:4px;margin-left:5px}.zl_Detail .details-cont .gradient .zkxk .icon-bot{top:9px;position:relative;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-top-color:#4d4d4d;border-width:4px;margin-left:5px}.zl_Detail .details-cont .price{padding-top:10px}.zl_Detail .details-cont .price .zyqhc{position:absolute;width:4.53333rem;height:.93333rem;color:#999;font-size:.26667rem;border:1px solid #ffa200;left:130px;line-height:.37333rem;padding:.06667rem;-webkit-box-shadow:0 0 3px #ffd07f;box-shadow:0 0 3px #ffd07f;border-radius:3px}.zl_Detail .details-cont .price .zyqhc .lfldiv{width:.4rem}.zl_Detail .details-cont .price .zyqhc .lfldiv font{position:relative;font-size:.29333rem;margin-right:.06667rem}.zl_Detail .details-cont .price .zyqhc .lfrdiv{width:3.86667rem}.zl_Detail .details-cont .price .bbiu{border-color:transparent #ffa200 transparent transparent;left:118px}.zl_Detail .details-cont .price .bbiu,.zl_Detail .details-cont .price .bbiu1{display:inline-block;position:absolute;border-width:6px;border-style:solid;top:.2rem}.zl_Detail .details-cont .price .bbiu1{border-color:transparent #fff transparent transparent;left:120px}.zl_Detail .details-cont .price .em1{padding:0 .5em}.zl_Detail .details-cont .price dl{font-size:12px}.zl_Detail .details-cont .price dl dt{width:5em;color:#999;float:left;line-height:30px}.zl_Detail .details-cont .price dl dd{padding-left:5em;color:#333;line-height:30px}.zl_Detail .details-cont .price dl dd.onePrice{font-size:14px}.zl_Detail .details-cont .price dl dd.totalPrice{font-weight:700;color:red;font-size:14px}.zl_Detail .details-cont .price dl dd.tab span{display:block;float:left;margin:2px 10px 0 0;color:#333;height:23px;line-height:22px;padding:0 10px;border:1px solid #d9d9d9;border-radius:3px;background:#fff}.zl_Detail .details-cont .price dl dd.tab span.act{color:#e10601;border-color:#e10601}.zl_Detail .details-cont .price dl dd.tab span.act-blue{color:#1080d0;border-color:#1080d0}.zl_Detail .details-cont .price dl dd .number{float:left;width:118px;height:30px;border:1px solid #d9d9d9;border-radius:3px;background:#fff;position:relative}.zl_Detail .details-cont .price dl dd .number i{cursor:pointer;height:28px;width:28px;text-align:center;line-height:28px;display:block;float:left;background:none;color:#999;font-size:18px}.zl_Detail .details-cont .price dl dd .number input{text-align:center;float:left;padding:4px 5px;line-height:20px;height:28px;width:60px;background:none;color:#333;font-size:12px;border:none;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.zl_Detail .details-foot{height:43px;border-top:1px solid #d6d7dc;width:100%;position:absolute;bottom:0}.zl_Detail .details-foot span{width:50%;display:block;float:left;height:43px;line-height:43px;font-size:14px;color:#fff;text-decoration:none;text-align:center;border:none}.zl_Detail .details-foot span.but-blue{background:#1080d0}.zl_Detail .details-foot span.but-red{background:#e10601}
\ No newline at end of file
.slide-bar .iconimg{width:50px;height:50px;display:block}.slide-bar .icon-kefu666{background:url(../img/kfp.6a6ca2c2.png) no-repeat;background-size:100%}.slide-bar .icon-gouwuche666{background:url(../img/carp.d37969b5.png) no-repeat;background-size:100%}.slide-bar .icon-xiangshangs666{background:url(../img/arrowtop.c6ef8ec1.png) no-repeat;background-size:100%}.lxshop .lxshop-content .f-blue{color:#1080d0}.lxshop .lxshop-content .sosoarr{display:none;background-color:#fff;font-size:15px;font-weight:400;height:44px;line-height:44px;width:100%;-webkit-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee;table-layout:fixed;border-bottom:1px solid #d6d7dc;text-align:center;padding:0 15%;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lxshop .lxshop-content .layer-fix{display:block;position:fixed;top:44px;left:0;right:0;z-index:10}.lxshop .lxshop-content .sift-box{position:relative;padding-top:5px;padding-left:2.5%;height:36px;line-height:36px;border-bottom:1px solid #d6d7dc;background-color:#fff}.lxshop .lxshop-content .sift-box dl{float:left;width:35%;margin-right:0;height:35px;color:#333}.lxshop .lxshop-content .sift-box dl dt{text-align:center;font-size:12px;height:30px;line-height:30px;background:#f8f8f8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px}.lxshop .lxshop-content .sift-box dl dd{position:absolute;top:42px;left:0;width:100%;bottom:140px;z-index:3;display:none}.lxshop .lxshop-content .sift-box dl dd ul{background:#fff;padding-bottom:3px;height:200px;overflow-x:auto}.lxshop .lxshop-content .sift-box dl dd ul li{width:46%;color:#333;font-size:14px;border:1px solid #fff;margin:0 2%;margin-top:3px;padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box;height:32px;line-height:32px}.lxshop .lxshop-content .sift-box dl dd ul li.check{border:1px solid #1080d0;color:#1080d0}.lxshop .lxshop-content .sift-box dl dd .button{border-top:1px solid #d6d7dc;height:40px;line-height:40px;background:#fff;-webkit-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee}.lxshop .lxshop-content .sift-box dl dd .button a{width:50%;font-size:14px;height:39px;line-height:39px;display:block;float:left;text-align:center;color:#333}.lxshop .lxshop-content .sift-box dl dd .button a.but-blue{background:#1080d0;color:#fff;text-decoration:none;text-align:center;border:none}.lxshop .lxshop-content .sift-box dl.p_act{border:1px solid #d6d7dc;border-bottom:none}.lxshop .lxshop-content .sift-box dl.p_act dd{display:block}.lxshop .lxshop-content .sift-box dl.p_act dt{background:#fff;height:34px;line-height:34px;border-bottom:2px solid #fff}.lxshop .lxshop-content .search-list-box .data-group-supplier .name-shop{padding:10px;background:#fff}.lxshop .lxshop-content .search-list-box .data-group-supplier .name-shop img{width:60px;height:30px;display:block;float:left;border:1px solid #e5e5e5;margin-right:10px}.lxshop .lxshop-content .search-list-box .data-group-supplier .name-shop .ad{color:#666;font-size:12px;display:block;line-height:16px;overflow:hidden;height:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.lxshop .lxshop-content .search-list-box .data-group-supplier .more-number,.lxshop .lxshop-content .search-list-box .data-group-supplier .more-numberxk{color:#999;background:#f8f8f8;height:32px;line-height:32px;font-size:12px;text-align:center}.lxshop .lxshop-content .search-list-box .data-group-supplier .more-number .cup,.lxshop .lxshop-content .search-list-box .data-group-supplier .more-numberxk .cup{cursor:pointer;color:#1080d0}.lxshop .lxshop-content .search-list-box .data-group-supplier .more-number .cup:hover,.lxshop .lxshop-content .search-list-box .data-group-supplier .more-numberxk .cup:hover{cursor:pointer;color:#0073c5;font-weight:700}.lxshop .lxshop-content .data-group-supplier-no{color:#999;font-size:16px;line-height:28px}.lxshop .lxshop-content .data-group-supplier-no .toisx{text-align:center;margin-top:100px}
\ No newline at end of file
.zl_Detail *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,sans-serif}.zl_Detail .hidex{display:none}.zl_Detail .details-head .head_top{border-bottom:1px solid #d6d7dc;padding:10px}.zl_Detail .details-head .head_top .head_top_left{width:56px}.zl_Detail .details-head .head_top .head_top_left img{display:block;width:56px;height:56px;border:1px solid #e5e5e5}.zl_Detail .details-head .head_top .head_top_right{padding-left:66px}.zl_Detail .details-head .head_top .head_top_right h4{padding-bottom:10px;font-size:18px;color:#333}.zl_Detail .details-head .head_bottom{border-bottom:1px solid #d6d7dc;padding:5px 10px}.zl_Detail .details-head .head_bottom li{width:50%;line-height:20px;height:20px;font-size:12px;color:#999}.zl_Detail .details-head .head_bottom li b{display:block;float:left;line-height:20px;height:20px;font-weight:400}.zl_Detail .details-head .head_bottom li span{color:#333;line-height:20px;height:20px;display:block;padding:0 5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zl_Detail .details-head .head_bottom li .f-orange{color:#ffa200;margin-left:5px}.zl_Detail .details-cont{position:absolute;top:149px;bottom:44px;width:100%;padding:10px;overflow-y:auto}.zl_Detail .details-cont .gradient{width:100%}.zl_Detail .details-cont .gradient table{width:100%;line-height:32px;font-size:12px;text-align:center;color:#666;border:1px solid #d9d9d9}.zl_Detail .details-cont .gradient table .xs-6{width:50%}.zl_Detail .details-cont .gradient table .xs-4{width:33.33%}.zl_Detail .details-cont .gradient table .xs-3{width:25%}.zl_Detail .details-cont .gradient table th{border:1px solid #d9d9d9;font-weight:400;color:#666}.zl_Detail .details-cont .gradient table td{border:1px solid #d9d9d9;color:#333}.zl_Detail .details-cont .gradient .zkxk{font-size:12px;height:24px;line-height:24px;border:1px solid #e5e5e5;border-top:none;text-align:center;color:#666}.zl_Detail .details-cont .gradient .zkxk .icon-top{bottom:9px;position:relative;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-bottom-color:#4d4d4d;border-width:4px;margin-left:5px}.zl_Detail .details-cont .gradient .zkxk .icon-bot{top:9px;position:relative;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-top-color:#4d4d4d;border-width:4px;margin-left:5px}.zl_Detail .details-cont .price{padding-top:10px}.zl_Detail .details-cont .price .zyqhc{position:absolute;width:4.53333rem;height:.93333rem;color:#999;font-size:.26667rem;border:1px solid #ffa200;left:130px;line-height:.37333rem;padding:.06667rem;-webkit-box-shadow:0 0 3px #ffd07f;box-shadow:0 0 3px #ffd07f;border-radius:3px}.zl_Detail .details-cont .price .zyqhc .lfldiv{width:.4rem}.zl_Detail .details-cont .price .zyqhc .lfldiv font{position:relative;font-size:.29333rem;margin-right:.06667rem}.zl_Detail .details-cont .price .zyqhc .lfrdiv{width:3.86667rem}.zl_Detail .details-cont .price .bbiu{border-color:transparent #ffa200 transparent transparent;left:118px}.zl_Detail .details-cont .price .bbiu,.zl_Detail .details-cont .price .bbiu1{display:inline-block;position:absolute;border-width:6px;border-style:solid;top:.2rem}.zl_Detail .details-cont .price .bbiu1{border-color:transparent #fff transparent transparent;left:120px}.zl_Detail .details-cont .price .em1{padding:0 .5em}.zl_Detail .details-cont .price dl{font-size:12px}.zl_Detail .details-cont .price dl dt{width:5em;color:#999;float:left;line-height:30px}.zl_Detail .details-cont .price dl dd{padding-left:5em;color:#333;line-height:30px}.zl_Detail .details-cont .price dl dd.onePrice{font-size:14px}.zl_Detail .details-cont .price dl dd.totalPrice{font-weight:700;color:red;font-size:14px}.zl_Detail .details-cont .price dl dd.tab span{display:block;float:left;margin:2px 10px 0 0;color:#333;height:23px;line-height:22px;padding:0 10px;border:1px solid #d9d9d9;border-radius:3px;background:#fff}.zl_Detail .details-cont .price dl dd.tab span.act{color:#e10601;border-color:#e10601}.zl_Detail .details-cont .price dl dd.tab span.act-blue{color:#1080d0;border-color:#1080d0}.zl_Detail .details-cont .price dl dd .number{float:left;width:118px;height:30px;border:1px solid #d9d9d9;border-radius:3px;background:#fff;position:relative}.zl_Detail .details-cont .price dl dd .number i{cursor:pointer;height:28px;width:28px;text-align:center;line-height:28px;display:block;float:left;background:none;color:#999;font-size:18px}.zl_Detail .details-cont .price dl dd .number input{text-align:center;float:left;padding:4px 5px;line-height:20px;height:28px;width:60px;background:none;color:#333;font-size:12px;border:none;border-left:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.zl_Detail .details-foot{height:43px;border-top:1px solid #d6d7dc;width:100%;position:absolute;bottom:0}.zl_Detail .details-foot span{width:50%;display:block;float:left;height:43px;line-height:43px;font-size:14px;color:#fff;text-decoration:none;text-align:center;border:none}.zl_Detail .details-foot span.but-blue{background:#1080d0}.zl_Detail .details-foot span.but-red{background:#e10601}
\ No newline at end of file
.risk{width:100%;padding-bottom:1rem}.risk .banner{width:100%;height:297px;background:url(../img/bg.805f7079.png) no-repeat top;background-size:cover}.risk .content{position:relative;top:-21px}.risk .content .t1{text-align:center;font-size:20px;color:#666;margin-bottom:.293rem}.risk .content .t2{text-align:center;font-size:13px;color:#666}.risk .content .form-box{width:8.8rem;background-color:#f6f6f6;border-radius:2px;margin:.453rem auto 0;padding:.413rem .653rem .52rem .653rem}.risk .content .form-box .fx{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.risk .content .form-box .inpt-wrap{margin-bottom:.4rem}.risk .content .form-box .inpt-wrap .inp{width:100%}.risk .content .form-box .inpt-wrap .inp,.risk .content .form-box .inpt-wrap .inps{height:25px;padding:10px 0;background-color:#fff;border-radius:2px;border:1px solid #37d1a0;font-size:14px;color:#999;text-indent:1em}.risk .content .form-box .inpt-wrap .inps{width:54%}.risk .content .form-box .inpt-wrap .imgcode,.risk .content .form-box .inpt-wrap .imgcode img{width:100px;height:45px}.risk .content .form-box .inpt-wrap .codebtn{width:100px;height:45px;line-height:45px;background-color:#1080d0;font-size:14px;color:#fefeff}.risk .content .form-box .inpt-wrap .codebtn.codebtndisabled{background-color:#c2c2c2}.risk .content .form-box .btn{height:38px;line-height:38px;text-align:center;background-color:#1080d0;border-radius:2px;display:block;font-size:17px;color:#fefeff;margin-top:.707rem}.risk .content .form-box .txt{text-align:left;font-size:12px;color:#0e8f66}.risk-success{width:100%}.risk-success .head{height:6.8rem;background-color:#37d1a0}.risk-success .head .tit{width:7.933rem;height:1.893rem;background-color:#fff;-webkit-box-shadow:0 3px 9px 0 rgba(17,166,119,.55);box-shadow:0 3px 9px 0 rgba(17,166,119,.55);border-radius:2px;font-size:30px;color:#f3b717;line-height:1.893rem;margin:0 auto;text-align:center;font-weight:500}.risk-success .head .level{text-align:center;color:#fff;font-size:51px;margin-top:.5rem;margin-bottom:.64rem}.risk-success .head .txt{text-align:center;font-size:25px;color:#fff}.risk-success .head .tt{text-align:center;font-size:12px;color:#fff;margin-top:.3rem}.risk-success .content{padding-bottom:3rem}.risk-success .content .list{padding-top:.56rem}.risk-success .content .list li{padding:0 0 .973rem 0}.risk-success .content .list li img{width:328px;height:45px;margin:0 auto;display:block}.risk-success .content .list li .t1{text-align:center;font-size:18px;color:#1080d0;margin-top:.387rem;margin-bottom:.613rem;font-weight:700}.risk-success .content .list li .t2{width:84%;margin:0 auto;font-size:15px;color:#333;text-align:justify}.risk-success .share{bottom:10px;width:98%;height:59px;background:url(../img/1.ebdedfbb.gif) no-repeat 50%;background-size:cover;display:block}.risk-success .shade,.risk-success .share{position:fixed;left:0;right:0;margin:0 auto}.risk-success .shade{width:100%;height:100%;top:0;z-index:99;background:rgba(38,38,38,.85)}.risk-success .shade .im{position:absolute;right:7px;top:0;width:261px;height:345px;background:url(../img/share.cc6d04ce.png) no-repeat;background-size:cover;z-index:100}
\ No newline at end of file
.pointer-rule{background:#fff}.pointer-rule .point-mall-rule{padding:0 12px}.pointer-rule .rule-content{padding-top:18px}.pointer-rule .rule-content p{margin-bottom:10px;color:#666!important;font-size:13px}
\ No newline at end of file
.menu-fade{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.menu{position:fixed;right:10px;top:13px;z-index:999}.menu b{font-size:18px;color:#666}.menu .popover-arrow{position:absolute;z-index:1000;top:11px;right:0;overflow:hidden;width:26px;height:26px}.menu .popover-arrow:after{position:absolute;top:19px;left:0;width:26px;height:26px;content:" ";-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:3px;background:#333}.menu .menu-view{margin-top:36px;background:#333;font-size:15px;border-radius:2px;max-height:300px}.menu .menu-view li{position:relative;overflow:hidden;padding:11px 15px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.menu .menu-view li a{color:#fff}.menu .menu-view li a i{margin-right:.1rem}.help{padding-top:40px}.help .head{height:40px;padding:0 .45rem;color:#333;line-height:40px;position:fixed;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.help .head a{color:#333;margin-right:30px}.help .head i{font-size:20px}.help .con .group{width:2.35rem;height:1rem;line-height:1rem;padding-left:.45rem;border-top:1px solid #f8f8f8;border-bottom:1px solid #f8f8f8}.help .con .group h3{font-size:13px;color:#333;height:100%;left:1px;position:relative}.help .con .group.act h3{color:#1969f9}.help .con .group.act h3:before{content:"";position:absolute;width:.11rem;height:.67rem;background:#1969f9;left:-.48rem;top:.16rem}.help .con .group .gro-c{display:none;position:fixed;top:40px;left:2.8rem;right:0;bottom:0;background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #e9e8e8;border-right:0}.help .con .group .gro-c a{display:block;padding-left:.45rem}.help .con .group .gro-c .title{color:#333;font-size:15px;padding-left:.45rem;font-weight:700}.help .con .group .gro-c .text{font-size:14px;color:#6f6f6f;height:1rem;line-height:1rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.help .con .group.act{background:#fff;border-top:1px solid #e9e8e8;border-bottom:1px solid #e9e8e8}.help .con .group.act h3{z-index:1;background:#fff}.help .con .group.act .gro-c{display:block}.help .detail{background:#fff;padding:.45rem;-webkit-box-sizing:border-box;box-sizing:border-box;height:calc(100vh - 40px)}.help .detail .title{font-size:20px;color:#333;margin-bottom:.4rem;font-weight:700}.help .detail .text{color:#333;font-size:14px;line-height:28px}.help .icon-liedanbiao{font-size:14px;color:#333;position:relative;top:-1px;left:-10px}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment