/* Minification failed. Returning unminified contents.
(3117,36): run-time error CSS1046: Expect comma, found '0'
(3117,40): run-time error CSS1046: Expect comma, found '/'
 */
/* "登入後Account-nav頁面共同設定" */
.panel {
    width: 100%;
    color: #5f5f5f;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Account/images/panel_background.jpg') repeat;
    border: 0;
}

.account-balance {
    cursor: pointer;
}

    .account-balance:hover {
        text-decoration: underline;
    }

/* title顏色 */
#title {
    height: 48px;
    font-weight: bold;
    font-size: 21px;
    font-family: 'Microsoft JhengHei';
    text-transform: uppercase;
    border: none;
}

    #title > div {
        margin-top: -1px;
        text-align: center;
        text-transform: uppercase;
    }
/* #region 最新公告 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

    .modal-overlay.modal-show {
        visibility: visible;
        opacity: .6;
    }

.modal-announcement {
    position: fixed;
    top: 7%;
    left: 50%;
    margin-left: -499px;
    width: 1000px;
    z-index: 10000;
    visibility: hidden;
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    .modal-announcement.modal-show {
        visibility: visible;
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    .modal-announcement > .ma-title {
        min-height: 38px;
        padding: 7px 0;
        color: #fff;
        text-align: center;
        word-break: break-all;
        background-color: #333;
        border-bottom: 2px solid #ccc;
        -moz-border-radius: 8px 8px 0 0;
        -webkit-border-radius: 8px 8px 0 0;
        border-radius: 8px 8px 0 0;
    }

        .modal-announcement > .ma-title > span {
            display: inline-block;
            vertical-align: top;
            max-width: 670px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 18px;
            font-weight: bold;
        }

        .modal-announcement > .ma-title > i {
            float: right;
            margin: 2px 20px 0 0;
            font-size: 22px;
            cursor: pointer;
        }

    .modal-announcement > .ma-body > section {
        height: 560px;
        display: inline-block;
        vertical-align: top;
    }

    .modal-announcement .ma-sidebar {
        width: 27%;
        background-color: #fff;
        border-right: 1px solid #d6d6d6;
        overflow-y: auto;
        overflow-x: hidden;
    }

        .modal-announcement .ma-sidebar ul {
            width: 100%;
        }

        .modal-announcement .ma-sidebar li {
            width: 100%;
            height: 50px;
            padding: 0 12px;
            color: #000;
            line-height: 49px;
            border-bottom: 1px solid #ccc;
            cursor: pointer;
        }

            .modal-announcement .ma-sidebar li span {
                display: inline-block;
                width: 80%;
                vertical-align: top;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .modal-announcement .ma-sidebar li:hover,
            .modal-announcement .ma-sidebar li.active {
                color: #fff;
                background-color: #333;
            }

        .modal-announcement .ma-sidebar i.fa-comment-dots {
            vertical-align: middle;
            margin-right: 10px;
        }

        .modal-announcement .ma-sidebar i.fa-chevron-right {
            float: right;
            margin-top: 19px;
        }

    .modal-announcement .ma-content {
        width: 73%;
        background-color: #fff;
        overflow: auto;
    }

        .modal-announcement .ma-content p {
            margin: 0;
        }

        .modal-announcement .ma-content img {
            max-width: 100%;
            height: auto;
            vertical-align: top;
        }

        .modal-announcement .ma-content ul {
            display: block;
            margin: 1em 0;
            padding-left: 40px;
            list-style: disc;
        }

        .modal-announcement .ma-content ol {
            display: block;
            margin: 1em 0;
            padding-left: 40px;
            list-style: decimal;
        }

    .modal-announcement > .ma-footer {
        min-height: 38px;
        padding: 7px 10px;
        background-color: #333;
        -moz-border-radius: 0 0 8px 8px;
        -webkit-border-radius: 0 0 8px 8px;
        border-radius: 0 0 8px 8px;
    }

        .modal-announcement > .ma-footer > span {
            display: inline-block;
            vertical-align: top;
            max-width: 670px;
            margin-top: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #fff;
            font-size: 16px;
        }

        .modal-announcement > .ma-footer > .ma-noshow {
            float: right;
            margin-top: 5px;
        }

            .modal-announcement > .ma-footer > .ma-noshow span {
                margin: 0 5px;
                color: #fff;
                font-size: 16px;
            }


    /* 卷轴样式 */
    .modal-announcement > .ma-body > section::-webkit-scrollbar { /*滚动条整体样式*/
        width: 10px; /*高宽分别对应横竖滚动条的尺寸*/
        height: 3px;
    }

    .modal-announcement > .ma-body > section::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background: #535353;
    }

    .modal-announcement > .ma-body > section::-webkit-scrollbar-track { /*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 10px;
        background: #ededed;
    }

    /* 只有单笔讯息时要更换样式 */
    .modal-announcement.single-content {
        width: 730px;
        margin-left: -365px;
    }

        .modal-announcement.single-content p {
            margin: 0;
        }

        .modal-announcement.single-content .ma-sidebar {
            display: none;
        }

        .modal-announcement.single-content .ma-content {
            width: 100%;
        }

        .modal-announcement.single-content .ma-footer > span {
            max-width: 500px;
        }
/* #endregion 最新公告 */

/* #region 線上取款 */
#account-panel,
#withdrawal-panel {
    color: #5f5f5f;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/WithdrawApplication/images/panel_background.jpg') repeat;
}

/* 线上取款页面 */
#account-heading,
#withdrawal-heading {
    margin: 1px 1px;
    font-family: PMingLiU;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}
/* #endregion 線上取款 */
.panel-body {
    text-align: center;
}

    .panel-body > form {
        width: 700px;
        margin: 0 auto;
    }

    .panel-body .control-div input {
        width: 100%;
        padding: 3px 5px;
        line-height: 25px;
        background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Account/images/input_center.png') repeat-y;
        border: 0;
    }

        .panel-body .control-div input:focus {
            outline: 0;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 249, 149, 0.6);
            -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 249, 149, 0.6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 249, 149, 0.6);
        }

/* #region tooltip */
.tooltip {
    position: absolute;
    left: 93%;
    top: -2px;
    z-index: 1;
    display: inline-block;
}

.tooltipshowarrow_int {
    position: absolute;
    top: 5px;
    right: -1px;
    z-index: 1000;
    display: block;
    border: 8px solid;
    border-color: transparent #fff;
    border-left-width: 0;
    -moz-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
    -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}

.tooltipshowarrow_out {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 999;
    display: block;
    border: 8px solid;
    border-left-width: 0;
    border-color: transparent #bbb;
    -moz-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
    -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}

.tooltipshow {
    position: absolute;
    z-index: 999 !important;
    width: 250px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid;
    border-color: #bbb #bbb #a8a8a8;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
/* #endregion tooltip */

/* #region inputu樣式 */
.form-control::-webkit-input-placeholder { /* WebKit browsers */
    color: #878787;
}

.form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #878787;
}

.form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #878787;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #878787;
}

.input-block {
    position: relative;
    display: inline-block;
    width: 304px;
}

.help-block {
    color: #8a6d3b;
}

.input-block-top {
    position: absolute;
    top: -2px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 4px;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Account/images/input-top-btm.png') no-repeat 0 0;
}

.input-block-btm {
    position: absolute;
    bottom: -8px;
    left: 0;
    display: inline-block;
    height: 10px;
    width: 100%;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Account/images/input-top-btm.png') no-repeat 0 -4px;
}

/* #endregion inputu樣式 */

/* #region 按鈕樣式 */
.btn-submit {
    position: relative;
    width: 119px;
    height: 45px;
    color: #454545;
    font-size: 15px;
    font-family: PMingLiU;
    font-weight: bold;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/sent_bn.png') no-repeat 0 0;
    border: 0;
}

    .btn-submit:hover {
        color: #454545;
        background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/sent_bn.png') no-repeat 0 -46px;
    }

    .btn-submit[disabled]:hover {
        color: #999;
        background-position-y: 0;
    }
