@charset 'UTF-8';

/* 登入註冊 */
#login, #register {
    background: #272727;
    display: flex;
    flex-wrap: wrap;
}

#login h3, #register h3 {
    padding: 20px;
}

#login .label,
#register .label {
    min-width: 70px;
}

#login .input-box input,
#register .input-box input {
    flex: 1;
}

#register input.custom-checkbox { 
    flex: none;
}

#login .showPwd,
#register .showPwd {
    width: 32px;
}

.underLineLink {
    color: #6889B7;
    border-bottom: 1px solid #6888b7;
}

/* #login .hide,
#register .hide {
    display: none;
} */
.hide {
    display: none;
}

/* 充值 */
.pagesTab {
    background: #0C0C0C;
    border-top: 1px solid #272727;
    display: flex;
    height: 45px;
    position: relative;
    margin: 5px 0 0;
}

.pagesTab .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.pagesTab_item {
    border-bottom: 2px solid #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    font-size: 12px;
    flex: 1;
    padding: 0 10px;
    height: 46px;
}

.pagesTab_item div {
    color: #999;
    font-size: 14px;
}

.pagesTab_item.active {
    border-bottom: 2px solid #C3A05B;
}

.pagesTab_item.active div {
    color: #C3A05B;
}

.pagesTab_cont {
    overflow-y: scroll;
}

.pagesTab_item.active {
    display: flex;
}


/* 充值 */
.channel {
    background: #272727;
    /* border-top: 10px solid #272727; */
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}
.channelList {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    padding: 10px 20px;
}

.channelList li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #999;
    border-radius: 5px;
    color: #999;
    width: calc(100%/3 - 10px);
    margin: 5px;
    padding: 8px 5px;
}

.channelList li.active {
    border: 1px solid #cca352;
    color: #cca352;
}

.channelList li:nth-child(3n) {
    margin-right: 0;
}


