clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

body {
    margin: 0;
    font: 12px/normal "Microsoft YaHei", tahoma, arial, "Hiragino Sans GB", sans-serif;
    background-color: #f9f9f9;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* è‡´æ•¬æ–°å† æ­»åŽ»çš„çƒˆå£« */
/* body {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  filter: gray;
} */

/* header */

#header {
    height: 90px;
    background-color: #fff;
    border-bottom: 1px solid #ECF0F1;
    box-shadow: 0 0 2px 0 #ECF0F1;
}

.header_wrapper {
    margin: 0 auto;
    width: 1060px;
    line-height: 90px;
    font-size: 16px;
    color: #546064;
}



.header_wrapper .nav {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

.header_wrapper .nav li {
    float: left;
}

.header_wrapper .nav li a {
    margin-left: 28px;
    margin-right: 28px;
    color: #546064;
    text-decoration: none;
}

.header_wrapper .header_rg {
    display: none;
}

.header_wrapper .header_rg span {
    cursor: pointer;
}

.header_wrapper .header_rg .login {
    margin-right: 4px;
}

.header_wrapper .header_rg .regist {
    margin-left: 5px;
}

.user_box {
    display: none;
}

.user_box img {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #00D8C9;
    border-radius: 16px;
    vertical-align: middle;
}

.user_box .user_name {
    padding-left: 5px;
    padding-right: 20px;
    font-size: 16px;
    color: #546064;
    vertical-align: middle;
}

.user_box .user_name:after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: #546064;
}

.user_box:hover .user_name:after {
    top: 10px;
    border-bottom-color: transparent;
    border-top-color: #546064;
}

.user_box .logout_btn {
    display: none;
    top: 70px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #546064;
    text-align: center;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 7px 0 rgba(18, 146, 137, 0.2);
    cursor: pointer;
}


/* footer */

#footer {
    /* padding-bottom: 20px; */
    padding: 30px 0 20px 0;
    background: #fff;
    /* margin-top: 110px; */
    line-height: 20px;
    color: #546064;
    text-align: center;
}

.footer_menu {
    margin-bottom: 20px;
    padding-bottom: 26px;
    border-bottom: 1px solid #ECF0F1;
}

.footer_menu span a {
    margin-right: 34px;
    margin-left: 34px;
    color: #546064;
    text-decoration: none;
}

#footer p {
    margin-top: 0;
}

#footer p a {
    color: #546064;
    text-decoration: none;
}

#container {
    position: relative;
    margin: 0 auto;
    width: 1060px;
}


/* loadingåŠ¨ç”» */

.loading_wrapper {
    padding-top: 145px;
    height: 195px;
}

.loading_wrapper ul {
    margin: 0 auto;
    padding-left: 0;
    width: 60px;
    height: 50px;
    text-align: center;
}

.loading_wrapper li {
    display: inline-block;
    /*margin: 0 2px;*/
    height: 100%;
    width: 6px;
    background-color: #00D8C9;
    -webkit-animation: stretchdelay 1s infinite ease-in-out;
    animation: stretchdelay 1s infinite ease-in-out;
}

.loading_wrapper .load_2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.loading_wrapper .load_3 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.loading_wrapper .load_4 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.loading_wrapper .load_5 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

@-webkit-keyframes stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}


/* å³ä¾§äºŒç»´ç  */

.code_panel {
    position: fixed;
    top: 530px;
    right: 0;
    width: 130px;
    height: 250px;
}

.code_panel .code_img {
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 130px;
}

.code_panel .owl_box {
    top: 0;
    left: 50%;
    margin-left: -50px;
    width: 110px;
    height: 200px;
}

.code_panel .owl_img {
    top: 0;
    left: 0;
    width: 100px;
    transform: translateY(50px);
    animation: owlMove 5s linear 2s;
    animation-fill-mode: forwards;
}

@keyframes owlMove {
    0% {
        transform: translateY(50px);
    }
    40% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(45px);
    }
    60% {
        transform: translateY(44px);
    }
    90% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.code_panel .owl_hand {
    z-index: 3;
    top: 52px;
    width: 22px;
    /*opacity: 0;
     filter: alpha(opacity=0);*/
    transform: scale(0.6);
    animation: owlHandshow 2s linear;
    animation-fill-mode: forwards;
}