/* #endregion 按鈕樣式 */

/* #region 表格樣式 */
.table {
    color: #000;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        line-height: 2em;
    }

table tfoot {
    text-align: center;
    background: #eee;
}
/* #endregion 表格樣式 */

/* #region 使用directive: PopupDialog 弹窗的共同样式 */
#popup-dialog {
    display: none;
    padding: 0;
}

    #popup-dialog img {
        width: 100%;
        height: auto !important;
    }

    #popup-dialog .dialog-footer {
        height: 30px;
        padding: 0 3px;
        font-size: 12px;
        font-weight: bold;
        line-height: 30px;
        border-top: 1px solid #000;
    }
/* #endregion 使用directive: PopupDialog 弹窗的共同样式 */

/* #region 最新消息 */
ul#newsBags > li {
    white-space: pre-line;
    word-break: break-all;
    word-wrap: break-word;
}
/* #endregion 最新消息 */

/* #region 弹窗共用樣式 */
.modal.in {
    display: block;
    overflow-y: auto;
}

    .modal.in input {
        width: 150px;
        height: 38px;
        margin: 0 10px;
        padding: 0 8px;
        line-height: 38px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .modal.in h4 {
        display: inline-block;
    }

    .modal.in .search-time button {
        position: relative;
        width: 120px;
        height: 38px;
        line-height: 38px;
        border-radius: 3px;
        background: #bf8a44;
        color: #fff;
        border: 0px;
    }

        .modal.in .search-time button:hover {
            background: #cfaf6f;
        }

    /* Table */
    .modal.in table {
        width: 100%;
        margin: 20px 0;
        border-collapse: separate;
        background: #fff;
        border-spacing: 0;
        border-radius: 5px;
        overflow: hidden;
        border: 1px solid #ccc;
    }

        .modal.in table tr td {
            border-bottom: 1px solid #ccc;
        }

        .modal.in table tr:last-child td {
            border-bottom: none;
        }

        .modal.in table tr:nth-child(2n) {
            background: rgba(0, 0, 0, 0.1);
        }

        .modal.in table th {
            background: #bf8a44;
            color: #fff;
        }

        .modal.in table th,
        .modal.in table td {
            text-align: center;
            border-right: 1px solid #ccc;
            padding: 8px 10px;
        }

            .modal.in table th:last-child,
            .modal.in table td:last-child {
                border-right: none;
            }

    /* Color */
    .modal.in .normal {
        color: #009c49;
    }

    .modal.in .disable {
        color: #c20000;
    }

    .modal.in .freeze {
        color: #a1a1a1;
    }

    /* Button */
    .modal.in .modal-footer button {
        display: inline-block;
        width: 119px;
        font-size: 15px;
        font-weight: bolder;
        line-height: 35.5px;
        border: none;
        background-image: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/sent_bn.png');
        cursor: pointer;
    }

        .modal.in .modal-footer button:hover {
            background-position: bottom;
        }

    /* Pager */
    .modal.in #pager {
        text-align: center;
    }

        .modal.in #pager li {
            display: inline-block;
            color: #333;
            background: #ddd;
            padding: 5px 10px;
        }

            .modal.in #pager li:hover {
                background: #666;
                color: #fff;
            }
/* #endregion 弹窗共用樣式 */

/*#region 推薦好友Mgm */
#invite-box {
    position: relative;
    width: 1000px;
    left: 50%;
    margin-left: -500px;
    margin-top: 30px;
    padding: 30px 50px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}

    #invite-box .invite-list ul,
    #invite-box .invite-dividend ul,
    #invite-box .invite-code .invite-txt {
        display: block;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 3px;
        padding: 20px;
        margin: 20px auto;
    }

        #invite-box .invite-list ul li,
        #invite-box .invite-dividend ul li {
            width: calc(50% - 20px);
            display: inline-block;
            text-align: center;
        }

        #invite-box .invite-list ul li {
            width: calc(33% - 1px);
            text-align: center;
        }

            #invite-box .invite-list ul li + li,
            #invite-box .invite-dividend ul li + li {
                border-left: 1px solid #ddd;
            }

    #invite-box .invite-list li p:first-child {
        font-size: 36px;
        color: #ff9100;
        font-weight: bold;
    }

    #invite-box .invite-code {
        position: relative;
    }

        #invite-box .invite-code .invite-txt {
            width: 700px;
            display: inline-block;
        }

        #invite-box .invite-code .copy-btn {
            position: absolute;
            right: 0;
            bottom: 22px;
            width: 170px;
            display: inline-block;
        }

            #invite-box .invite-code .copy-btn li:first-child {
                margin-bottom: 10px;
            }

    #invite-box b {
        font-size: 18px;
        margin-left: 10px;
        color: #ff9100
    }

    #invite-box h3 {
        color: #0588fe;
    }

    #invite-box .tip {
        position: relative;
        cursor: pointer;
    }

        #invite-box .tip .tiptxt {
            display: none;
            position: absolute;
            width: 300px;
            margin-left: 60px;
            top: -70px;
            background: rgba(0,0,0,.2);
            padding: 5px;
            border-radius: 3px;
        }

        #invite-box .tip:hover .tiptxt {
            display: block;
        }

    /* Icon-btn */
    #invite-box .icon-btn i,
    #invite-box .icon-btn span,
    #invite-box .icon-btn:before {
        -webkit-transition: all .6s;
        -moz-transition: all .6s;
        transition: all .6s;
    }

    #invite-box .icon-btn {
        position: relative;
        width: 170px;
        height: 38px;
        background: #0588fe;
        text-align: center;
        line-height: 38px;
        overflow: hidden;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

        #invite-box .icon-btn:before {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            top: 50%;
            margin-left: 83px;
            border-radius: 60px;
            background: #ff9100;
            opacity: 0;
            display: block;
        }

        #invite-box .icon-btn:hover:before {
            width: 170px;
            height: 170px;
            top: -170%;
            margin-left: 0;
            opacity: 1;
        }

        #invite-box .icon-btn a {
            position: absolute;
            color: #fff;
            line-height: 38px;
            text-decoration: none;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 2;
        }

        #invite-box .icon-btn i {
            position: absolute;
            font-size: 20px;
            top: 8px;
            margin-left: 10px;
            opacity: 0;
        }

        #invite-box .icon-btn:hover i {
            opacity: 1;
            margin-left: 0;
        }

        #invite-box .icon-btn span {
            margin-left: 0;
        }

        #invite-box .icon-btn:hover span {
            margin-left: 22px;
        }


    #invite-box .rec-btn {
        cursor: pointer;
    }

        #invite-box .rec-btn:hover {
            text-decoration: underline;
        }


/*#endregion 推薦好友Mgm */

/* 弹窗樣式 */
.modal.in {
    display: block;
    overflow-y: auto;
}

.modal-body.s-modal {
    padding: 30px 100px;
}

.modal.in input {
    width: 150px;
    height: 38px;
    margin: 0 10px;
    padding: 0 8px;
    line-height: 38px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.modal.in h4 {
    display: inline-block;
}

.modal.in .search-time button {
    position: relative;
    width: 120px;
    height: 38px;
    line-height: 38px;
    border-radius: 3px;
    background: #bf8a44;
    color: #fff;
    border: 0px;
}

    .modal.in .search-time button:hover {
        background: #cfaf6f;
    }

#captcha-popup section {
    display: none;
}

    #captcha-popup section.on {
        display: block;
    }

#captcha-popup .modal-dialog {
    width: 370px;
    margin-top: 20vh;
    text-align: center;
}

