@charset "utf-8";

/****
   Author: QQ
   Email: Office.
   作用  : 会员中心CSS
****/

/*注册页面*/

$registerBgColor: #fffdfa !default;
$registerborderColor: #f4f0ed !default;

.register {
  background: $registerBgColor;
  border: 1px solid $registerborderColor;
  width: 998px !important;

  .register_forms {
    width: 570px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding-top: 30px;
    overflow: hidden;

    h1 {
      color: $dColor;
      font-size: 22px;
      text-align: center;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }
    .form_group
    {
    	display: flex;
  		flex-wrap: wrap;
  		
  		.column{
    		flex-basis: 100%;
  			display:flex;
  			
  			.error_tip
  			{
  				font-size:12px;
  				color:red;
  			}
  			.success_icon{
		      	width:22px;
		      	margin-left:10px;
		      	padding:15px 0;
			}
    	}
    
    	.column_tip
    	{
    		justify-content: center;
    		margin-left:55px;
    	}
    }
   
  }

  .register_success {
    padding-bottom: 70px;
    margin-top: 30px;

    .reg_success_box {
      width: 477px;
      overflow: hidden;
      margin-left: 244px;
      margin-bottom: 20px;
      background: url("#{$skin}register_success.png") 5px 14px;
      background-repeat: no-repeat;
      background-size: 80px 80px;
      padding-left: 95px;

      h1 {
        font-size: pxToRem(30px);
        color: $dColor;
        font-weight: 100;
        margin-bottom: 20px;
        overflow: hidden;
      }

      p {
        color: $gray9;
        font-size: pxToRem(16px);
        line-height: 26px;
        overflow: hidden;
      }
    }
  }

  a.btn-register-success {
    margin-left: 341px;
    overflow: hidden;
  }

  .register_remark {
    padding-left: 40px;
    line-height: 29px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;

    h2 {
      font-size: pxToRem(16px);
      color: red;
      font-weight: 100;
    }

    p {
      font-size: pxToRem(14px);
      color: $gray6;
    }
  }
}

/**注册成功**/

/***会员中心***/

.start_light {
  display: block;
  background: url("#{$skin}start_light.png");
  width: 22px;
  height: 20px;
  background-size: 22px 20px;
  overflow: hidden;
}

.start_dark {
  display: block;
  background: url("#{$skin}start_dark.png");
  width: 22px;
  height: 20px;
  background-size: 22px 20px;
  overflow: hidden;
}