@keyframes owlHandshow {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

.code_panel .owl_l_hand {
    left: -4px;
}

.code_panel .owl_r_hand {
    right: 6px;
    transform: rotate(45deg);
}

@media screen and (max-height: 1000px) {
    .code_panel {
        top: 200px;
        right: -19px;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
    }
}

.host_name .sex,
.pay_num li,
/* .pay_method li span, */
.pay_num .act,
.login_panel-rg a i,
.close_login_panel,
.close_refill_panel,
.wx_pay_two,
.pay_cont .pay_s_im {
    background-repeat: no-repeat;
}


/* login_panel */

#login_panel {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 101;
    margin-top: -232px;
    margin-left: -384px;
    padding-top: 80px;
    width: 760px;
    height: 376px;
    font-size: 14px;
    color: #546064;
    background-color: #fff;
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background-clip: padding-box;
}

.login_panel-lf {
    padding-left: 94px;
    padding-right: 94px;
    border-right: 1px solid #00D8C9;
}

.login_panel-lf h2 {
    margin-top: 0;
    margin-bottom: 20px;
    width: 270px;
    line-height: 28px;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
}

.area_code {
    position: relative;
    z-index: 1;
    height: 38px;
    border-bottom: 1px solid #E8EDEE;
}

.area_code p {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 38px;
    color: #849195;
    cursor: pointer;
}

.area_code p:before,
.area_code p:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
}

.area_code p:before {
    border-width: 6px;
    border-top-color: #849195;
}

.area_code p:after {
    right: 17px;
    border-top-color: #fff;
}

.area_code ul {
    display: none;
    position: absolute;
    top: 39px;
    left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    width: 274px;
    height: 0;
    max-height: 270px;
    line-height: 30px;
    background-color: #fff;
    overflow-y: auto;
    list-style: none;
    border: 1px solid #E8EDEE;
    border-top: none;
    cursor: pointer;
}

.area_code ul li {
    padding-left: 10px;
}

.area_code ul li:hover {
    background-color: #E8EDEE;
}

.login_form fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.login_form legend {
    display: none;
}

.login_form_item {
    position: relative;
    margin-top: 10px;
}

.login_form_item input {
    width: 100%;
    height: 38px;
    line-height: 38px;
    color: #B3C1C6;
    border: 0;
    border-bottom: 1px solid #E8EDEE;
    background-color: transparent;
    outline: none;
}

.login_form_img input,
.login_form_code input {
    width: 126px;
}

.login_form_item .img_code {
    position: absolute;
    top: 2px;
    right: 0;
    width: 110px;
    height: 34px;
    cursor: pointer;
}

.login_form_item .code_btn,
.login_form_item .code_btn_dis {
    position: absolute;
    top: 2px;
    right: 0;
    width: 110px;
    height: 34px;
    line-height: 34px;
    color: #fff;
    text-align: center;
    border-radius: 17px;
}

.login_form_item .code_btn {
    display: none;
    background-color: #00D8C9;
    cursor: pointer;
}

.login_form_item .code_btn:hover {
    background-color: #01C0B2;
}

.login_form_item .code_btn_dis {
    background-color: #ccc;
    cursor: not-allowed;
}

.login_form_item .msg {
    margin-top: 0;
    margin-bottom: 0;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #DC7164;
}

.login_form_item .login_btn {
    display: block;
    /*margin-top: 42px;*/
    width: 270px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    background-color: #00D8C9;
    text-align: center;
    border-radius: 18px;
    cursor: pointer;
}

.login_form_item .login_btn:hover {
    background-color: #01C0B2;
}

.login_terms {
    font-size: 10px;
    color: #B3C1C6;
    text-align: center;
}

.login_terms a {
    color: #00D8C9;
    text-decoration: none;
}

.login_panel-rg {
    padding-top: 60px;
    padding-right: 70px;
    width: 166px;
}

.download_code {
    padding-bottom: 5px;
    text-align: center;
}

.download_code img {
    display: inline-block;
    width: 154px;
    height: 152px;
}

.download_code p {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 20px;
}

.login_panel-rg a {
    display: none;
    /*display: inline-block;*/
    margin-top: 20px;
    padding-left: 26px;
    width: 140px;
    height: 36px;
    line-height: 34px;
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
}

.login_panel-rg a.sina {
    background-color: #DC7164;
}

.login_panel-rg a.weixin {
    background-color: #5DDF78;
}

.login_panel-rg a i {
    display: inline-block;
    width: 23px;
    height: 20px;
    vertical-align: middle;
}

.login_panel-rg a.sina i {
    background-position: -244px 0;
}

.login_panel-rg a.weixin i {
    background-position: -268px 0;
}

.login_panel-rg a span {
    padding-left: 10px;
    vertical-align: middle;
}

.close_login_panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 18px;
    height: 18px;
    background-position: -192px 0;
    cursor: pointer;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.close_login_panel:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pay_box {
    /*display: none;*/
    margin-top: 35px;
}

