@font-face {
    font-family: "sr";
    src: url("https://dmc-proimg.damaicheng.com/font/SourceHanSansSC-Regular-2.otf");
    font-display: swap;
}
@font-face {
    font-family: "sm";
    src: url("https://dmc-proimg.damaicheng.com/font/SourceHanSansSC-Medium-2.otf");
    font-display: swap;
}
.gameExample {
    width: 1200px;
    /* height: 1340px; */
    /* height: 1720px; */
    height: auto;
    background: url("../../images/game/gameBack.jpg") top center no-repeat;
    /* background-size: 100% 100%; */
    /* background-size: contain; */
    background-size: cover;
    padding-top: 25px;
    padding-bottom: 60px;
    position: relative;
}
.gameExample > .gameContent {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
}
.gameExample > .gameContent > .titleA {
    width: 100%;
    font-family: "sm";
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    letter-spacing: 12.5px;
    text-indent: 12.5px;
}
.gameExample > .gameContent > .titleB {
    width: 100%;
    font-family: "sr";
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    color: #000000;
    letter-spacing: 7.5px;
    text-indent: 7.5px;
    margin-top: 10px;
}
.gameExample > .gameContent > .titleC {
    display: block;
    width: 100%;
    font-family: "sr";
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    color: #000000;
    text-align: right;
    letter-spacing: 1.9px;
    padding-right: 147px;
    margin-top: 152px;
}
.gameExample > .gameContent > .p1 {
    width: 100%;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}
