/* 基础样式 */
:root {
    --primary-color: #4a90e2;
    --text-color: #333;
    --background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* 头部样式 */
.site-header {
    background-color: #3a3d41;
    margin: 0;
    padding: 10rem 0 4rem;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .site-header .home {
    position: absolute;
    left: 24rem;
  }
  
  .site-header .icon {
    margin-bottom: 12rem;
  }
/* 首页容器 */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* 热门游戏区域 */
.hot-games-inner {
    position: relative;
    margin-bottom: 0;
    margin-top: 36rem;
    padding: 12rem 24rem 0rem 24rem;
    margin-left: -24rem;
    font-size: 0;
    list-style: none;
}

.hot-game-item {
    width: 25%;
    vertical-align: top;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 20rem;
    padding-left: 20rem;
    line-height: 1.71429;
    transition: all .16s ease;
}

.hot-game-item a {
    text-decoration: none;
    color: var(--text-color);
}

.hot-game-item img {
    display: block;
    width: 133rem;
    height: 100rem;
    margin: auto;
    overflow: hidden;
    border-radius: 10rem;
}

.hot-game-item .ellipsis {
    display: inline-block;
    margin: 0;
    margin-top: 20rem;
    text-transform: none;
    color: #97989b;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* 分类区域 */
.category-container {

}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10rem 0 10rem;
    padding: 15rem 12rem 10rem;
}

.category-title {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
    margin-left: 10rem;
}
.category-title img {
    width: 40rem;
    height: 40rem;
    position: relative;
    top: 5rem;
}

.category-title h4 {
    margin: 0;
    font-size: max(36rem,12px);
    font-weight: 400;
    line-height: 1.5;
    color: #636669;
}

/* 游戏列表 */
.game-list {
    position: relative;
    margin-bottom: 0;
    margin-left: -20rem;
    font-size: 0;
    list-style: none;
}

.game-item {
    width: 33.33%;
    vertical-align: top;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 20rem;
    padding-left: 20rem;
    line-height: 1.71429;
    transition: all .16s ease;
}

.game-item a {
    text-decoration: none;
    color: var(--text-color);
}

.game-item img {
    display: block;
    width: 133rem;
    height: 100rem;
    margin: auto;
    overflow: hidden;
    border-radius: 10rem;
}

.game-item .ellipsis {
    display: inline-block;
    margin: 0;
    margin-top: 20rem;
    text-transform: none;
    color: #97989b;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* 文本省略 */
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.5rem;
    text-align: center;
}

/* 页脚 */
.site-footer {
    padding-top: 30rem;
    padding-bottom: 10rem;
    text-align: center;
    background-color: #2f3237;
    color: #89949b;
    font-size: 24rem;
}

.site-footer a {
    width: 100%;
    justify-content: center;
    text-decoration: underline;
    font-size: 30rem;
    color: #89949b;
    padding: 10rem;
}

.site-footer a:hover {
    color: var(--primary-color);
}

.site-footer p {
    margin-top: 10rem;
    margin-bottom: 30rem;
}
