html,body{
    margin: 0;padding: 0;
    background: #FFFFFF;
    min-height: 100vh; /* 确保 body 至少有视口高度 */
    display: flex;
    flex-direction: column; /* 使子元素垂直排列 */
}

.head{
    height: 68px;top: 0; width: 100%;position: fixed;left: 0;background: #FFFFFF;z-index: 1000;
}

.logo{
    width: 88%;margin: auto;
}

.icon{
    height: 33px;
    width: 37px;
}

.domain{
    font-size: 16px;line-height: 16px;color: #180F38;
    font-family: "Jaro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.text{
    font-weight: 400;font-size: 13px;line-height: 16px;color: #999999
}

.games{
    width: 100%;background: #FFFFFF;min-height:100%;margin: auto;flex: 1;
}

.btn-text{
    width: 130px;height: 33px;background: #752DEB;border-radius: 16px;color: #FFFFFF;font-size: 13px;float: right;border: none;
}

.my-played,.hot{
    width: 88%;margin: auto;
}

.game-title{
    height: 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 305;
    color: #000000;
}

.game-tips{
    height: 16px;
    font-size: 10px;
    line-height: 16px;
    font-weight: 305;
    color: #9CA3AF;
}

.played-games{
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.hot-games{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}

.hot-game-item{
    width:100%;
    margin-top: 8px;
    height: 117px;
    /*display: inline-block;*/
}

.hot-games a{
    width: 32%;
    margin-bottom: .5rem;
    margin-left: .65%;
    margin-right: .65%;
    text-decoration: inherit;
}

@media (min-width: 640px) {
    .hot-games a {
        width: 117px;
    }
}
.footer-all{
    width: 65%;margin: auto;background: #FFFFFF
}
@media (min-width: 955px) {

    .footer-all{
        width: 400px;
    }
}


.played-game-item{
    width: 80px;
    height: 90px;
    display: inline-block;
}

.hot-game-icon{
    height: 95%;border-radius: 10px;display: block;object-fit: cover;max-width: 95%;vertical-align: middle;
    border: 2px solid rgb(0,0,0,0.1);
}

.played-game-icon{
    width: 70px;height: 70px;border-radius: 10px; border: 2px solid rgb(0,0,0,0.1);
}

.played-game-name,.hot-game-name{
    font-size: 10px;
    line-height: 16px;
    font-weight: 305;
    height: 16px;
    color: #000000;
    width: 100%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-game-name{
    text-align: left;
}

.footer{
    height: 20px;background: #FFFFFF;
}

.footer > div{
    font-size: 14px;
    color: #091227;
    height: 20px;
}

.footer img{
    width: 20px;
    height: 20px;
}

.footer-one > a{
    display:flex;                                  // 图片居中对齐需要
    vertical-align: center;
}

.footer-span{
    margin-top: 1px;
    margin-left: 6px;
    font-size: 14px;
    color: #091227;
}

.width70px{
    width: 70px;
}

a{
     text-decoration: none;
}
/*去除未被访问的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;
}
