html {
    font-size: 16px;

    /* background: linear-gradient(to bottom, #151717, #282828); */
    /* -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased; */
    background: #f5f5f5;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
}

body {
    /* -webkit-font-smoothing: initial; */
    /* font-family: Montserrat; */
    font-weight: 400;
    width: 100%;
    /* todo 移动端宽度显示适配 */
    /* min-width: 1200px; */
    color: #333333;
    font-size: 1em;
    line-height: 1.5;
}

body::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-family: Montserrat, Montserrat222, Helvetica !important;
}

*::-webkit-scrollbar {
    display: none;
}

blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
    margin: 0;
    padding: 0;
}

dl {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
}

a {
    color: #151717;
    text-decoration: none;
}

@font-face {
    font-family: Montserrat222;
    src: url(../font/Montserrat-Regular.ttf);
    font-display: swap;
}

/* 隐藏ios默认input search图标 */
input[type="search"] {
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    display: none;
}

input::-webkit-search-cancel-button {
    display: none;
}

:root {
    --highlight-color: #56f3f9;
}

.header-container {
    width: 100vw;
    height: 60px;
    /* background: var(--header-footer-color); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #151717;
}

.mobile-layout .header-container {
    height: 45px;
}

.mobile-layout .default-layout {
    margin-top: 45px;
}

.header-container a {
    text-decoration: none;
    padding: 0 20px;
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.mobile-layout .header-container a {
    padding: 0;
}

.header-right,
.header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.mobile-layout .header-left {
    padding-right: 0;
}

.header-right div,
.header-left div {
    /* margin-right: 20px; */
    user-select: none;
    cursor: pointer;
}

.header-left-item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.is-login .header-left-item {
    display: none;
}

.item-active {
    border-bottom: 2px solid #00d6de;
}

.item-active a {
    color: #00d6de;
}

.header-right-item {
    /* width: 70px; */
    box-sizing: border-box;
    height: 38px;
    background: #00d6de;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    /* padding: 20px 10px; */
}

.header-right-item .header-right-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.new-right-item {
    margin-right: 10px;
}

.mobile-layout .new-right-item {
    margin-right: 0;
    margin-left: 10px;
}

.mobile-layout .new-right-item svg {
    width: 28px;
}

.new-right-item:hover {
    opacity: 0.8;
}

.new-right-item a {
    padding: 0;
}

.new-right-username {
    font-size: 20px;
    font-weight: 700;
    margin: 0 5px;
}

.item-signup {
    background: #646b6b;
}

.logo-img {
    /* width: 120px; */
    height: 50px;
}

.mobile-layout .logo-img {
    height: 35px;
}

.nav-login-logo,
.is-login .nav-logout-logo {
    display: none;
}

.is-login .nav-login-logo,
.nav-logout-logo {
    display: block;
}

.logo-mobile {
    display: none;
}



