body {
    padding: 0;
    margin: 0;
    background: #f7f6ff;
}

/*去除a标签下划线*/
a {
    text-decoration: none;
    /* 去除默认的下划线 */
    color: #000;
}

/*去除未被访问的a标签的下划线*/
a:link {
    text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
    text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
    text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
    text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
    text-decoration: none;
}


/* 文字截断 */
.text_cut {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* 底部距离 */
.margin_bottom {
    margin-bottom: 10px;
}

.margin_top {
    margin-top: 10px;
}

/* 导航 */
.header {
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.header .actbtn {
    width: 28px;
    height: 28px;
    display: flex;
}

.header .title {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

/* 菜单 */
.menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .58);
}

.menu .content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background-color: white;
}

.menu .content .close {
    text-align: center;
}

.menu .content .close img {
    width: 42px;
    height: 42px;
}

.menu .content .menu_li {
    padding: 0px 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.menu .content .menu_li a {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: block;
    margin-bottom: 20px;
}


/* 广告 */
.adver_title{
    background-color: white;
    font-size: 14px;
    text-align: center;
    color: #7C848C;
}
.adver_cart {
    width: 100%;
    height: 300px;
    background-color: white;
}

/* banner */
.adver_banner {
    width: 100%;
    background-color: white;
}


/* 页脚 */
.footer {
    color: #999;
    font-weight: normal;
    font-size: 14px;
    padding: 30px 0px;
    box-sizing: border-box;
}

.footer .ali {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.footer .ali a {
    color: #ff9c60;
}

/* 卡片 */
.card {
    background-color: white;
    padding: 10px;
    box-sizing: border-box;
    color: black;
    font-size: 16px;
    font-weight: normal;
}



/* 黑幕 */

.oafg-container {
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #000;
    position: fixed;
}

.oafg-inner {
    display: flex;
    width: 100%;
    min-height: 300px;
    justify-content: center;
    align-items: center;
}

.oafg-container .foot-action-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    /* padding-right: 20px; */
    padding-bottom: 20px;
    text-align: right;
}

.click-counter {
    padding-right: 20px;
    font-size: 14px;
}

.click-btn {
    border: 1px solid #ddd;
    border-right: none;
    /* display: inline-block; */
    display: none;
    font-weight: bold;
    padding: 10px 0 10px 20px;
    font-size: 16px;
}

.close-counter {
    font-size: 14px;
    color: #ddd;
    margin-top: 5px;
    margin-right: 20px;
}

.click-btn-inner {
    padding-right: 20px;
}

.global.game-playing #view1__ad {
    padding-top: 15px;
}

a.loading-bar {
    color: #fff;
}