@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

:root {
    --main-width: 1200px;
    --base-topbar-height: 60px;
    --base-bottombar-height: 90px;
    --base-border-radius: 10px;
    --base-font-size: 16px;
    --base-line-height: 1.4;
    --base-font-color: #000;
    --base-bg-color: #f4f4f4;
    --base-gray-color: #f1f1f1;
    --base-red-color: #fa4145;
    --base-yellow-color: #faac04;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", Helvetica, Arial, "-apple-system", "system-ui", sans-serif;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    color: var(--base-font-color);
    background-color: var(--base-bg-color);
    padding-top: var(--base-topbar-height);
    padding-bottom: var(--base-bottombar-height);
}

p {
    margin: 0.8em 0;
}

ul,
ol {
    list-style: none;
}

a {
    color: var(--base-font-color);
    text-decoration: none;
    outline: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
}

h1 {
    font-size: 1.3em;
    font-weight: normal;
}

h2 {
    font-size: 1.3em;
}

h2 span {
    font-size: 0.8em;
    font-weight: normal;
    color: #999;
}

.topbar {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    min-width: var(--main-width);
    height: var(--base-topbar-height);
    padding: 10px 15px;
    color: #fff;
    background-color: #000;
    box-sizing: border-box;
}

.topbar a {
    color: #fff;
}

.topbar-left {
    flex: auto;
    display: flex;
    align-items: center;
}

.topbar-right {
    flex: none;
    display: flex;
    align-items: center;
}

.appicon {
    height: 40px;
    margin-right: 10px;
}

.appicon img {
    height: 100%;
    width: auto;
}

.language-box {
    position: relative;
    margin-left: 15px;
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 11;
    padding: 5px 0;
    background-color: #fff;
    border-radius: var(--base-border-radius);
    overflow: hidden;
}

.language-menu li {
    text-align: center;
}

.language-menu li a {
    display: block;
    padding: 0.5em 0;
    color: #555;
}

.language-menu li a:hover {
    color: var(--base-font-color);
}

.language-menu li:nth-child(even) {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    background-color: #e4e1df;
}

.topbar-user {
    position: relative;
    margin-left: 15px;
    width: 40px;
}

.topbar-user-loggedin {
    display: block;
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 16px;
    height: 16px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-correct.png") no-repeat;
    background-size: 100% 100%;
}

.bottombar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: var(--base-bottombar-height);
    padding: 15px 30px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
    box-sizing: border-box;
}

.bottombar .wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.bottombar-name {
    flex: none;
    margin-right: 20px;
    font-size: 1.3em;
}

.bottombar-total {
    flex: none;
    margin-right: 20px;
    font-size: 1.6em;
    font-weight: bold;
}

.bottombar-btn {
    flex: none;
}

.header {
    min-width: var(--main-width);
    height: 480px;
    background: #d57b25 url("//content-us.game-bean.com/image/titan_rush/recharge2604/header-bg.jpg") no-repeat center top;
}

.main {
    width: var(--main-width);
    margin: -30px auto 0;
}

.content-box {
    padding: 15px;
    border-radius: var(--base-border-radius);
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.content-box+.content-box {
    margin-top: 30px;
}

.content-box>header {
    display: flex;
    margin: 30px 0 20px 0;
}

.content-box>header:first-of-type {
    margin-top: 20px;
}

.footer {
    min-width: var(--main-width);
    padding: 20px 0;
    margin-top: 30px;
    color: #fff;
    background-color: #000;
}

.footer a {
    color: #fff;
}

.footer .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    flex: none;
    width: 120px;
    margin-right: 30px;
}

.footer-info {
    flex: none;
}

.wrapper {
    width: var(--main-width);
    margin: 0 auto;
}

.graybox {
    position: relative;
    padding: 15px;
    border-radius: var(--base-border-radius);
    background-color: var(--base-bg-color);
}