.back-button {
    position: fixed;
    right: 5px;
    bottom: 60px;
    z-index: 11;
    cursor: pointer;
    scale: 0.6;
    background: url("/assets-partner/img/top.svg");
    width: 75px;
    height: 75px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.showButton {
    animation: fadeIn 1s;
    opacity: 1;
}

.hideButton {
    animation: fadeOut 1s;
    opacity: 0;
    pointer-events: none;
}


@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(90deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(270deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

#play-loading {
    animation: loading 2s linear infinite;
    width: 40px;
    height: 40px;
    /* margin-top: 8px; */
}


.mobile-nav-menu {
    width: 100vw;
    height: 40px;
    background: rgba(0, 0, 0, 0.75);
    /* transform: translateY(45px); */
    position: fixed;
    top: 45px;
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 11;
    display: none;
}

.mobile-nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-nav-link {
    color: #fff;
    font-size: 14px;
    height: 100%;
    line-height: 40px;
    padding: 0 20px;
}

.mobile-nav-active {
    border-bottom: 2px solid #00d6de;
}

.mobile-nav-active .mobile-nav-link {
    color: #57f3f9;
}

.mobile-nav-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.default-layout {
    /* margin-left: 70px; */
    margin-top: 60px;
    position: relative;
    /* overflow: hidden; */
    min-height: calc(100vh - 60px);
    /* height: 3000px; */
    /* for testing */
}

.center-layout {
    max-width: 1280px;
    margin: 0 auto;
}

.test-div {
    min-height: 300px;
    width: 100%;
    overflow: hidden;
}

.mobile-layout .test-div {
    min-height: 150px;
}

.test-div1 {
    background: linear-gradient(to bottom, #1e2121, #151717);
}

.test-div2 {
    background: #ffffff;
}

.test-div3 {
    background: #ebeff7;
}

.blue-title {
    font-size: 48px;
    color: #00d6de;
    line-height: 53px;
    text-align: center;
    font-weight: bold;
}

.mobile-layout .blue-title {
    font-size: 30px;
    width: 90%;
    line-height: normal;
}

.black-desc {
    font-size: 22px;
    color: #333333;
    line-height: 53px;
    text-align: center;
    margin-bottom: 20px;
}

.white-desc {
    font-size: 32px;
    color: #ffffff;
    line-height: 53px;
    text-align: center;
    margin-bottom: 20px;
}

.gray-desc {
    font-size: 22px;
    color: #8f8f8f;
    line-height: 48px;
    text-align: center;
    line-height: normal;
}

.mobile-layout .black-desc {
    font-size: 14px;
    line-height: normal;
}

.mobile-layout .white-desc,
.mobile-layout .gray-desc {
    font-size: 12px;
    line-height: normal;
}

.main-game-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0 0;
}

.mobile-layout .main-game-container {
    padding: 10px 0 0;
}

.main-game-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-layout .main-game-title {
    padding: 0 20px;
}

.main-game-title-desc {
    font-size: 32px;
    color: #ffffff;
    line-height: 48px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.main-game-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.mobile-layout .main-game-btn-container {
    margin-bottom: 45px;
}

.main-game-swiper-container {
    margin: 20px 0 15px;
    position: relative;
}

.main-game-item-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 1280px;
}

.mobile-index-game {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.main-game-item {}

.main-game-item .main-game-img {
    width: 200px;
    border-radius: 6px;
}

.main-game-swiper-container .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.main-game-swiper-container .swiper-pagination-bullet {
    margin: 0 5px;
    background: #fff;
}

.main-game-swiper-container .swiper-pagination-bullet-active {
    background: #fff;
}

.main-game-swiper-container .swiper-button-prev {
    left: -40px;
}

.main-game-swiper-container .swiper-button-next {
    right: -35px;
}

.more-game-btn {
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    width: 190px;
    height: 60px;
    background: linear-gradient(90deg, #7e5dfe 0%, #499dfe 100%);
    border-radius: 6px;
    /* margin-top: 30px; */
    font-weight: 600;
}

.mobile-layout .more-game-btn {
    width: 136px;
    height: 44px;
    font-size: 16px;
}

.who-container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    height: 590px;
    box-sizing: border-box;
    position: relative;
}

.mobile-layout .who-container {
    background: #ebeff7;
    align-items: center;
    height: auto;
}

.who-content-container {
    width: calc(100% - 30px);
    border-radius: 20px;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0em;
    color: #3d3d3d;
    max-width: 500px;
}

.who-bg {
    position: absolute;
    /* z-index: -1; */
    background: url("/assets-partner/img/index/bg1.png") no-repeat center center;
    background-size: 100% 100%;
    height: 460px;
    width: 1280px;
}

/* .who-title {
    font-size: 48px;
    color: #484848;
    line-height: 53px;
    text-align: center;
    border-left: 6px solid #00D6DE;
    margin-bottom: 20px;
}

.who-title-text {
    padding-left: 20px;
} */

.who-title {
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.who-title-text {
    font-size: 30px;
    font-weight: bold;
    color: #00d6de;
    text-transform: uppercase;
}

.who-title-text2 {
    color: transparent;
    position: absolute;
    -webkit-text-stroke: 2px #b7becc;
    top: 2px;
    left: 24px;
}

.mobile-layout .who-title-text,
.mobile-layout .number-title-text,
.mobile-layout .feature-title-container,
.mobile-layout .process-title-container {
    font-size: 30px;
    margin-bottom: 10px;
}

.who-text {
    font-size: 18px;
    color: #3d3d3d;
    line-height: 40px;
    text-align: left;
}

.who-text-container {
    position: absolute;
    width: 900px;
    height: 400px;
    left: 246px;
    top: 165px;
}

.number-bg-container {
    background: url("/assets-partner/img/index/bg2.png") no-repeat center center;
    background-size: 100% 100%;
}

.mobile-layout .number-bg-container {
    background: url("/assets-partner/img/index/bg2m.png") no-repeat center center;
    background-size: 100% 100%;
}

.number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%;
    height: 100%; */
    flex-direction: column;
    padding: 30px 0;
}

.index-title {
    height: 60px;
}

.number-title {
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.number-title-text {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.number-title-text2 {
    color: transparent;
    position: absolute;
    -webkit-text-stroke: 1px #fff;
    top: 2px;
    left: 24px;
}

.number-item-container {
    display: flex;
    align-items: start;
    justify-content: center;
    /* width: 100%; */
    /* height: 100%; */
    /* flex-direction: column; */
}

.number-item {
    background: #ffffff;
    /* box-shadow: 4px 0px 0px 0px #EAEAEA; */
    margin: 10px 0 0 10px;
    width: 296px;
    height: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    border-radius: 10px;
}

.number-item img {
    width: 200px;
}

.number-item .number-num {
    font-size: 48px;
    color: #00d6de;
    line-height: 56px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    font-weight: bold;
}

.number-item .number-num1 {
    color: #6d0097;
}

.number-item .number-num2 {
    color: #a96500;
}

.number-item .number-num3 {
    color: #4a8b00;
}

.number-item .number-num4 {
    color: #005e93;
}

.number-item .number-text {
    font-size: 24px;
    color: #333333;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    max-width: 85%;
}

.number-item-container .number-item:nth-child(2n) {
    margin-top: 80px;
}

.mobile-layout .number-item-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mobile-layout .number-item-container .number-item {
    margin-top: 0;
    width: 167px;
    height: 225.68px;
    border-radius: 10px;
    margin: 0;
    padding: 0;
}

.mobile-layout .number-item img {
    width: 112px;
}

.mobile-layout .number-item .number-num {
    font-size: 32px;
    line-height: normal;
}

.mobile-layout .number-item .number-text {
    line-height: normal;
    font-size: 14px;
}

.feature-bg-container {
    background: url("/assets-partner/img/index/bg3.png") no-repeat center center;
    background-size: 100% 100%;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
}

.feature-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.feature-title-container {
    position: relative;
    padding: 0 20px;
    color: #7047ee;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

.feature-title-text2 {
    color: transparent;
    position: absolute;
    -webkit-text-stroke: 2px #7047ee;
    top: 2px;
    left: 24px;
}

.feature-item-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 1fr));
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    min-height: 270px;
    background: url("/assets-partner/img/index/feature-bg.png") no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    margin-bottom: 20px;
}

.feature-item .feature-svg {
    position: absolute;
    top: 20px;
}

.feature-item .feature-svg img,
.feature-item .feature-svg svg {
    width: 85px;
}

.feature-item .feature-item-title {
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 168px;
    height: 50px;
}

.feature-item .feature-item-desc {
    text-align: center;
    max-width: 85%;
    font-size: 16px;
    color: #333333;
    line-height: 26px;
    position: absolute;
    bottom: 20px;
    height: 75px;
}

.mobile-layout .feature-item-container {
    grid-template-columns: repeat(2, minmax(167px, 1fr));
}

.mobile-layout .feature-item .feature-svg img,
.mobile-layout .feature-item .feature-svg svg {
    width: 60px;
}

.mobile-layout .feature-item {
    min-height: 190px;
}

.mobile-layout .feature-item .feature-item-title {
    font-size: 14px;
    line-height: normal;
    max-width: 100px;
    height: 30px;
}

.mobile-layout .feature-item .feature-item-desc {
    font-size: 12px;
    line-height: normal;
    height: 45px;
}

.contact-us-btn {
    user-select: none;
    cursor: pointer;
    width: 180px;
    height: 54px;
    background: linear-gradient(270deg, #ff9001 0%, #f5ac21 100%);
    border-radius: 6px;
    font-size: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 15px;
}

.mobile-layout .contact-us-btn {
    width: 136px;
    height: 44px;
    font-size: 16px;
}

.verify-menu-container {
    /* display: flex; */
    display: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: #ffff;
    width: 513px;
    height: 472px;
    border-radius: 10px;
}

.cid-menu-container {
    /* display: flex; */
    display: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: #ffff;
    width: 485px;
    height: 180px;
    border-radius: 10px;
}

.mobile-layout .cid-menu-container {
    width: 70vw;
    max-width: 355px;
}

#verify-menu-close,
#logout-menu-close,
#cid-menu-delete-close,
#cid-menu-submit-close {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
}

.verify-menu-main,
.cid-menu-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 100%;
}

.verify-menu-title {
    height: 77px;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #333333;
    line-height: 48px;
    text-align: center;
    background: #dae3ff;
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
}

.cid-menu-title {
    height: 40px;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    color: #333333;
    line-height: 40px;
    text-align: center;
    background: #dae3ff;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.mobile-layout .cid-menu-title {
    font-size: 16px;
}

.cid-menu-title svg {
    margin-right: 10px;
}

.verify-menu-content,
.cid-menu-content {
    padding: 20px;
}

.verify-content-text {
    font-size: 22px;
    color: #333;
    text-align: center;
}

.verify-content-text p {
    margin: 10px 0 30px;
}

.cid-menu-content-text {
    color: #333333;
}

.cid-text1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cid-text2 {
    font-size: 16px;
}

.mobile-layout .cid-text1 {
    font-size: 14px;
}

.mobile-layout .cid-text2 {
    font-size: 14px;
}

.verify-menu-email {
    position: relative;
}

.verify-email-text {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.resend-btn-container {
    position: absolute;
    user-select: none;
    cursor: pointer;
    width: 107px;
    height: 38px;
    border-radius: 4px;
    background: #b1b6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    bottom: -10px;
    right: 0px;
}

.verify-menu-email .is-loading {
    animation: loading 2s linear infinite;
}

.fw5 {
    font-weight: 500;
}

.green-text {
    color: #2fd732;
}

.activating-btn-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.activating-btn {
    width: 203px;
    height: 50px;
    border-radius: 4px;
    opacity: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    background: #00d6de;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
}

.verify-contact-us {
    font-size: 18spx;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

.cid-menu-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cid-menu-btn {
    width: 142px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    color: #ffffff;
}

.mobile-layout .cid-menu-btn {
    width: 82px;
    height: 35px;
    font-size: 16px;
}

.btn-cancel {
    background: #646b6b;
    margin-right: 20px;
}

.btn-delete {
    background: #00d6de;
}

.process-container,
.platform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
}

.process-title,
.platform-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-layout .platform-main {
    width: 90%;
}

.platform-bg-container {
    background: url("/assets-partner/img/index/bg4.png") no-repeat center center;
    background-size: 100% 100%;
    width: 1280px;
    height: 163px;
    margin: -45px 0;
}

.mobile-layout .platform-bg-container {
    width: 88%;
    height: 60px;
    margin: -15px 0;
}

.mobile-layout .mfz22 {
    font-size: 22px !important;
}

.process-title {
    margin-top: 30px;
}

.mobile-layout .process-title {
    margin-top: 10px;
}

.process-title-container {
    position: relative;
    padding: 0 20px;
    color: #383838;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

.process-title-text2 {
    color: transparent;
    position: absolute;
    -webkit-text-stroke: 2px #383838;
    top: 2px;
    left: 24px;
}

.process-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.process-icon-container {
    width: 1020px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: column; */
}

.process-svg img {
    width: 85px;
}

.process-line {
    width: 946px;
    height: 20px;
    background: linear-gradient(to right, #4285f4 0%, #6653d7 50%, #00d6de 100%);
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.process-line-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.process-line .circle1 {
    left: 0;
}

.process-line .circle2 {
    left: 50%;
    transform: translateX(-50%);
}

.process-line .circle3 {
    right: 0;
}

.process-text-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 1280px;
}

.process-text {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.process-text .process-text-title {
    font-size: 22px;
    color: #04d6de;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.process-text .title1 {
    color: #4285f4;
}

.process-text .title2 {
    color: #6653d7;
}

.process-text .title3 {
    color: #04d6de;
}

.process-text .process-text-desc {
    font-size: 18px;
    color: #333333;
    line-height: 32px;
    text-align: center;
    max-width: 290px;
}

.process-btn {
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    width: 180px;
    height: 54px;
    background: linear-gradient(270deg, #00d6de 0%, #57f3f9 100%);
    border-radius: 6px;
    /* margin-top: 30px; */
}

.mobile-layout .process-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
}

.mobile-layout .process-text {
    width: 100%;
    margin-bottom: 10px;
}

.mobile-layout .process-text .process-text-title {
    font-size: 14px;
    line-height: normal;
}

.mobile-layout .process-text .process-text-desc {
    font-size: 12px;
    line-height: normal;
}

.mobile-layout .process-svg img {
    width: 45px;
    margin-top: 7px;
}

.platform-main,
.platform-img {
    width: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --columns: 3;
    --yellow: rgba(238, 188, 31, 1);
    --pink: rgba(255, 82, 145, 1);
    --blue: rgba(64, 98, 187, 1);
    --green: rgba(6, 141, 126, 1);
    --white: rgba(248, 255, 229, 1);
}

body {
    /* background-color: #182028 */
}

.web-container {
    padding: 30px 0;
    margin-bottom: 40px;
}

.web-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.web-title-desc {
    max-width: 90%;
}

.wg-box {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    margin: 120px 20px 20px 20px;
    gap: 10px;
}

.wg-box li {
    grid-column-end: span 2;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-top: -50%;
}

.wg-box li:nth-child(2n) {
    grid-column-start: 2;
}

.wg-box li::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-size: 50% 100%, 50% 100%;
    background-position: left, right;
}

.wg-box li::before {
    /* z-index: -10; */
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    /* background-repeat: no-repeat; */
    background-image: linear-gradient(#6653d7, #00d6de),
        linear-gradient(#6653d7, #00d6de);
    /* background-image: linear-gradient(-45deg,var(--yellow) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--yellow) 60%),linear-gradient(45deg,var(--yellow) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--yellow) 60%) */

    /* background-image: linear-gradient(-45deg,var(--yellow) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--yellow) 60%),linear-gradient(45deg,var(--yellow) 53.5%,var(--green) 53.5%,var(--green) 60%,var(--yellow) 60%) */
}

.wg-box li:nth-child(2n)::before {
    background-image: linear-gradient(to bottom, #ff6e10, #ffa12e),
        linear-gradient(to bottom, #ff6e10, #ffa12e);
    /* background-image: linear-gradient(-45deg,var(--pink) 53.5%,var(--blue) 53.5%,var(--blue) 60%,var(--pink) 60%),linear-gradient(45deg,var(--pink) 53.5%,var(--blue) 53.5%,var(--blue) 60%,var(--pink) 60%) */
}

.wg-box li:nth-child(4n)::before {
    background-image: linear-gradient(to bottom, #55cc7c, #f5f97f),
        linear-gradient(to bottom, #55cc7c, #f5f97f);
    /* background-image: linear-gradient(-45deg,var(--green) 53.5%,var(--pink) 53.5%,var(--pink) 60%,var(--green) 60%),linear-gradient(45deg,var(--green) 53.5%,var(--pink) 53.5%,var(--pink) 60%,var(--green) 60%) */
}

.wg-box img {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* box-shadow: 5px -5px 10px rgba(0,0,0,0.3);
    transition-property: transform;
    transition-duration: .3s */
}

.wg-box img:hover {
    /* transform: translateX(-40%) translateY(-70%) rotatez(25deg) */
}

:root {
    --columns: 10;
}

.wg-box li:nth-child(2n) {
    grid-column-start: auto;
}

.wg-box li:nth-child(9n-8) {
    grid-column-start: 2;
}

.wg-box li:nth-child(9n-4) {
    grid-column-start: auto;
}



@media only screen and (max-width: 1280px) {

    .web-zoom {
        transform: scale(calc(100vw / 1280px));
        transform-origin: top center;
    }

    .mobile-layout .web-zoom {
        transform: scale(calc(100vw / 980px));
        transform-origin: top center;
    }

}

.hexagon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
    min-height: 300px;
}

.hexagon-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -15px;
}

.hexagon {
    position: relative;
    width: 130px;
    height: 150px;
    /* 高度为宽度的 √3/2 */
    background-color: #ddd;
    /* margin: 28.87px 0;  */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
}

.hexagon img {
    position: absolute;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    /* height:70%;
    object-fit: cover; */
}

.hexagon-container .web1 {
    background: #fbce2a;
}

.hexagon-container .web2 {
    background: #b1d9ff;
}

.hexagon-container .web3 {
    background: #6521d0;
}

.hexagon-container .web4 {
    background: #f56387;
}

.hexagon-container .web5 {
    background: #ff5c50;
}

.hexagon-container .web6 {
    background: #65a5ff;
}

.hexagon-container .web7 {
    background: #306df8;
}

.hexagon-container .web8 {
    background: #f088e1;
}

.hexagon-container .web9 {
    background: #0062ea;
}

.hexagon-container .web10 {
    background: #4dc8f7;
}

.hexagon-container .web11 {
    background: #373838;
}

.hexagon-container .web12 {
    background: #f9de9b;
}

.hexagon-container .web13 {
    background: #d39efc;
}

.hexagon-container .web14 {
    background: #00befa;
}

.hexagon-container .web15 {
    background: #80f4e0;
}

.hexagon-container .web16 {
    background: #d4faf7;
}

.hexagon-container .web17 {
    background: #fcac81;
}

.hexagon-container .web18 {
    background: #cb72f0;
}

.hexagon-container .web19 {
    background: #e1eaf4;
}

.hexagon-container .web20 {
    background: #62d202;
}

.hexagon-container .web21 {
    background: #ffd785;
}

.hexagon-container .web22 {
    background: #ccd497;
}

.hexagon-container .web23 {
    background: #7883da;
}

.hexagon-container .web24 {
    background: #ff4e5d;
}

.hexagon-container .web25 {
    background: #ffce4a;
}

.hexagon-container .web26 {
    background: #02cbc3;
}

.hexagon-container .web27 {
    background: #fee6c6;
}

.hexagon-container .web28 {
    background: #39d2ff;
}

.hexagon-container .web29 {
    background: #e5f47f;
}

.hexagon-container .web30 {
    background: #ffa692;
}

.hexagon-container .web31 {
    background: #00a7d5;
}

.hexagon-container .web32 {
    background: #5bce7c;
}

.hexagon-container .web33 {
    background: #aaa6ed;
}

.hexagon-container .web34 {
    background: #b1d9ff;
}

.hexagon-container .web35 {
    background: #e7c651;
}

.hexagon-container .web36 {
    background: #7c7c7c;
}

.hexagon-container .web37 {
    background: #ffa51d;
}

.hexagon-container .web38 {
    background: #8ae5ff;
}

.hexagon-container .web39 {
    background: #e1eaf4;
}

.hexagon-container .web40 {
    background: #62d202;
}

.footer-container,
.footer-container a {
    color: #ffffff;
}

.footer-container {
    min-height: 90px;
}

.mobile-layout .footer-container {
    min-height: 120px;
    display: flex;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.mobile-layout .footer-main {
    /* margin-top: 20px; */
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
}

.mobile-layout .footer-left .footer-text {
    font-size: 12px;
}

.mobile-layout .footer-right .footer-text {
    font-size: 10px;
}

.mobile-layout .footer-left,
.mobile-layout .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.footer-text {
    margin-bottom: 10px;
    font-size: 14px;
}

.mobile-layout .footer-text {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.social-link-container {
    /* max-width: 160px; */
    /* padding-left: 16px; */
    box-sizing: border-box;
}

.social-link-container a {
    float: left;
    margin-right: 10px;
}

.social-link-container .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.faq-container {
    /* background: #F5F5F5; */
}

.faq-test {
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
}

.faq-content-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px auto;
    padding-top: 20px;
}

.faq-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 20px;
}

.faq-item {
    width: 180px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #666666;
    background: #ffffff;
    user-select: none;
    cursor: pointer;
}

.faq-item-active,
.faq-item:hover {
    background: #00d6de;
    color: #ffffff;
}

.faq-text-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 auto;
    color: #888888;
    background: #ffffff;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
    min-height: 600px;
    min-width: 1000px;
    font-size: 16px;
    line-height: 25px;
    word-break: break-all;
    white-space: normal;
}

.mobile-layout .faq-main .faq-text-container {
    color: #aaaaaa;
}

.faq-text-container .faq-text-title,
.faq-text-container .FAQ-title {
    font-size: 18px;
    line-height: 35px;
    color: #333333;
}


.mobile-layout .faq-main .faq-text-container .faq-text-title,
.mobile-layout .faq-main .faq-text-container .FAQ-title {
    color: #fff;
}

.faq-text-container a {
    color: #00d6de;
}

.faq-text-title {
    font-size: 18px;
    border-left: 2px solid #00d6de;
    padding-left: 10px;
    line-height: 32px;
    margin-bottom: 10px;
}

.mobile-layout .faq-content-container {
    flex-direction: column;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.mobile-layout .faq-text-container {
    min-height: auto;
    min-width: auto;
    margin: 0;
    width: calc(100vw - 40px);
    background: none;
    color: #fff;
    padding: 0;
}

.mobile-layout .faq-text-title {
    display: none;
}

#faq-select {
    width: 90vw;
    height: 44px;
    background: none;
    color: #00d6de;
    border: none;
    outline: none;
    border-bottom: 1px solid #00d6de;
    margin-bottom: 20px;
    border-radius: 0;
    font-size: 18px;
}

.login-container,
.sign-up-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.login-main,
.sign-up-main,
.reset-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.google-container {
    display: flex;
    justify-content: center;
    height: 80px;
    padding: 10px;
}

.login-logo {
    width: 95px;
    margin-bottom: 30px;
}

.login-sub-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
}

.login-sub-title .email-sub-text {
    color: #7e7e7e;
}

.login-input-container {
    position: relative;
}

.login-input-container input {
    width: 460px;
    height: 60px;
    border-radius: 6px;
    box-sizing: border-box;
    padding-left: 50px;
    margin-bottom: 20px;
    display: flex;
    background: #ffffff;
    border: 1px solid #dae3ff;
    font-size: 18px;
    color: #333333;
}

.login-input-container input:-ms-input-placeholder {
    color: #888888;
}

.login-input-svg {
    width: 25px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.mobile-layout .login-input-svg {
    top: 12px;
}

.login-input-container input:focus-visible .login-input-svg {
    /* fill: #54b182; */
}

.login-input-container input:focus-visible+.login-input-svg path {
    /* fill: #54b182; */
}

.mobile-layout .login-logo {
    width: 76px;
}

.mobile-layout .login-input-container input,
.mobile-layout .login-button-container {
    width: calc(100vw - 50px);
    max-width: 460px;
    height: 54px;
    font-size: 14px;
}

.mobile-layout .login-button-container {
    font-size: 24px;
}

.mobile-layout .login-form form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-layout .login-forgot-password {
    font-size: 14px;
}

.mobile-layout .login-checkbox-container {
    width: 100%;
}

.login-checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    /* color: #333333; */
}

.login-checkbox-container input[type="checkbox"] {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    margin-right: 10px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dae3ff;
}

.login-button-container {
    width: 460px;
    height: 60px;
    border-radius: 4px;
    opacity: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    background: #00d6de;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
}

.login-button-container:hover {
    opacity: 0.8;
}

.login-forgot-password {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.sign-up-container .login-forgot-password {
    justify-content: flex-end;
}

#sign-up-sub-title,
#send-code-input,
#password-input,
#confirm-password-input,
#sign-up-btn {
    display: none;
}

.blue-text {
    color: #00d6de;
}

.game-feed-content {
    position: relative;
    z-index: 2;
}

.cid-link {
    color: #00d6de;
    margin-left: 5px;
}

.cid-link:hover {
    opacity: 0.8;
}

.game-feed-main {
    padding: 20px 0;
}

.game-feed-game-item-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 15px;
    width: fit-content;
    max-width: 1280px;
    margin: 0 auto;
    max-height: 540px;
    overflow-y: scroll;
    margin-bottom: 20px;
}

.mobile-layout .game-feed-game-item-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: calc(100vw - 40px);
}

.mobile-layout .game-feed-game-item-container .game-feed-game-item .game-feed-game-img-container,
.mobile-layout .game-feed-game-item-container .game-feed-game-item .game-feed-game-img {
    aspect-ratio: 512 / 512;
    /* width: 25vw; */
    max-width: 170px;
}



.copy-success-container {
    position: fixed;
    left: 0;
    bottom: 0;
    color: #fff;
    background: #696969;
    z-index: 333333;
    width: 100vw;
    display: none;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.copy-success-close {
    margin-left: 120px;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 80px;

}


.mobile-layout .copy-success-container {
    min-height: 100px;
    padding: 10px 0;
    flex-direction: column;

    justify-content: space-around;
}

.mobile-layout .copy-success-text {
    max-width: 90vw;
    word-break: break-all;
    white-space: normal;

}


.mobile-layout .copy-success-close {
    margin-left: 0;
}

/* @media only screen and (min-width: 700px) {
    .mobile-layout  .game-feed-game-item-container {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media only  screen and (min-width: 1000px) {
    .mobile-layout .game-feed-game-item-container {
        grid-template-columns: repeat(5, 1fr);
    }
}


@media only  screen and (min-width: 1200px) {
    .mobile-layout .game-feed-game-item-container {
        grid-template-columns: repeat(6, 1fr);
    }
} */

.main-game-item {}

.game-feed-game-item .game-feed-game-img-container {
    position: relative;
    overflow: hidden;
    max-width: 170px;
    height: 100%;
    box-sizing: border-box;
    aspect-ratio: 512 / 512;
    border-radius: 6px;
    background: url(/assets-partner/img/default/default-white-s.svg) no-repeat;
    background-size: cover;
}

.mobile-layout .game-feed-game-item .game-feed-game-img-container {
    background: url(/assets-partner/img/default/default-white-s.svg) no-repeat;
    background-size: cover;
}

/* .game-feed-game-img{
    background: url(/assets-partner/img/default/default-white-l.svg) no-repeat;
    background-size: cover;
} */

.mobile-layout .main-game-swiper-container .game-feed-game-item .game-feed-game-img-container {
    background: url(/assets-partner/img/default/default-white-l.svg) no-repeat;
    background-size: cover;
}

.game-feed-game-item .game-feed-game-img {
    object-fit: fill;
    max-width: 170px;
    position: relative;
    border-radius: 6px;
    box-sizing: border-box;
    aspect-ratio: 512 / 512;
    width: 100%;
}

.main-game-swiper-container .game-feed-game-item .game-feed-game-img-container,
.main-game-swiper-container .game-feed-game-item .game-feed-game-img {
    width: 205px;
    aspect-ratio: 512 / 340;
    max-width: 205px;
}

.mobile-layout .main-game-swiper-container .game-feed-game-item .game-feed-game-img-container,
.mobile-layout .main-game-swiper-container .game-feed-game-item .game-feed-game-img {
    max-width: 205px;
    width: calc(50vw - 20px);
    aspect-ratio: 512 / 340;
}

.game-feed-game-item .game-feed-game-img-container .game-name {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    transition: all 0.5s;
    width: max-content;
    max-width: 100%;
    text-align: center;
}

.game-feed-game-img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (hover: hover) {
    .game-feed-game-item .game-feed-game-img-container:hover {
        overflow: hidden;
        border: 2px solid #57f3f9;
    }

    .game-feed-game-img-container:hover .game-name {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        color: #fff;
        transition: all 0.5s;
        max-width: 100%;
        text-align: center;
        width: 100%;
        height: 50%;
        align-items: end;
        display: flex;
        z-index: 1;
        justify-content: space-around;
        background: linear-gradient(to bottom, #ffffff00, #000000f2);
    }
}

.no-login-text {
    /* width: 275px; */
    width: fit-content;
    padding: 0 20px;
    height: 50px;
    border-radius: 4px;
    background: #00d6de;
    color: #ffffff;
    user-select: none;
    /* cursor: pointer; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 20px auto;
    transform: translateX(68px);
}

.mobile-layout .no-login-text {
    transform: none;
}

.no-login-link {
    color: #ffff00;
    margin: 0 5px;
}

.game-feed-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px auto 0;
    max-width: 800px;
    transform: translateX(-50px);
}

.game-feed-item {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 20px;
    width: 100%;
}

.game-feed-item:nth-last-child(1) {
    margin-bottom: 0;
}

.game-feed-item-config {
    width: 560px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}

.game-feed-no-game {
    text-align: center;
    margin-bottom: 20px;
    grid-column: 4;
}

.game-feed-tags-container button {
    width: 560px !important;
    height: 44px !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    border: 1px solid #dae3ff !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    background-image: url(/assets-partner/img/select.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 98% center !important;
    padding-right: 20px !important;
}

.game-feed-tags-container .ms-options-wrap>button:after {
    display: none !important;
}

.game-feed-item-config .long-input,
.game-feed-item-config .long-select {
    width: 560px;
    height: 44px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dae3ff;
    padding: 0 10px;
    box-sizing: border-box;
}

.game-feed-item-config .short-input {
    width: 167px;
    height: 44px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dae3ff;
    padding: 0 10px;
    box-sizing: border-box;
}

.game-feed-item-config .game-feed-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.radio-container {
    min-width: 85px;
    display: flex;
    align-items: center;
}

.radio-input {
    margin: 10px 0;
    user-select: none;
    cursor: pointer;
    width: 22px;
    height: 22px;

    /* accent-color: #57F3F9; */
}

.radio-label {
    margin: 0 10px 0 5px;
    user-select: none;
    cursor: pointer;
}

.game-feed-text {
    margin-left: 10px;
}

.game-feed-item-config .logo-copy {
    width: 560px;
    min-height: 90px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dae3ff;
    padding: 20px 10px;
    box-sizing: border-box;
    position: relative;
}

.game-feed-item-config .copy-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    user-select: none;
    cursor: pointer;
}

.game-feed-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.mobile-layout .game-feed-btn-container {
    width: 80vw;
}

.game-feed-btn {
    width: 275px;
    height: 50px;
    border-radius: 4px;
    background: #00d6de;
    color: #ffffff;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
}

.btn-save {
    background: #646b6b;
    margin-right: 60px;
}

.mobile-layout .btn-save {
    margin-right: 20px;
}

.copy-text-span {
    word-wrap: break-word;
    line-height: 1.3;
    color: #333333;
}

/* 重置样式 */

.game-feed-item-config select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/assets-partner/img/select.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 98% center !important;
    padding-right: 20px !important;
}

/* .game-feed-item-config select::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image:url(/assets-partner/img/select.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
} */

.game-feed-item-config .ms-selectall {
    font-size: 1em !important;
    text-transform: none !important;
    width: 100% !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 4px !important;
    box-sizing: border-box !important;
    height: 28px !important;
}

.game-feed-item-config .ms-selectall:hover,
.game-feed-item-config .ms-options-wrap>.ms-options>ul label.focused,
.game-feed-item-config .ms-options-wrap>.ms-options>ul label:hover,
.game-feed-item-config .ms-options-wrap>.ms-options>ul li.selected label {
    background-color: #dae3ff !important;
    border-color: #dae3ff !important;
}

.game-feed-item-config .ms-options {
    border: 1px solid #dae3ff !important;
    border-radius: 6px !important;
}

.game-feed-item-config .ms-options-wrap>.ms-options>ul label {
    padding: 4px !important;
    color: #333333 !important;
}

.game-feed-item-config .ms-options-wrap>.ms-options>ul input[type="checkbox"] {
    display: none !important;
}

.mobile-layout .game-feed-item-container {
    flex-direction: column;
    transform: none;
    max-width: calc(100vw - 40px);
}

.mobile-layout .game-feed-item-config {
    margin-left: 0;
}

.mobile-layout .game-feed-item,
.mobile-layout .radio-list {
    display: block;
}

.mobile-layout .game-feed-item-title {
    margin-bottom: 10px;
    font-size: 14px;
    margin-right: 10px;
    text-align: right;
}

.mobile-layout .profile-main .game-feed-item-title {
    margin-bottom: 5px;
    margin-right: 5px;
}

.mobile-layout .game-feed-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.white-svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(25deg) brightness(103%) contrast(103%);
}

.mobile-layout .game-feed-item-config .short-input {
    width: 120px;
}

.mobile-layout .size-list {
    display: block;
}

.mobile-layout .size-item {
    float: left;
    line-height: 44px;
    height: 44px;
}

.mobile-layout .radio-container {
    float: left;
}

.mobile-layout .game-feed-item-config,
.mobile-layout .game-feed-item-config .long-input,
.mobile-layout .game-feed-item-config .long-select,
.mobile-layout .game-feed-item-config .logo-copy,
.mobile-layout .game-feed-tags-container button {
    width: calc(100vw - 40px) !important;
    max-width: 1280px;
}

.mobile-layout .config-main .game-feed-item-config,
.mobile-layout .config-main .game-feed-item-config .long-input,
.mobile-layout .config-main .game-feed-item-config .long-select,
.mobile-layout .config-main .game-feed-item-config .logo-copy,
.mobile-layout .config-main .game-feed-tags-container button {
    width: calc(70vw - 40px) !important;
}

.mobile-layout .profile-main .game-feed-item-config,
.mobile-layout .profile-main .game-feed-item-config .long-input,
.mobile-layout .profile-main .game-feed-item-config .long-select,
.mobile-layout .profile-main .game-feed-item-config .logo-copy,
.mobile-layout .profile-main .game-feed-tags-container button {
    width: calc(80vw - 40px) !important;
}

.mobile-layout .profile-main .game-feed-item,
.mobile-layout .config-main .game-feed-item {
    flex-direction: row;
    align-items: center;
}

@media (hover: hover) {

    .hover-opacity:hover,
    .add-container:hover,
    .header-right-item:hover,
    .game-feed-btn:hover,
    .config-header-item-btn:hover {
        opacity: 0.8;
    }
}

.contact-menu-btn {
    width: 140px;
    height: 44px;
    border-radius: 22px;
    background: linear-gradient(to bottom, #57f3f9, #00d6de);
    color: white;
    font-size: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    user-select: none;
    cursor: pointer;
}

@media (hover: hover) {
    .contact-menu-btn:hover {
        background: #00acb2;
    }
}

.contact-btn-icon {
    width: 30px;
    margin-top: 2px;
    margin-right: 5px;
    /* height: 19px; */
}

.contact-us-main {
    margin-top: 20px;
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(90deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(270deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.contact-submit-icon {
    width: 35px;
    height: 35px;
    animation: loading 2s linear infinite;
    margin-right: 15px;
    display: none;
}

.contact-menu-container .contact-input-div,
.contact-menu-container .contact-textarea-div {
    position: relative;
    margin-bottom: 20px;
}

.contact-menu-container input {
    width: 280px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 6px;
    padding-left: 50px;
    outline-color: #fe0000;
    outline-width: 1px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    box-sizing: border-box;
    clip-path: border-box;
    -webkit-clip-path: border-box;
    -moz-clip-path: border-box;
    -ms-clip-path: border-box;
    -o-clip-path: border-box;
}

.contact-menu-container textarea {
    width: 280px;
    height: 160px;
    background: #fff;
    border: none;
    border-radius: 6px;
    padding-left: 50px;
    outline-color: #fe0000;
    outline-width: 1px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    box-sizing: border-box;
    resize: none;
    padding-top: 15px;
    clip-path: border-box;
    -webkit-clip-path: border-box;
    -moz-clip-path: border-box;
    -ms-clip-path: border-box;
    -o-clip-path: border-box;
}

.contact-input-svg {
    position: absolute;
    top: 10px;
    left: 10px;
}

.contact-input-svg path {
    fill: #666666;
}

.contact-us-submit {
    width: 280px;
    height: 68px;
    border-radius: 6px;
    background: linear-gradient(to bottom, #81faff, #57f3f9);
    font-size: 30px;
    color: #00abb1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.message-div {
    width: 280px;
    min-height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: normal;
    justify-content: center;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.message-text{
    line-height: 26px;
    text-align: left;
  }

.message-icon {
    width: 26px;
    height: 26px;
    margin-left: 10px;
    margin-right: 10px;
}

.message-icon path {
    fill: #fff;
}

.message-warn {
    background: #faad14;
}

.message-fail {
    background: #ff3c00;
}

.message-success {
    background: #2adb6a;
}

#contact-us-warn,
#contact-us-fail,
#contact-us-success,
#feedback-warn,
#feedback-fail,
#feedback-success {
    display: none;
}

#contact-us-warn-text {
    text-align: center;
}

/* 遮罩菜单 */

.menu-mask-div {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #00000066;
    top: 0;
    left: 0;
    z-index: 12;
    display: none;
}

.left-mask-div {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #00000066;
    top: 0;
    left: 0;
    z-index: 4;
    display: none;
}

#contact-menu {
    display: flex;
    position: fixed;
    top: 0;
    height: 100vh;
    background: linear-gradient(to bottom, #00d6de, #6653d7);
    z-index: 13;
    cursor: auto;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s ease;
}

#contact-menu {
    left: -100%;
    width: 330px;
    /* animation: showLeft 0.3s forwards; */
}

@media only screen and (max-width: 350px) {
    #contact-menu {
        left: -150%;
    }
}

.mask-close-btn {
    position: absolute;
    top: 15px;
    right: 17px;
    cursor: pointer;
}

.mask-close-btn img {
    margin: 0;
    width: 30px;
    height: 30px;
}

.mask-menu-title {
    margin-top: 50px;
    font-size: 24px;
    color: #fff;
}

.menu-btn-container {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.is-login .menu-btn-container,
.mobile-layout .menu-btn-container {
    display: block;
}

.menu-btn-container svg {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    user-select: none;
}

#mobile-menu-btn {
    padding-left: 20px;
}

.menu-btn-container .st0 {
    /* fill: var(--all-text-color); */
}

.st0 {
    fill: #fff;
}

.menu-btn-container .open .btn-close {
    display: none;
}

.menu-btn-container .close .btn-open {
    display: none;
}

.is-login .is-login-logo {
    margin-left: 50px;
}

.mobile-layout .is-login-logo {
    margin-left: 0 !important;
}

@keyframes showLeft {
    0% {
        left: -160px;
    }

    100% {
        left: 0;
    }
}

@keyframes hideLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes showRight {
    0% {
        right: -160px;
    }

    100% {
        right: 0;
    }
}

@keyframes hideRight {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}

.show-in {
    animation: showLeft 0.3s forwards;
}

.show-out {
    animation: hideLeft 0.3s forwards;
}

.show-in-right {
    animation: showRight 0.3s forwards;
}

.show-out-right {
    animation: hideRight 0.3s forwards;
}

.left-bar-container {
    width: 250px;
    height: 100vh;
    background: #282828;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    padding-top: 60px;
    box-sizing: border-box;
    /* display: none; */
    overflow-y: scroll;
    transition: width 0.3s;
    font-size: 14px;
    display: none;
}

.mobile-layout .left-bar-container {
    width: 220px;
}

.left-bar-container a {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: left;
    user-select: none;
    cursor: pointer;
}

.left-bar-main {
    /* width: max-content; */
    min-width: 100%;
}

.left-divider {
    width: calc(100% - 20px);
    height: 1px;
    background: #fff;
    margin: 5px auto;
    opacity: 0.2;
}

.icon-text {
    /* display: none; */
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.is-login .left-bar-container {
    display: block;
}

.mobile-layout .left-bar-container {
    display: none;
}

.is-login .default-layout {
    margin-left: 250px;
    background: #f2f5ff;
}

.mobile-layout .default-layout {
    margin-left: 0;
}

.cid-layout {
    padding: 20px;
    box-sizing: border-box;
}

.mobile-layout .cid-layout {
    padding: 7px;
}

.cid-title {
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    border-left: 4px solid var(--highlight-color);
    padding-left: 10px;
    margin-bottom: 20px;
    height: 26px;
}

.mobile-layout .cid-title {
    margin-top: 8px;
}

.left-icon {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 20px;
    cursor: pointer;
}

.mobile-layout .left-icon {
    margin: 0 10px 0 10px;
}

.test-text {
    font-size: 18px;
}

/* .left-icon-active {
    border-left: 4px solid var(--highlight-color);
    margin: 0 10px 0 0px;
    padding-left: 16px;
} */

.left-item-active .left-icon svg path {
    fill: var(--highlight-color);
}

.left-item-active .icon-text {
    color: var(--highlight-color);
}

@media (hover: hover) {

    /* .left-icon-a:hover .left-icon {
        border-left: 4px solid var(--highlight-color);
        margin: 0 10px 0 0px;
        padding-left: 16px;
    } */
    .left-icon-a:hover .left-icon svg path {
        fill: var(--highlight-color);
    }

    .left-icon-a:hover .icon-text {
        color: var(--highlight-color);
    }

    .logout-container:hover svg path {
        fill: var(--highlight-color);
    }

    .logout-container:hover .logout-text {
        color: var(--highlight-color);
    }
}

.left-item-active .icon-text {
    color: var(--highlight-color);
}

.logout-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    padding-left: 20px;
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

.logout-text {
    margin-left: 10px;
    color: #fff;
    font-size: 18px;
}

.dashboard-header {
    width: 100%;
    position: relative;
}

.add-container {
    position: absolute;
    width: 215px;
    height: 40px;
    border-radius: 4px;
    background: #00d6de;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    top: -10px;
    right: 0;
}

.add-text {
    color: #fff;
    margin-left: 10px;
}

.mobile-layout .add-container {
    width: 188px;
    height: 35px;
    font-size: 14px;
    top: -5px;
}

.dashboard-date-container {
    /* margin-bottom: 20px; */
    display: flex;
}

.dashboard-profit-image {
    height: 140px;
    user-select: none;
    cursor: pointer;
}

.dashboard-date-item {
    min-width: 292px;
    height: 140px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background: #ffffff;
    position: relative;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.report-main .dashboard-date-item {
    padding-left: 30px;
}

@media only screen and (max-width: 500px) {
    .mobile-layout #report-main .purple-title {
        font-size: 0;
    }
}

.dashboard-date-letter {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: #00d6de;
    color: #fff;
    font-size: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-layout .dashboard-date-letter {
    width: 40px;
    font-size: 35px;
}

.dashboard-date-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.dashboard-date-value {
    font-size: 52px;
    color: #00d6de;
    margin: 0 30px;
}

.mobile-layout .dashboard-date-faq {
    display: none;
}

.mobile-layout .dashboard-date-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-layout .dashboard-date-item {
    width: auto;
    height: 70px;
    min-width: auto;
    margin: 0;
}

.mobile-layout .dashboard-date-value {
    font-size: 28px;
}

.mobile-layout .dashboard-date-title {
    font-size: 14px;
    text-align: center;
}

#report-item1 {
    grid-column: span 2;
    /* 让该元素跨两列 */
}

#report-item1 .dashboard-date-letter {
    background: #ff7b00;
}

#report-item1 .dashboard-date-value {
    color: #ff7b00;
}

#report-item2 .dashboard-date-letter {
    background: #00d6de;
}

#report-item2 .dashboard-date-value {
    color: #00d6de;
}

#report-item3 .dashboard-date-letter {
    background: #f17057;
}

#report-item3 .dashboard-date-value {
    color: #f17057;
}

#report-item4 .dashboard-date-letter {
    background: #838bfb;
}