.usercenter {
  width: 1180px !important;
  margin-bottom: 37px;

  .user_menu {
    width: 160px;

    h2 {
      background: $dColor;
      height: 44px;
      line-height: 44px;
      font-size: pxToRem(17px);
      text-align: center;
      color: #fff;
      font-weight: 100;
    }

    ul {
      overflow: hidden;
      border-left: none !important;
      border-right: 1px solid $borderColorDefault;
      border-bottom: 1px solid $borderColorDefault;
      border-top: none !important;

      li {
        display: block;
        clear: both;
        z-index: 20;
        position: relative;
        overflow: hidden;
        border-left: 1px solid $borderColorDefault;
        left: 0px;
        padding-left: 2px;

        &:hover, &.hover {
          border-left: 2px solid $dColor;
          background: #F8F8F8;
          z-index: 110;
          left: 0px;
          padding-left: 1px;
        }

        i {
          font-size: pxToRem(23px);
          color: #e1e1e1;
          margin-left: 15px;
          margin-right: 15px;
          margin-top: 9px;
          margin-bottom: 5px;
          display: block;
          float: left;
        }

        &:hover i, &.hover i {
          color: $dColor;
        }

        a {
          font-size: pxToRem(14px);
          display: block;
          float: left;
          line-height: 44px;
          color: $gray3;
          text-decoration: none;
        }
      }
    }
  }

  .user_right {
    width: 820px;

    .usercenter_info {
      border: 1px solid #ddd;
      overflow: hidden;
      padding: 10px 10px 5px 10px;
      background: url(#{$website}/Public/static/images/usercenter_background.png);

      .avatar {
        padding: 10px;

        img {
          width: 85px;
          height: 85px;
          display: block;
        }
      }

      .user_info {
        width: 310px;
        border-right: 1px solid #ddd;
        margin-top: 10px;
        line-height: 29px;
        margin-left: 10px;
        margin-right: 10px;
      }

      ul li {
        font-size: pxToRem(12px);
        overflow: hidden;

        label {
          float: left;
          padding-right: 10px;
          _padding-right: 10px;
        }

        i.user_star {
          float: left;
          margin-top: 3px;
        }

        span.userinfo_username {
          font-size: pxToRem(16px);
        }
      }
    }

    &.right .account_info {
      width: 310px;
      padding-right: 25px;
      overflow: hidden;
      margin-left: 25px;

      .account_balance {
        margin-left: 50px;
        margin-top: 12px;
      }

      .account_topup a.btn {
        width: 100px;
        height: 30px;
        padding: 0px;
        line-height: 30px;
        font-size: pxToRem(15px);
        float: left;
        text-decoration: none;
      }

      .account_balance {
        label {
          font-size: pxToRem(12px);
          vertical-align: text-bottom;
          margin-right: 5px;
          padding-right: 5px;
        }

        em {
          color: $dColor;
          font-size: pxToRem(20px);
        }
      }

      .account_topup {
        padding-top: 25px;
        overflow: hidden;
        margin-left: 50px;
      }
    }

    .user_main {
      margin-top: 10px;
      clear: both;

      .user_header {
        margin-top: 10px;

        .user_header_nav {
          background: $userNavColor;
          height: 40px;

          h3 {
            &.title {
              font-size: 16px;
              font-weight: 100;
              color: #fff;
              line-height: 40px;
              padding-left: 25px;

            }
          }

          ul {
            overflow: hidden;

            li {
              float: left;
              font-size: pxToRem(16px);
              overflow: hidden;
              padding-top: 4px;
              margin-left: 4px;

              a {
                color: #fff;
                text-decoration: none;
                display: block;
                line-height: 36px;
                padding-left: 20px;
                padding-right: 20px;
              }

              &.hover a, a:hover {
                background: #fff;
                color: $userNavColor;
              }
            }
          }
        }
      }

      .info_select {
        padding-left: 15px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 15px;

        .sod_select {
          margin-right: 10px;
        }

        span {
          line-height: 30px;
          text-align: center;
          font-size: pxToRem(13px);
          @include inline-block(false);
          vertical-align: top;
          color: $gray9;
        }

        span.to {
          margin-right: 10px;
        }

        .select_box_btn {
          .btn-default {
            height: 30px;
            width: 105px;
            padding: 0;
            line-height: 30px;
            font-size: pxToRem(14px);
          }
        }

        .input_text {
          width: 120px;
          margin-right: 10px;
        }

        input {
          &.input_text {
            background-color: #fff;
            border: 1px solid $borderColorDefault;
            border-radius: 3px;
            color: #333333;
            overflow: hidden;
            height: 18px;
            line-height: 18px;
            font-size: 13px;
            display: inline-block;
            vertical-align: top;
            padding-top: 5px;
            padding-bottom: 5px;
            font-size: 13px;

            &:hover {
              border: 1px solid $bgColor;
              background: #FFFBF7;
            }

            &:focus {
              border: 1px solid $bgColor;
              background: #fff;
            }

          }
        }

      }
     
      
    }
  }

  .user_body {
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;

    .bonus_header {
      font-size: 16px;
      color: $dColor;
      padding-top: 15px;
      padding-bottom: 11px;
      padding-left: 15px;
    }

  }

  // 其他表格类页面统一处理

  .user_topuprecord,
  .user_withdrawrecord,
  .user_team2,
  .user_statement,
  .user_accountchange_record,
  .user_bonusrecord,
  .user_gamerecord,
  .user_link_manage,
  .user_team_statement,
  .user_detail_conf {
    overflow: hidden;

    .user_main {
      margin-top: 0px;

      .user_header {
        margin-top: 0px;
      }

    }

    table {
      border-top: 1px solid $borderColorDefault;
      border-bottom: 1px solid $borderColorDefault;
      &.no_border {
        border-bottom: none !important;
        margin-bottom: 0px !important;
      }
      thead {
        background: #f4f4f4;

        td {

        }

        th {
          border-bottom: 1px solid $borderColorDefault;
          border-right: 1px solid $borderColorDefault;
          text-align: center;
          font-weight: 100;
          color: $gray6;
          &.no_border {
            border-right: none !important;
          }
        }
      }
      tbody {
        &.show_border {
          background: #fff;
          td {
            border-bottom: 1px solid $borderColorDefault;
            border-right: 1px solid $borderColorDefault;
          }
        }
        td {
          text-align: center;
          font-size: pxToRem(14px);

          color: $gray3;
          border-bottom: 1px solid $borderColorDefault;

          a {
            color: $dColor;
          }

          i.iconfont {
            color: red;
          }

          &.bg {
            background: #F4F4F4;
          }
          &.no_border {
            //border-bottom: none;
          }
          .empty_data {
            background-image: url(#{$skin}lion.png);
            width: 90px;
            height: 50px;
            background-size: 40px 46px;
            background-repeat: no-repeat;
            margin: 0 auto;
            padding-left: 45px;
            line-height: 50px;
            background-position: left;
            color: #999;
          }

        }

      }
    }

  }

  .user_team2{

    .info_select{

      input{
        width: 100px!important;


      }

      .select_box_btn{
        overflow: hidden;
        width: 700px;
        margin-top: 15px;
        clear: both;
        margin-bottom: 15px;
      }

    }

  }

  .user_link_manage {

    .user_body {

      padding: 18px;

      .body_nav {
        border: 1px solid #EBEBEB;
        height: 45px;
        line-height: 45px;
        padding-left: 10px;
        background: #F5F5F5;

        ul {

          li {

            float: left;
            font-size: 14px;
            position: relative;
            width: 130px;
            height: 45px;

            &.hover,
            &:hover {

              top: -2px;
              border-top: 2px solid $fColor;
              z-index: 1;
              color: $fColor;
              background: $white;
              //border-bottom: 1px solid $white;

            }

            a {

              color: #333;
              display: inline-block;
              line-height: 45px;
              width: 130px;
              text-align: center;
              text-decoration: none;
              position: absolute;

            }

          }

        }

      }

      .link_manage_data {
        border: 1px solid #ddd;
        padding-top: 20px;
        border-top: none;
        border-bottom: none;
        table {
          margin-bottom: 0px;
        }
      }

      .link_manage_form {
        overflow: hidden;
        border: 1px solid #ddd;
        border-top: none;
        width: 780px;
        .remark {
          overflow: hidden;
          padding: 25px;
          em {
            overflow: hidden;
            color: #333333;
            font-size: 12px;
            display: block;
            float: left;
            line-height: 27px;
          }

          span {
            overflow: hidden;
            color: #999999;
            font-size: 12px;
            display: block;
            width: 650px;
            float: left;
            line-height: 27px;
          }

        }

      }

      .user_page {
        margin-top: 25px;
      }

    }
  }

}

.link_manage_form {

  overflow: hidden;
  .open_account {
    overflow: hidden;
    &.form {
      width: 565px;
      margin: 0 auto;
      .form_group {

        label {

          font-size: 14px;

        }

        p {
          font-size: 13px;
          &.text_info {
            font-size: 13px;
            text-align: left;
            margin-left: 153px;
            margin-top: 6px;
            color: #666666;
          }
        }

        input {

          overflow: hidden;
          height: 28px;
          padding: 10px;

        }

        select {
          width: 318px;
          height: 50px;
        }

        .iradio_square-blue {
          margin-top: 12px;
        }

        .redio_field {
          float: left;
          width: initial;
          text-align: initial;
          line-height: inherit;
          &.hover {
            .radio_text {
              color: $dColor;
            }
          }
          .radio_text {
            display: inline-block;
            position: relative;
            top: 8px;
            font-size: 15px;
            margin-left: 3px;
            font-weight: bold;
          }
        }

      }

      button {
        overflow: hidden;
        margin-top: 30px;
      }

    }

  }

}

.user_page {
  overflow: hidden;
  margin-bottom: 20px;

  ul {
    overflow: hidden;
    text-align: center;

    li {
      text-align: center;
      @include inline-block(false);
      padding: 3px 10px 3px 10px;

      a {
        color: #999;
        text-decoration: none;
      }

      span {
        color: #999;
      }

      &.pre, &.nex {
        background: #E7E7E7;
        border-radius: 5px;
        border: 1px solid #dedede;
      }

      &.hover a, a:hover, &:hover a {
        color: $dColor;
      }
    }
  }
}

.usercenter {
  .user_buyrecord {
  }

  .buyrecord_data {
    overflow: hidden;

    table {
      border-top: 1px solid $borderColorDefault;
      border-bottom: 1px solid $borderColorDefault;

      thead {
        background: #f4f4f4;

        td {
        }

        th {
          border-bottom: 1px solid $borderColorDefault;
          text-align: center;
          font-weight: 100;
          color: $gray6;
        }
      }

      tbody td {
        text-align: center;
        font-size: pxToRem(14px);
        // height: 25px;
        // line-height: 25px;
        color: $gray3;
        border-bottom: 1px solid $borderColorDefault;
        .daikai {
          color: $gray3;
          font-weight: bold;
        }

        .yizhong {
          color: #FF0000;
          font-weight: bold;
        }

        .weizhong {
          color: $gray9;
          font-weight: bold;
        }

        a {
          color: $dColor;
        }

        i.iconfont {
          color: red;
        }
      }
    }
  }
}

// 安全中心

.user_usersafe {
  border-top: none;
  overflow: hidden;

  .user_body {
    padding-bottom: 50px;

    .safe_item {
      padding-left: 10px;
      padding-right: 10px;
      overflow: hidden;

      .safe_item_head {
        background: #fff;
        padding: 10px;
        overflow: hidden;
        border-bottom: dashed 1px $borderColorDefault;

        .info_view {
          width: 520px;
          line-height: 60px;

          i {
            float: left;
            color: #d4d7e1;
            font-size: 40px;
            @include inline-block(false);
            margin-right: 10px;
          }

          .left {
          }

          .left h3 {
            float: left;
            font-size: 16px;
            overflow: hidden;
            margin-left: 10px;
            color: #323232;
            line-height: 60px;
            font-weight: 100;
          }

          .left span {
            float: left;
            font-size: 14px;
            margin-left: 30px;
            color: #999;
            line-height: 60px;
          }
        }

        .tool_control {
          font-size: 14px;

          .tool_group {
            float: left;
            overflow: hidden;
            line-height: 60px;
            font-size: 14px;
            padding-right: 10px;
            text-align: right;
            margin-left: 50px;

            i.iconfont {
              color: #5FDD75;
            }

            a {
              color: #323232;
            }
          }
        }
      }

      .safe_item_body {
        padding-top: 15px;

        .form {
          .form_group {
            input {
              margin: 0 auto;
              width: 268px;
              display: block;
              clear: both;
              margin-bottom: 5px;
              margin-top: 5px;
            }
          }

          button {
            display: block;
            margin: 0 auto;
            width: 280px;
            overflow: hidden;
          }

          .form_remark {
            color: #333;
            text-align: center;
            font-size: 14px;
            margin-bottom: 35px;
          }
        }
      }
    }
  }
}

// 充值页面

.user_topup {

  width: inherit;

  .user_main{
    margin-top: 0px!important;
    .user_header{
      margin-top: 0px!important;
    }
  }

  .user_body {

    padding: 15px;
    overflow: hidden;

    .topup_main {

      padding: 1px;
      padding-bottom: 20px;

      .main_header {

        overflow: hidden;
        font-size: 14px;

        .user {

          line-height: 40px;
          padding-left: 15px;
          margin-bottom: 10px;

          em {

            width: inherit;

          }

          span {

            width: inherit;
            margin-left: 10px;

          }

        }

      }

      .pay_type {

        overflow: hidden;

        h2 {

          font-size: 14px;
          padding-left: 13px;
          line-height: 31px;
          margin-top: 20px;
          font-weight: 200;
          color: #333;
          margin-bottom: 12px;

        }

        .pay_main {

          overflow: hidden;
          margin-bottom: 30px;

          ul {

            width: inherit;

            li {

              float: left;
              height: 55px;
              padding-left: 20px;
              padding-right: 20px;
              line-height: 62px;
              border: #E1DBD6 solid 1px;
              margin-right: 14px;
              margin-left: 10px;

              &.hover,
              &:hover {

                border: $bgColor solid 1px;
                background: url(#{$skin}dui.png) right bottom;
                background-size: 33px 34px;
                background-repeat: no-repeat;

              }

              i {

                width: 40px;
                height: 40px;
                display: inline-block;
                font-size: 32px;
                text-align: center;
                line-height: 40px;

                &.icon-weixin {
                  color: #40CD44;
                }

                &.icon-zhifubaozhifu {
                  color: #17B0F6;
                }

                &.icon-weimingming3 {
                  color: $bgColor;
                }

                &.icon-chongzhi {
                  color: #57D9CE;
                }

              }
			  
              a {

                font-size: 18px;
                color: #000;
                line-height: 40px;
                display: inline-block;
                height: 40px;
                text-decoration: none;

              }

            }

          }

        }

      }

      input {
        &.btn {

          width: 240px;
          height: 45px;
          text-align: center;
          line-height: 25px;
          display: block;
          margin: 0 auto;
          margin-top: 20px;
          overflow: hidden;

        }
      }

    }

  }

}

// 平台收款

// 安全中心

.user_usersafe {

  .form {

    overflow: inherit;

  }

  .form_group {

    &.bank_select {
      width: 294px;
      margin: 0 auto;
      margin-bottom: 13px;
    }

    &.disabled_group {

      overflow: inherit;

      i {
        overflow: inherit;
        position: absolute;
        left: 507px;
        top: 15px;
        font-size: 18px;
        width: 25px;
        text-align: center;
        color: $dColor;
        &:hover {
          overflow: inherit;
        }
      }

      .info_window {
        background: url(#{$skin}notice_window.png);
        background-repeat: no-repeat;
        background-size: 250px 84px;
        height: 84px;
        width: 250px;
        color: #fff;
        position: absolute;
        right: 3px;
        z-index: 9;
        top: -13px;
        overflow: hidden;
      }

    }

    .select_addr {

      width: 120px;
      height: 45px;
      line-height: 45px;
      padding-left: 5px;
      padding-right: 5px;

    }

    .select_k {
      height: 45px;
      line-height: 45px;
      padding-left: 5px;
      padding-right: 5px;
      width: 285px;
      margin: 0 auto;
      display: block;

    }

  }

}

// 平台收款

.user_sk {

  .user_main{
    margin-top: 0px!important;
    .user_header{
      margin-top: 0px!important;
    }
  }

  width: inherit;

  .user_body {

    padding: 20px;

  }

  .sk_main {
    overflow: hidden;
    padding-bottom: 30px;
    h2 {
      font-size: 14px;
      color: #999999;
      font-weight: 200;
      display: inline-block;
      margin-bottom: 15px;

    }

    .btn {

      width: 240px;
      height: 45px;
      line-height: 25px;
      text-align: center;
      margin: 0 auto;
      display: block;

    }

    .step {

      width: 780px;
      margin: 0 auto;
      height: 60px;
      background-size: 780px 55px;
      background-repeat: no-repeat;
      margin-bottom: 20px;

      &.step1 {
        background-image: url(#{$skin}step1.png);

      }

      &.step2 {

        background-image: url(#{$skin}step2.png);
      }

      &.step3 {

        background-image: url(#{$skin}step3.png);
      }

    }

    .bank_list {
      overflow: hidden;
      margin-bottom: 20px;
      .bank_item {
        width: 778px;
        height: 100px;
        margin: 0 auto;
        table {
          border: #EEEAE1 solid 1px;
          thead {
            background: #FFF8E7;
            height: 33px;
            th {
              border-bottom: 1px solid #ddd;
              text-align: center;
              font-weight: 100;
              color: #666666;
              height: 33px;
              padding: 0px;
              line-height: 33px;
              border-top: 2px solid $userNavColor;
              border-right: 1px solid #ddd;
              font-size: 14px;
            }

          }

          tbody {
            width: inherit;
            tr {
              //width: inherit;
              td {
                border-right: 1px solid #ddd;
                text-align: center;
                padding: 6px;
              }

            }

          }

        }

      }

    }

    .step2_form {

      width: inherit;

      .form_group {

        width: inherit;

        label {
          width: 94px;
          letter-spacing: 3px;
          font-size: 14px;

        }

        label.five {
          letter-spacing: 0px;

        }

        input {

          width: 228px;
          height: 33px;
          padding-top: 5px;
          padding-bottom: 5px;
          padding-left: 10px;
          line-height: 33px;

        }
		
		#recharge_type{
			display: flex;
			flex-wrap: wrap;
		}
		
        input[type="radio"] {
          display: none !important;
        }

        .redio_field {

          width: inherit;
          line-height: 48px;
          margin-right: 1px;
          padding-right: 1px;

          span {

            width: inherit;
            display: inline-block;
            margin-left: -7px;
            font-size: 14px;
            letter-spacing: 2px;
            line-height: 36px;
            vertical-align: middle;

          }

        }

      }

    }
	
	.bank_select {

      margin-bottom: 60px;

      h2 {

        width: 94px;
        letter-spacing: 3px;
        font-size: 14px;
        text-align: right;
        padding-right: 10px;
        color: #636363;
        display: block;
        float: left;

      }

      .pay_sk2_main {

        width: inherit;
        overflow: hidden;

        ul {

          width: inherit;

          .hide_bank{
            display: none;
          }

  a{
    &.more{

      float: left;
      height: 55px;
      padding-left: 20px;
      padding-right: 20px;
      line-height: 53px;
      border: #E1DBD6 solid 1px;
      margin-right: 14px;
      margin-left: 10px;
      color: #2F89C3;
      margin-bottom: 10px;
      text-decoration: none;
      font-size: 18px;
      width: 140px;
      &:hover{

        border: #2F89C3 solid 1px;

      }

    }
  }

          li {

            float: left;
            height: 55px;
            padding-left: 20px;
            padding-right: 20px;
            line-height: 73px;
            border: #E1DBD6 solid 1px;
            margin-right: 14px;
            margin-left: 10px;
            width: 140px;
            margin-bottom: 10px;

            img{
              width: 140px;
              display: inline-block;
            }

            &.hover,
            &:hover {

              border: $bgColor solid 1px;
              background: url(#{$skin}dui.png) right bottom;
              background-size: 33px 34px;
              background-repeat: no-repeat;

            }

            i {

              width: 40px;
              height: 40px;
              display: inline-block;
              font-size: 32px;
              text-align: center;
              line-height: 40px;

              &.icon-weixin {
                color: #40CD44;
              }

              &.icon-zhifubaozhifu {
                color: #17B0F6;
              }

              &.icon-weimingming3 {
                color: $bgColor;
              }

              &.icon-chongzhi {
                color: #57D9CE;
              }

            }

            a {

              font-size: 18px;
              color: #000;
              line-height: 40px;
              display: inline-block;
              height: 40px;
              text-decoration: none;

            }

          }

        }

      }

    }
	
    .step3_table {

      overflow: hidden;
      margin-bottom: 30px;

      table {

        margin-bottom: 0px;

        &.table {

          border-left: 1px solid #ddd;
          border-right: 1px solid #ddd;
          border-top: 1px solid #ddd;

          tbody {

            overflow: hidden;

            tr {

              overflow: hidden;

              td {

                border-bottom: 1px solid #ddd;
                line-height: 22px;
                font-size: 14px;

                &.td_left {

                  overflow: hidden;
                  background: #FFF8E7;
                  border-right: solid #ddd 1px;
                  width: 220px;
                  padding-left: 20px;

                }

                &.td_right {

                  overflow: hidden;
                  padding-left: 30px;

                }

              }

            }

          }

        }

      }

    }

  }

}

.user_withdraw, .user_topup {

  .money, .pay_password {

    width: inherit;
    line-height: 48px;
    position: relative;

    label {

      width: inherit;
      display: inline-block;
      text-align: right;
      font-size: 14px;

      em {

        width: inherit;

      }

    }

    .form {
      display: inline-block;
      padding-bottom: 0px;
      position: absolute;
      width: 270px;
      height: 50px;
      margin-left: 8px;
      .form_group {
        overflow: inherit;
        position: inherit;
        display: inline-block;
        margin-bottom: 0px;
        input {
          width: 240px;
          height: 28px;
          padding-top: 5px;
          padding-bottom: 5px;

        }

      }

    }

    span {

      width: inherit;

      &.remark {

        display: inline-block;
        position: absolute;
        left: 357px;
        top: 0px;


        a{
          color: #999999;
          font-size: 12px;
        }

      }

    }

  }

}

.recharge_bank_select {
	  font-size:14px;
      margin-bottom: 60px;

      #pay_bank{
      	width: 130px;
        letter-spacing: 3px;
        font-size: 14px;
        text-align: left;
        padding-right: 10px;
        color: #636363;
        display: block;
      }
     
	  .form_group{
			padding:5px 0px 5px 15px;
			span{
				margin-left:10px;
			}
	  }
	
      #pay_sk2_main {

        width: inherit;
        overflow: hidden;
        padding-top:5px;
		
        ul {
		  padding-left:15px;
          width: inherit;

          .hide_bank{
            display: none;
          }

		a{
		    &.more{
		
		      float: left;
		      height: 55px;
		      padding-left: 20px;
		      padding-right: 20px;
		      line-height: 53px;
		      border: #E1DBD6 solid 1px;
		      margin-right: 14px;
		      margin-left: 10px;
		      color: #2F89C3;
		      margin-bottom: 10px;
		      text-decoration: none;
		      font-size: 18px;
		      width: 140px;
		      &:hover{
		
		        border: #2F89C3 solid 1px;
		
		      }
		
		    }
		 }

          li {

            float: left;
            height: 55px;
            padding-left: 20px;
            padding-right: 20px;
            line-height: 73px;
            border: #E1DBD6 solid 1px;
            margin-right: 14px;
            margin-left: 10px;
            width: 140px;
            margin-bottom: 10px;

            img{
              width: 140px;
              display: inline-block;
            }

            &.hover,
            &:hover {

              border: $bgColor solid 1px;
              background: url(#{$skin}dui.png) right bottom;
              background-size: 33px 34px;
              background-repeat: no-repeat;

            }

            i {

              width: 40px;
              height: 40px;
              display: inline-block;
              font-size: 32px;
              text-align: center;
              line-height: 40px;

              &.icon-weixin {
                color: #40CD44;
              }

              &.icon-zhifubaozhifu {
                color: #17B0F6;
              }

              &.icon-weimingming3 {
                color: $bgColor;
              }

              &.icon-chongzhi {
                color: #57D9CE;
              }

            }

            a {

              font-size: 18px;
              color: #000;
              line-height: 40px;
              display: inline-block;
              height: 40px;
              text-decoration: none;

            }

          }

        }

      }
     
      .btn{
      	width: 240px;
	    height: 45px;
	    text-align: center;
	    line-height: 25px;
	    display: block;
	    margin: 0 auto;
	    margin-top: 20px;
	    overflow: hidden;
	    padding: 10px;
	    border: 0px;
	    font-size: 1.0625rem;
      }
      
      .btn-default {
	    background: $bgColor;
	    color: #fff;
 	  }
	
	 .btn-radius {
	   border-radius: 4px;
	  }
}
   
   
.user_withdraw {

  width: inherit;

  .user_main{
    margin-top: 0px!important;
    .user_header{
      margin-top: 0px!important;
    }
  }


  .user_body {

    padding: 15px;
    overflow: hidden;

    .topup_main {

      padding: 1px;
      padding-bottom: 20px;

      .main_header {

        overflow: hidden;
        font-size: 14px;

        .user {

          line-height: 40px;
          padding-left: 15px;
          margin-bottom: 10px;

          em {

            width: inherit;

          }

          span {

            width: inherit;
            margin-left: 10px;
            font-size: 20px;

          }

        }

      }

      .pay_type {

        overflow: hidden;
        margin-top: 16px;

        h2 {

          font-size: 14px;
          padding-left: 13px;
          line-height: 20px;
          font-weight: 200;
          color: #333;
          margin-bottom: 12px;
          float: left;
          width: 64px;
          text-align: right;

        }

        .pay_main {

          overflow: hidden;
          margin-bottom: 16px;
          width: 610px;
          float: left;

          ul {

            width: inherit;

            li {

              height: 55px;
              padding-left: 20px;
              padding-right: 20px;
              line-height: 62px;
              border: #E1DBD6 solid 1px;
              margin-right: 14px;
              margin-left: 10px;
              margin-bottom: 10px;
              overflow: hidden;

              span {

                height: 55px;
                overflow: hidden;

                &.bank_logo {

                  width: 185px;
                  overflow: hidden;
                  text-align: left;
                  display: inline-block;
                  height: 40px;
                  line-height: 40px;
                  padding-top: 9px;
                  padding-bottom: 6px;
                  float: left;

                  img {

                    height: 36px;

                  }

                }

                &.bank_number {

                  width: 269px;
                  display: inline-block;
                  text-align: center;
                  font-size: 20px;
                  line-height: 55px;

                }

                &.account_name {

                  width: 85px;
                  font-size: 20px;
                  text-align: center;
                  display: inline-block;
                  line-height: 55px;

                }

                em {

                  display: inline-block;
                  vertical-align: middle;

                }

              }

              &.hover,
              &:hover {

                border: $bgColor solid 1px;
                background: url(#{$skin}dui.png) right bottom;
                background-size: 33px 34px;
                background-repeat: no-repeat;

              }

              a {

                font-size: 18px;
                color: #000;
                line-height: 40px;
                display: inline-block;
                height: 40px;
                text-decoration: none;

              }

            }

          }

        }

      }

      input {
        &.btn {

          width: 240px;
          height: 45px;
          text-align: center;
          line-height: 25px;
          display: block;
          margin-left: 90px;
          margin-top: 20px;
          overflow: hidden;

        }
      }

      .account_b {

        margin-top: 30px;

        table {

          border: 1px solid #EEEAE1;
          width: 100%;

          &.table {

            tr {

              width: inherit;

              td {

                border-left: 1px solid #EEEAE1;
                line-height: 40px;
                border-bottom: 1px solid #EEEAE1;
                padding: 0px;
                font-size: 14px;
                padding-left: 15px;
                color: #666;

                .right {

                  margin-right: 15px;

                  .btn {

                    width: 100px;
                    height: 26px;
                    padding: 0px;
                    font-size: 12px;
                    line-height: 26px;
                    text-decoration: none;

                  }

                }

              }

            }

          }

        }

      }

    }

  }

}

.user_noteice {

  .user_main{
    margin-top: 0px!important;
    .user_header{
      margin-top: 0px!important;
    }
  }


  .accordion{

    padding: 10px;
    padding-top: 20px;

    .drawer {
      width: 100%;
      border-top: none;
      border-radius: 3px;
    }
    .accordion-item {

    }
    .accordion-item-active .accordion-header {
      background: #fff;
      transition: .25s;
      background-image: url(#{$skin}-.png);
      background-size: 18px;
      background-origin: content-box;
      background-repeat: no-repeat;
    }

    .accordion-item-active {

        .accordion-header-active{
          border-top: 2px solid $dColor!important;
          margin-top: -1px;
      }



      span{

        &.hd{

          display: none!important;

        }

      }
    }
    .accordion-header {
      background-image: url(#{$skin}add.png);
      padding: 12px;
      cursor: pointer;
      border-right: none;
      border-left: none;
      min-height: 20px;
      transition: .25s;
      background-repeat: no-repeat;
      border-bottom: 1px solid #E0E0E0;
      background-size: 18px;
      background-origin: content-box;

      .title{
        display: block;
        font-size: 14px;
        padding-left: 20px;

        span{
          display: inline-block;

          &.hd{

            display: inline-block;
            color: #666;

          }

          &.time{

            display: inline-block;
            float: right;
            color: #666;


          }

        }

      }
    }
    .accordion-header h1 {
      float: left;
      font-size: 18px;
      font-weight: normal;
      margin: 0;
      line-height: 1.3em;
      color: #212121;
    }
    .accordion-content {
      border-bottom: 1px solid #ddd;
      display: none;
      padding: 12px;
      color: #333;
      background: #FFF;
      font-size: 15px;
      line-height: 1.45em;
      padding-left: 28px;
    }
    .accordion-content p {
      margin: 0;
      margin-bottom: 3px;
    }
    .accordion-header-icon {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      float: right;
      color: #888;
      font-size: 15px;
      vertical-align: middle;
    }
    .accordion-header-icon.accordion-header-icon-active {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
      color: #fff;
    }


  }



}





.user_team_1{

  .user_main{
    margin-top: 0px!important;
    .user_header{
      margin-top: 0px!important;
    }
  }

  .user_body{

    width: inherit;

   .team_1_header{

     line-height: 30px;
     font-size: 14px;
     padding: 20px;

     p{
       line-height: 30px;

     }

     span{

       &.dcolor{
         color:$dColor;
       }

     }

    }


    .team_1_tit{
      width: inherit;
      background: #FFFBF5;
      border-left: 3px solid $userNavColor;
      height: 40px;
      line-height: 40px;
      padding-left: 20px;
      overflow: hidden;
    h1{
      font-size: 16px;
      font-weight: 200;
      color: #333;

    }

    }


    .info_box{

      overflow: hidden;
      margin-top: 20px;
      margin-bottom: 10px;
      clear: both;
      padding-left: 17px;

        li{

          float: left;
          overflow: hidden;
          vertical-align: middle;

          a{

            width: inherit;
            color: #fff;
            text-decoration: none;

            &.btn{

              height: 32px;
              padding: 0px;
              line-height: 32px;
              padding-left: 10px;
              padding-right: 15px;
              margin-left: 15px;
              font-size: 14px;


            }

          }

        }

      span{
        width: inherit;
        color: #999;
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
        line-height: 30px;
        font-size: 14px;

      }

      input{

        width: 95px;
        height: 18px;
        border-radius: 4px;
        border: 1px solid #ddd;
        padding: 5px;
        padding-left: 10px;
        vertical-align: middle;

        &:hover{

          border: $dColor solid 1px;

        }

        &:focus{

          border: $dColor solid 1px;

        }

      }

      .btn{

        &.btn-default{
          width: 100px;
          height: 31px;
          line-height: 30px;
          padding: 0px;
          border: 0px;
          margin-left: 72px;

        }

      }

    }

    .info_t{

      overflow: hidden;
      margin-top: 23px;

      ul{
        width: inherit;

        li{
          float: left;
          overflow: hidden;
          width: 141px;
          padding: 10px;
          text-align: center;
          border-right: 1px dashed #ddd;
          line-height: 32px;
          em{
            display: block;
            font-size: 14px;
            color: #333;
          }

          span{
            width: inherit;
            font-size: 22px;

          }
        }
      }

    }

    .info_r{
      width: inherit;
      margin-top: 20px;
      margin-bottom: 20px;
      overflow: hidden;
      label{
        width: inherit;
        &.redio_field{

          line-height: 48px;
          margin-right: 11px;
          padding-right: 1px;
          position: inherit;
          float: left;
          margin-left: 28px;
        }

        span{
          width: inherit;
          display: inline-block;
          margin-left: 2px;
          font-size: 14px;
          letter-spacing: 2px;
          line-height: 36px;
          vertical-align: middle;


        }

      }

    }


  }

}

.tooltip{
  color: #fff;
}
.pointer{
  cursor: pointer;
}

/*充值 二维码页面*/

$qrcodeBgColor: #fffff !default;
$qrcodeborderColor: #f4f0ed !default;

.recharge_qrcode {
  background: $qrcodeBgColor;
  border: 1px solid $qrcodeborderColor;
  width: 998px !important;
  text-align:center;
  
  .qrcode_success {
    padding-bottom: 70px;
    margin-top: 30px;

    .qrcode_box {
      width: 477px;
      overflow: hidden;
      margin-left: 12%;
      margin-bottom: 20px;
      background: url("#{$skin}register_success.png") 5px 14px;
      background-repeat: no-repeat;
      background-size: 60px;
      padding-left: 55px;

      p {
        font-size: pxToRem(16px);
        line-height: 26px;
        overflow: hidden;
      }
      
      #title{
      	color:#42B500;
      	font-size:24px;
      	padding-top:15px;
      	padding-left: 24px;
      	padding-bottom: 10px;
      	font-weight: 600;
      }
      
      #info{
      	padding-top:5px;
      	padding-bottom: 20px;
      }
      
      .red{
      	color:red;
      }
      
      #qrcode_img{
      	padding-right:85px;
      	width:116px;
      }
      
      #copy{
      	margin-left:10px;
      	color:#7aa7eb;
      }
    }
    
    .qrcode_next{
      	margin-bottom:40px;
      	margin-right:26%;
     }
  }
  
  .qrcode_step {
  	  border: 1px solid #f1f1f1;
  	  padding-top:40px;
  	  text-align: left;
	  padding-left: 100px;
      padding-bottom: 100px;
    
      p {
        color: #989898;
        font-size: pxToRem(16px);
        line-height: 26px;
        overflow: hidden;
        padding:6px 0 ;
      }
      .p_title{
      	color:#F53730;
      	font-weight:700;
      	font-size:pxToRem(18px);
      }
  }
}
.six_number{
	font-size: 16px;
	background-size: 100%;
	cursor: default;
	width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	border: none;
	border-radius: 50%;
    margin: 0px 2px;
}
.open_number_text{
	float:left; 
	height:68px;	
}
.color_33{
	color:#333;
}
.six_number_div{
	display: flex;
	flex-flow: row wrap;
	align-content: flex-start;
}
#user_bank_list{
	.bank_list_div{
	    border: 1px solid #ddd;
	    margin-left: 60px;
	    margin-right: 60px;
	    .user_bank_item{
	    	display: flex;
	    	display: -webkit-flex; 
		    height: 40px;
		    font-size: 16px;
		    color: #333;
		    border-bottom: 1px solid #DDD;
		    padding: 10px 0px;
		    align-items: center;
		    img{
	    	    margin-left: 30px;
			    width: 100px;
			    height: 30px;
			}
			.label_bank_name{
				margin-left: 5px;
			    height: 24px;
			    min-width: 96px;
			    max-width: 134px;
			    flex: 10%;
			}
			.label_bank_account{
				margin-left: 40px;
    			height: 24px;
    			em{
    				padding-right:5px;
    			}
			}
			.label_default{
				margin-left: 5px;
				height: 24px;
				font-size: 14px;
    			color: #999;
			}
			.icon-duigou1{
				color: $bgColor;
				font-size:20px;
				flex: 1%;
			}
			.item_title{
				flex:40%;
			}
		}
	 	.user_bank_item_body{
	 		padding-top:20px;
	 		border-bottom: 1px solid #DDD;
	 		.form_group input{
 			    border: 0px;
			    background-color: #f4f4f4;
			    border-radius: 5px;
			    padding-top: 10px;
			    padding-bottom: 11px;
	 		}
	 	 	.default_bank{
			    margin-bottom:20px;
			}
	 	}
	}
}

/**end**/