
body{
    position: relative;
    background-color: #f5f5f5;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    min-height: 800px;
    overflow: auto;
}
.flex{
    display: flex;
}
.game_box{
    width: 1024px;
    height: 650px;
    margin: auto;
    margin-top: 100px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
}
.game-item{
    min-width: 150px;
    position: relative;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    position: relative;
    flex: 0 0 20%;
    margin-bottom: 20px;
}
.game-title{
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #8b8585;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    padding: 35px;  /* 控制整个列表的左右边距 */
    box-sizing: border-box;  /* 确保padding也计算在宽度内 */
}
.items-center{
    align-items: center;
    text-align: center;
}
.item-shadow{
    width: 80%;
    height: 90px;
    border-radius: 20px;
    margin: auto;
    position: relative;
    margin-top: -50px;
    padding-top: 50px;
    z-index: 998;
}

.game-name {
    text-align: center;
}
.game-name p{
    font-size: 14px;
}
.game-icon {
    border-radius: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.game-icon img {
    width: 100px;  /* 图标尺寸 */
    height: 100px;  /* 图标高度 */
    border-radius: 100px;  /* 图标圆角 */
    margin: auto;
    z-index: 1000;
}
.play-now{
    font-size: 12px;
    border-radius: 8px;
    width: 80%;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    margin: auto;
}

.play-now:hover{
   opacity: 1;
}
.text-color-white{
    color: white;
}
.opacity-80{
    opacity: .8;
}
.text-opacity-60{
    opacity: .6;
}
.relative{
    position: relative;
}
.bg-opacity-20{
    opacity: 20;
}
.cursor-pointer {
    cursor: pointer;
}

.bg-color-b4{
    --tw-bg-opacity: 1;
    background-color: rgb(var(--color-b4) / var(--tw-bg-opacity));
}
.game-window{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #aa2b2b;
}
.game-window-top{
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #8b8585;
    position: relative;
}
.game-window-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    opacity: 0.8;
    overflow: hidden;
}
.game-window-close:hover{
    opacity: 1;
}
.justify-center{
    justify-content: center;
}

.game-window-close i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: white; /* 设置初始颜色 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; /* 添加动画过渡效果 */
    display: inline-block; /* 确保元素是行内块级元素 */
    border-radius: 50%; /* 圆形背景 */
    background-color: rgba(0, 0, 0, 0.5); /* 背景半透明黑色 */
}

.game-window-close i:hover {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: red; /* 鼠标悬停时更改颜色 */
    animation: rotate 2s infinite linear; /* 2秒钟旋转一圈，线性动画，循环无限次 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 鼠标悬停时添加阴影 */
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-window-close i.rotating {
    animation: rotate 2s infinite linear; /* 2秒钟旋转一圈，线性动画，循环无限次 */
}

.game-container{
    width: 100%;
    height: calc(100% - 60px);
    border-radius-bottom-right: 10px;
    border-radius-bottom-left: 10px;
    overflow: hidden;
}
.icp_filings_body   {
    width: 100%;
    height: 40px;
    line-height: 24px;
    font-size: 14px;
    color: #999;
    text-align: center;
    bottom: 30px;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
}
.icp_filings_body a {
    width: 100%;
    color: #999;
    text-decoration: none;
}
.icp_filings_body a:hover {
    color: #333;
}