#report-item4 .dashboard-date-value {
    color: #838bfb;
}

#report-item5 .dashboard-date-letter {
    background: #58cf7a;
}

#report-item5 .dashboard-date-value {
    color: #58cf7a;
}

#last1day-text {
    color: #00d6de;
}

#last7day-text {
    color: #f17057;
}

#last15day-text {
    color: #838bfb;
}

#last30day-text {
    color: #58cf7a;
}

.dashboard-date-title {
    font-size: 24px;
    color: #666666;
}

.white-card {
    min-height: 200px;
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.purple-title {
    width: 100%;
    height: 44px;
    box-sizing: border-box;
    background: #dae3ff;
    color: 333333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    padding-left: 10px;
}

.dashboard-revenue-container {
    height: 455px;
}

.dashboard-revenue-title {}

.dashboard-revenue-chart,
.report-revenue-chart {
    width: 100%;

    height: 400px;
}

.user-faq-main .faq-content-container {
    padding-top: 0;
    margin: 0;
    justify-content: space-between;
}

.user-faq-main .faq-text-container {
    width: calc(100% - 180px);
}

.user-faq-main .faq-text-content {
    width: 100%;
}

.report-revenue-container {
    min-height: 455px;
}

.faq-text {
    display: none;
}

.faq-text-active {
    display: block;
}

.report-tab-container {
    position: absolute;
    top: 2px;
    right: 5px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.report-tab-item {
    padding: 0 10px;
    height: 38px;
    background: #b6c7ff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 14px;
    user-select: none;
    cursor: pointer;
}

.report-tab-item-active {
    background: #fff;
    height: 42px;
}

.report-date-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.report-rows-container {
    overflow: visible;
    margin-bottom: 60px;
}

.report-rows-header {
    height: 40px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    user-select: none;
}

.report-rows-content {
    margin: 0 10px 10px 10px;
    width: calc(100% - 20px);
    border: 1px solid #f2f5ff;
    /* min-height: 300px; */
    text-align: center;
    box-sizing: border-box;
}

.report-rows-table,
.report-rows-table thead {
    width: 100%;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    overflow: hidden;
}

.mobile-layout .report-rows-table thead th {
    font-size: 14px;
}

.mobile-layout .report-rows-table tbody {
    font-size: 12px;
}

.report-rows-thead {
    display: table-row;
    line-height: 44px;
}

.report-rows-table tbody tr {
    border-bottom: 1px solid #f2f5ff;
    line-height: 44px;
    height: 44px;
}

.report-rows-table tbody td {
    border-right: 1px solid #f2f5ff;
}

.report-rows-container .report-rows-content {
    overflow: visible;
}

.report-rows-container .report-rows-content .dataTables_length {
    position: absolute;
    top: -30px;
}

.config-table-container {
    margin: 10px 10px 10px 10px;
    width: calc(100% - 20px);
    border: 1px solid #f2f5ff;
    text-align: center;
    box-sizing: border-box;
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden; */
}

.config-table-main .add-container {
    top: 15px;
    left: 10px;
}

.logo-td img {
    vertical-align: middle;
    width: 90px;
    max-width: 90px;
    max-height: 90px;
}

.mobile-layout .config-table-main {
    /* background: none; */
    padding-top: 5px;
}

.mobile-layout .add-config-btn {
    display: inline-block;
    width: fit-content;
    height: auto;
    margin: 10px 15px 20px 15px;
}

.mobile-layout .config-table-main .add-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mobile-config-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-config-list .mobile-config-item {
    border: 1px solid #f2f5ff;
    box-sizing: border-box;
    width: calc(100% - 30px);
    margin-bottom: 10px;
}

.mobile-config-item .purple-title {
    justify-content: space-between;
    padding-right: 5px;
}

.mobile-config-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.mobile-config-top .config-top-left {
    min-width: 30px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-config-top .config-top-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-config-top .config-top-right .status-container svg {
    width: 26px;
    height: 26px;
}

.mobile-config-content {}

.mobile-config-content .config-content-item {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 10px;
    box-sizing: border-box;
    border-top: 1px solid #f2f5ff;
    font-size: 14px;
}

#config-container .config-table-main {
    overflow: visible;
}

#config-container #table_id_example_wrapper {
    margin: 70px 0 10px 0;
}

.approved-show-container {
    width: 560px;
    /* height: 228px; */
    border-radius: 10px;
    border: 1px solid #f2f5ff;
    /* background: #06D8E0; */
    transform: translateX(20px);
    margin: 0 auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.approved-show-title {
    background: #f2f5ff;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    color: #333333;
    padding: 0 15px;
    font-weight: 800;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.approved-show-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin-top: 5px;
    /* margin-left: -200px; */
}

.approved-show-item {
    height: 25px;
    line-height: 25px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.approved-show-content .logo-item {
    align-items: normal;
    min-height: 100px;
}

.approved-show-label {
    width: 225px;
    max-width: 560px;
    text-align: right;
}

.approved-svg {
    transition: all 0.3s ease;
}

.hide-info {
    transform: rotate(180deg);
}

.mobile-layout .approved-show-container {
    width: calc(100vw - 20px);
    transform: none;
}

.mobile-layout .approved-show-label {
    width: 160px;
    text-align: right;
}

.approved-show-value {
    color: #2fd732;
    margin-left: 10px;
    width: 350px;
    display: flex;
}

.approved-logo {
    width: 90px;
    height: 90px;
    max-height: 90px;
    max-width: 90px;
}

.status-td {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    width: 164px;
    position: relative;
}

.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 164px;
}

.mobile-layout .status-container {
    width: auto;
}

.status-text {
    color: #58cf7a;
    font-size: 16px;
    line-height: normal;
    margin-top: 5px;
    user-select: none;
}

.status0 .status-text {
    color: #b69eff;
}

.status1 .status-text {
    color: #ffaa18;
}

.status2 .status-text {
    color: #58cf7a;
}

.status3 .status-text {
    color: #f17057;
}

.status4 .status-text {
    color: #a6a6a6;
}

.status2-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 27px;
    background: #ffe2b1;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.status2-icon {
    width: 24px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffaa18;
}

.status2-text {
    width: calc(100% - 24px);
    user-select: none;
    color: #ffaa18;
}

.status2-0 {
    background: #e2d8ff;
}

.status2-0 .status2-icon {
    background: #b69eff;
}

.status2-0 .status2-text {
    color: #b69eff;
}

.status2-1 {
    background: #ffe2b1;
}

.status2-1 .status2-icon {
    background: #ffaa18;
}

.status2-1 .status2-text {
    color: #ffaa18;
}

.status2-2 {
    background: #d1ffde;
}

.status2-2 .status2-icon {
    background: #58cf7a;
}

.status2-2 .status2-text {
    color: #58cf7a;
}

.status2-3 {
    background: #ffd6ce;
}

.status2-3 .status2-icon {
    background: #f17057;
}

.status2-3 .status2-text {
    color: #f17057;
}

.has-status2 .status-container {
    margin-top: -20px;
}

.has-status2 .status2-container {
    display: flex;
}

.mobile-layout .has-status2 .status2-container {
    width: 130px;
    height: 22px;
    text-align: center;
    position: relative;
    margin-left: 10px;
    font-size: 12px;
}

.mobile-layout .has-status2 .status2-container .status2-icon {
    width: 24px;
    height: 22px;
}

.status-toast-container {
    height: 35px;
    display: flex;
    position: relative;
}

.status-toast-container svg {
    cursor: pointer;
}

.status-toast {
    position: absolute;
    bottom: -5px;
    right: 55px;
    /* transform: translateX(-50%); */
    width: 350px;
    /* height: 260px; */
    border-radius: 6px;
    background: #696969;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    user-select: none;
    /* opacity: 0; */
    pointer-events: none;
    transition: all 0.3s ease;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

@media (hover: hover) {

    .copy-btn:hover .status-toast,
    .status-toast-container:hover .status-toast {
        /* opacity: 1; */
        pointer-events: auto;
        display: flex;
    }

}



.copy-btn .status-toast {
    left: -20px;
    bottom: 40px;
    width: 140px;
}

.copy-btn .item-desc-text-content-icon {
    top: 8px;
    left: 8px;
}

.copy-btn .status-toast-desc {
    text-indent: 20px;
}

.copy-btn .status-toast-triangle {
    bottom: -13px;
    left: 25px;
    right: auto;
    transform: rotate(90deg);
}

.status-toast-desc {
    text-align: left;
}

.denied-title {
    color: #ffff00;
}

.denied-reason {
    color: #cccccc;
    font-size: 12px;
}

.status-toast-triangle {
    position: absolute;
    bottom: 10px;
    right: -10px;
}

.config-rows-table,
.config-rows-table thead {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.config-rows-table thead tr {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    font-size: 18px;
    /* border-collapse: collapse; */
}

.config-table-container tbody {
    color: #888888;
}

.domain-td {
    line-height: normal;
}

.config-rows-table thead tr th {
    overflow: hidden;
    /* border-collapse: collapse; */
}

.config-rows-table thead tr th:first-child {
    border-top-left-radius: 10px;
}

.config-rows-table thead tr th:last-child {
    border-top-right-radius: 10px;
}

.config-rows-thead {
    display: table-row;
    line-height: 44px;
    font-weight: 500;
}

.config-rows-table tbody tr {
    border-bottom: 1px solid #f2f5ff;
    line-height: 119px;
    height: 119px;
}

.config-rows-table tbody tr:nth-child(2n) {
    background: #f8faff;
}

.config-rows-table tbody td {
    border-right: 1px solid #f2f5ff;
    text-align: center;
    vertical-align: middle;
}

.config-manage-td {
    width: 132px;
}

.config-rows-manage {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 132px;
}

.config-rows-manage a {
    display: flex;
    /* margin-right: 10px; */
}

.manage-btn:hover svg path,
.manage-btn:hover svg rect {
    fill: #00d6de;
}

.manage-btn-disabled svg path,
.manage-btn-disabled svg rect {
    cursor: not-allowed;
    fill: #c0c0c0 !important;
}

.config-rows-manage-btn {
    /* display: inline-block; */
    user-select: none;
    cursor: pointer;
    /* width: 96px;
    height: 40px;
    border-radius: 4px;
    color: #FFFFFF; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-rows-manage-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.config-rows-table .edit-btn {
    background: #58cf7a;
}

.config-rows-table .del-btn {
    /* background: #F17057; */
}

.mobile-config-menu-container {
    position: relative;
}

.mobile-config-menu {
    position: absolute;
    top: 35px;
    right: -5px;
    width: 45px;
    border-radius: 0px 0px 6px 6px;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.show-cid-menu .mobile-config-menu {
    display: flex;
}

.mobile-config-menu .config-rows-manage {
    flex-direction: column;
    width: 45px;
    height: 80px;
    background: #e6ecff;
}

.mobile-config-menu .config-rows-manage svg {
    width: 18px;
    height: 18px;
    margin-right: 0;
}

.td-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.td-logo-container img {
    height: 40px;
}

.config-main .cid-add-main {
    overflow: visible;
}

.config-main-header {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 20px;
}

.config-header-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-header-item .short-input {
    width: 137px;
    height: 40px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dae3ff;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0 20px 0 10px;
}

.config-header-item select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/assets-partner/img/select.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 95% center !important;
    padding-right: 20px !important;
}

.config-header-item-btn {
    width: 90px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    margin-right: 20px;
    user-select: none;
    cursor: pointer;
}

.config-header-item-btn .item-btn-text {
    margin-left: 5px;
}

.filter-btn {
    background: #00d6de;
    margin-left: 20px;
}

.reset-btn {
    background: #646b6b;
}

.dashboard-list-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
    position: relative;
    overflow: visible;
}

.dashboard-list-content {
    width: calc(50% - 20px);
    /* margin: 0 10px 10px 10px; */
    border: 1px solid #f2f5ff;
    min-height: 174px;
    margin: 0;
}

.mobile-layout .dashboard-list-content {
    width: 100%;
}

.dashboard-tab-container {
    position: absolute;
    top: -54px;
    left: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.mobile-layout .dashboard-tab-container {
    width: calc(100% - 40px);
    overflow: scroll;
    justify-content: start;
}

.dashboard-tab-item {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #dae3ff;
    margin-right: 2px;
    width: 130px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    font-size: 14px;
    user-select: none;
    cursor: pointer;
}

.dashboard-list-btn {
    display: none;
}

.mobile-layout .dashboard-list-btn {
    display: block;
    /* position: absolute;
    top: -50px;
    right: 0px; */
    width: calc(100% - 40px);
    height: 35px;
    border-radius: 4px;
    /* background: #00D6DE; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    z-index: 3;
    pointer-events: none;
}

.dashboard-list-btn svg {
    filter: invert(16%) sepia(23%) saturate(5%) hue-rotate(314deg) brightness(101%) contrast(90%);
}

.left-btn,
.right-btn {
    position: absolute;
    top: -40px;
    width: 12px;
    height: 40px;
    border-radius: 4px;
    background: #dae3ff;
    /* background: linear-gradient(to right, #F2F5FF, #F2F5FF00); */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 4;
}

.pc-layout .left-btn,
.pc-layout .right-btn {
    display: none;
}

.left-btn {
    left: 5px;
}

.right-btn {
    right: 5px;
}

.dashboard-list-container .not-active {
    background: #e2e2e2;
}

.dashboard-list-container .not-active svg {
    filter: invert(48%) sepia(0%) saturate(3607%) hue-rotate(238deg) brightness(98%) contrast(89%);
}

.mobile-layout .dashboard-tab-item {
    width: 80px;
    height: 54px;
    text-align: center;
    flex-shrink: 0;
}

.tab-item-price {
    color: #ff4e4e;
}

.tab-item-active {
    background: #fff;
    height: 54px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.mobile-layout .tab-item-active {
    height: 62px;
}

.list-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* padding: 20px; */
    box-sizing: border-box;
}

.list-content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #f2f5ff;
    padding: 0 10px;
    box-sizing: border-box;
    height: 65px;
}

.report-rows-content .dataTables_info {
    display: none;
}

/* 分页 */
#gamePagination,
.dataTables_paginate {
    clear: both;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-rows-container .dataTables_paginate {
    position: absolute;
    bottom: -70px;
}

#gamePagination ul {
    list-style: none;
    /* padding: 3px 5px 2px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .31);
    background: #fff; */
    width: max-content;
    background: #fff;
    padding: 0 10px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gamePagination ul a {
    text-decoration: none;
    color: #fff;
    margin: 0 5px;
}

.paginate_button {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    /* background-color: #fff; */
    color: #333333;
    margin-right: 5px;
    user-select: none;
    cursor: pointer;
}

.dataTables_paginate .current {
    background: #00d6de;
    color: #fff;
}

#gamePagination ul li {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border-radius: 50%;
    line-height: 35px;
    /* background-color: #fff; */
    color: #333333;
}

#gamePagination .pagination-li-first svg {
    height: 18px;
    fill: #333333;
    margin-top: 8px;
}

@media (hover: hover) {
    #gamePagination ul li:hover {
        background: #e7eefe;
        color: #898989;
    }
}