.gameExample > .gameContent > .p1 > p {
    font-family: "sr";
    font-size: 26px;
    line-height: 26px;
    color: #000000;
    margin: 0 10px;
    letter-spacing: 5px;
    text-indent: 5px;
}
.gameExample > .gameContent > .p1 > .cards {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gameExample > .gameContent > .p1 > .cards > .item {
    width: 64px;
    height: 87px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    /* border: 1px solid #CDCDCD; */
    overflow: hidden;
    position: relative;
    margin-right: 2px;
    background: url("../../images/card0.png") center no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gameExample > .gameContent > .p1 > .cards > .item:last-child {
    margin-right: 0;
}
.gameExample > .gameContent > .p1 > .cards > .item > .cardMask {
    width: 64px;
    height: 87px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(1) > .cardMask {
    background: url("../../images/card1.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(2) > .cardMask {
    background: url("../../images/card2.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(3) > .cardMask {
    background: url("../../images/card3.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(4) > .cardMask {
    background: url("../../images/card4.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p1 > .cards > .item > .numWindow {
    width: 64px;
    height: 67px;
    position: relative;
    overflow: hidden;
}
.gameExample > .gameContent > .p1 > .cards > .item > .numWindow > .nums {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.gameExample > .gameContent > .p1 > .cards > .item > .numWindow > .nums.animateBegin {
    animation: roll 35s linear infinite;
    -webkit-animation: roll 35s linear infinite;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(2) > .nums.animateBegin {
    animation-delay: 0.2s;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(3) > .nums.animateBegin {
    animation-delay: 0.3s;
}
.gameExample > .gameContent > .p1 > .cards > .item:nth-child(4) > .nums.animateBegin {
    animation-delay: 0.1s;
}
.gameExample > .gameContent > .p1 > .cards > .item > .numWindow > .nums > p {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: #666666;
    line-height: 80px;
    text-align: center;
}

@keyframes roll {
    0% {
        top: 0;
    }
    100% {
        top: -40000px;
    }
}

.gameExample > .gameContent > .gameBtns {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}
.gameExample > .gameContent > .gameBtns > .p2 {
    width: 178px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    font-family: "sr";
    font-size: 26px;
    line-height: 1em;
    color: #000000;
    cursor: pointer;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    margin-left: 20px;
}
.gameExample > .gameContent > .gameBtns > .p2.single {
    background: linear-gradient(158deg, #b9bbba 0%, #dddee0 31%, #ffffff 69%, #b0b0b0 100%);
}
.gameExample > .gameContent > .gameBtns > .p2.disabled {
    width: 262px;
    background-color: #a5a19b;
    color: white;
    cursor: not-allowed;
}
.gameExample > .gameContent > .gameBtns > .p2.playing {
    background-color: #a5a19b;
    color: white;
    cursor: not-allowed;
}
.gameExample > .gameContent > .gameBtns > .p2:first-child {
    margin-left: 0;
}
.gameExample > .gameContent > .p3 {
    width: 100%;
    font-family: "sr";
    font-size: 20px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    margin-top: 25px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.gameExample > .gameContent > .p3 > span {
    font-family: "Arial";
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #333333;
}
.gameExample > .gameContent > .p3 > div {
    width: 16px;
    height: 16px;
    background: url("../../images/game/gameAlert.png") center no-repeat;
    background-size: 100% 100%;
    margin-left: 5px;
    cursor: pointer;
    position: relative;
}
.gameExample > .gameContent > .p3 > div.closed {
    background: url("../../images/game/gameAlert2.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p3 > div.closed:hover {
    background: url("../../images/game/gameAlert.png") center no-repeat;
    background-size: 100% 100%;
}
.gameExample > .gameContent > .p3 > div > .invalidAlert {
    width: auto;
    height: 36px;
    display: flex;
    align-items: center;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 17px;
}
.gameExample > .gameContent > .p3 > div.closed > .invalidAlert {
    display: none;
}
.gameExample > .gameContent > .p3 > div.closed:hover > .invalidAlert {
    display: flex;
}
.gameExample > .gameContent > .p3 > div > .invalidAlert > .tri {
    width: 8px;
    height: 10px;
    background: url("../../images/game/triLeft.png") center no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
.gameExample > .gameContent > .p3 > div > .invalidAlert > .text {
    flex-shrink: 0;
    height: 36px;
    background-color: #fff7d6;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    padding: 0 10px;
    font-family: "sr";
    font-size: 14px;
    line-height: 36px;
    color: #333333;
}
.gameExample > .gameContent > .p3 > div > .invalidAlert > .text > span {
    font-family: "Arial";
    font-size: 14px;
    /* line-height: 36px; */
    height: 33px;
    color: #e52f2c;
}
.gameExample > .gameContent > .p3 > div > .invalidAlert > .text > div {
    width: 16px;
    height: 16px;
    background: url("../../images/game/gameClose1.png") center no-repeat;
    background-size: 100% 100%;
    margin-left: 10px;
    cursor: pointer;
}
.gameExample > .gameContent > .p3-1 {
    width: 100%;
    height: 17px;
    margin-top: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: "sr";
    font-size: 16px;
    line-height: 17px;
    color: #333333;
}
.gameExample > .gameContent > .p3-1 > span {
    font-family: "Arial";
    font-weight: bold;
    font-size: 16px;
    line-height: 17px;
    color: #333333;
}
.gameExample > .gameContent > .p3-1 > a {
    font-family: "sr";
    font-size: 16px;
    line-height: 17px;
    color: #003399;
    text-decoration: underline;
    cursor: pointer;
}
.gameExample > .gameContent > .p4 {
    width: 100%;
    height: 36px;
    font-family: "sm";
    font-size: 36px;
    line-height: 1em;
    letter-spacing: 3.8px;
    text-indent: 3.8px;
    text-align: center;
    color: #000000;
    position: relative;
    margin-top: 73px;
}
.gameExample > .gameContent > .p4 > a {
    display: block;
    /* width: 100%; */
    height: 36px;
    font-family: "sr";
    font-size: 18px;
    font-weight: bold;
    line-height: 36px;
    color: #000000;
    text-align: right;
    /* padding-right: 146px; */
    position: absolute;
    top: 0;
    right: 146px;
    z-index: 10;
}
.gameExample > .gameContent > .gameGoods {
    width: 100%;
    height: 261px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 39px;
}
.gameExample > .gameContent > .gameGoods > div {
    display: block;
    width: 540px;
    height: 261px;
    border: 2px solid;
    border-image: linear-gradient(315deg, rgba(248, 241, 212, 1), rgba(200, 156, 92, 1), rgba(200, 156, 92, 1), rgba(200, 156, 92, 1), rgba(252, 248, 222, 1)) 2 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0;
}
.gameExample > .gameContent > .gameGoods > div:last-child {
    margin-right: 0;
}
/* .gameExample>.gameContent>.gameGoods>div>div{
    width: 536px;
    height: 257px;
} */
.gameExample > .gameContent > .p5 {
    width: 262px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 34px auto 0 auto;
    background-color: #ffcc00;
    font-family: "sm";
    font-size: 26px;
    line-height: 1em;
    color: #000000;
    cursor: pointer;
    box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.25);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}
.gameExample > .gameContent > .gameRules {
    width: 1040px;
    height: auto;
    /* margin-top: 23px; */
    margin-top: 40px;
    padding-left: 140px;
}
.gameExample > .gameContent > .gameRules > p {
    font-family: "sr";
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    /* letter-spacing: 1px; */
}
.gameExample > .gameContent > .gameRules > p > a {
    font-family: "sr";
    font-size: 18px;
    line-height: 22px;
    color: #003399;
    /* letter-spacing: 1px; */
    text-decoration: underline;
}
.gameExample > .gameContent > .gameRules > a {
    font-family: "sr";
    font-size: 18px;
    /* line-height: 30px; */
    line-height: 22px;
    color: #003399;
    /* letter-spacing: 1px; */
    text-decoration: underline;
}

/* 标题背景 */
.titleBack1 {
    width: 1200px;
    height: 350px;
    background: url("../../images/gameTitleBack1.png") center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}
.titleBack2 {
    width: 1157px;
    height: 647px;
    background: url("../../images/gameTitleBack2.png") center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* 积分明细弹出框 */
.modalMask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.jifenList {
    width: 662px;
    height: auto;
    background-color: white;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
}
.jifenList > .wrap {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 36px 20px 30px 20px;
}
.jifenList > .wrap > .closeModal {
    width: 16px;
    height: 16px;
    background: url("../../images/close2.png") center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.jifenList > .wrap > .tableHead {
    width: 622px;
    height: 45px;
    background-color: #eef4fc;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.jifenList > .wrap > .tableHead > p {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    flex-shrink: 0;
}
.jifenList > .wrap > .tableHead > p:nth-child(1) {
    width: 260px;
}
.jifenList > .wrap > .tableHead > p:nth-child(2) {
    width: 208px;
}
.jifenList > .wrap > .tableHead > p:nth-child(3) {
    width: 114px;
}
.jifenList > .wrap > .tableBody > .tableRow {
    width: 622px;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #f3f3f3;
    border-top: none;
}
.jifenList > .wrap > .tableBody > .tableRow > p {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    flex-shrink: 0;
}
.jifenList > .wrap > .tableBody > .tableRow > p:nth-child(1) {
    width: 260px;
}
.jifenList > .wrap > .tableBody > .tableRow > p:nth-child(2) {
    color: #003399;
    width: 208px;
}
.jifenList > .wrap > .tableBody > .tableRow > p:nth-child(3) {
    width: 114px;
}
.jifenList > .wrap > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 36px;
    margin: 30px auto 0 auto;
    background-color: #ffcc00;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
}
.jifenList > .wrap > .tableBody > img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 50px auto 0 auto;
}
.jifenList > .wrap > .tableBody > p {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 19px;
    color: #666666;
    text-align: center;
}
.jifenList > .wrap > .tableBody > .noIntegralFill {
    height: 30px;
}

/* 游戏结果弹窗 */
.gameFinishModal {
    width: 432px;
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
}
.gameFinishModal > div {
    width: 100%;
    height: 196px;
    background: url("../../images/gameWin.png") center no-repeat;
    background-size: 100% 100%;
    padding: 52px 0 0 240px;
}
.gameFinishModal > div > .p01 {
    font-family: "sr";
    font-size: 24px;
    line-height: 1em;
    color: #000000;
    letter-spacing: 3.34px;
}
.gameFinishModal > div > .p02 {
    font-family: Arial;
    font-weight: bold;
    font-size: 30px;
    line-height: 33px;
    color: #000000;
    letter-spacing: 3px;
    margin-top: 5px;
}
.gameFinishModal > div > .p03 {
    font-family: "sm";
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2.5px;
    color: #000000;
    margin-top: 5px;
}
.gameFinishModal > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 36px;
    background-color: #ffcc00;
    box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.2);
    font-family: "sr";
    font-size: 18px;
    line-height: 1em;
    color: #000000;
    margin: 15px auto 0 auto;
}

/* 游戏异常提醒 */
.modalGameAlert {
    width: 400px;
    background-color: white;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
}
.modalGameAlert > .wrap {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 40px;
    position: relative;
}
.modalGameAlert > .wrap > img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 30px auto;
}
.modalGameAlert > .wrap > .p01 {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 10px;
}
.modalGameAlert > .wrap > .p02 {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
}
.modalGameAlert > .wrap > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 36px;
    background-color: #ffcc00;
    margin: 30px auto 0 auto;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
}
.modalGameAlert > .wrap > .closeModal {
    width: 16px;
    height: 16px;
    background: url("../../images/close2.png") center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* 用户状态弹窗 */
.modalUserError {
    width: 400px;
    height: auto;
    background-color: white;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
    padding-top: 50px;
    padding-bottom: 40px;
}
.modalUserError > img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}
.modalUserError > p {
    width: 100%;
    height: auto;
    margin-top: 30px;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
}
.modalUserError > div {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.modalUserError > div > div {
    width: 120px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
    margin-left: 20px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    cursor: pointer;
}
.modalUserError > div > div:first-child {
    margin-left: 0;
}
.modalUserError > div > div.p1 {
    background-color: #ffcc00;
}
.modalUserError > div > div.p2 {
    border: 1px solid #ffcc00;
}
.modalUserError > div > div.p3 {
    background-color: #003399;
    color: white;
}
.modalUserError > div > div.p1:hover {
    background-color: #ffea98;
}
.modalUserError > div > div.p2:hover {
    background-color: #fff7d6;
}
.modalUserError > div > div.p3:hover {
    background-color: #325bad;
}

/* 自动游戏结果弹窗 */
.gameAutoFinishModal {
    width: 502px;
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
}
.gameAutoFinishModal > .wrap {
    width: 100%;
    height: 206px;
    position: relative;
    background: url("../../images/game/gameAutoModal.png") center no-repeat;
    background-size: 100% 100%;
}
.gameAutoFinishModal > .wrap > .jifenNote {
    width: 196px;
    height: auto;
    position: absolute;
    top: 48px;
    left: 234px;
}
.gameAutoFinishModal > .wrap > .jifenNote > .p01 {
    font-family: "sr";
    font-size: 24px;
    line-height: 1em;
    color: #000000;
}
.gameAutoFinishModal > .wrap > .jifenNote > .p02 {
    font-family: Arial;
    font-weight: bold;
    font-size: 30px;
    line-height: 33px;
    color: #000000;
    margin-top: 6px;
}
.gameAutoFinishModal > .wrap > .jifenNote > .p03 {
    font-family: "sm";
    font-size: 18px;
    line-height: 18px;
    color: #000000;
    margin-top: 6px;
}
.gameAutoFinishModal > .wrap > .p04 {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: sr;
    font-size: 18px;
    line-height: 1em;
    color: #000000;
}
.gameAutoFinishModal > .wrap > .p04 > a {
    display: block;
    font-family: sr;
    font-size: 18px;
    line-height: 1em;
    color: #003399;
    position: relative;
    cursor: pointer;
    margin: 0 5px;
}
.gameAutoFinishModal > .wrap > .p04 > a > div {
    width: 100%;
    height: 1px;
    background-color: #003399;
    position: absolute;
    left: 0;
    bottom: -5px;
}
.gameAutoFinishModal > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 36px;
    background-color: #ffcc00;
    box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.2);
    font-family: "sr";
    font-size: 18px;
    line-height: 1em;
    color: #000000;
    margin: 20px auto 0 auto;
}

/* fy24-2 */
.gameGiveModal {
    width: 800px;
    /* height: 620px; */
    background-color: white;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1500;
}
.gameGiveModal > .title {
    width: 100%;
    height: 40px;
    background-color: #dfeeff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
.gameGiveModal > .title > p {
    flex: 1;
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    color: #333333;
}
.gameGiveModal > .title > img {
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.gameGiveModal > .gameGiveSelectOrder {
    width: 100%;
    /* height: 580px; */
    padding: 20px 20px 30px 20px;
}
.gameGiveModal .tableHead {
    width: 760px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #eef4fc;
}
.gameGiveModal .tableHead > div {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    text-align: center;
}
.gameGiveModal > .gameGiveSelectOrder > .tableHead > div:nth-child(1) {
    width: 56px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableHead > div:nth-child(2) {
    width: 112px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableHead > div:nth-child(3) {
    width: 302px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableHead > div:nth-child(4) {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gameGiveModal .tableBody {
    width: 760px;
    height: 390px;
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(0, 0, 0, 0.5) transparent; /* Firefox */
    border-left: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}
.gameGiveModal .tableBody::-webkit-scrollbar {
    width: 8px; /* Chrome, Safari, Opera */
}
.gameGiveModal .tableBody::-webkit-scrollbar-track {
    background: transparent; /* Chrome, Safari, Opera */
}
.gameGiveModal .tableBody::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5); /* Chrome, Safari, Opera */
    border-radius: 4px; /* Chrome, Safari, Opera */
    border: 2px solid transparent; /* Chrome, Safari, Opera */
    background-clip: content-box; /* Chrome, Safari, Opera */
}
.gameGiveModal .tableBody > .item {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
}
.gameGiveModal .tableBody > .item > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gameGiveModal > .gameGiveSelectOrder > .tableBody > .item > div:nth-child(1) {
    width: 56px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableBody > .item > div:nth-child(2) {
    width: 112px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableBody > .item > div:nth-child(3) {
    width: 302px;
}
.gameGiveModal > .gameGiveSelectOrder > .tableBody > .item > div:nth-child(4) {
    flex: 1;
}
.gameGiveModal .tableBody > .item > div > .checkBlank {
    width: 16px;
    height: 16px;
    border: 1px solid #cdcdcd;
    cursor: pointer;
}
.gameGiveModal .tableBody > .item > div > .checked {
    width: 16px;
    height: 16px;
    background: url("../../images/game/orderSelcted.png") center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.loadingBar {
    width: 100%;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #f8f8f8;
}
.loadingBar > p {
    font-size: 12px;
    line-height: 16px;
    color: #999999;
}
.loadingBar > .moreShadow {
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    position: absolute;
    left: 0;
    bottom: 28px;
    z-index: 100;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar {
    width: 100%;
    height: 16px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > .allBlank {
    width: 16px;
    height: 16px;
    border: 1px solid #cdcdcd;
    cursor: pointer;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > .allChecked {
    width: 16px;
    height: 16px;
    background: url("../../images/game/orderSelcted.png") center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > p {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > p.checkAll {
    margin-left: 5px;
    margin-right: 20px;
    cursor: pointer;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > p > .textBlue {
    color: #003399;
    font-size: 12px;
    line-height: 16px;
    margin: 0 5px;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > p.textGrey {
    font-size: 14px;
    line-height: 16px;
    color: #cdcdcd;
    margin: 0 5px;
}
.gameGiveModal > .gameGiveSelectOrder > .sumBar > p.textRed {
    color: #e52f2c;
}
.gameGiveModal > .gameGiveSelectOrder .orderPrice {
    color: #e52f2c;
    justify-content: flex-end !important;
    padding-right: 120px;
}
.gameGiveModal .buttonGroup {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.gameGiveModal .nextStep {
    width: 158px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    cursor: pointer;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
}
.gameGiveModal .nextStep.disabled {
    background-color: #f3f3f3;
    color: #cdcdcd;
    cursor: not-allowed;
}
.gameGiveModal .prevStep {
    width: 158px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ffcc00;
    cursor: pointer;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
}
.gameGiveModal .confirmGive {
    width: 158px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    cursor: pointer;
    font-size: 14px;
    line-height: 1em;
    color: #333333;
    margin-left: 20px;
}
.gameGiveModal .confirmGive.disabled {
    background-color: #f3f3f3;
    color: #cdcdcd;
    cursor: not-allowed;
}
.gameGiveModal > .gameGiveSelectUser {
    width: 100%;
    /* height: 580px; */
    padding: 20px 20px 30px 20px;
}
.gameGiveModal > .gameGiveSelectUser > .tableHead {
    padding: 0 20px;
}
.gameGiveModal > .gameGiveSelectUser > .tableHead > div:nth-child(1) {
    width: 325px;
    text-align: left;
}
.gameGiveModal > .gameGiveSelectUser > .tableHead > div:nth-child(2) {
    width: 283px;
    text-align: left;
}
.gameGiveModal > .gameGiveSelectUser > .tableHead > div:nth-child(3) {
    flex: 1;
    text-align: left;
}
.gameGiveModal .tableBody > .item > div > .radioBlank {
    width: 16px;
    height: 16px;
    background: url("../../images/game/radio1.png") center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.gameGiveModal .tableBody > .item > div > .radioSelected {
    width: 16px;
    height: 16px;
    background: url("../../images/game/radio2.png") center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.gameGiveModal .tableBody > .item > div > .indexNumber {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    margin-left: 5px;
}
.gameGiveModal > .gameGiveSelectUser > .tableBody > .item {
    padding: 0 20px;
}
.gameGiveModal > .gameGiveSelectUser > .tableBody > .item > div {
    justify-content: flex-start;
}
.gameGiveModal > .gameGiveSelectUser > .tableBody > .item > div:nth-child(1) {
    width: 325px;
    text-align: left;
}
.gameGiveModal > .gameGiveSelectUser > .tableBody > .item > div:nth-child(2) {
    width: 283px;
    text-align: left;
}
.gameGiveModal > .gameGiveSelectUser > .tableBody > .item > div:nth-child(3) {
    flex: 1;
    text-align: left;
}
.gameGiveModal .priceHelp {
    display: block;
    width: 16px;
    height: 16px;
    background: url("../../images/help1.png") center no-repeat;
    background-size: 100% 100%;
    margin-left: 5px;
    cursor: pointer;
    position: relative;
}
.gameGiveModal .priceHelp:hover {
    background: url("../../images/help2.png") center no-repeat;
    background-size: 100% 100%;
}
.gameGiveModal .priceHelp > div {
    display: none;
    width: 636px;
    height: auto;
    position: absolute;
    top: -44px;
    right: -88px;
    z-index: 100;
}
.gameGiveModal .priceHelp:hover > div {
    display: block;
}
.gameGiveModal .priceHelp > div > div {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #fff7d6;
    font-family: "sr";
    font-size: 14px;
    line-height: 1em;
    color: #333333;
}
.gameGiveModal .priceHelp > div > img {
    display: block;
    height: 10px;
    margin-left: 535px;
}

.blueGiveAlert {
    font-size: 14px !important;
    line-height: 1em !important;
    font-weight: bold !important;
    color: #003399 !important;
}