#captcha-popup .modal-body.s-modal {
    padding: 30px;
    font-size: 15px;
}

    #captcha-popup .modal-body.s-modal a {
        color: #0080e3;
        cursor: pointer;
    }

    #captcha-popup .modal-body.s-modal .captcha {
        width: 100%;
        margin: 0;
    }

    #captcha-popup .modal-body.s-modal button {
        margin: 10px 0;
        width: 100%;
        line-height: 30px;
        border-radius: 3px;
        background: #eee;
    }

        #captcha-popup .modal-body.s-modal button:hover {
            background: #cecece;
        }

/* Table */
.modal.in table {
    width: 100%;
    margin: 20px 0;
    border-collapse: separate;
    background: #fff;
    border-spacing: 0;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
}

    .modal.in table.average {
        table-layout: fixed;
    }

    .modal.in table tr td {
        border-bottom: 1px solid #ccc;
    }

    .modal.in table tr:last-child td {
        border-bottom: none;
    }

    .modal.in table tr:nth-child(2n) {
        background: rgba(0, 0, 0, 0.1);
    }

    .modal.in table th {
        background: #bf8a44;
        color: #fff;
    }

    .modal.in table th,
    .modal.in table td {
        text-align: center;
        border-right: 1px solid #ccc;
        padding: 8px 10px;
    }

        .modal.in table th:last-child,
        .modal.in table td:last-child {
            border-right: none;
        }

    .modal.in table .money {
        text-align: right;
        padding-right: 30px;
    }

/* Color */
.modal.in .normal {
    color: #009c49;
}

.modal.in .disable {
    color: #c20000;
}

.modal.in .freeze {
    color: #a1a1a1;
}

/* Button */
.modal.in .header-button {
    position: absolute;
    right: 96px;
    top: 25px;
}

    .modal.in .header-button button {
        display: inline-block;
        min-width: 120px;
        font-size: 15px;
        margin: 5px;
        padding: 0 10px;
        font-weight: bolder;
        line-height: 30px;
        border: none;
        border-radius: 5px;
        background: -webkit-linear-gradient(#fdfdfd,#d4d4d4);
        background: -o-linear-gradient(#fdfdfd,#d4d4d4);
        background: -moz-linear-gradient(#fdfdfd,#d4d4d4);
        background: linear-gradient(#fdfdfd,#d4d4d4);
        cursor: pointer;
    }

        .modal.in .header-button button:hover {
            background: -webkit-linear-gradient(#dedede,#fdfdfd);
            background: -o-linear-gradient(#dedede,#fdfdfd);
            background: -moz-linear-gradient(#dedede,#fdfdfd);
            background: linear-gradient(#dedede,#fdfdfd);
        }

/* Pager */
.modal.in #pager {
    text-align: center;
    display: block;
}

    .modal.in #pager li {
        display: inline-block;
        color: #333;
        background: #ddd;
        padding: 5px 10px;
    }

        .modal.in #pager li:hover {
            background: #666;
            color: #fff;
        }
/* #endregion 弹窗樣式 */

/* #region 会员等级樣式 */
#member-level {
    color: #000;
    background: #fff47e;
    border-radius: 30px;
    padding: 2px 10px 2px 10px;
}

    #member-level.showHend {
        cursor: pointer;
    }

    #member-level:before {
        content: '';
        position: relative;
        right: 2px;
        top: 2px;
        -webkit-mask: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Vip/images/VIP.svg');
        mask: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Vip/images/VIP.svg');
        display: inline-block;
        width: 14px;
        height: 14px;
        background: #000;
        -webkit-mask-size: cover;
        mask-size: cover;
    }

    #member-level.vip0 {
        color: #11928c;
    }

        #member-level.vip0:before {
            background: #11928c;
        }

    #member-level.vip1 {
        color: #4c1597;
    }

        #member-level.vip1:before {
            background: #4c1597;
        }

    #member-level.vip2 {
        color: #379b0a;
    }

        #member-level.vip2:before {
            background: #379b0a;
        }

    #member-level.vip3 {
        color: #956e11;
    }

        #member-level.vip3:before {
            background: #956e11;
        }

    #member-level.vip4 {
        color: #991862;
    }

        #member-level.vip4:before {
            background: #991862;
        }

    #member-level.vip5 {
        color: #715742;
    }

        #member-level.vip5:before {
            background: #715742;
        }

    #member-level.vip6 {
        color: #70416d;
    }

        #member-level.vip6:before {
            background: #70416d;
        }

    #member-level.vip7 {
        color: #40666d;
    }

        #member-level.vip7:before {
            background: #40666d;
        }

    #member-level.vip8 {
        color: #416e49;
    }

        #member-level.vip8:before {
            background: #416e49;
        }

    #member-level.vip9 {
        color: #bd903a;
    }

        #member-level.vip9:before {
            background: #bd903a;
        }

    #member-level.vip10 {
        color: #009688;
    }

        #member-level.vip10:before {
            background: #009688;
        }

    #member-level.vip11 {
        color: #8BC34A;
    }

        #member-level.vip11:before {
            background: #8BC34A;
        }

    #member-level.vip12 {
        color: #CDDC39;
    }

        #member-level.vip12:before {
            background: #CDDC39;
        }

    #member-level.vip13 {
        color: #AFB42B;
    }

        #member-level.vip13:before {
            background: #AFB42B;
        }

    #member-level.vip14 {
        color: #FBC02D;
    }

        #member-level.vip14:before {
            background: #FBC02D;
        }

    #member-level.vip15 {
        color: #FFA000;
    }

        #member-level.vip15:before {
            background: #FFA000;
        }
/* #endregion 会员等级樣式 */

/* #region 提醒弹窗 */
#remind-popup {
    color: #303030;
}

    #remind-popup .modal-body p,
    #remind-popup .modal-body h5 {
        font-size: 16px;
        margin: 0;
        text-align: left;
        font-weight: normal;
    }

    #remind-popup .modal-body p {
        margin: 10px 0 20px 0;
    }

    #remind-popup .modal-body h5 {
        font-size: 15px;
        margin: 10px 0;
    }

    #remind-popup .modal-body .icon-href {
        display: inline-block;
        width: 100%;
        height: 140px;
        background: rgba(255,255,255,.5);
        border-radius: 5px;
        text-align: center;
    }

    #remind-popup .modal-body > ul {
        border-radius: 20px;
        background-color: #f7f7f7;
        border-radius: 5px;
        padding-left: 0;
        padding: 10px 0;
    }

        #remind-popup .modal-body > ul li {
            border: 1px solid #555;
            border-radius: 30px;
            width: 80%;
            margin: 10px auto;
            padding-left: 13px;
            text-align: center;
            padding: 8px 0;
        }

            #remind-popup .modal-body > ul li a {
                text-decoration: none;
            }

            #remind-popup .modal-body > ul li i {
                margin-right: 10px;
            }
/* #endregion 提醒弹窗 */

/* #region 跑馬燈弹窗 */
#marquee .marquee-subnav {
    position: relative;
    display: block;
    border: none;
    height: auto;
    min-width: initial;
    line-height: 20px;
    text-align: left;
    overflow: hidden;
    width: 600px;
    background-color: transparent;
    padding: 0;
}

    #marquee .marquee-subnav:before {
        display: none;
    }

    #marquee .marquee-subnav > span {
        position: absolute;
        right: 25px;
        bottom: 20px;
        top: initial;
        left: initial;
        z-index: 1;
        display: inline-block;
        width: 20px;
        height: 20px;
        background-position: center top;
        cursor: pointer;
    }

        #marquee .marquee-subnav > span:hover i{
            color: #ccae36;
        }

        #marquee .marquee-subnav > span.prev {
            margin-left: 0;
            color: rgba(255, 255, 255, .4);
            right: 88px;
        }

        #marquee .marquee-subnav > span.next {
            margin-left: 0;
            color: rgba(255, 255, 255, .4);
        }

    #marquee .marquee-subnav ul li::before,
    #marquee .marquee-subnav ul li::after {
        display: none;
    }

    #marquee .marquee-subnav .main-cell li {
        display: block;
        width: 560px;
        height: 180px;
        margin: 20px;
        border-bottom: none;
        overflow-y: auto;
        text-align: left;
        line-height: 20px;
        padding-top: 0;
    }

        #marquee .marquee-subnav .main-cell li:hover {
            background: transparent;
        }

        #marquee .marquee-subnav .main-cell li div {
            padding: 10px;
        }

    #marquee .marquee-subnav .slide-pager {
        display: inline-block;
        margin: 10px 0 15px 25px;
        width: 70%;
        text-align: left;
    }

        #marquee .marquee-subnav .slide-pager li {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.4);
            width: 10px;
            height: 10px;
            color: transparent;
            text-indent: -999px;
            border-radius: 30px;
            border-bottom: none;
            min-width: initial;
            padding-top: 0;
            margin: 0 8px 0 0;
        }

            #marquee .marquee-subnav .slide-pager li.on {
                background-color: #ccae36;
            }