.graybox-login {
    display: inline-block;
    padding: 1em 5em;
    border-radius: var(--base-border-radius);
    text-align: center;
    background-color: var(--base-bg-color);
}

.graybox-login a {
    color: var(--base-red-color);
}

.userbox {
    display: flex;
    justify-content: space-between;
}

.userbox-header {
    display: flex;
    align-items: center;
}

.userbox-footer {
    flex: none;
    justify-items: flex-end;
}

.user-avatar {
    flex: none;
    width: 80px;
    margin-right: 15px;
}

.user-info {
    flex: none;
}

.user-info h2 {
    font-size: 1.6em;
    margin-bottom: 6px;
}

.user-info h3 {
    font-size: 1.1em;
    font-weight: normal;
    color: #777;
}

.user-info h3 span+span {
    margin-left: 20px;
}

.user-logout {
    flex: none;
    align-self: flex-start;
    margin-left: 15px;
    padding-top: 6px;
}

.user-vipinfo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.user-vipinfo>h4 {
    flex: none;
    margin-right: 10px;
    font-size: 1em;
    font-weight: normal;
}

.user-vipinfo-icon {
    flex: none;
    width: 36px;
    margin-right: 10px;
}

.user-vipinfo-link {
    display: block;
    flex: none;
    width: 60px;
}