.pagination-li-split {
    font-family: math !important;
}

#gamePagination ul li.pagination-li-active {
    color: #fff;
    background: linear-gradient(to bottom, #06d8e0, #53f2f8);
}

#gamePagination ul li.pagination-li-split {
    background-color: transparent;
}

/* #gamePagination ul li.pagination-li-first {
    background: #ffffff;
    color: #3d2e81;
  }
  #gamePagination ul li.pagination-li-first a {
    color: #3d2e81;
  } */

.profile-content,
.config-content {
    padding: 20px 0 100px;
}

.profile-title {
    width: 80%;
    text-align: left;
    margin-bottom: 20px;
    height: 26px;
    line-height: 26px;
    padding-left: 10px;
    border-left: 4px solid #f2f5ff;
}

.mobile-layout .profile-title {
    width: 100%;
    height: auto;
    font-size: 14px;
}

.profile-title-desc {
    font-size: 14px;
}

.mobile-layout .profile-title-desc {
    font-size: 12px;
}

.profile-content .short-input {
    margin-right: 10px;
}

.item-input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.pub-input-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    color: #888888;
    font-size: 14px;
}

#pubid-input {
    padding-left: 75px;
}

.profile-content .game-feed-item-config .long-input,
.config-content .game-feed-item-config .long-input {
    padding-left: 40px;
    box-sizing: border-box;
}