/* #endregion 跑馬燈弹窗 */

.vaptcha-popup a.vp-btn-tip {
    display: none;
}

/* #region 註冊成功弹窗 */
#register-success-dialog .modal-dialog {
    width: 330px;
}

#register-success-dialog .modal-content {
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

    #register-success-dialog .modal-content .modal-body {
        text-align: center;
    }

        #register-success-dialog .modal-content .modal-body i {
            font-size: 54px;
            color: #70b603;
        }

        #register-success-dialog .modal-content .modal-body p {
            margin-bottom: 0;
            font-size: 24px;
            font-weight: bold;
        }

    #register-success-dialog .modal-content .modal-footer {
        margin-top: 0;
        text-align: center;
        border-top: 2px solid #d9d9d9;
        background: transparent;
    }

        #register-success-dialog .modal-content .modal-footer a {
            margin: 0 15px;
            padding: 5px 20px;
            text-decoration: none;
        }

            #register-success-dialog .modal-content .modal-footer a.btn-primary {
                color: #fff;
                background-color: #337ab7;
                border-color: #2e6da4;
            }

                #register-success-dialog .modal-content .modal-footer a.btn-primary:hover {
                    color: #fff;
                    background-color: #004b92;
                    border-color: #004b92;
                }

            #register-success-dialog .modal-content .modal-footer a.btn-light {
                color: #333;
                background-color: #fff;
                border-color: #ccc;
            }

                #register-success-dialog .modal-content .modal-footer a.btn-light:hover {
                    color: #333;
                    background-color: #dedede;
                    border-color: #ccc;
                }
/* #endregion 註冊成功弹窗 */

/* #region 活動飄窗 */
#activity-float {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 120px;
    height: 120px;
    z-index: 999;
}

    #activity-float .activity-float-list li {
        display: inline-block;
        vertical-align: top;
        width: 120px;
        height: 120px;
    }

        #activity-float .activity-float-list li img {
            width: 120px;
            height: 120px;
        }

    #activity-float .close {
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        height: 26px;
        width: 26px;
        cursor: pointer;
        background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/close.png') no-repeat center center;
    }

    /* 點點切換紐 */
    #activity-float .slide-pager {
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        text-align: center;
    }

        #activity-float .slide-pager li {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 4px;
            /* 若要数字编号可以把font-size: 0拿掉 */
            font-size: 0;
            background-color: #d7d7d7;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            cursor: pointer;
        }

            #activity-float .slide-pager .on,
            #activity-float .slide-pager li:hover {
                background-color: #7f7f7f;
            }
/* #endregion 活動飄窗 */

/* #region 站內信飄窗 */
div[site-mail-float] {
    position: fixed;
    right: 70px !important;
    top: 65px;
    padding: 0 8px;
    width: 300px;
    color: #f4b147;
    font-size: 15px;
    background-color: #111111;
    border: 2px solid #b89867;
    -moz-box-shadow: 0 0 7px #666;
    -webkit-box-shadow: 0 0 7px #666;
    box-shadow: 0 0 7px #b89867;
    z-index: 9999;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    div[site-mail-float] .msg-header {
        height: 35px;
        line-height: 35px;
        font-weight: bold;
        border-bottom: #f4b147 solid 1px;
    }

        div[site-mail-float] .msg-header .msg-close {
            margin-right: 10px;
            float: right;
        }

    div[site-mail-float] .msg-body {
        height: 30px;
        line-height: 30px;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
/* #endregion 站內信飄窗 */

/* #region CSS3 过渡效果的延迟 */
#nav.flip-animation > ul > li:hover .subnav {
    display: block\9;
    visibility: visible;
}

    #nav.flip-animation > ul > li:hover .subnav li {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        white-space: nowrap;
    }

#nav.flip-animation .subnav {
    display: none\9;
    position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    z-index: 2;
    visibility: hidden;
    -webkit-perspective: 320px;
    perspective: 320px;
    -webkit-transition: visibility linear 0.4s;
    -o-transition: visibility linear 0.4s;
    transition: visibility linear 0.4s;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    #nav.flip-animation .subnav li {
        opacity: 0;
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
        -webkit-transition: opacity 0.4s, -webkit-transform 0.5s;
        transition: opacity 0.4s, -webkit-transform 0.5s;
        -o-transition: opacity 0.4s, transform 0.5s;
        transition: opacity 0.4s, transform 0.5s;
        transition: opacity 0.4s, transform 0.5s, -webkit-transform 0.5s;
    }

