/** 公共样式 **/
.boxFlexStart {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: start;
}

.boxFlexTopStart {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.boxFlexTopCen {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.boxFlexTopEnd {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.boxFlexBottomEnd {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.boxFlexCen {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.boxFlexEnd {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.boxFlex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.colFlex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.overflowEllipsis_1,
.overflowEllipsis_2,
.overflowEllipsis_3,
.overflowEllipsis_5,
.overflowEllipsis_6{
    display:-webkit-box;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-box-orient:vertical;
    word-wrap: break-word;
    word-break: break-all;
}

.overflowEllipsis_1{
    -webkit-line-clamp: 1;
}

.overflowEllipsis_2{
    -webkit-line-clamp: 2;
}

.overflowEllipsis_3{
    -webkit-line-clamp: 3;
}

.overflowEllipsis_5{
    -webkit-line-clamp: 5;
}

.overflowEllipsis_6{
    -webkit-line-clamp: 6;
}

.background_img_cover,
.background_img_contain{
    background-repeat: no-repeat;
    background-position: center;
}

.background_img_cover{
    background-size: cover;
}

.background_img_contain{
    background-size: contain
}

.txt_left{
    text-align: left;
}

.txt_center{
    text-align: center;
}

.txt_right{
    text-align: right;
}

.word_wrap{
    word-wrap: break-word;
    word-break: break-all;
}

/** 本项目的公共样式 **/

div,p,ul,li,a,textarea,input,button,i{
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html,
body{
    width: 100%;
    height: 100%;
    /*touch-action: none;*/
}

div,p,ul,li,a,textarea{
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-all;
}

textarea,input,button{
    -webkit-appearance: none;
    -moz-appearance: none;
    -moz-appearance: textfield;
    border: none;
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
    resize: none;
    background-color: transparent;
}

.wrap{
    width: 100%;
    min-height: 100%;
    position: relative;
}

.width_100{
    width: 100%;
}

.height_96{
    height: 2.4rem;
}

.btn{
    width: 100%;
    height: 2.4rem;
    padding: 0px;
    margin: 0px;
    border: none;
    outline: none;
}

/** 边线 **/
.border_top,
.border_bottom,
.border_left,
.border_right{
    position: relative;
}

.border_top::before,
.border_bottom::after,
.border_left::before,
.border_right::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    position: absolute;
}

.border_top::before{
    left: 0px;
    top: 0px;
}

.border_bottom::after{
    left: 0px;
    bottom: 0px;
}

.border_left::before{
    width: 1px;
    height: 100%;
    left: 0px;
    top: 0px;
}

.border_right::after{
    width: 1px;
    height: 100%;
    top: 0px;
    right: 0px;
}

/* 定位 */

.fixed_top,
.fixed_bottom{
    position: fixed;
    left: 0px;
}

.fixed_top{
    top: 0px;
}

.fixed_bottom{
    bottom: 0px;
}

.abs_bottom{
    position: absolute;
    left: 0px;
    bottom: 0px;
}

/** 外边距 **/
.mar_0_auto{
    margin: 0px auto;
}

.mar_lr24{
    margin-left: 0.6rem;
    margin-right: 0.6rem;
}

.mar_t5{
    margin-top: 0.125rem;
}

.mar_t10{
    margin-top: 0.25rem;
}

.mar_t20{
    margin-top: 0.5rem;
}

.mar_t30{
    margin-top: 0.75rem;
}

.mar_t40{
    margin-top: 1rem;
}

.mar_t60{
    margin-top: 1.5rem;
}

.mar_t120{
    margin-top: 3rem;
}

.mar_r5{
    margin-right: 0.125rem;
}

.mar_r10{
    margin-right: 0.25rem;
}

.mar_r20{
    margin-right: 0.5rem;
}

.mar_r40{
    margin-right: 1rem;
}

.mar_b10{
    margin-bottom: 0.25rem;
}

.mar_b16{
    margin-bottom: 0.4rem;
}

.mar_b20{
    margin-bottom: 0.5rem;
}

.mar_b30{
    margin-bottom: 0.75rem;
}

.mar_b40{
    margin-bottom: 1rem;
}

.mar_b60{
    margin-bottom: 1.5rem;
}

.mar_l5{
    margin-left: 0.125rem;
}

.mar_l10{
    margin-left: 0.25rem;
}

.mar_l15{
    margin-left: 0.375rem;
}

.mar_l20{
    margin-left: 0.5rem;
}

/** 内边距 **/
.pad_0_0{
    padding: 0px 0px;
}

.pad_15_15{
    padding: 0.375rem 0.375rem;
}

.pad_20_24{
    padding: 0.5rem 0.6rem;
}

.pad_tb5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.pad_tb8{
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.pad_tb10{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.pad_tb15{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.pad_tb20{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pad_tb25{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.pad_tb30{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.pad_tb40{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pad_tb96{
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.pad_tb_30_10{
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
}

.pad_lr10{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.pad_lr24{
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.pad_lr30{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pad_t20{
    padding-top: 0.5rem;
}

.pad_t24{
    padding-top: 0.6rem;
}

.pad_t30{
    padding-top: 0.75rem;
}

.pad_t40{
    padding-top: 1rem;
}

.pad_t160{
    padding-top: 4rem;
}

.pad_r24{
    padding-right: 0.6rem;
}

.pad_b20{
    padding-bottom: 0.5rem;
}

.pad_b24{
    padding-bottom: 0.6rem;
}

.pad_b25{
    padding-bottom: 0.625rem;
}

.pad_b30{
    padding-bottom: 0.75rem;
}

.pad_b40{
    padding-bottom: 2rem;
}

.pad_b60{
    padding-bottom: 1.5rem;
}

.pad_l24{
    padding-left: 0.6rem;
}

/** 背景色 **/
.bg_fff{
    background-color: #fff;
}

.bg_eee{
    background-color: #eeeeee;
}

.bg_f5f5f5{
    background-color: #f5f5f5;
}

.bg_23ac38{
    background-color: #23ac38;
}

.bg_edfcee{
    background-color: #edfcee;
}

.bg_fee8e0{
    background-color: #fee8e0;
}

.bg_f3f5f8{
    background-color: #f3f5f8;
}

.bg_fb6531{
    background-color: #fb6531;
}

.bg_fff7f4{
    background-color: #fff7f4;
}

.bg_eaffed{
  background-color: #eaffed;
}

/** 边框线 **/
.border_all_23ac38{
    border: 1px solid #23ac38;
}

.border_all_e5e5e5{
    border: 1px solid #e5e5e5;
}

.border_all_cacaca{
    border: 1px solid #cacaca;
}

.border_all_1px_cacaca,
.border_all_1px_e5e5e5,
.border_all_1px_23ac38{
    position: relative;
}
.border_all_1px_cacaca::before,
.border_all_1px_e5e5e5::before,
.border_all_1px_23ac38::before{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0.2rem;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
}

.border_all_1px_cacaca::before{
    border: 1px solid #cacaca;
}

.border_all_1px_e5e5e5::before{
    border: 1px solid #e5e5e5;
}

.border_all_1px_23ac38::before{
    border: 1px solid #23ac38;
}

@media screen and (-webkit-min-device-pixel-ratio: 2){
    .border_all_1px_cacaca::before,
    .border_all_1px_e5e5e5::before,
    .border_all_1px_23ac38::before{
        width: 200%;
        height: 200%;
        border-radius: 0.4rem;
        transform: scale(0.5) translate(-50%, -50%);
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 3){
    .border_all_1px_cacaca::before,
    .border_all_1px_e5e5e5::before,
    .border_all_1px_23ac38::before{
        width: 300%;
        height: 300%;
        border-radius: 0.6rem;
        transform: scale(0.333333) translate(-100%, -100%);
    }
}

/** 圆角 **/
.bdr_radius_6{
  border-radius: 0.15rem;
  -webkit-border-radius: 0.15rem;
  -moz-border-radius: 0.15rem;
  -ms-border-radius: 0.15rem;
  -o-border-radius: 0.15rem;
}

.bdr_radius_8{
    border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
}

.bdr_radius_24{
    border-radius: 0.6rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    -ms-border-radius: 0.6rem;
    -o-border-radius: 0.6rem;
}

.bdr_radius_32{
    border-radius: 0.8rem;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    -ms-border-radius: 0.8rem;
    -o-border-radius: 0.8rem;
}
/** 字体大小 **/
.fnt_18{
    font-size: 0.45rem;
}

.fnt_20{
    font-size: 0.5rem
}

.fnt_22{
    font-size: 0.55rem;
}

.fnt_24{
    font-size: 0.6rem
}

.fnt_26{
    font-size: 0.65rem
}

.fnt_28{
    font-size: 0.7rem
}

.fnt_30{
    font-size: 0.75rem;
}

.fnt_32{
    font-size: 0.8rem;
}

.fnt_34{
    font-size: 0.85rem;
}

.fnt_36{
    font-size: 0.9rem
}

.fnt_40{
    font-size: 1rem;
}

.fnt_45{
    font-size: 1.125rem;
}

.fnt_60{
    font-size: 1.5rem;
}

/** 字体颜色 **/
.color_000{
    color: #000000;
}

.color_282828{
    color: #282828;
}

.color_999{
    color: #999999;
}

.color_656565{
    color: #656565;
}

.color_7e7e7e{
    color: #7e7e7e;
}

.color_797979{
    color: #797979;
}

.color_a6a6a6{
    color: #a6a6a6;
}

.color_7e7e7e{
    color: #7e7e7e;
}

.color_fb6531{
    color: #fb6531;
}

.color_cacaca{
    color: #cacaca;
}

.color_fff{
    color: #fff;
}

.color_404040{
    color: #404040;
}

.color_525252{
    color: #525252;
}

.color_494949{
    color: #494949;
}

.color_e82e1c{
    color: #e82e1c;
}

.color_23ac38{
    color: #23ac38;
}

.color_7b7b7b{
    color: #7b7b7b;
}
.color_8b8b8b{
    color: #8b8b8b;
}
/** 图标代码 **/
.icon_phase_iv,
.icon_phase_iv__cover{
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon_phase_iv__cover{
    background-size: cover;
}

/** 行高 **/
.line_height_13{
    line-height: 1.3;
}

.line_height_15{
    line-height: 1.5;
}

/** 删除线 **/
.delete_line{
    text-decoration: line-through;
}

/* 宽度 */
.w_100w{
    width: 100%;
}

.w_70{
    width: 1.75rem;
}

.w_90{
    width: 2.25rem;
}

.w_132{
    width: 3.3rem;
}

.w_135{
    width: 3.375rem;
}

.w_160{
    width: 4rem;
}

.w_240{
    width: 6rem;
}

.w_270{
    width: 6.75rem;
}

/* 高度 */
.h_100h{
    height: 100%;
}

.h_70{
    height: 1.75rem;
}
.h_76{
    height: 1.9rem;
}
.h_80{
    height: 2rem;
}

.h_88{
    height: 2.2rem;
}

.h_96{
    height: 2.4rem;
}

.h_100{
    height: 2.5rem;
}

.h_160{
    height: 4rem;
}

/* 左浮动 */
.flt_left{
    float: left;
}

/*  */
.boxSizing{
    box-sizing: border-box;
}

/* 字体加粗 */
.fnt_wei_bolder{
    font-weight: bolder;
}

/* 20px的灰色下边框 */
.border_bottom_gray_20{
    border-bottom: 0.5rem solid #f5f5f5;
}

/* placeholder 设置 */
.placeholder_clr_999::-webkit-input-placeholder{
    font-size: 0.9rem;
    color: #999999;
    font-weight: bolder;
}

.placeholder_center::-webkit-input-placeholder{
  text-align: center;
}

/* 定位值 */
.top_208{
    top: 5.2rem !important;
}

/* 下拉刷新 */
.refresh_bar{
    width: 100%;
    height: 1.4rem;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 11;
    transition: all 0.15s ease;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
}
.refresh_bar .refresh_center{
    position: relative;
} 

.refresh_bar .refresh_icon{
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #fff;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.refresh_bar .refresh_icon::before{
    display: block;
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("../images/icon/refresh_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0.1rem;
    top: 0.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/*S 顶部返回栏*/
.universal_return_bar{
    height: 2.6rem;
    z-index: 14 !important;
}

.universal_return_bar .universal_return_bar__left,
.universal_return_bar .universal_return_bar__right{
    width: 2.6rem;
    height: 2.6rem;
}

.universal_return_bar .universal_return_bar__center{
    font-size: 1rem;
}
/*E 顶部返回栏*/

/* 2018.12.03 顶部绿色返回栏 */
.status_bar_green{
    background-color: #23ac38;
}

.status_bar_green div,
.status_bar_green a{
    color: #ffffff;
}

/* 黑色背景渐变 */
.title_bg_gradual_change_black{
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7), transparent);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* 添加贯穿线 */
.txt_line_through{
    text-decoration: line-through;
}

/* 首先缩进2个汉字 */
.txt_indent_2{
    text-indent: 2em;
}


























































































































































