.user-vipprogress {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.user-vipprogress-bar {
    flex: none;
    width: 120px;
    height: 14px;
    border-radius: 100px;
    background-color: var(--base-gray-color);
    overflow: hidden;
}

.user-vipprogress-bar p {
    margin: 0;
    height: 100%;
    background-color: var(--base-yellow-color);
}

.user-vipprogress-text {
    flex: none;
    margin-left: 10px;
    font-size: 0.8em;
}

.user-balance {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.user-balance h3 {
    font-size: 1.1em;
    font-weight: normal;
    color: #777;
}

.user-balance h4 {
    margin-left: 10px;
    font-size: 1.1em;
    font-weight: normal;
}

.newsbox {
    display: flex;
    align-items: center;
    position: relative;
}

.newsbox-left {
    flex: none;
}

.newsbox-center {
    flex: auto;
    margin: 0 10px;
    overflow: hidden;
}

.newsbox-right {
    flex: none;
}

.newsbox-folder {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 15px;
    border-radius: var(--base-border-radius);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.newsbox-folder-list {
    padding: 10px;
}

.newsbox-folder-list li {
    margin: 15px 0;
}

.newsbox-folder-list li:first-child {
    margin-top: 0;
}

.newsbox-folder-list li:last-child {
    margin-bottom: 0;
}

.newsbox-folder-list li h3 {
    margin-bottom: 5px;
    font-size: 1em;
    font-weight: normal;
    color: var(--base-red-color);
}

.newsbox-folder-list li p {
    margin: 0;
}

.newslist {
    display: flex;
}

.newslist li {
    flex: none;
    margin-right: 25px;
}

.newslist li span {
    color: var(--base-red-color);
}

.newslist li p {
    display: inline-block;
    margin: 0;
}

.couponbox {
    display: flex;
    align-items: center;
}

.couponbox>header {
    flex: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding: 10px 15px;
    border: 1px solid var(--base-red-color);
    border-radius: var(--base-border-radius);
    background-color: #fff2f2;
}

.couponbox>article {
    flex: auto;
}

.couponbox>article>a {
    color: var(--base-red-color);
}

.couponbox-icon {
    flex: none;
    margin-right: 10px;
}

.couponbox-content {
    flex: auto;
    display: flex;
    align-items: center;
}

.couponbox-content h3 {
    margin-right: 10px;
}

.couponbox-content p {
    margin: 0;
}

.coupon-list {
    margin: 0;
}

.coupon-list li {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    margin: 15px 0;
    border: 1px solid #000;
    border-radius: var(--base-border-radius);
}

.coupon-list li:first-child {
    margin-top: 0;
}

.coupon-list li:last-child {
    margin-bottom: 0;
}

.coupon-list li>h4 {
    margin: 0 10px 0 0;
    font-size: 1.1em;
    font-weight: bold;
}

.coupon-list li.selected {
    border: 2px solid var(--base-red-color);
    background-color: #fff2f2;
}

.coupon-list li.selected .icon-selection {
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-selected.png") no-repeat;
    background-size: 100% 100%;
}

.coupon-list li.disabled {
    border-style: none;
    background-color: var(--base-gray-color);
    color: #777;
    opacity: 0.6;
    cursor: not-allowed;
}

.coupon-list li.normal {
    border-style: none;
    background-color: var(--base-bg-color);
}

.coupon-list-icon {
    flex: none;
    margin-right: 10px;
}

.coupon-list-content {
    flex: auto;
}

.coupon-list-footer {
    flex: none;
    margin-left: 5px;
}

.benefitbox {
    border-radius: var(--base-border-radius);
    height: 510px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/benefit-bg.jpg") no-repeat;
    background-size: cover;
    box-sizing: border-box;
    overflow: hidden;
}

.benefitbox .wrapper {
    width: 500px;
    height: 490px;
    margin: 0 auto;
    padding: 30px 15px 0;
    border-radius: 0 0 var(--base-border-radius) var(--base-border-radius);
    background-color: var(--base-bg-color);
    box-sizing: border-box;
}

.benefitbox h3 {
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
}

.benefitbox-content {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #f4cd78;
    border-radius: var(--base-border-radius);
    background-color: #fff;
}

.benefitbox-list {
    display: flex;
    justify-content: space-around;
}

.benefitbox-list li {
    flex: none;
    position: relative;
    width: 100px;
    padding: 10px;
    border-radius: var(--base-border-radius);
    background-color: var(--base-bg-color);
}

.benefitbox-list li aside {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 5px;
    border-radius: 0 var(--base-border-radius) 0 var(--base-border-radius);
    font-size: 0.8em;
    color: #fff;
    background-color: #888;
}

.tabs-benefit {
    display: flex;
}

.tabs-benefit li {
    flex: none;
    margin-right: 20px;
}

.tabs-benefit li a {
    display: block;
    padding-bottom: 5px;
    font-size: 1.3em;
    font-weight: bold;
}

.tabs-benefit li a.active {
    border-bottom: 2px solid var(--base-red-color);
}

.tabs-coupon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-coupon li {
    flex: none;
    margin: 0 20px;
}

.tabs-coupon li a {
    display: block;
    padding: 0.4em 0;
}

.tabs-coupon li.active a {
    border-bottom: 2px solid var(--base-red-color);
    font-weight: bold;
}

.list-goods {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.list-goods>li {
    border-radius: var(--base-border-radius);
    border: 2px solid transparent;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    transition: border 0.2s ease;
}

.list-goods>li.selected {
    border: 2px solid var(--base-red-color);
}

.list-goods>li>header {
    position: relative;
    padding: 25px 0 15px;
    background-color: #f7f2e6;
}

.list-goods>li>footer {
    padding: 10px;
}

.list-goods-imgbox {
    width: 80px;
    margin: 0 auto;
}

.list-goods-extra {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 15px 2px 10px;
    border-radius: 0 0 50px 0;
    font-size: 0.8em;
    text-align: center;
    color: #fff;
    background-color: var(--base-red-color);
}

.list-goods-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-goods-content h3 {
    font-weight: normal;
}

.list-goods-content h3 span {
    font-weight: bold;
    color: var(--base-red-color);
}

.list-goods-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    margin-top: 6px;
    border-radius: 100px;
    color: #fff;
    text-align: center;
    background-color: var(--base-red-color);
}

.list-goods-price h5 {
    font-size: 0.8em;
    font-weight: normal;
}

.list-goods-price-h1 {
    font-size: 1.3em;
}

.list-goods-price-h2 {
    font-size: 1.1em;
}

.list-payment {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.list-payment>li {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid transparent;
    border-radius: var(--base-border-radius);
    background-color: var(--base-bg-color);
    transition: all 0.3s ease;
}

.list-payment>li.selected {
    border: 2px solid var(--base-red-color);
    background-color: #fff2f2;
}

.list-payment-l {
    flex: none;
}

.list-payment-m {
    flex: none;
    margin: 0 10px;
    height: 40px;
}

.list-payment-m img {
    height: 100%;
    width: auto;
}

.list-payment-r {
    flex: auto;
}

.list-payment>li.selected .icon-payment-selection {
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-selected.png") no-repeat;
    background-size: 100% 100%;
}

.list-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-button li {
    flex: auto;
    margin: 0 10px;
    text-align: center;
}

.list-order-incomplete {
    padding: 5px 0;
}

.list-order-incomplete>li {
    margin: 10px 0;
}

.list-order-incomplete>li:first-child {
    margin-top: 0;
}

.list-order-incomplete>li:last-child {
    margin-bottom: 0;
}

.list-order-incomplete>li>dl {
    display: flex;
}

.list-order-incomplete>li>dl dt {
    flex: none;
}

.list-order-incomplete>li>dl dd {
    flex: auto;
    margin: 0 0 0 10px;
    text-align: right;
    color: #777;
}

.article {
    color: #777;
}

.article h3 {
    font-size: 1.2em;
    font-weight: normal;
    color: #333;
}

.flexbox-col2 {
    display: flex;
    justify-content: space-between;
}

.flexbox-col2>div {
    flex: none;
    width: 48%;
}

.flexbox-col2>div:first-child {
    margin-left: 0;
}

.flexbox-col2>div:last-child {
    margin-right: 0;
}

.adbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.adbox-list li {
    position: relative;
    padding: 10px;
    border-radius: var(--base-border-radius);
    background-color: #fff;
    text-align: center;
}

.adbox-list-pic {
    border: 3px solid #ebebeb;
    border-radius: var(--base-border-radius);
    overflow: hidden;
}

.adbox-list-content {
    margin-top: 5px;
}

.adbox-list-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
}

.message {
    position: fixed;
    top: 10vh;
    left: 30px;
    right: 30px;
    z-index: 99;
    border: 1px solid #888;
    border-radius: var(--base-border-radius);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    --animate-duration: 0.3s;
}

.message article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8em 1em;
    box-sizing: border-box;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.mask-loading {
    flex: none;
    width: 100px;
    padding: 20px;
    border-radius: var(--base-border-radius);
    background-color: #fff;
    box-sizing: border-box;
}

.mask-loading img {
    animation: rotate 2s linear infinite;
    transform-origin: center center;
}

.mask-box {
    flex: none;
    position: relative;
    width: 640px;
    padding: 20px;
    border-radius: var(--base-border-radius);
    background-color: #fff;
    box-sizing: border-box;
}

.mask-box h4 {
    margin: 10px 0;
    font-weight: normal;
}

.mask-box h4:first-child {
    margin-top: 0;
}

.mask-header {
    padding: 0 0 10px 0;
    text-align: center;
}

.mask-header h3 {
    font-size: 1.3em;
    color: #fa8304;
}

.mask-body {
    padding: 15px;
}

.mask-adbox {
    position: relative;
    width: 640px;
}

.mask-adbox .mask-header h3 {
    width: 400px;
    margin: 0 auto;
    text-align: center;
}

.scroll-box {
    max-height: calc(100vh - 400px);
    overflow-y: auto;
}

.inputbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #000;
    border-radius: var(--base-border-radius);
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
}

.inputbox input {
    display: block;
    flex: auto;
    padding: 0.4em 0;
    border: none;
    outline: none;
    font-size: 1em;
}

.btn-hollow-round {
    display: block;
    padding: 0.45em 1em;
    border: 1px solid #4d4a4a;
    border-radius: 100px;
    color: #fff;
    background-color: #282828;
    transition: all 0.3s ease;
}

.btn-hollow-round:hover {
    border-color: #6e6e6e;
    background-color: #454545;
}

.btn-arrow-down {
    display: block;
    width: 18px;
    height: 10px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-arrowdown-border.png") no-repeat;
    background-size: 100% 100%;
    transition: transform 0.2s ease;
}

.btn-pay {
    display: block;
    padding: 0.5em 3em;
    border-radius: 100px;
    font-size: 1.3em;
    color: #fff;
    background-color: var(--base-red-color);
    transition: all 0.3s ease;
}

.btn-pay:hover {
    background-color: #ff0a0f;
}

.btn-yellow {
    display: block;
    padding: 0.5em 3em;
    border-radius: 100px;
    font-size: 1.3em;
    color: #fff;
    background-color: var(--base-yellow-color);
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #ffbb28;
}

.btn-incomplete {
    display: block;
    padding: 0.5em 3em;
    border-radius: 100px;
    font-size: 1.3em;
    color: #fff;
    background-color: #faac04;
}

.btn-closepopup {
    position: absolute;
    top: 8px;
    right: 8px;
    display: block;
    width: 32px;
    height: 32px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-close.png") no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-closepopup:hover {
    opacity: 1;
}

.btn-clear {
    display: block;
    width: 24px;
    height: 24px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-clear.png") no-repeat;
    background-size: 100% 100%;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    opacity: 1;
}

.btn-switchaccount {
    display: block;
    width: 32px;
    height: 32px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-switch.png") no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-switchaccount:hover {
    opacity: 1;
}

.btn-closead {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 32px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/adbox-close.png") no-repeat;
    background-size: 100% 100%;
}

.disable {
    opacity: 0.7;
    filter: grayscale(1) contrast(0.6);
    cursor: not-allowed;
}

.icon-desktop,
.icon-language {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-desktop.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: text-bottom;
}

.icon-language {
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-language.png") no-repeat;
    background-size: 100% 100%;
}

.icon-arrow-down {
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-arrowdown.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: 2px;
    transition: transform 0.2s ease;
}

.icon-next-red {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-next-red.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: -2px;
}

.icon-speaker {
    display: block;
    width: 22px;
    height: 22px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-speaker.png") no-repeat;
    background-size: 100% 100%;
}

.icon-exclamation {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-exclamation.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: text-top;
}

.icon-selection {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-selection.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: text-top;
}

.icon-selected {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-selected.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: text-top;
}

.icon-coin {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 5px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-coin.png") no-repeat;
    background-size: 100% 100%;
    vertical-align: -3px;
}

.icon-payment-selection {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("//content-us.game-bean.com/image/titan_rush/recharge2604/icon-selection.png") no-repeat;
    background-size: 100% 100%;
}

.ml {
    margin-left: 15px;
}

.mt {
    margin-top: 15px;
}

.mt-lg {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

.color-red {
    color: var(--base-red-color);
}

.rotateup {
    transform: rotate(180deg)
}

.scroll-left {
    animation: scroll-left 22s linear infinite;
}

.scroll-left:hover {
    animation-play-state: paused;
}

.btn-aihelp {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 20;
    width: 60px;
    height: 60px;
    font-size: 0;
    line-height: 0;
    background: url('//content-us.game-bean.com/image/qmqj2/payment_om/button-cs.png') no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.AIHelpSupportBox {
    width: 375px;
    height: 600px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 32px;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    border-radius: 8px;
}

.AIHelpSupportClose {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    cursor: pointer;
    opacity: 1;
}

.AIHelpSupportClose:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    top: 13px;
    left: 5px;
}

.AIHelpSupportClose:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
    top: 13px;
    left: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}