#nav.flip-animation li:hover .subnav li:nth-child(1) {
    -webkit-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(2) {
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(3) {
    -webkit-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(4) {
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(5) {
    -webkit-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(6) {
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(7) {
    -webkit-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(8) {
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(9) {
    -webkit-transition-delay: 450ms;
    -o-transition-delay: 450ms;
    transition-delay: 450ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(10) {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(11) {
    -webkit-transition-delay: 550ms;
    -o-transition-delay: 550ms;
    transition-delay: 550ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(12) {
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(13) {
    -webkit-transition-delay: 650ms;
    -o-transition-delay: 650ms;
    transition-delay: 650ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(14) {
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(15) {
    -webkit-transition-delay: 750ms;
    -o-transition-delay: 750ms;
    transition-delay: 750ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(16) {
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(17) {
    -webkit-transition-delay: 850ms;
    -o-transition-delay: 850ms;
    transition-delay: 850ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(18) {
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(19) {
    -webkit-transition-delay: 950ms;
    -o-transition-delay: 950ms;
    transition-delay: 950ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(20) {
    -webkit-transition-delay: 1050ms;
    -o-transition-delay: 1050ms;
    transition-delay: 1050ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(21) {
    -webkit-transition-delay: 1100ms;
    -o-transition-delay: 1100ms;
    transition-delay: 1100ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(22) {
    -webkit-transition-delay: 1150ms;
    -o-transition-delay: 1150ms;
    transition-delay: 1150ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(23) {
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(24) {
    -webkit-transition-delay: 1250ms;
    -o-transition-delay: 1250ms;
    transition-delay: 1250ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(25) {
    -webkit-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

#nav.flip-animation li:hover .subnav li:nth-child(26) {
    -webkit-transition-delay: 1350ms;
    -o-transition-delay: 1350ms;
    transition-delay: 1350ms;
}
/* #endregion CSS3 过渡效果的延迟 */

@charset "UTF-8";
/* #region base */
body {
    position: relative;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    background: linear-gradient(270deg, #000000 0%, #211910 100%);
    background: -moz-linear-gradient(270deg, #000000 0%, #211910 100%);
    background: -webkit-linear-gradient(270deg, #000000 0%, #211910 100%);
    background: -o-linear-gradient(270deg, #000000 0%, #211910 100%);
    z-index: 0;
    padding-top: 50px;
}

    body.layout {
        min-width: 1000px;
    }

        body.layout:before {
            content: '';
            position: fixed;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/bg.png') no-repeat center top;
            z-index: 0;
        }

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

iframe {
    border: none;
}

ul, ol {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

[ng-click] {
    cursor: pointer;
}

.wrapper {
    position: relative;
    width: 1000px;
    margin: 0 auto;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: '';
}

.clearfix:after {
    clear: both;
}
/* #endregion */

/* #region header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    padding: 0 10px;
    background: linear-gradient(270deg, #000000 0%, #2E1E05 100%);
    background: -moz-linear-gradient(270deg, #000000 0%, #2E1E05 100%);
    background: -webkit-linear-gradient(270deg, #000000 0%, #2E1E05 100%);
    background: -o-linear-gradient(270deg, #000000 0%, #2E1E05 100%);
    border-bottom: 1px solid #221504;
    z-index: 5;
}

    #header #logo-bg {
        display: inline-block;
        width: 227px;
        height: 50px;
        vertical-align: middle;
        background: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/logo.png') no-repeat center;
        background-size: contain;
    }

        #header #logo-bg a {
            display: block;
            height: 100%;
        }
/* #endregion header */

/* #region nav */
#nav {
    display: inline-block;
    vertical-align: top;
    padding: 10px 0 0;
    margin-left: 20px;
}

    #nav li {
        display: inline-block;
        vertical-align: top;
        height: 40px;
        line-height: 30px;
    }

        #nav li + li {
            margin-left: 10px;
        }

        #nav li a {
            position: relative;
            display: block;
            height: 100%;
            padding: 0 10px;
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            z-index: 0;
        }

        #nav li:hover a,
        #nav li.active a {
            color: #efad46;
        }

            #nav li:hover a:before,
            #nav li.active a:before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 10px;
                z-index: -1;
                background: #4c3b17;
                -moz-border-radius: 16px;
                -webkit-border-radius: 16px;
                border-radius: 16px;
            }
/* #endregion nav */

/* #region*/
.top-right {
    position: absolute;
    top: 0;
    right: 10px;
    padding-top: 10px;
}

    .top-right > li {
        position: relative;
        display: inline-block;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
        vertical-align: top;
    }

        .top-right > li + li:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 5px;
            height: 20px;
            width: 1px;
            background: #ffe7b5;
        }

        .top-right > li + li {
            margin-left: 20px;
        }

        .top-right > li.none-before:before {
            display: none;
        }

        .top-right > li:last-child {
            margin-left: 5px;
        }

    /* #endregion*/

    /* #region language*/
    .top-right .language {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 130px;
        padding: 0 5px 0 20px;
        color: #a5947a;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
        cursor: pointer;
    }

        .top-right .language i {
            margin-left: 4px;
            -moz-transition: all .4s;
            -o-transition: all .4s;
            -webkit-transition: all .4s;
            transition: all .4s;
        }

        .top-right .language > ul {
            position: absolute;
            display: none;
            top: 40px;
            left: -1px;
            width: 126px;
            background-color: #453113;
            border-left: 1px solid #453113;
            border-right: 1px solid #453113;
            border-bottom: 1px solid #453113;
            z-index: 2;
        }

        .top-right .language > span {
            display: block;
            height: 100%;
            cursor: pointer;
        }

            .top-right .language > span[data-language]:before {
                content: "";
                display: inline-block;
                vertical-align: top;
                width: 25px;
                height: 20px;
                margin-top: 3px;
                margin-right: 2px;
            }

            .top-right .language > span[data-language="zh-CN"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -37px;
            }

            .top-right .language > span[data-language="zh-TW"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 3px;
            }

            .top-right .language > span[data-language="en-US"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -76px;
            }

            .top-right .language > span[data-language="th"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -237px;
            }

        .top-right .language:hover {
            background-color: #453113;
        }

            .top-right .language:hover:after {
                content: '';
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                height: 39px;
            }

            .top-right .language:hover > ul {
                display: flex;
                flex-direction: column;
            }

            .top-right .language:hover i {
                transform: rotate(180deg)
            }

        .top-right .language li {
            display: block;
            height: 35px;
            padding: 0px 4px 0 20px;
            line-height: 35px;
            cursor: pointer;
        }

            .top-right .language li[data-language="zh-CN"] {
                order: 2;
            }

            .top-right .language li[data-language="zh-TW"] {
                order: 4;
            }

            .top-right .language li[data-language="en-US"] {
                order: 3;
            }

            .top-right .language li[data-language="th"] {
                order: 1;
            }

            .top-right .language li:hover {
                color: #f4b147;
                background-color: #453113;
            }

            .top-right .language li[data-language]:before {
                content: "";
                display: inline-block;
                vertical-align: top;
                width: 25px;
                height: 20px;
                margin-right: 2px;
                margin-top: 5px;
            }

            .top-right .language li[data-language="zh-CN"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -37px;
            }

            .top-right .language li[data-language="zh-TW"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 3px;
            }

            .top-right .language li[data-language="en-US"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -76px;
            }

            .top-right .language li[data-language="th"]:before {
                background: url("/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/lang.png") no-repeat 0 -237px;
            }
/* #endregion language*/

.login-dialog-btn {
    color: #fff;
    margin-left: 7px;
}

.register-dialog-btn {
    display: block;
    margin-top: -5px;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    line-height: 40px;
    background: linear-gradient(0deg, #B89864 0%, #9D712B 100%);
    background: -moz-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
    background: -webkit-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
    background: -o-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.mgm-btn {
    display: block;
    margin-top: -5px;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    line-height: 40px;
    background: #6d5432;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

/* #region content 內頁 */
#content {
    position: relative;
    padding-top: 20px;
    margin: 0 auto;
    font-size: 0;
    max-width: 1750px;
    padding: 16px 20px 35px;
    position: relative;
}

    #content .wrapper .lobby-content {
        display: inline-block;
        vertical-align: top;
    }

    #content .left-content {
        position: sticky;
        top: 66px;
        width: 275px;
    }

@media screen and (max-width: 1440px) {
    #content .left-content {
        width: 264px
    }
}

@media screen and (max-width: 1366px) {
    #content .left-content {
        width: 249px
    }
}

@media screen and (max-width: 992px) {
    #content .left-content {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 15px;
    }
}

.main {
    position: relative;
    width: calc(100% - 550px)
}

@media screen and (max-width: 1440px) {
    #content .main {
        width: calc(100% - 528px)
    }
}

@media screen and (max-width: 1366px) {
    #content .main {
        width: calc(100% - 249px)
    }
}

@media screen and (max-width: 992px) {
    #content .main {
        width: 100%
    }
}

#content .right-content {
    -webkit-animation: fadeIn 1.5s;
    animation: fadeIn 1.5s;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: 66px;
    width: 275px
}

@media screen and (max-width: 1440px) {
    #content .right-content {
        width: 264px
    }
}

@media screen and (max-width: 1366px) {
    #content .right-content {
        display: none !important
    }
}


/* #endregion content 內頁 */

#sidebar {
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

    #sidebar .top-title {
        color: #f4b147;
        font-size: 16px;
        line-height: 20px;
        padding: 18px 28px;
        background: linear-gradient(270deg, #1F1001 0%, #3D2C09 100%);
        background: -moz-linear-gradient(270deg, #1F1001 0%, #3D2C09 100%);
        background: -webkit-linear-gradient(270deg, #1F1001 0%, #3D2C09 100%);
        background: -o-linear-gradient(270deg, #1F1001 0%, #3D2C09 100%);
        -moz-border-radius: 16px 16px 0 0;
        -webkit-border-radius: 16px 16px 0 0;
        border-radius: 16px 16px 0 0;
    }

    #sidebar ul {
        display: block;
    }

        #sidebar ul li {
            color: #fff;
            background: linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
            background: -moz-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
            background: -webkit-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
            background: -o-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
            border-bottom: 1px solid #0a0805;
        }

            #sidebar ul li a {
                display: block;
                height: 100%;
                color: inherit;
                font-size: 14px;
                padding: 19px 20px;
                text-decoration: none;
                border-left: 8px solid transparent;
            }

            #sidebar ul li:hover,
            #sidebar ul li.active {
                color: #452a11;
                background: linear-gradient(0deg, #E4BF6D 0%, #835F13 100%);
                background: -moz-linear-gradient(0deg, #E4BF6D 0%, #835F13 100%);
                background: -webkit-linear-gradient(0deg, #E4BF6D 0%, #835F13 100%);
                background: -o-linear-gradient(0deg, #E4BF6D 0%, #835F13 100%);
            }

                #sidebar ul li:hover a,
                #sidebar ul li.active a {
                    border-color: #be8a1b;
                }

.game-sidebar-title {
    color: #f4b147;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
    padding-left: 28px;
}

.game-sidebar,
#now-winner-list,
#today-winner-list {
    display: block;
    height: 360px;
    background: linear-gradient(270deg, #201A0F 0%, #23170E 100%);
    background: -moz-linear-gradient(270deg, #201A0F 0%, #23170E 100%);
    background: -webkit-linear-gradient(270deg, #201A0F 0%, #23170E 100%);
    background: -o-linear-gradient(270deg, #201A0F 0%, #23170E 100%);
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden
}

#featured-list {
    overflow-y: scroll;
}

#now-winner-list .game-sidebar,
#today-winner-list .game-sidebar {
    height: auto;
}

.game-sidebar.show-more {
    height: 742px;
    overflow-y: scroll
}


.game-sidebar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #23170e;
}

.game-sidebar::-webkit-scrollbar {
    width: 12px;
    background-color: #23170e;
}

.game-sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

.game-sidebar li {
    position: relative;
    height: 120px !important;
    padding: 16px;
    white-space: nowrap;
}

    .game-sidebar li:before {
        content: '';
        position: absolute;
        left: 16px;
        top: 16px;
        width: 88px;
        height: 88px;
        background: rgba(255,179,50,.2);
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
        opacity: 0;
    }

    .game-sidebar li:hover:before {
        opacity: 1;
    }

    .game-sidebar li img {
        display: inline-block;
        max-height: 88px;
        max-width: 88px;
        vertical-align: top;
    }

    .game-sidebar li .text-box {
        display: inline-block;
        vertical-align: top;
        margin-left: 15px;
    }

        .game-sidebar li .text-box h4 {
            margin: 10px 0 0;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            line-height: 18px;
        }

        .game-sidebar li .text-box .supplier {
            display: block;
            color: #845f2a;
            font-size: 12px;
            font-weight: 500;
            line-height: 13px;
            margin-top: 5px;
        }

        .game-sidebar li .text-box .toGame-btn {
            display: block;
            color: #f4b147;
            font-size: 15px;
            font-weight: 700;
            line-height: 18px;
            margin-top: 10px;
        }

.featured-list .show-more-btn {
    margin-top: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
    background: -moz-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
    background: -webkit-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
    background: -o-linear-gradient(0deg, #3E331E 0%, #2F2115 100%);
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

    .featured-list .show-more-btn i {
        background: linear-gradient(to top, #9f660c, #faeecf);
        background: -webkit-linear-gradient(to top, #9f660c, #faeecf);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-right: 5px;
        -moz-transition: all .4s;
        -o-transition: all .4s;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

        .featured-list .show-more-btn i.active {
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .featured-list .show-more-btn:hover {
        background: linear-gradient(0deg, #B89864 0%, #9D712B 100%);
        background: -moz-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
        background: -webkit-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
        background: -o-linear-gradient(0deg, #B89864 0%, #9D712B 100%);
    }

/* #region loginDialog */
.siteModal {
}

    .siteModal .modal-dialog {
        width: 450px;
        margin-top: 10%;
    }

    .siteModal .modal-content {
        background: #211910;
    }

    .siteModal .modal-header {
        background: transparent;
        border: none;
    }

        .siteModal .modal-header .modal-title {
            color: #fff;
        }

            .siteModal .modal-header .modal-title .close {
                padding: 1px 3px;
                margin: 0;
                color: #fff;
                font-weight: bold;
                line-height: 16px;
                opacity: 1;
                -moz-transform: scale(.7);
                -ms-transform: scale(.7);
                -o-transform: scale(.7);
                -webkit-transform: scale(.7);
                transform: scale(.7);
            }

    .siteModal .modal-body {
        padding: 15px 15px 30px;
    }

/* #region loginbar 顯示「登入帳號」區塊*/
#login-content {
}

    #login-content > form {
        position: relative;
        color: #fff;
    }

        #login-content > form h4 {
            display: block;
            margin: 0 auto 20px;
            font-size: 18px;
            font-weight: normal;
            text-align: center;
        }

        #login-content > form input {
            display: block;
            height: 39px;
            width: 260px;
            padding-left: 30px;
            margin: 0 auto 14px;
            font-size: 13px;
            color: #000;
            border: none;
            background: #fff no-repeat 10px center;
        }

        #login-content > form input {
            background-image: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/icon_user.png');
        }

            #login-content > form input + input {
                background-image: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/icon_key.png');
            }

        #login-content > form ::-webkit-input-placeholder {
            color: #939393;
        }

        #login-content > form ::-moz-placeholder {
            color: #939393;
        }

        #login-content > form :-ms-input-placeholder {
            color: #939393;
        }

        #login-content > form .getcode-btn {
            display: block;
            margin-left: 255px;
            margin-bottom: 20px;
            height: 35px;
            width: auto;
            color: #fff;
            font-size: 14px;
            line-height: 35px;
            background-color: #B32625;
            border: none;
        }

        #login-content > form #check-code-wrapper {
            position: relative;
            margin: 0 auto;
            width: 260px;
        }

            #login-content > form #check-code-wrapper input {
                width: 100%;
                background-image: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/icon_check.png');
            }

            #login-content > form #check-code-wrapper #captcha {
                position: absolute;
                top: 2px;
                right: 2px;
                width: 104px;
                height: 35px;
            }

        #login-content > form .login-btn {
            display: block;
            height: 42px;
            width: 260px;
            margin-bottom: 5px;
            color: #fff;
            font-size: 15px;
            margin: 0 auto;
            line-height: 42px;
            background-color: #B32625;
            border: none;
        }

        #login-content > form .register-btn,
        #login-content > form .forget-btn {
            color: #fff;
            font-size: 13px;
            background-color: transparent;
            border-style: none;
        }

#agree {
    position: absolute;
    right: 80px;
    bottom: 10px;
    padding: 0 4px;
    z-index: 1;
    background: #000;
}

/* #region account-info 登入後, 顯示「帳號資訊」區塊*/
ul#account-info {
    position: relative;
}

    ul#account-info > li {
        display: inline-block;
        color: #fff;
        font-size: 12px;
        vertical-align: top;
    }

        ul#account-info > li > span.account {
            display: inline-block;
            max-width: 6em;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: top;
            overflow: hidden;
        }

        ul#account-info > li a {
            vertical-align: middle;
        }

            ul#account-info > li a:hover {
                color: #fff;
            }

        ul#account-info > li span {
            padding-right: 5px;
        }

        ul#account-info > li i {
            color: #01b2f1;
        }

            ul#account-info > li i:hover,
            ul#account-info > li i {
                color: #fff;
            }

