﻿/*基本样式*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
}

html, body {
    font-size: 62.5%!important;
    font-family: "Microsoft YaHei","Arial Narrow",HELVETICA;
    color: #333;
    height: 100%;
}

/*公共样式-对齐-浮动*/
.ta_c {
    text-align: center;
}

.ta_l {
    text-align: left;
}

.ta_r {
    text-align: right;
}

.mc{
    margin-left: auto;
    margin-right: auto;
}

.va_m{
    vertical-align: middle;
}

.f_l{
    float: left!important;
}

.f_r{
    float: right!important;
}

.clear{
    clear: both;
}

/*公共样式-字体*/
.fw_b{
    font-weight: bold!important;
    *font-weight: bold;
}

.fs_40 {
    font-size: 4.0rem!important;
    *font-size: 40px;
}

.fs_30 {
    font-size: 3.0rem!important;
    *font-size: 30px;
}

.fs_26 {
    font-size: 2.6rem!important;
    *font-size: 26px;
}

.fs_24 {
    font-size: 2.4rem!important;
    *font-size: 24px;
}
.fs_22 {
    font-size: 2.2rem!important;
    *font-size: 22px;
}

.fs_20 {
    font-size: 2.0rem!important;
    *font-size: 20px;
}

.fs_18{
    font-size: 1.8rem!important;
    *font-size: 18px;
}

.fs_16 {
    font-size: 1.6rem!important;
    *font-size: 16px;
}

.fs_14 {
    font-size: 1.4rem!important;
    *font-size: 14px;
}

.fs_12 {
    font-size: 1.2rem!important;
    *font-size: 12px;
}
/*公共样式-颜色*/
.green{
    color: #139e7a;
}

.red{
    color: #FF6464;
}

.orange{
    color: #F46C18;
}

.black{
    color: #000;
}

.black_1{
    color: #333;
}

.black_2{
    color: #4f4f4f;
}

.white{
    color: #fff;
}

.gray_1{
    color: #999!important;
}

.gray_2{
    color: #bcbcbc!important;
}

.bg_gray{
    background-color: #ccc!important;
}

.bg_white{
    background-color: #fff;
}

/*公共样式-间距/圆角*/
.ma_5p {
    margin: 5%;
}

.mb_5p {
    margin-bottom: 5%;
}

.mt_5p {
    margin-top: 5%;
}

.mr_5p {
    margin-right: 5%;
}

.ml_5p {
    margin-left: 5%;
}

.mr_10p {
    margin-right: 10%;
}

.ml_10p {
    margin-left: 10%;
}

.mtb_5p {
    margin-bottom: 5%;
    margin-top: 5%;
}

.mlr_5p {
    margin-right: 5%;
    margin-left: 5%;
}

.mtb_5 {
    margin-bottom: 5px;
    margin-top: 5px;
}

.mt_5 {
    margin-top: 5px;
}

.mb_5 {
    margin-bottom: 5px;
}

.ml_5 {
    margin-left: 5px;
}

.mr_5 {
    margin-right: 5px;
}

.mtb_10 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.mt_10 {
    margin-top: 10px;
}

.mb_10 {
    margin-bottom: 10px;
}

.mr_10 {
    margin-right: 10px;
}

.ml_10 {
    margin-left: 10px;
}

.mt_15 {
    margin-top: 15px;
}

.mb_15 {
    margin-bottom: 15px;
}

.mtb_15 {
    margin-bottom: 15px;
    margin-top: 15px;
}

.mt_25 {
    margin-top: 25px;
}

.mb_25 {
    margin-bottom: 25px;
}

.mtb_25 {
    margin-bottom: 25px;
    margin-top: 25px;
}

.pa_5p {
    padding: 5%;
}

.pb_5p {
    padding-bottom: 5%;
}

.pt_5p {
    padding-top: 5%;
}

.pr_5p {
    padding-right: 5%;
}

.pl_5p {
    padding-left: 5%;
}

.ptb_5p {
    padding-bottom: 5%;
    padding-top: 5%;
}

.plr_5p {
    padding-right: 5%;
    padding-left: 5%;
}

.br_8{
    border-radius: 8px;
}

.br_50p{
    border-radius: 50%;
}

/*公共样式-边框*/
.ba_gray{
    border: 1px solid #bcbcbc;
}

.bt_gray{
    border-top: 1px solid #bcbcbc;
}

.bt_gray1{
    border-top: 1px solid #f3f3f3;
}

.bb_gray{
    border-bottom: 1px solid #bcbcbc;
}

.bl_gray{
    border-left: 1px solid #bcbcbc;
}

.br_gray{
    border-right: 1px solid #bcbcbc;
}

/*按钮*/
.btn{
    display: block;
    text-decoration: none;
    text-align: center;
}

.i_btn{
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn_t1{  /*标准长按钮*/
    display: block;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 4.5rem;
    line-height: 4.5rem;
    color: #fff;
    border-radius: 5px;
    background-color: #F46C18;
    margin-top: 4.0rem;
    font-size: 2.0rem;
    border: none;
    outline: none;
    -webkit-appearance: none;
}

.btn_t2{  /*标准小按钮*/
    display: inline-block;
    padding: 3px 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    background-color: #F46C18;
    font-size: 1.4rem;
    line-height: normal;
    border: none;
    outline: none;
    -webkit-appearance: none;
}

/*其他*/

.oneLine{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.block{
    display: block;
    box-sizing: content-box;
}

.iblock{
    display: inline-block;
}

.line_list li{
    list-style: none;
    float: left;
    text-align: center;
}

li{
    list-style: none;
}

input{
    outline: none;
    -webkit-appearance: none;
    background-color: transparent;
}
.arrow_10r:after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    transform: rotate(-45deg);
    position: absolute;
    top: 18px;
    right: 5%;
}

.po_r{
    position: relative;
}

img.full{
    width: 100%;
    display: block;
}
.bg_black_7{
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,.7);
    position: fixed;
    z-index: 99;
}
/*加载动画*/
.wx_loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 110;
    background-color: transparent;
}
.wx_loading_inner {
    text-align: center;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -70px;
    margin-top: -48px;
    width: 140px;
    border-radius: 6px;
    font-size: 14px;
    padding: 58px 0 10px 0;
}
.wx_loading_icon {
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -16px;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 24px;
    -webkit-animation: fa-spin 1s infinite linear;
    animation: fa-spin 1s infinite linear;
    clip: rect(0 auto 12px 0);
}
@keyframes fa-spin{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    100%{
        -webkit-transform:rotate(359deg);
        transform:rotate(359deg)
    }
}

.hide {
    display: none !important;
}