* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 重置a标签样式，移除所有默认样式 */
a {
    text-decoration: none !important;
    color: inherit !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    color: inherit !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background:black;
    background-image: url('../img/bg.png');
}

.history-img{
    height:50px;
    width:50px; 
    border-radius:10px;
    overflow: hidden;
}

.history-img2{
    height:80px;
    width:80px; 
    border-radius:20px;
    overflow: hidden;
}


.container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 10px;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center top;
    min-height: 100vh;
}


.footer{
    text-align: center;
    margin:20px auto;
    text-align: center;
}

.footer-logo img{
    height: auto;
    max-height:50px;
    margin:0 auto;
}

.footer-content{
    font-size:16px;
    color:#fff;
    margin-top:10px;
}




/* 游戏描述区域样式 */
.game-description{
    width:95%;
    margin:0 auto;
    background-color: #fff;
    border-radius:10px;
    padding:10px;
    line-height: 40px;
    margin-top:10px;

}

.game-title{
    color:#2383f5;
    border-bottom:1px solid #eee;
    font-size:24px;
    display:inline-block;
    width:100%;
}

.rich-text-content {
    margin-top: 15px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    overflow: hidden;
    padding:10px;
}


/* 响应式设计 */
/* 手机端 - 一行一个大框 */
@media (max-width: 480px) {
    .container, .footer{
        max-width: 430px;
    }

    
}

/* 非手机端 - 一行两个大框 */
@media (min-width: 481px) {
    .container, .footer{
        max-width: 800px;
    }

    
}