#action-box {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

    #action-box > a {
        display: inline-block;
        text-decoration: none;
        height: 25px;
        padding: 0 15px;
        color: #fff;
        font-size: 13px;
        font-family: FontAwesome;
        line-height: 25px;
        background: #0e86ca;
    }

        #action-box > a:hover {
            background: #00aeff;
        }
/* #endregion account-info 登入後, 顯示「帳號資訊」區塊*/
.money-box:before {
    display: none !important;
}

.money-box > a {
    display: inline-block;
    min-width: 80px;
    vertical-align: middle;
    padding: 0 10px;
    color: #f4b147;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    background: #3d2c09;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

/* #region 登入後的談窗 */
#account-content {
    font-size: 0;
}

    #account-content > div {
        position: relative;
        display: inline-block;
        vertical-align: top;
        min-height: 300px;
    }

        #account-content > div.side-box {
            width: 35%;
            border-right: 1px solid #b9b9b9;
        }

        #account-content > div.main-box {
            width: 65%;
        }
/* #endregion 登入後的談窗 */

.account-detail {
    display: block;
}

    .account-detail li {
        display: block;
        padding: 10px 0 0 20px;
        color: #b9b9b9;
        font-size: 14px;
    }

/* #region account-nav 登入後的子導覽列 (帳號相關操作) */
ul#account-nav {
    display: block;
    font-size: 0;
}

    ul#account-nav > li {
        line-height: 30px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        ul#account-nav > li:first-child {
            padding-left: 0;
            border-left: 0;
        }

        ul#account-nav > li > a {
            display: block;
            vertical-align: top;
            padding: 0 10px;
            color: #b9b9b9;
            font-size: 13px;
            text-decoration: none;
            text-align: left;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            cursor: pointer;
        }

            ul#account-nav > li > a:hover {
                color: #fff;
            }