.config-main {}

.config-content {}

.config-content .game-feed-item-container {
    transform: translateX(-100px);
}

.config-text{
    width: 80%;
    text-align: center;
    margin: 0 auto;
    font-size: 12px;
    color: #c2c2c2;
    max-width: 600px;
}

.mobile-layout .config-content .game-feed-item-container {
    transform: translateX(-30px);
}

.no-cid-container {
    width: 492px;
    height: 455px;
    border-radius: 10px;
    background: #ffffff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 150px;
}

.no-cid-header {
    height: 187px;
    background: #dae3ff;
    width: 100%;
    position: relative;
    /* overflow: hidden; */
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.no-cid-img {
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.no-cid-title {
    font-size: 30px;
    margin: 40px auto;
    text-align: center;
}

.no-cid-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 22px;
}

.no-cid-content {
    text-align: center;
}

.no-cid-content a {
    display: inline-block;
    width: fit-content;
}

.mobile-layout .no-cid-container {
    width: 292px;
    height: 355px;
    margin-top: 120px;
}

.mobile-layout .no-cid-img {
    height: 130px;
}

.no-cid-title {
    font-size: 20px;
    margin: 25px auto;
}

.mobile-layout .no-cid-header {
    height: 97px;
}

.mobile-layout .no-cid-text {
    font-size: 14px;
}

.mobile-layout .no-cid-content .game-feed-btn {
    width: 175px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
}

.logo-upload-container {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #dae3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
}
.logo-close{
    position: absolute;
    top: -10px;
    left: 100px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
    display: none;
}

.logo-upload-message {
    position: absolute;
    left: 120px;
    top: 25px;
    font-size: 14px;
}

#logoUpload,
.logo-preview,
.logo-show {
    display: none;
}

.logo-show {
    /* margin: 20px 0; */
    width: 100px;
    max-width: 100px;
    max-height: 100px;
}

.upload-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 14px;
    color: #888888;
}

