body {
    min-width: 1200px;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 隐藏浏览器滚动条样式 */
::-webkit-scrollbar {
    width: 0;
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d1d0d0;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
}

.scrollbar {
    -ms-overflow-style: auto;
    scrollbar-width: auto;
}

.w-1920 {
    max-width: 1920px;
    margin: 0 auto;
}

.w-1200 {
    width: 1200px;
    margin: 0 auto;
}

.img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

/* 吸顶样式 */
.sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background-color: #e9e5e4;
    transition: all 0.2s linear;
    z-index: 9;
}

.flex {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
}

.flex-justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.flex-justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.flex-justify-around {
    -webkit-box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
}

.flex-align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.flex-align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    align-items: baseline;
}

.flex-align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
}

.flex-wrap {
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.layui-layer {
    background-color: transparent !important;
}

/* 礼包码、包服卡提示弹出层 */
.game-gifts {
    position: relative;
    width: 498px;
    height: 395px;
    background-image: url('https://genwan.genwan.com/haozk/popupPic3.png');
    background-repeat: no-repeat;
    background-size: 498px 395px;
}

.game-gifts .game-gifts-title {
    padding-top: 31px;
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}

.game-gifts .game-gifts-content {
    height: 300px;
    padding: 0 20px;
}

.game-gifts .game-gifts-content .game-gifts-code {
    width: 100%;
    margin-top: 90px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}

.game-gifts .game-gifts-content .game-gifts-code span {
    color: #FFEBB2;
}

.game-gifts .game-gifts-content .confirm-btn {
    width: 233px;
    height: 63px;
    margin-bottom: 20px;
    background-image: url('../images/home/confirmBtn.png');
    background-repeat: no-repeat;
    background-size: 233px 63px;
    cursor: pointer;
}

.game-gifts  .game-gifts-close {
    position: absolute;
    top: 63px;
    right: 34px;
    width: 20px;
    height: 20px;
    background-image: url('../images/home/iconClose.png');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    cursor: pointer;
}

/* 消息提示样式 */
.message-default {
    padding: 10px 24px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}