/* 基础 */
html,
body {
    width: 100%;
    height: 100%;
    background: #efefef;
}

a {
    color: #1162a4;
    text-decoration: none;
}

ul,ol,li {
  list-style: none;
}

hr {
    height: 1px;
    margin: 10px auto;
    border: 0;
    clear: both;
}

/* position */
.pos-fix {position: fixed;}
.pos-rel {position: relative;}


/* font-size */
.f10 {font-size: 10px;}
.f12 {font-size: 12px;}
.f13 {font-size: 13px;}
.f14 {font-size: 14px;}
.f15 {font-size: 15px;}
.f16 {font-size: 16px;}
.f18 {font-size: 18px;}
.f20 {font-size: 20px;}
.f24 {font-size: 24px;}
.f28 {font-size: 28px;}

/* text-align */
.tl {text-align: left}
.tc {text-align: center}
.tr {text-align: right;}
.mgtc {margin: 0 auto;}

.vertical-center {
    display: flex;
    align-items: center;
}

/* font-weight */
.normal {font-weight: normal;}
.bold {font-weight: bold;}

/* display */
.none {display: none;}
.db {display: block;}
.di {display: inline;}
.dib {display: inline-block;}
.dcts {display: contents;}

/* 边框 */
.border-s1 {
    border: 1px solid #17bb70;
}

/* float */
.fl {float: left;}
.fr {float: right;}
.cl {clear: both;}

/* width */
.w50 {width: 50px;}
.wp30 {width: 30%;}
.wp40 {width: 40%;}
.wp50 {width: 50%;}
.wp70 {width: 70%;}
.wp80 {width: 80%;}
.wp90 {width: 90%;}
.wp100 {width: 100%;}

/* height */
.hp100 {height: 100%;}

.mhp100 {min-height: 100%;}

