@charset "utf-8";
/*改 6/25*/
html{background: #fefbcd;}
/*body{
    padding-top: constant(safe-area-inset-top);
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-bottom: constant(safe-area-inset-bottom);
}*/
body{

  padding-top: constant(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-top: env(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-left: constant(safe-area-inset-left); //如果未竖屏时为0
  padding-left: env(safe-area-inset-left); //如果未竖屏时为0
  padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
  padding-right: env(safe-area-inset-right); //如果未竖屏时为0
  padding-bottom: constant(safe-area-inset-bottom); //为底下圆弧的高度 34px
  padding-bottom: env(safe-area-inset-bottom); //为底下圆弧的高度 34px
}
@mixin iphonex-css {
  padding-top: constant(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-top: env(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-left: constant(safe-area-inset-left); //如果未竖屏时为0
  padding-left: env(safe-area-inset-left); //如果未竖屏时为0
  padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
  padding-right: env(safe-area-inset-right); //如果未竖屏时为0
  padding-bottom: constant(safe-area-inset-bottom); //为底下圆弧的高度 34px
  padding-bottom: env(safe-area-inset-bottom); //为底下圆弧的高度 34px
}
@mixin iphonex-support {
  @supports (bottom: constant(safe-area-inset-top)) or (bottom: env(safe-area-inset-top)) {
    body {
      @include iphonex-css;
    }
  }
}
@mixin iphonex-css {
  padding-top: constant(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-top: env(safe-area-inset-top); //为导航栏+状态栏的高度 88px
  padding-left: constant(safe-area-inset-left); //如果未竖屏时为0
  padding-left: env(safe-area-inset-left); //如果未竖屏时为0
  padding-right: constant(safe-area-inset-right); //如果未竖屏时为0
  padding-right: env(safe-area-inset-right); //如果未竖屏时为0
  padding-bottom: constant(safe-area-inset-bottom); //为底下圆弧的高度 34px
  padding-bottom: env(safe-area-inset-bottom); //为底下圆弧的高度 34px
}
 /*iphonex 适配*/
@mixin iphonex-media {
  @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body {
      @include iphonex-css;
    }
  }
}
/*iPhoneX的适配*/
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body{
        padding-left: constant(safe-area-inset-left);
        padding-right: constant(safe-area-inset-right);
        padding-top: constant(safe-area-inset-top);
    }
}
/*iPhone8P的适配*/
@media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
    header {
        background-color: deepskyblue;
    }
}
body,html{width: 100%;}
.new_nd{background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_new_bg_1.png)repeat;background-size: 100% auto;}
/*改 6/25*/
/*扭蛋机 pre*/
.new_nd .new_nd_top{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_top_bg.png)no-repeat;background-size: 1900% 100%;height: 20rem;}
.new_nd .return_ico,.new_nd .share_ico{width: 15%;}
.new_nd .new_nd_bottom{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_bottom_bg.png)no-repeat;background-size: 100% auto;}
.new_nd_bottom .bottom_p{padding: 6% 0% 0% 27%;}
.new_nd_bottom .new_end{margin-top: 5.5%;width: 36%;margin-right: 20%;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/new_end.png)no-repeat;background-size: 1000% 100%;height: 7rem;}
.new-play-bg .new_btn,.new-play-bg .try_btn{background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/new_btn.png) no-repeat;width: 3.2rem;height: 3.2rem;margin-left: 0.3rem;background-size: 2000% 100%;}
.new-play-bg .try_btn{margin-left: 2.9rem;}
.anime-top{
	-webkit-animation-name: bglefts;
	animation-name: bglefts;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: steps(18);
	animation-timing-function: steps(18);
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	background-position: right;
	}
@keyframes bglefts{
	0%{ background-position: left;}
	100%{ background-position: right;}
	}

.anime-btn{
	-webkit-animation-name: btns;
animation-name: btns;
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-timing-function: steps(19);
animation-timing-function: steps(19);
-webkit-animation-fill-mode:forwards;
animation-fill-mode:forwards;
background-position: right;
}
@keyframes btns{
	0%{ background-position: left;}
	100%{ background-position: right;}

}
.anime-end{
	display: inline-block;
	-webkit-animation-name: ends;
	animation-name: ends;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: steps(9);
	animation-timing-function: steps(9);
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	background-position: right;
	}
@keyframes ends{
	0%{ background-position: left;}
	70%{ background-position: left;}
	100%{ background-position: right;}
	}
