/* 内容主体 */
.main .games>h2 {
    font-size: 20px;
    margin-bottom: 16px;
}
.main .games .games_list {
    display: grid;
    grid-gap: 10px 10px;
    grid-template-columns: repeat(2, calc((100% - 10px) / 2));
    width: 100%;
}
.main .games .games_list>li>a {
    display: block;
    width: 100%;
    transition: all .3s;
    position: relative;
}
.main .games .games_list>li>a .thumb {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, .8);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    position: relative;
}
.main .games .games_list>li>a .thumb>img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    /* object-fit: contain;
    object-position: center; */
}
.main .btn {
    display: block;
    line-height: 50px;
    color: #fff;
    text-align: center;
    margin: 16px auto 0 auto;
    width: 80%; /* 确保按钮的宽度 */
    max-width: 300px; /* 最大宽度 */
    height: 50px;
    background: var(--globalColor);
    font-size: 16px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, .3);
    border-radius: 6px;
}
.dec {
    margin-bottom: 20px;
}
.main .dec>p {
    line-height: 20px;
    color: var(--defaultColor);
    font-family: Montserrat-Regular;
}
.main .games .games_list .adbox {
  grid-column: 1 / -1; /* ✅ 占满整行 */
  width: 100%;
  height: 250px !important;
  margin: 12px 0;
  display: block; /* 确保是独立块级 */
}

.games_list.bgMain03 {
    display: grid!important;
    grid-gap: 12px 12px!important;
    grid-template-columns: repeat(1, 100%)!important;
    width: 100%!important;
}
.games_list.bgMain03>li {
    width: 100%!important;
}
.games_list.bgMain03>li>a{
    display: block!important;
    width: 100%!important;
    transition: all .3s!important;
    position: relative!important;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, .2)!important;
    background: #fff!important;
    border-radius: 12px!important;
    padding: 2px!important;
}