/* color */
.c-white {color: #fff;}
.c-red {color: #f00;}
.c-green {color: #094 !important;}
.c-black {color: #000;}
.c-gray {color: #7f7f7f;}
.c-orange {color: #ff9500;}
.c-grass {color: #17bb70;}
.c-redorange {color: #F77564;}
.c-blue {color: #44A2D6;}
.c-purple {color: #C769C1;}

/* bg-color */
.bg-white {background-color: #fff;}
.bg-gray {background-color: #7f7f7f;}
.bg-gray-ef {background-color: #efefef;}
.bg-green {background-color: #009944;}
.bg-grass {background-color: #17bb70;}
.bg-orange {background-color: #ff9500;}
.bg-redorange {background-color: #F77564;}
.bg-blue {background-color: #44A2D6;}
.bg-purple {background-color: #C769C1;}

/* border-color */
.border-gray {border-color: #7f7f7f !important;}
.border-grass {border-color: #17bb70 !important;}
.border-orange {border-color: #ff9500 !important;}
.border-redorange {border-color: #F77564 !important;}
.border-blue {border-color: #44A2D6 !important;}
.border-purple {border-color: #C769C1 !important;}

/* bgimg-style */
.bgimg-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bgimg-contain {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.opacity8 {
    opacity: .8;
}

/* margin */
.mg5 {margin: 5px;}
.mt0 {margin-top: 0 !important;}
.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt18 {margin-top: 18px;}

.ml2 {margin-left: 2px;}
.ml3 {margin-left: 3px;}
.ml5 {margin-left: 5px;}

.mr2 {margin-right: 2px;}
.mr3 {margin-right: 3px;}
.mr5 {margin-right: 5px;}
.mr15 {margin-right: 15px;}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}

/* padding */
.pd0 {padding: 0;}
.pd5 {padding: 5px;}
.pd8 {padding: 8px;}
.pd10 {padding: 10px;}

.pdh5 {
    padding-left: 5px;
    padding-right: 5px;
}
.pdh10 {
    padding-left: 10px;
    padding-right: 10px;
}
.pdh15 {
    padding-left: 15px;
    padding-right: 15px;
}
.pdh20 {
    padding-left: 20px;
    padding-right: 20px;
}

.pdl20 {padding-left: 20px;}

.pdr10 {padding-right: 10px;}
.pdr20 {padding-right: 20px;}

.pdb15 {padding-bottom: 15px;}

/* weui修正 */
.weui-form-preview__hd:after {
    left: 0;
}

.weui-cells {
    margin-top: 0;
}

.weui-badge-rect {
    border-radius: 2px;
}

.weui-btn {
    width: 80vw;
    max-width: 240px;
}

.weui-btn_default {
    border: 1px solid #7ecea4;
}

.weui-btn_primary {
    background-color: #094;
}
.weui-btn_disabled {
    color: #fff;
    background-color: #7ecea4;
}

.weui-btn_default {
    color: #094;
}

.weui-msg__desc {
    color: #999;
    font-size: 14px;
}

.weui-cell-noborder:before {
    display: none;
}

/* 禁止换行 省略号替换 */
.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 文本换行 */
.prewarp {
    white-space: pre-wrap;
}

.wb-all {
    word-break: break-all;
}

#pjax-container {
    height: 100%;
}

/* table边框处理 */
.table-border {
    border-collapse: collapse;
    border: 0px solid #ededef;
    border-top: 1px solid #ededef;
    border-bottom: 1px solid #ededef;
    background-color: #fff;
}

.table-border td {
    border-top: 0;
    border-right: 1px solid #ededef;
    border-bottom: 1px solid #ededef;
    border-left: 0;
}

.table-border tr:last-child td {
    border-bottom: 0;
}

.table-border tr td:last-child {
    border-right: 0;
}

/* 图片验证码 */
.img_authcode {
    vertical-align: middle;
}

/* banner  */
.header {
    position: relative;
    height: 3rem;
    background: #094;
}

.header a, .header .title {
    color: #fff;
}

.header .content>div {
    position: absolute;
    line-height: 3rem;
}

.header .bg {
    left: 0;
}

.header .back {
    left: .6rem;
}

.header .home,
.header .ot {
    right: .6rem;
}

/* acct-hear */
.acct-header {
    height: 9rem;
    position: relative;
    overflow: hidden;
    background: url(../../img/bg/acct_bg.png) center no-repeat;
    background-size: cover;
}

.acct-header .content .info {
    padding: 15px 0 15px 20px;
    position: absolute;
    top: 2.2rem;
    /* margin-left: 1rem; */
    width: 100%;
}

.acct-header .content .info .img-border,
.acct-header .content .info .img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.acct-header .content .info .img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.acct-header .content .info .img-border {
    border: 5px solid rgba(255, 255, 255, .3);
}

.acct-header .content .info .my {
    padding: 5px 15px;
    height: 4rem;
    line-height: 1;
    color: #fff;
}

.acct-header .content .info .my h3 {
    font-weight: normal;
    margin-bottom: .6rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.acct-header .content .info .my p {
    font-size: 14px;
    opacity: .9;
}

/* 积分栏 */
.acct-jifen {
    padding: 15px 15px;
    background: #fff;
    position: relative;
    font-size: 16px;
}

.acct-jifen p {
    line-height: 1.2rem;
}

.acct-jifen .icon-dollar {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../../../img/icon_jifen.png") center no-repeat;
    background-size: contain;
    margin-right: 4px;
    vertical-align: top;
}

.acct-jifen span {
    color: #191919;
    vertical-align: top;
}

.acct-jifen .btn {
    width: 4.2rem;
    height: 1.6rem;
    position: absolute;
    right: 6rem;
    line-height: 1.6rem;
    border: 1px solid #16bc6f;
    border-radius: 1rem;
    color: #16bc6f;
    top: 50%;
    margin-top: -0.8rem;
}

.acct-jifen .btn-g {
    background: #16bc6f;
    color: #fff;
}

/* nav菜单 */
.acct-nav {
    margin-top: .5rem;
    background-color: #fff;
}

.acct-nav .weui-grid,.home-nav .weui-grid {
    width: 25%;
    padding: 15px 10px;
}

.acct-nav.weui-grids::before,.acct-nav.weui-grids::after,
.acct-nav .weui-grid::before,.acct-nav .weui-grid::after,
.home-nav.weui-grids::before,.home-nav.weui-grids::after,
.home-nav .weui-grid::before,.home-nav .weui-grid::after,
.clubtyp-nav.weui-grids::before,.clubtyp-nav.weui-grids::after,
.clubtyp-nav .weui-grid::before,.clubtyp-nav .weui-grid::after
{
    width: 0;
    height: 0;
}

.acct-nav .weui-grid__icon,
.acct-nav .weui-grid__icon img,
.home-nav .weui-grid__icon,
.home-nav .weui-grid__icon img,
.clubtyp-nav .weui-grid__icon,
.clubtyp-nav .weui-grid__icon img
{
    width: auto;
    margin: 0 auto;
}

.acct-nav .weui-grid__icon+.weui-grid__label,
.home-nav .weui-grid__icon+.weui-grid__label {
    font-size: 12px;
    margin-top: 8px;
}

.home-nav {
    background-color: #fff;
    padding-bottom: 15px;
}

.home-nav .weui-grid {
    padding: 15px 0px 0px;
}

.home-nav .weui-grid__icon img {
    height: 45px;
}

.home-nav .weui-grid__icon+.weui-grid__label {
    margin-top: 22px;
    white-space: normal;
    line-height: 1;
    font-size: 13px;
}

.swiper-slide+.swiper-slide {
    display: none;
}

/* 基本信息 */
.acct-base,.home-news {
    margin-top: .5rem;
}

.acct-base .weui-form-preview__hd,
.home-news .weui-form-preview__hd,
.clubtyp-item .weui-form-preview__hd
{
    padding: 10px;
    line-height: 1.6rem;
    letter-spacing: 2px;
}

.acct-base .label {
    text-align: left;
    width: 5.6rem;
    letter-spacing: 1.2px;
    color: #7f7f7f;
}

/* 聊天模块 */
#chat_box {
    padding: 0;
    text-align: left;
}

#chat_box .chat-btn {
    position: absolute;
    right: .4rem;
    top: 0;
    border: 1px solid #83dbb3;
    background-color: transparent;
    border-radius: 5rem;
    line-height: 1.6;
    font-weight: normal;
    width: auto;
}

/* acct tab */
.acct-tab .weui-navbar__item {
    padding: 10px 0;
}

.acct-tab .weui-navbar__item .weui-grid__icon i,
.acct-tab .weui-navbar__item .weui-grid__label {
    color: #999999;
}

.acct-tab .weui-navbar__item.active .weui-grid__icon i,
.acct-tab .weui-navbar__item.active .weui-grid__label {
    color: #009944;
}

.acct-tab .navs-slider-bar {
    position: absolute;
    left: -25vw;
    bottom: 0;
    width: 25%;
    height: 2px;
    background: #009944;
    -webkit-transition: left .15s ease-in;
    transition: left .15s ease-in
}

/* acct recd */
.acct-recd #sel-year {
    overflow-x: auto;
    list-style: none;
    white-space:nowrap;
    width: auto;
    text-align: center;
    position: relative;
    padding-left: 5px;
}

.acct-recd #sel-year li {
    float: left;
    position: relative;
    width: 46px;
    height: 56px;
}
.acct-recd #sel-year li:last-child {
    width: 38px;
}
.acct-recd #sel-year li .btn-year {
    position: absolute;
    background-color: #fff;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(0, 153, 68, .6);
    color: #009944;
    margin: 9px 0px;
    font-size: 13px;
}

.acct-recd #sel-year li::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 27px;
    z-index: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 153, 68, .4);
}

.acct-recd #sel-year li .active {
    background-color: #009944;
    color: #fff;
}

.acct-recd .view-mod:after {
    color: rgba(0, 153, 68, .7);
    transform: rotate(90deg);
    right: 12px;
}

.acct-recd .recd-box {
    border: 3px solid #999999;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    -webkit-transition: height .6s ease-in;
    transition: height .6s ease-in;
}

.acct-recd .recd-box .detail-box {
    max-height: 0;
    overflow: hidden;
    transition: all .6s ease;
}

.acct-recd .recd-box .seal {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 3rem;
    line-height: 3rem;
    border-radius: 50%;
    border: 1px solid #999999;
    transform:rotate(20deg);
    padding: 5px;
}

.acct-recd .recd-box .seal>div {
    border: 1px dashed #999999;
    border-radius: 50%;
}

.acct-recd .recd-box .detail-btn .more-tip {
    display: none;
}
.acct-recd .recd-box .detail-btn.normal .more-tip1 {
    display: inline;
}
.acct-recd .recd-box .detail-btn.loading .more-tip2 {
    display: inline;
}
.acct-recd .recd-box .detail-btn.loaded .more-tip3 {
    display: inline;
}

/* 波浪 */
.wavy-line {
    width: 100%;
    height: 10px;
    background-size: 12px 30px;
}

.wavy-line-gray {
    background-image: -webkit-radial-gradient(circle, #7f7f7f 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #7f7f7f 9px, transparent 10px);
    background-image: radial-gradient(circle, #7f7f7f 9px, transparent 10px);
}

.wavy-line-orange {
    background-image: -webkit-radial-gradient(circle, #ff9500 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #ff9500 9px, transparent 10px);
    background-image: radial-gradient(circle, #ff9500 9px, transparent 10px);
}

.wavy-line-grass {
    background-image: -webkit-radial-gradient(circle, #17bb70 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #17bb70 9px, transparent 10px);
    background-image: radial-gradient(circle, #17bb70 9px, transparent 10px);
}
.wavy-line-redorange {
    background-image: -webkit-radial-gradient(circle, #F77564 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #F77564 9px, transparent 10px);
    background-image: radial-gradient(circle, #F77564 9px, transparent 10px);
}
.wavy-line-blue {
    background-image: -webkit-radial-gradient(circle, #44A2D6 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #44A2D6 9px, transparent 10px);
    background-image: radial-gradient(circle, #44A2D6 9px, transparent 10px);
}
.wavy-line-purple {
    background-image: -webkit-radial-gradient(circle, #C769C1 9px, transparent 10px);
    background-image: -moz-radial-gradient(circle, #C769C1 9px, transparent 10px);
    background-image: radial-gradient(circle, #C769C1 9px, transparent 10px);
}


/* acct rule */
.acct-rule, .acct-trans {
    padding: 20px;
}

.acct-rule .tip-box, .acct-trans .tip-box {
    border: 1px solid #cccccc;
    background-color: #fefefe;
    border-radius: 4px;
    padding: 5px 10px;
}

/* acct ticket */
.acct-ticket {
    padding: 10px;
}

.acct-ticket .seltkt-box {
    height: 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;  
}

.acct-ticket ul.ul-tkt li {
    margin-top: 15px;
    position: relative;
    height: 5rem;
    border-radius: 5px;
}

.acct-ticket ul.ul-tkt a:first-child li {
    margin-top: 0;
}

.acct-ticket ul.ul-tkt li .tkt_hp {
    width: 3.2rem;
    height: 3.2rem;
    margin: .9rem;
    border-radius: 50%;
}

.acct-ticket ul.ul-tkt li .icon_vline {
	position: absolute;
	left: 5rem;
	top: 0;
	width: 1rem;
	height: 100%;
    border-left: 1px dashed rgba(255, 255, 255, .6);
}

.acct-ticket ul.ul-tkt li .icon_vline::before,.acct-ticket ul.ul-tkt li .icon_vline::after {
    content: '';
    position: absolute;
    left: -8px;
    width: 13px;
    height: 7px;
    border: 1px solid #fff;
    background-color: #fff;
    display: block;
}
.acct-ticket ul.ul-tkt li .icon_vline::before {
    top: -1px;
    border-radius: 0 0 7px 7px;
}
.acct-ticket ul.ul-tkt li .icon_vline::after {
    bottom: -1px;
    border-radius: 7px 7px 0 0;
}

.acct-ticket ul.ul-tkt li .info {
    padding-left: 1rem;
}

.acct-ticket ul.ul-tkt li .info .tkt-name{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding-bottom: 5px;
}

/* acct detail */
.acct-detail {
    padding: 20px 10px;
}

.weui-media-box-pic__hd {
    width: 100%;
}
.weui-media-box-pic__bd {
    position: absolute;
    bottom: 0;
}

.jf-bar {
    line-height: 48px;
    padding: 0 15px;
    border-bottom: 1px solid #eeeeee;
}

.jf-bar .img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    vertical-align: middle;
}

.clubtyp-nav .weui-grid__icon img {
    height: 48px;
}

.clubtyp-nav .weui-grid__icon+.weui-grid__label {
    margin-top: 22px;
}

/* 实物寄送 */
.recipients-info {
    margin-top: 10px;
}
.recipients-info a.weui-cell::before,
.recipients-info a.weui-cell .weui-form-preview::before,
.recipients-info a.weui-cell::after,
.recipients-info a.weui-cell .weui-form-preview::after 
{
    display: none;
}

.recipients-info a.weui-cell {
    padding-top: 0px; padding-bottom: 0px;
}
.recipients-info a.weui-cell:active {
    background-color:transparent;
}

.recipients-info a.weui-cell span.weui-cell__ft {
    padding-right: 8px; right: -8px;
}

.recipients-info .weui-form-preview{
    width: 100%;
}

.recipients-info .weui-form-preview__bd{
    padding: 10px 0px; font-size: 14px;
}

.recipients-info .weui-form-preview__bd .weui-form-preview__value{
    text-align: left; color: #000;
}

.new-recipients-info{
    background: #fff; line-height: 22px; font-size: 18px; color: #009944;
    padding-top: 14px; padding-bottom: 12px; text-align: center; margin-top:12px;
    margin-bottom: 30px; display: block;
}

.new-recipients-info i{
    display: inline-block; width: 18px; height: 18px; margin-right: 8px;
    background: url("img/icon-add-address.png") no-repeat center; background-size: contain;
}

.new-recipients-info span{
    vertical-align: top;
}