/* #endregion 登入後的子導覽列 (帳號相關操作)*/

/* #region footer */
#footer {
    padding: 60px 0 0;
    color: #bbb;
    font-size: 12px;
    background: #070709;
}

    #footer .wrapper {
        max-width: 1100px;
        width: auto;
    }

.footer-nav {
    display: block;
    text-align: center;
}

    .footer-nav li {
        display: inline-block;
        vertical-align: top;
        margin: 0 8px;
    }

        .footer-nav li a {
            color: #ffedbf;
            text-decoration: none;
        }

            .footer-nav li a:hover {
                color: #f4b147;
            }

.footer-box {
    display: block;
    font-size: 0;
}

    .footer-box li {
        width: 25%;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

        .footer-box li h4 {
            position: relative;
            margin: 0;
            color: #f4b147;
            padding: 0 0 20px 20px;
            margin-bottom: 30px;
            font-size: 14px;
            border-bottom: 1px solid;
            border-image-slice: 1;
            border-image-source: linear-gradient( 45deg,#2a3240,#070709);
        }

            .footer-box li h4:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                height: 20px;
                width: 4px;
                background: #f4b147;
                -moz-border-radius: 2px;
                -webkit-border-radius: 2px;
                border-radius: 2px;
            }

        .footer-box li a {
            display: table;
            margin-bottom: 15px;
            color: #ffedbf;
            text-decoration: none;
        }

#footer-logo {
    display: block;
    text-align: center;
    margin: 40px 0 20px;
}

    #footer-logo li {
        display: inline-block;
        margin: 0 5px;
        width: 100px;
        height: 60px;
        background: no-repeat center;
    }

        #footer-logo li[data-img="ne"] {
            background-image: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/NeSlot.png');
        }

        #footer-logo li[data-img="wm"] {
            background-image: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/Wm3Slot.png');
        }
/* #endregion footer*/

.license-box {
    display: block;
    padding: 20px 10px;
    background: #131211;
    font-size: 0;
    text-align: center;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

    .license-box li {
        display: inline-block;
        vertical-align: top;
        color: #f4b147;
        font-size: 12px;
        width: 173px;
    }

        .license-box li:nth-child(2) {
            width: 190px;
        }

        .license-box li + li {
            margin-left: 5px;
        }

        .license-box li:before {
            content: '';
            display: block;
            height: 50px;
            margin: 0 auto 10px;
            background: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/license.png') no-repeat left top;
        }

        .license-box li[data-img="1"]:before {
            width: 48px;
            background-position-x: right;
        }

        .license-box li[data-img="2"]:before {
            width: 200px;
            background-position-x: 0;
        }

        .license-box li[data-img="3"]:before {
            width: 153px;
            background-position-x: -200px;
        }

        .license-box li[data-img="4"]:before {
            width: 200px;
            background-position-x: -353px;
        }

        .license-box li[data-img="5"]:before {
            width: 44px;
            background-position-x: -552px;
        }

        .license-box li[data-img="6"]:before {
            width: 138px;
            background-position-x: -597px;
        }

.footer-suggest {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}

    .footer-suggest .left-box {
        float: left;
        width: 60%;
    }

    .footer-suggest .right-box {
        float: right;
        text-align: right;
        width: 30%;
        height: 60px;
        line-height: 60px;
    }

/* #region service 更多服務 */
aside.service-left {
    display: flex;
    align-items: center;
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    bottom: 235px;
    padding: 10px 20px 10px 5px;
    font: 600 14px Roboto,sans-serif;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
    z-index: 10;
}

    aside.service-left .icon {
        display: block;
        height: 28px;
        width: 28px;
        border-radius: 50%;
        background: #e3b30e url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Shared/images/help.png') no-repeat center center;
    }

    aside.service-left p {
        margin: 0 0 0 10px;
        color: #000;
        text-transform: uppercase;
    }

        aside.service-left p span {
            margin-left: 3px;
            color: #e3b30e;
        }

/* #endregion service 更多服務 */

aside.live-chat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    padding-top: 8px;
    text-align: center;
    line-height: 60px;
    background: #E300BE;
    background-size: contain;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 0 0 10px #000;
}

    aside.live-chat i {
        font-size: 40px;
        color: #e7c308;
    }

/* #region mailbox 站内信 不同版请由此修改*/
#mailbox {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    vertical-align: top;
    text-decoration: none;
    background: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/m_icon.png') no-repeat;
    background-size: cover;
}

    #mailbox > span,
    #mailbox > span:hover {
        position: absolute;
        left: 80%;
        bottom: 60%;
        min-width: 16px;
        padding: 0 2px;
        height: 16px;
        color: #fff;
        font-size: 12px;
        text-align: center;
        line-height: 16px;
        border-radius: 5px;
        background: #01b2f1;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
/* #endregion mailbox 站内信 不同版请由此断修改*/

/* #region 彈跳視窗跑馬燈資訊內容 */
#marquee-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: none;
}

    #marquee-wrapper.show {
        display: block;
        z-index: 1000;
        background-image: url('/CdnRedirect/Web.Portal/_Common/Content/Views/Shared/images/transparent-black.png');
    }

#marquee {
    width: 600px;
    max-height: 500px;
    margin: 115px auto 0 auto;
    background-color: rgba(28, 28, 28, 0.8);
    border-radius: 5px;
    cursor: default;
    -webkit-transition: margin-top ease-in 300ms;
    -o-transition: margin-top ease-in 300ms;
    transition: margin-top ease-in 300ms;
    border: 1px solid #ec9201;
}

    #marquee > header {
        text-align: center;
        border-radius: 5px 5px 0 0;
    }

        #marquee > header > h2 {
            margin: 0;
            color: #db9901;
            font-size: 21px;
            line-height: 60px;
        }

ul#newsBags {
    margin: 0;
    padding: 10px 50px;
    max-height: 380px;
    overflow: auto;
}

    ul#newsBags > li {
        color: #f1d020;
        font-size: 13px;
        line-height: 27px;
        list-style: disc;
        white-space: pre-line;
    }

#marquee .marquee-subnav .slide-pager li {
    background-color: #4A412D;
}

    #marquee .marquee-subnav .slide-pager li:hover,
    #marquee .marquee-subnav .slide-pager li.on {
        background-color: #B78518;
    }

#marquee > footer {
    text-align: center;
    line-height: 80px;
    color: #fff;
    background-size: 100% 8px;
    background-repeat: no-repeat;
    border-radius: 0 0 5px 5px;
}

    #marquee > footer > span {
        display: inline-block;
        width: 119px;
        font-size: 15px;
        font-weight: bolder;
        line-height: 45.5px;
        background-color: #fac23e85;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        cursor: pointer;
        color: #fff;
    }

        #marquee > footer > span:hover {
            background-position: 0 -45.5px;
        }