.pay_tab {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.pay_tab li {
    float: left;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 40px;
    font-size: 18px;
    color: #B6B9C2;
    background-color: #EAECF1;
    text-align: center;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.pay_tab li.active {
    color: #757F82;
    background-color: #fff;
}

.pay_cont {
    padding: 36px;
    min-height: 542px;
    background-color: #fff;
    border-radius: 0 4px 4px;
    position: relative;
}

.pay_account {
    margin-bottom: 30px;
    height: 116px;
    border-bottom: 1px solid #ECF0F1;
}

.pay_account img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 40px;
}

.host_info {
    padding-right: 38px;
    padding-left: 100px;
    height: 80px;
}

.host_name {
    padding-top: 14px;
    line-height: 26px;
    font-size: 18px;
    color: #757F82;
}

.refill,
.changeuser {
    /* top: 28px;
    right: 44px; */
    line-height: 26px;
    font-size: 18px;
    color: #00D8C9;
    cursor: pointer;
    position: relative;
    top: 28px;
}

.changeuser {
    display: none;
}

/* add by libaoxu */
#banner {
    float: right;
    width: 400px;
    padding: 0;
    min-height: 140px;
    box-sizing: border-box;
    position: relative;
    top: -10px;
}

.banner .slide-item .img {
    position: initial;
    border-radius: initial;
}

.host_name span,
.host_name i {
    vertical-align: middle;
}

.host_name i {
    display: inline-block;
    margin-left: 5px;
    height: 16px;
}

.host_name .sex_man {
    width: 16px;
    background-position: -210px 0;
}

.host_name .sex_woman {
    width: 17px;
    background-position: -227px 0;
}

.host_name .level {
    width: 35px;
}

.host_code {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 20px;
    font-size: 14px;
    color: #A2AAAD;
}

.host_code b {
    margin-left: 6px;
    color: #00D8C9;
    cursor: pointer;
}

.account_num {
    margin-top: 16px;
    padding-left: 36px;
    line-height: 48px;
    font-size: 18px;
    color: #757F82;
    border-left: 1px solid #ECF0F1;
}

.pay_choose {
    /* width: 84%; */
}

.pay_choose h4 {
    margin-top: 12px;
    /*margin-bottom: 0;
    padding-bottom: 16px;
    line-height: 22px;*/
    font-size: 16px;
    font-weight: normal;
    color: #757F82;
}

.pay_choose ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.pay_choose li {
    float: left;
    cursor: pointer;
}

.pay_num ul {
    /* width: 836px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; */
}
.pay_num li {
    position: relative;
    margin-right: 50px;
    margin-bottom: 30px;
    width: 135px;
    height: 80px;
    color: #FF9116;
    background-image: url("../images/pay/white_bg.png"/*tpa=http://www.yeepo.cn/images/pay/white_bg.png*/);
    /* background-position: 0 0; */
    text-align: center;
}

.pay_num li.active {
    color: #fff;
    /* background-position: 0 -81px; */
    background-image: url("../images/pay/yellow_bg.png"/*tpa=http://www.yeepo.cn/images/pay/yellow_bg.png*/);
}

.pay_num li p {
    margin-top: 0;
    margin-bottom: 0;
}

.pay_num .diamond {
    height: 48px;
    line-height: 48px;
    font-size: 18px;
}

.pay_num .diamond span {
    font-size: 20px;
}

.pay_num .money {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
}

.pay_num .money span {
    font-size: 16px;
}

.pay_num .act {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 59px;
    height: 59px;
   
}

.pay_num .act span {
    display: block;
    margin-top: 15px;
    width: 74px;
    font-size: 10px;
    color: #fff;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pay_method li {
    margin-right: 40px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    box-sizing: border-box;
}

.pay_method li span {
    display: block;
    color: #B6B9C2;
    height: 40px;
}

.pay_method li span.weixin {
    background: url("../images/pay/wx_gray.png"/*tpa=http://www.yeepo.cn/images/pay/wx_gray.png*/) no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
}

.pay_method li span.zhifubao {
    
    background: url("../images/pay/zfb_gray.png"/*tpa=http://www.yeepo.cn/images/pay/zfb_gray.png*/) no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
}

.pay_method li.active span {
    color: #fff;
}

.pay_method li.active span.weixin {
    background-image: url("../images/pay/wx_glow.png"/*tpa=http://www.yeepo.cn/images/pay/wx_glow.png*/);

}

.pay_method li.active span.zhifubao {
    background-image: url("../images/pay/zfb_glow.png"/*tpa=http://www.yeepo.cn/images/pay/zfb_glow.png*/);
}