/*查看商品图*/
@-webkit-keyframes start
{0%{
	-webkit-transform:translate(0,-5px);
	transform:translate(0,-5px)
	}
50%{
	-webkit-transform:translate(0,0);
	transform:translate(0,0)
	}
100%{
	-webkit-transform:translate(0,-5px);
	transform:translate(0,-5px)}
}
@keyframes start{
0%{
	-webkit-transform:translate(0,-5px);
	transform:translate(0,-5px)
	}
50%{
	-webkit-transform:translate(0,0);
	transform:translate(0,0)
	}
100%{
	-webkit-transform:translate(0,-5px);
	transform:translate(0,-5px)}
}	
.new-play-bg .kind_tit{background-color: #e8e2c8;margin-left: 7%;line-height: 250%;margin-top: 8%;padding-left: 2%;border-radius: 5px;font-weight: bold;}
.txt_tit{margin-left: 11.3%;margin-top: -4.5%;font-weight: bold;}
.goods .goods_img{border: 2px solid #000000;}
.goods .goods_tags{position: relative;margin-top: -105%;width: 110%;margin-left: -4%;}
.goods .goods_padding{padding: 20% 0;}
.new_nd_bottom .goods_tit{width: 28%;padding: 11% 0;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/look_ico.png)no-repeat;background-size: 100% auto;margin-top: -33%;margin-left: 4%;position: absolute;z-index: 10;    -webkit-animation: start 0.5s infinite ease-in-out;animation: start 2s infinite ease-in-out;}
.mb_info{width: 43%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/mb_ico.png)no-repeat;background-size: 100% auto;height: 5.9rem;position: absolute;right: 0;z-index: 1;margin-top: 3%;}
.mb_info .pay_btn{float: left;margin-top: 1.5%;color: #faae42;}
.mb_info .info_p{margin-left: 37%;margin-right: 6%;}
.mb_info .info_padding{padding: 13% 0;}
/*商品 pre*/
.swiper_box{position: relative;margin: 0 auto;}
.swiper_box .close_btn{width: 10%;padding: 5.2% 0;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/close_ico.png)no-repeat;background-size: 100% auto;position: absolute;right: 7%;top: -5%;z-index: 10;}
.swiper_layer{width: 100%;background-color: rgba(0,0,0,.5);height: 100%;position: absolute;top: 0;padding-top: 50%; z-index: 20;}
.swiper_layer img{border: 3px solid #d75747;border-radius: 7px;box-sizing: border-box;}
.swiper-slide{border: 3px solid #060606;border-radius: 7px;box-sizing: border-box;}
/*背景衔接*/
.fill_son{width: 100%;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/fill_son.png);background-repeat: no-repeat;position: absolute;height: 100%;background-size: 100% auto;}
.fill{width: 100%;height: 100%;position: fixed;z-index: -10;background-image: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/fill_bg.png);background-repeat: repeat;background-position: 0px 0px;background-size: 100% auto;} 
/*弹窗  pre*/
.new_nd-layer{width: 100%;background-color: rgba(0,0,0,.5);height: 100%;position: absolute;top: 0;z-index: 100;}
.new_nd-layer .layer{position: absolute;height: 100%;}
.layer .winning_bg{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/light.png)no-repeat;background-size: 100% auto;height: 19.5rem;}
.layer .winning_bg img{border: 3px solid #fffac2;}
/*扭蛋机  end*/
/*分类 pre*/
.p13{padding: 13%;}
.textdel {text-decoration: line-through;}
.nd_classify_bg .site_bg{background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/bg_top.png)no-repeat;background-size: 100%;top: 0;z-index: 99;}
.nd_classify_bg{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_bg.png)repeat;height: auto;}
.nd_classify_bg .main_box,.nd_classify_bg .site_box{width: 92%;margin: 0 auto;}
.nd_classify_bg .main_box{height: 35rem;}
/*.nd_classify_bg .nav_box,.nd_top_bg .nav_box{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_nav_bg.png)no-repeat center bottom;background-size: 100% auto;}*/
.nd_classify_bg .site_box .site_top{border: 2px solid #fff;box-sizing: border-box;border-radius: 5px;margin-top: 5%;margin-bottom: 5%;}
.nd_classify_bg .site_box .site_top img{height: 9.5rem;border: 2px solid #000;border-radius: 5px;box-sizing: border-box;}
.classify_ul li:nth-child(odd){margin-right: 4%;}
.classify_ul li{width: 48%;border: 2px solid #000000;border-radius: 10px;float: left;margin-top: 5%;box-sizing: border-box;}
.classify_ul .cp_tit{background-color: rgba(51,51,51,.5);height: 3rem;position: absolute;bottom: 0rem;}
.ico{background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/ico.png) no-repeat top center;background-size: 100% auto;}
.classify_ul .img_div{position: relative;}
.classify_ul .img_div img{border-top-left-radius: 5px;border-top-right-radius: 5px;}
.classify_ul .ico_cx{width: 35%;height: 1.8rem;background-position: 0 -0.05rem;float: left;position: absolute;top: 5%;}
.classify_ul .ico_xq{width: 35%;height: 1.8rem;background-position: 0 -2.18rem;float: left;position: absolute;top: 5%;}
.classify_ul .ico_rm{width: 35%;height: 1.8rem;background-position: 0 -4.3rem;float: left;position: absolute;top: 5%;}
.nav_nd .ico_1{width: 5rem;height: 5rem;background-position: 0 -6.2rem;}
.nav_nd .ico_2{width: 5rem;height: 5rem;background-position: 0 -11.5rem;}
.nav_nd .ico_3{width: 5rem;height: 5rem;background-position: 0 -16.8rem;}
.nd_classify_bg .nav_nd,.nd_top_bg .nav_nd{background-color:#ffffff;position: fixed;bottom: 0;z-index: 999;}
/*分类 end*/
/*弹窗 pre*/
.h15rem{height: 1.5rem;}
.h27rem{height: 2.7rem;}
.mr3{margin-right: 3%;}
.ml3{margin-left: 3%;}
.sf1{color: #f1604e;}
.fwb{font-weight: bold;}
.pay_layer,.confirm_layer, .coupon_layer{width: 100%;background-color: rgba(0,0,0,.5);height: 100%;position: absolute;top: 0;padding-top: 50%;z-index: 999;}
.pay_layer .pay_con,.confirm_layer .confirm_con, .coupon_layer .coupon_con {width: 77%;margin: 0 auto;}
.pay_con ul li,.confirm_con ul li{background-color: #eeeeee;}
.pay_ico{background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/collect_ico.png)no-repeat top center;background-size: 100% auto;}
.pay_con .pay_1{width: 2rem;height: 2rem;background-position: 0 0;margin-top: 13%;}
.pay_con .pay_2,.confirm_con .pay_2{width: 2rem;height: 1rem;background-position: 0 -3.5rem;margin-top: 6%;}
.pay_con .con_btn,.confirm_con .con_btn{background-color: #fed846;}
.pay_con .gb_ico,.confirm_con .gb_ico, .coupon_con .gb_ico {width: 2.5rem;height: 2.5rem;background: #fed846 url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/gb_ico.png)no-repeat center;background-size: 50% auto;position: absolute;right: 8%;margin-top: -3%;}
.confirm_layer .hint_tit{color: #faae42;border-bottom: 1px solid #faae42;}
/*弹窗 end*/
/*扭蛋柜 pre*/
.nd_top_bg{width: 100%;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_bg.png)repeat;position: absolute;height: 100%;top: 0;left: 0;bottom: 0;right: 0;}
.nd_cabinet .main_bg{background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/bg_top.png)no-repeat;background-size: 100%;position: absolute;height: 92.7%;top: 0;left: 0;right: 0;bottom: 0;}
.nd_cabinet .nd_boxone{background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/cabinet_bg.png)no-repeat;background-size: 100% 95%;position: absolute;height: 88.7%;margin-top: 11%;}
.nd_cabinet .nd_tab{margin-top: 1.5%;}
.nd_tab ul .tab_ico.current{width: 24%;height: 5rem;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_tabcur.png)no-repeat  center bottom;background-size: 300% 100%;}
.nd_tab ul .tab_ico{width: 24%;height: 3rem;background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_tab.png)no-repeat center bottom;background-size: 300% 100%;}
.nd_tab ul,.nd_boxone .nd_list_box,.nd_coupon ul,.site_box{width: 77%;margin: 0 auto;}
.nd_boxone .nd_list_box{margin-top: -4%;position: absolute;height: 91%;top: 5%;bottom: 0;left: 11.5%;}
.nd_list_box #stu_class{height: 38rem;overflow: auto;}
.nd_boxone .nd_list_box:nth-child(2){top: 5.5%;}
.nd_boxone .nd_list_box:nth-child(3),.nd_boxone .nd_list_box:nth-child(4){top: 10%;}
.nd_tab ul li,.nd_coupon ul li{margin-right: 3%;}
.nd_tab ul li:nth-child(1).current{background-position: 0 0;}
.nd_tab ul .tabico_1{background-position: 0% 0;margin-top: -10.8%;}
.nd_tab ul .tabico_2{background-position: 50% 0;margin-top: -10.8%;}
.nd_tab ul .tabico_3{background-position: 100% 0;margin-top: -10.8%;}
.nd_tab ul .tabico_1.current{background-position: 0 0;margin-top: -11%;}
.nd_tab ul .tabico_2.current{background-position: 50% 0;margin-top: -9.5%;}
.nd_tab ul .tabico_3.current{background-position: 100% 0;margin-top: -9.5%;}
.nd_list_box .list_btn,.nd_boxone .list_btn{position: absolute;height: 3rem;background-color: #fed846; width: 108%;left: -4%;line-height: 3rem;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top: 1px solid #333;border-bottom: 1px solid #333;font-weight: bold;bottom: -0.2rem;text-shadow: #000 1px 0 0, #000 0 1px 0, #000 -1px 0 0, #000 0 -1px 0;-webkit-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;-moz-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;}
/*全选,单选*/
.nd_j,#chkall{float: right;position: relative;opacity: 0;z-index: 1;padding: 0;height: 1.8rem;width: 1.8rem;margin: 0;}
#chkall+label{display: inline-block;width: 1.5rem;height: 1.5rem;border: 1px solid #0a0205;float: right;position: relative;top: 0rem;right: -1.7rem;}
#chkall:checked+label{width: 1.5rem;height: 1.5rem;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/checked_ico.png) no-repeat center center;background-size: 100% auto;border: 1px solid #0a0205;float: right;margin-left: 2%;position: relative;right: -1.7rem;top: -0rem} 
.nd_j+label{display: inline-block;width: 1.5rem;height: 1.5rem;border:1px solid #0a0205;float: right;margin-left: 2%;    position: relative;right: -1.5rem;}  
.nd_j:checked+label{width: 1.5rem;height: 1.5rem;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/checked_ico.png) no-repeat center center;background-size: 100% auto;border:1px solid #0a0205;float: right;margin-left: 2%;position: relative;right: -1.5rem;} 
/*全选,单选*/ 
.nd_list_box ul li{border: 2px solid #0a0205;background-color: #FFFFFF;padding: 3%;margin-top: 3%;border-radius: 5px;position: relative;}
.nd_list_box ul li .shade{width: 100%;height: 100%;position: absolute;top: 0;left: 0;border-radius: 5px;background: rgba(255,252,200,0.6);z-index: 99;}
.nd_list_box ul li .sp_img{width: 17%;}
.nd_list_box ul li .sp_img img{border-radius: 100%;}
/*实物*/
.nd_list_box ul li b{color: #f67c8b;margin-top: 3%;}
.nd_list_box ul li .copy_btn{color: #52b0ff;text-decoration: underline;}
/*扭蛋柜 end*/
/*优惠劵 pre*/
.w18s{width: 18%;}
.coupon_input{width: 85%;margin-top: 5%;}
.coupon_input .coupon_border{border: 3px solid #ffffff;padding: 3px;background: #000000;border-radius: 8px;}
.coupon_input .input input{height: 2rem;line-height: 2rem;border: 0;outline: none;}
.coupon_input .coupon_btn{background-color: #fdc12a;height: 2rem;line-height: 2rem;border-left: 3px solid #000000;}
.coupon_input img{height: 3rem;}
.nd_coupon ul .tab_ico{width: 24%;height: 3rem;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/coupon_ico.png)no-repeat center bottom;background-size: 200% 100%;}
.nd_coupon ul .tab_ico.current{height: 4rem;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/coupon_icocur.png)no-repeat center bottom;background-size: 200% 100%;}
.nd_coupon ul .tabico_1 {background-position: 0 0;}
.nd_coupon ul .tabico_2 {background-position: 100% 0;}
.nd_coupon ul .tabico_1.current {background-position: 0 0;}
.nd_coupon ul .tabico_2.current{background-position: 100% 0;}
.nd_coupon{margin-top: -6.8%;}
.coupon_list ul li{border: 2px solid #000000;box-sizing: border-box;}
/*.coupon_list ul{margin-top: 3%;}*/
.coupon_list ul li{margin-bottom: 3%;}
.coupon_list ul li:last-child{margin-bottom: 0%;}
.coupon_list{width: 76%;margin-left: 11%;overflow: auto;    margin-bottom: 3%;}
.coupon_list ul li div:nth-child(1) img{border-top-left-radius: 5px;border-bottom-left-radius: 5px;}
.coupon_list ul li .coupon_use{background-color: #fed846;line-height:200%;text-shadow: #000 1px 0 0, #000 0 1px 0, #000 -1px 0 0, #000 0 -1px 0;-webkit-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;-moz-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;}
.nd_boxone .nd_bycoupon .coupon_use{background-color: #70cb64;}
/*优惠劵 end*/
/*弹窗 pre*/
.layer_confirm{background: rgba(0,0,0,.5);position: absolute;top: 0;left: 0;}
/*弹窗 end*/
.nd_tab ul .tab_ico.current,.nd_coupon ul .tab_ico.current{animation-name: bounceIn;animation-duration: 1s;animation-fill-mode: both;animation-duration: 2s;animation-duration: .55s;animation-iteration-count: 1;}
@keyframes bounceIn {
	0%,20%,40%,100%{
		animation-timing-function: cubic-bezier(.215,.61,.355,1)
	}
    0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3)
	}
    20% {
		transform: scale3d(1.15,1.15,1.15)
	}
    100% {
		transform: scale3d(1,1,1)
	}
}
.ndranking{    overflow: auto;}
/*我的 pre*/
.nd_cabinet .img_nd_index{margin-top: -5%;}
.nd_cabinet .img_nd_index div:nth-child(1) img{border: 3px solid #0a0205;position: relative;}
.nd_cabinet .img_nd_index p{background-color: #fed846;border: 3px solid #0a0205;margin-top: 3%;line-height: 190%;padding-left: 5%;padding-right: 3%;margin-left: -2%;border-radius: 5px;}
.nd_cabinet .nd_home{width: 83%;margin: 0 auto;}
.nd_cabinet .img_nd_index .home_tit a,.cur_ranking a{text-decoration: underline;}
.nd_asset .couponico {background:url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_homeico.png)no-repeat;background-size: 800% auto;width: 1.2rem;height: 1.2rem;}
.nd_asset span{margin-right: 1%;margin-bottom: 2%;background-color: #fffeec;}
.nd_home .cur_ranking{background-color: #fffeec;}
.nd_asset .home_1{background-position: 0 0;}
.nd_asset .home_2{background-position: 14% 0;}
.nd_asset .home_3{background-position: 28.5% 0;}
.nd_asset .home_4{width:1rem;height:1rem;background-position: 42.5% 2px;}
.cur_ranking a{color: #ee6655;}
.ndranking ul li div:nth-child(1){width: 12%;margin-left: 3%;}
.ndranking ul li div:nth-child(1) img{border: 2px solid #000000;}
.ndranking ul li .nd_crown{width: 2.2rem;height: 1.7rem;background: url(https://img.nyato.com/addons/theme/stv1/_static/imagewap/thomas/img/nd_crown.png)no-repeat;background-size: 300% 100%;margin-top: -5%;margin-left: -9.5%;float: left;}
.ndranking ul li .crown1{background-position: 0 0;}
.ndranking ul li .nd_num {
    line-height: 1.5rem;
    text-align: center;
    margin-top: -48%;
    margin-right: -27%;
    padding: 0px 5px;
    color: #333;
	background-color: #fefcd8;
}
.ndranking ul li:nth-child(1) b {
    background-color: #fed846;
}
.ndranking ul li:nth-child(2) b {
    background-color: #ebf4f6;
}
.ndranking ul li:nth-child(3) b {
    background-color: #987263;
}
.ndranking ul li p{height: 1.5rem;}
.ndranking .nd_load,.site_ui .site_tit{text-shadow: #000 1px 0 0, #000 0 1px 0, #000 -1px 0 0, #000 0 -1px 0;-webkit-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;-moz-text-shadow: #000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;}
/*我的  end*/
/*收货地址  pre*/
.nd_cabinet .site_ui{margin-top: 8%;}
.nd_cabinet .site_ui li{padding-bottom: 4%;}
.site_ui .site_tit{background:#fed846;border: 2px solid #000;width: 25%;float: left;line-height: 250%;border-top-left-radius: 5px;border-bottom-left-radius: 5px;box-sizing: border-box;}
.nd_cabinet .site_ui input{border: 0;background: #fff;line-height: 250%;border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-right: 2px solid #000;border-top: 2px solid #000;border-bottom: 2px solid #000;box-sizing: border-box;padding: 0;}
.nd_cabinet .site_box{position: relative;height: 89%;}
/*收货地址  end*/


/*add 2019-6-5 勾选不再提示确定付款*/
.pay_con #rulelabel{
    background-image:url(../img/paycheck.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    margin-top: -0.5%;
    float: left;
}
.pay_con #agreerule:checked + label{
    background-image:url(../img/paycheccur.png);
}
/*将原checkbox宽高设为0，使其不显示*/
.pay_con #agreerule{
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}
.pay_con .centerbox{height: 25rem;border-radius: 100px;}

/*add 2019-6-5 勾选不再提示确定付款*/