/* #endregion 彈跳視窗跑馬燈資訊內容 */

/* #region 弹跳出来的notice Dialog */
/*title 文字背景顏色此修改*/
.ui-widget-header {
    padding: 0 5px;
    line-height: 12px;
}

#ad-dialog {
    display: none;
    padding: 0;
}

    #ad-dialog img {
        width: 100%;
        height: auto !important;
    }

    #ad-dialog .dialog-footer {
        height: 30px;
        padding: 0 3px;
        font-size: 12px;
        font-weight: bold;
        line-height: 25px;
        border-top: 1px solid #000;
    }

.ui-dialog {
    position: fixed;
    z-index: 999;
}

    .ui-dialog .ui-dialog-title {
        font-size: 13px;
        line-height: 15px;
    }

    .ui-dialog .ui-dialog-buttonpane {
        margin: 0;
        padding: 0;
        border: none;
    }

button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only {
    font-size: 12px;
}

.ui-dialog .ui-dialog-buttonpane button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 3px 6px;
}
/* #endregion 弹跳出来的dialog */

/* #region loginToGame 游戏平台登入口*/
#logingame-body {
    background-color: #40509b;
}
/* #endregion */

/* #region 線上存款style*/
#articles ul.deposit li p {
    color: #b2b2b2;
}

#articles ul.deposit li:hover .payTitle {
    font-weight: 900;
    text-shadow: 2px 2px 3px rgb(0 0 0 / 30%);
}

#articles ul.deposit li:hover .DigitalCurrencyDepositGuide-btn {
    color: #ffffff;
    border: 1px solid #ffffff;
}

#articles ul.deposit li:hover p {
    color: #ffffff;
}
/* #endregion */

/* #region 最新公告*/
.modal-announcement > .ma-title {
    color: #fff;
    background: linear-gradient(270deg,#1f1001 0%,#3d2c09 100%);
    background: -moz-linear-gradient(270deg,#1f1001 0%,#3d2c09 100%);
    background: -webkit-linear-gradient(270deg,#1f1001 0%,#3d2c09 100%);
    background: -o-linear-gradient(270deg,#1f1001 0%,#3d2c09 100%);
    -moz-border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #221504;
    border-bottom: 2px solid #000;
}

.modal-announcement .ma-sidebar li:hover,
.modal-announcement .ma-sidebar li.active {
    color: #fff;
    background: linear-gradient(0deg,#b89864 0%,#9d712b 100%);
    background: -moz-linear-gradient(0deg,#b89864 0%,#9d712b 100%);
    background: -webkit-linear-gradient(0deg,#b89864 0%,#9d712b 100%);
    background: -o-linear-gradient(0deg,#b89864 0%,#9d712b 100%);
    -moz-border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #221504;
}

.modal-announcement > .ma-footer {
    background: #3D2C09;
    background: -moz-linear-gradient(top, #3D2C09 0%, #1F1001 100%);
    background: -webkit-linear-gradient(top, #3D2C09 0%, #1F1001 100%);
    background: linear-gradient(to bottom, #3D2C09 0%, #1F1001 100%);
    -moz-border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #221504;
}

    .modal-announcement > .ma-footer > span {
        color: #fff;
        font-size: 16px;
    }

.modal-announcement .ma-sidebar {
    background: #2f2115;
    border-right: 1px solid #000;
}

    .modal-announcement .ma-sidebar li {
        color: #fff;
        border-color: #000;
    }

.modal-announcement .ma-content {
    color: #fff;
    background-color: #2f2115;
}
/* #endregion */

/* Lobby各廳設定 */
#lobby {
    display: block;
    color: #fff;
    font-size: 12px;
    width: 100%;
}

    #lobby > ul.game-list {
        display: block;
        text-align: center;
    }

        #lobby > ul.game-list > li {
            display: inline-block;
            vertical-align: top;
            background-position: center top;
            background-repeat: no-repeat;
        }

#content #un-lobby {
    display: block;
    width: 100%;
    margin: 0 auto;
}

#un-lobby #vip {
    float: none;
    width: 100%;
}

#content #member-center {
    display: block;
    margin: 0 auto;
}

#articles {
    width: 100% !important;
    padding: 0;
    font-size: 14px;
    color: #fff;
}

    #articles h2 {
        margin: 10px 0 25px;
        color: #fff;
        font-size: 18px;
        font-weight: normal;
    }

    #articles h3 {
        font-size: 16px;
        text-align: left;
    }

    #articles p {
        margin: 1em 0;
    }

    #articles a {
        color: inherit;
        text-decoration: none;
    }

    #articles table {
        width: 100%;
        color: #fff;
    }

        #articles table tr,
        #articles table th,
        #articles table td {
            line-height: 2em;
            text-align: center;
            border: 1px solid #ababab;
            background-color: #242b39;
        }

        #articles table th {
            color: #fff;
            background-color: #888;
        }

    #articles .panel-body {
        text-align: left;
    }

    /*重點顏色*/
    #articles .highlight {
        color: #ff0000;
        font-weight: bolder;
    }

    /* #region 合作夥伴tab 供其他页面使用*/
    #articles ul.mtab-menual {
        margin: 0 0 20px 0;
        padding: 0;
    }

        #articles ul.mtab-menual li {
            display: inline-block;
            min-width: 65px;
            padding: 0 3px;
            height: 25px;
            color: #fff;
            font-size: 12px;
            line-height: 25px;
            text-align: center;
            background-color: #0e86ca;
        }

            #articles ul.mtab-menual li.mtab {
                background-color: #ff9936;
            }
    /* #endregion 合作夥伴tab 供其他页面使用*/

    /* #region deposit线上存款页面使用 */
    #articles ul.deposit {
    }

        #articles ul.deposit li {
            font-size: 12px;
            counter-increment: title;
        }

            #articles ul.deposit li > .payTitle:before {
                content: counter(title,upper-alpha)"、";
            }

            #articles ul.deposit li > .payTitle.external-pay:before {
                content: '';
            }

            #articles ul.deposit li .payTitle {
                color: #ff9600;
                font-size: 16px;
            }

                #articles ul.deposit li .payTitle span.icon {
                    display: block;
                    font-size: 0;
                }

                    #articles ul.deposit li .payTitle span.icon img {
                        vertical-align: top;
                    }

            #articles ul.deposit li .green {
                color: #0f0;
            }

            #articles ul.deposit li .toggle {
                color: #ee0;
            }

                #articles ul.deposit li .toggle.color {
                    color: #ff3030;
                }

            #articles ul.deposit li span.event {
                display: inline-block;
                width: 51px;
                height: 25px;
                vertical-align: middle;
                background: url('/CdnRedirect/Web.Portal/CS005-01.Portal/Content/Views/Deposit/images/event.gif') no-repeat left center;
            }
/* #endregion deposit线上存款页面使用 */

/* #region account nav共用 */
.body {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    padding: 1px;
    font-size: 14px;
    font-family: PMingLiU;
    background: #201c19;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .body #title {
        color: #fff;
        text-align: center;
        background: #201c19;
    }

    .body.container #title,
    .body #account-heading,
    .body #withdrawal-heading,
    #account-panel .account-nav li.active {
        color: #000;
        background: #ffcf0e;
    }
    /* 檢視存入帳戶的文字顏色 */
    .body #show-account-info.btn {
        color: #fff;
    }
/* #endregion account nav共用 */

/* #region 輸入框placeholder顏色 */
/* 此為預設顏色，若各站需特別色系請由此修改，不需要可整段刪除 */
.form-group .control-div input::-webkit-input-placeholder {
    color: #999;
}

.form-group .control-div input::-moz-placeholder {
    color: #999;
}

.form-group .control-div input:-ms-input-placeholder {
    color: #999;
}

.form-group .control-div input.placeholder {
    color: #999;
}
/* #endregion 輸入框placeholder顏色 */