.game-feed-item-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-feed-item-desc {
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    position: relative;
    user-select: none;
    cursor: pointer;
    height: 44px;
}

.item-desc-text {
    position: absolute;
    top: -60px;
    left: -50px;
    z-index: 1;
    user-select: all;
    cursor: auto;
    width: 450px;
    height: 65px;
    display: none;
}

.game-feed-item-desc:hover .item-desc-text {
    display: block;
}

.item-desc-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.item-desc-text-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 7px 10px;
    line-height: 20px;
    text-align: justify;
    box-sizing: border-box;
    color: #fff;
}

.item-desc-icon,
.item-desc-icon svg {
    width: 24px;
    height: 24px;
}

.mobile-layout .item-desc-icon,
.mobile-layout .item-desc-icon svg {
    display: none;
}

.red-text {
    color: #ff0000;
}

.green-show{
    color: #00d81d;
}

.gray-show{
    color: #c2c2c2;
}


.orange-text {
    cursor: pointer;
    color: #ff8025;
}

.item-desc-text-content-icon {
    position: absolute;
    top: 6px;
}

.item-desc-text-content-text {
    padding-left: 30px;
}

.al-start {
    align-items: start;
}

.input-message-container {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftn-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right:calc(100% + 5px);
    left: auto;
}