/* 充值-線上支付 */
.online_wrap {
}
.online_wrap ul {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.online_wrap li {
    display: inline-flex;
}

.onlinePay {
    background: #272727;
    display: flex;
    height: 95px;
    padding: 15px 10px;
}

.onlinePay li {
    justify-content: center;
    flex: 1;
}

.onlinePay li > img {
    width: 60px;
}

.onlinePay li.active > img {
    border: 2px solid #c3a05b;
    border-radius: 50%;
    padding: 2px;
    width: 65px;
}

.payChannel {
    background: #272727;
    display: flex;
    padding: 0 10px;
    margin-top: 10px;
}

.payChannel ul {
    flex-wrap: wrap;
    padding: 10px 5px;
    overflow-y: scroll;
    max-height: 215px;
    /* max-height: calc(100vh - 305px - 50px - 95px - 20px - 130px); */
}

.payChannel li {
    background: #1b1b1b;
    border: 2px solid #1b1b1b;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 10px;
    margin: 5px auto;
    width: calc(100%/2 - 10px);
}

.payChannel li.active {
    border: 2px solid #cca352;
}

.payChannel li:nth-child(odd) {
    margin-right: 10px;
}

.payChannel .label {
    color: #cca352;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payChannel .limit {
    color: #6888b7;
}

.payChannel .desc {
    color: #999;
    font-size: 0;
    margin-top: 5px;
}

.payChannel .desc span {
    font-size: 12px;
    line-height: 130%;
}




/* 提款 */
.withdraw_wrap {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 6px;
    overflow-y: auto;
}

.withdraw .cardArea {
    padding: 15px 30px;
}

.withdraw .card_cont {
    padding: 5px 10px 5px;
}




/* 記錄表格 */
.filterBox {
    background: #0C0C0C;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
}

.filterItem {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    cursor: pointer;
}

.filterItem:last-of-type {
    border-left: 1px solid #1a1a1a;
}

.filterText {
    font-size: 12px;
    flex: 1;
    text-align: center;
}

.filterIcon {
    background: url('../images/arrow_down.png') no-repeat 0 50%;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #ccc;
    font-size: 12px;
}

.table .row {
    background: #272727;
    position: relative;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.table .cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.table .theader {
    background: #272727;
}

.table .theader .row {
    padding: 0 10px;
}

.table .theader .cell {
    padding: 10px 0;
}

.table .tbody {
    margin-top: 10px;
    /* padding-bottom: 40px; */
    overflow-y: scroll;
    height: calc(100vh - 245px - 46px - 34px - 100px);
}

#agent_memberList.tbody {
    height: calc(100vh - 245px - 84px - 46px - 34px - 44px - 20px);
}

.table .tbody .row {
    border-bottom: 1px solid #161616;
    padding: 10px 10px;
}

.table .tbody .cell {
    padding: 0 5px;
    height: 20px;
}

.table .cell > span {
    background: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 6px;
    width: 100%;
    height: 100%;
}

.table .cell span.blue {
    color: #3399CC;
}

.table .cell .detailBtn {
    position: absolute;
    right: 5px;
    top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
}

.table .cell_row {
    color: #999;
    display: flex;
    width: 100%;
    padding: 0 6px 0 6px;
}

.table .cell_row > div {
    display: inline-flex;
    flex: 1;
}

.table .cell_row.colum2 .colum2_2 {
    justify-content: flex-end;
}

.status-err { color: #FF4848; }
.status-wait { color: #C3A05B; }

.table .tfooter {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    /* bottom: 60px; */
    bottom: 0;
    left: 0;
    width: 100%;
}

.table .tfooter .row_sum {
    background: #ccc;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
}

.table .tfooter .row_sum > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.table .tfooter .pages {
    background: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    font-size: 14px;
    gap: 10px;
}

.table .tfooter .pages span {
    cursor: pointer;
}

.table .tfooter .pages span.disabled {
    color: #555;
    cursor: not-allowed;
}




/* 資金記錄詳情 */
.foundsRecord {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.foundsRecord .table {
    flex: 1;
}

.foundsRecord .theader {
    display: flex;
    width: 100%;
    height: 40px;
}

.foundsRecord .theader .row {
    width: 100%;
}

.foundsRecord .tbody {
    height: calc(100vh - 45px - 46px - 40px - 10px);
    display: flex;
    flex-direction: column;
}

.foundsDetail {
    background: #161616;
}

.foundsDetail .contBox {
    background: #272727;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 20px;
}
.foundsDetail .contBox > div {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 10px 20px;
    width: 100%;
}


/* 投注記錄 */
#recordList_bet {
    margin: 0;
    /* height: calc(100vh - 245px - 46px - 34px - 100px - 30px); */
    height: calc(100vh - 45px - 46px - 70px - 40px);
}

#recordList_bet .row {
    border: none;
    border-radius: 20px;
    margin: 10px;
}

#recordList_bet .cell span {
    border-radius: 10px;
}

#recordList_bet .text {
    display: inline-flex;
    flex-wrap: wrap;
}

#recordList_bet .label {
    white-space: nowrap;
}

#recordList_bet .colum2_2 {
    flex: 1;
    justify-content: flex-start;
}

#recordList_bet .role {
    display: flex;
    width: 100%;
}


/* 代理 */
.promotion_wrap {
    background: #272727;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 30px;
    margin: 10px 0;
    width: 100%;
}

.promotion {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.promotion_title {
    font-size: 16px;
    margin-left: 10px;
    white-space: nowrap;
}

.promotion_link {
    color: #FF4848;
    font-size: 14px;
}

.total {
    background: #161616;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    padding: 8px 20px 5px;
}

.total > div {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.total > div > div {
    display: flex;
    justify-content: center;
    font-size: 12px;
    width: 100%;
}


/* 個人資訊 */
.completeInfo {
    background: linear-gradient(0, #212121, #0F0F0F);
}

.completeInfo .header {
    background: #0C0C0C;
    height: 56px;
}

.completeInfo .content {
    padding: 50px 0;
}

.completeInfo .form {
    background: transparent;
}


/* 投注記錄查詢 */
#filterGameTypeSection {
    flex: 1;
    overflow-y: auto;
}




/* 會員中心 */
.memberCenter {}

.memberCenter ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.memberCenter li {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cea460;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    width: calc(50% - 10px );
    height: 60px;
    position: relative;
}

.memberCenter li img {
    /* position: absolute;
    right: 5px;
    bottom: 5px; */
    width: 35px;
    height: 35px;
    margin-right: 10px;
}



/* 上傳截圖 */
.uploadFile {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.uploadFile_img {
    display: flex;
    justify-content: center;
    width: 100%;
}