@charset "utf-8";

/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100%;
}
body {
    font-size: 14px;
    /*font-family: 'Noto Sans SC','Microsoft Yahei', sans-serif;*/
    font-style: normal;
    font-family: 'PingFang SC','Microsoft Yahei','sans-serif';
    background-color: #262626;
}
a{text-decoration: none;}
ul,ol{list-style: none;}

:root{
    --primary: #2CDBBF;
}
.bottom-footer-divider{
    height: 77px;
}


/*--- icp ---*/
.icp-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 12px;
    color: #ccc;
}
.icp-box .copyright{
    margin: 3px 0;
}
.icp-box .icp{
    margin: 3px 0;
    color: var(--primary);
}


/*--- tab bar ---*/
.game-tab-bar{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 67px;
    background: #333;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
}
.game-tab-bar .game-tab-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.game-tab-bar .game-tab-item .game-tab-item-icon{
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-size: cover;
}

.game-tab-bar .game-tab-item.game-tab-item-index .game-tab-item-icon{
    background-image: url("../tabbar/index-normal.png");
}
.game-tab-bar .game-tab-item.game-tab-item-buy .game-tab-item-icon{
    background-image: url("../tabbar/buy-normal.png");
}
.game-tab-bar .game-tab-item.game-tab-item-sell .game-tab-item-icon{
    background-image: url("../tabbar/sell-normal.png");
}
.game-tab-bar .game-tab-item.game-tab-item-msg .game-tab-item-icon{
    background-image: url("../tabbar/msg-normal.png");
}
.game-tab-bar .game-tab-item.game-tab-item-my .game-tab-item-icon{
    background-image: url("../tabbar/my-normal.png");
}

.game-tab-bar .game-tab-item.game-tab-item-index.active .game-tab-item-icon{
    background-image: url("../tabbar/index-active.png");
}
.game-tab-bar .game-tab-item.game-tab-item-buy.active .game-tab-item-icon{
    background-image: url("../tabbar/buy-active.png");
}
.game-tab-bar .game-tab-item.game-tab-item-sell.active .game-tab-item-icon{
    background-image: url("../tabbar/sell-active.png");
}
.game-tab-bar .game-tab-item.game-tab-item-msg.active .game-tab-item-icon{
    background-image: url("../tabbar/msg-active.png");
}
.game-tab-bar .game-tab-item.game-tab-item-my.active .game-tab-item-icon{
    background-image: url("../tabbar/my-active.png");
}

.game-tab-bar .game-tab-item .game-tab-item-text{
    font-weight: 700;
    font-size: 16px;
    color: #8D8D8D;
    line-height: 20px;
}
.game-tab-bar .game-tab-item.active .game-tab-item-text{
    color: var(--primary);
}

.game-tab-bar .game-tab-item.game-tab-mid-item{
    flex: 0 0 90px;
}
.game-tab-bar .game-tab-item.game-tab-mid-item .game-tab-item-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -30px;
    z-index: 1;
    background-image: url("../tabbar/sell-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.game-tab-bar .game-tab-item.game-tab-mid-item .game-tab-item-text{
    color: #fff;
    margin-top: 3px;
}

/*--- 弹窗 ---*/
.pop-mask{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}
.pop-mask.show{display: flex;}
.pop-mask.bg-trans{background: transparent;}
.pop-mask .pop-content{
    width: 300px;
    text-align: center;
    border-radius: 6px;
    background: #fff;
}
.pop-mask .pop-content .pop-title-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 10px;
}
.pop-mask .pop-content .pop-title-bar .pop-title-left-btn,
.pop-mask .pop-content .pop-title-bar .pop-title-right-btn{
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.pop-mask .pop-content .pop-title-bar .pop-title-right-btn{
    font-size: 26px;
}
.pop-mask .pop-content .pop-title-bar .pop-title{
    flex: 1;
    padding-top: 15px;
}
.pop-mask .pop-content .pop-msg{
    min-height: 40px;
    font-size: 15px;
    line-height: 1.4;
    color: #999;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 15px;
}
.pop-mask .pop-content .pop-btn-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    line-height: 48px;
    font-size: 18px;
}
.pop-mask .pop-content .pop-btn-box .pop-left-btn,
.pop-mask .pop-content .pop-btn-box .pop-right-btn{
    flex: 1;
}
.pop-mask .pop-content .pop-btn-box .pop-right-btn{
    color: #007aff;
}

.pop-mask .loading-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 10px;
    background: rgba(0,0,0,.6);
}
.pop-mask .loading-content .loading{
    width: 50px;
    height: 50px;
    border: 5px solid rgba(65, 159, 255, 0.3);
    border-top-color: #419fff;
    border-radius: 50%;
    animation: circleLoading 1s linear infinite;
}
.pop-mask .loading-content .loading-msg{
    color: #fff;
    margin-top: 30px;
}
.pop-mask .loading-content .loading-msg:empty{
    display: none;
}
@keyframes circleLoading {
    to { transform: rotate(360deg); }
}