.domain-title{
    margin-right: 35px!important;
}


.input-message-text {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    margin-left: 5px;
    user-select: none;
    width: max-content;
}

.mobile-layout .input-message-text {
    display: none;
}

.logo-item .game-feed-item-config {
    flex-direction: column;
    align-items: baseline;
    justify-content: space-evenly;
}

.logo-item .btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100px;
    margin-top: 8px;
}

.logo-item .btn-container .logo-btn {
    margin-left: 8px;
    user-select: none;
    cursor: pointer;
}

.bg-container {
    min-height: 100vh;
    width: 100%;
    background: url("/assets-partner/img/login-bg.png");
    background-size: 100%;
    background-position: top;
    /* background-repeat: no-repeat; */
    color: #fff;
}

.bg-container2 {
    width: 100%;
    background: url("/assets-partner/img/login-bg.png");
    background-size: 100% 100%;
    background-position: top;
    /* background-repeat: no-repeat; */
    color: #fff;
}

.mobile-layout .bg-container2 {
    background-size: cover;
}

.bg-container-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1)) 100%;
    /* z-index: -1; */
}

.game-feed-container,
.faq-container,
.login-container,
.sign-up-container,
.reset-container {
    position: relative;
}

.reset-title {
    margin-top: 160px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}

.mobile-layout .reset-title {
    margin-top: 100px;
    font-size: 30px;
}

#reset-text-container {
    display: none;
}

.forget-text {
    color: #fff;
}

.reset-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 460px;
    text-align: left;
    line-height: 20px;
}

.reset-text svg {
    margin: -15px 10px 0 0;
}

.reset-show-email {
    color: #ffba00;
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
    box-sizing: border-box;
    padding: 0 20px;
    max-width: 460px;
    text-align: left;
    text-indent: 30px;
}

.re-verify-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.re-verify-text svg {
    margin-right: 10px;
}