html,
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    color: #333;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 0;
    width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

*,
::after,
::before {
    box-sizing: border-box;
}



#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 60px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: 1px solid #d9d9d9;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
}

.t_1l {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.t_12 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.t_13 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.t_14 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
    margin: 0%;
    padding: 0;
    color: #333;
}

header {
    background: #D9F2FF;
    box-shadow: 0px 4px 4px 0px #000;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    padding-right: 10px;
    max-width: 1200px;
    margin: auto;
}

.logo a {
    font-family: 'Nunito';
    font-size: 28px;
    font-weight: 800;
    line-height: 40px;
    padding: 10px 10px;
    display: block;
    color: #333;
}

.nav-links {
    width: auto;
    display: flex;
    list-style-type: none;
    margin: 10px auto;
    padding: 0;
}

.nav-links li a {
    text-transform: capitalize;
    color: #fff;
    font-family: 'Nunito';
    padding: 10px 24px;
    display: block;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.nav-links li a.active,
.nav-links li a:hover {
    color: #0080A3;
}

.navbar .sear-btn,
.navbar .hone-btn,
.navbar .cate-btn {
    padding: 10px;
    border-radius: 50%;
    border: 1.5px solid #333;
    background-color: #fff;
}

.navbar .sear-btn a,
.navbar .hone-btn a,
.navbar .cate-btn a {
    display: flex;
}

.navbar .sear-btn i,
.navbar .hone-btn i,
.navbar .cate-btn i {
    color: #333333;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.line1,
.line2,
.line3 {
    width: 22px;
    height: 2px;
    margin: 2px;
    background: #f87e10;
}

.back-to-top {
    border: none;
    position: fixed;
    bottom: 160px;
    right: 65px;
    z-index: 99;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    background-color: transparent;
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    top: 6px;
    left: 10px;
    z-index: 0;
}


.back-to-top i {
    color: #FFEA7F;
    font-size: 30px;
    z-index: 99;
    position: relative;
}

.navbar .hone-btn,
.navbar .cate-btn,
.nav-links .close {
    display: none;
}

.navbar .cate-btn {
    margin: 0 24px;
}



@media (max-width:1200px) {
    .logo a {
        font-size: 28px;
    }

    .nav-links li a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width:992px) {
    .nav-links .close {
        display: block;
        margin: 10px auto;
    }

    .nav-links .close i {
        color: #0080A3;
    }

    .navbar .hone-btn,
    .navbar .cate-btn {
        display: flex;
    }

    .logo {
        margin-right: auto;
    }

    .logo a {
        font-size: 28px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        /* 将导航链接改为纵向布局 */
        background-color: #fff;
        /* 为导航链接添加背景色 */
        padding: 10px;
        /* 为导航链接添加内边距 */
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 55px;
        height: 100vh;
        margin: auto;
    }

    .navbar {
        padding: 3px 20px;
    }

    .nav-links.nav-active {
        display: flex;
        position: fixed;
    }

    .navbar .sear-btn,
    .navbar .hone-btn,
    .navbar .cate-btn {
        padding: 6px;
    }

    .navbar .sear-btn i,
    .navbar .hone-btn i,
    .navbar .cate-btn i {
        font-size: 14px;
    }

}

@media (max-width:550px) {
    .logo a {
        font-size: 22px;
        line-height: 30px;
        padding: 3px 10px;
    }

    .navbar {
        padding: 3px 10px 3px 0;
    }
}


.heading {
    color: #333;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    padding-bottom: 12px;
    /* 120% */
}

.games-1 .heading,
.games-2 .heading,
.games-3 .heading {
    padding-left: 12px;
}

section {
    padding-top: 24px;
}

.font-size-16 {
    font-family: 'Nunito';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #333;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}


.games-1 {
    border-radius: 0px 0px 160px 160px;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}

.games-1 .flex a {
    display: block;
    padding: 12px;
    width: 25%;
}

.games-1 .flex a .item {
    border-radius: 20px;
    border: 12px solid #D9F2FF;
    background: #FFF6CC;
    padding: 12px;
}

.games-1 .flex a .item img {
    display: block;
    width: 100%;
    aspect-ratio: 1/0.84;
    background-color: #d9d9d9;
    border-radius: 16px;
    margin-bottom: 16px;
    object-fit: cover;
}

.games-1 .more-games {
    width: max-content;
    padding: 12px 0 24px;
}

.games-2 .flex .box-2 .popular-game .more-games {
    width: calc(100% - 24px);
    padding: 12px 0 0;
}

.more-games {
    margin: auto;
    text-align: center;
}

.more-games a {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 200px;
    border-radius: 20px;
    background: #FFEA80;
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 128.571% */
}

.more-games a i {
    font-size: 14px;
    line-height: 18px
}

.games-2 {
    background: #FAFDFF;
}

.games-2 .flex {
    align-items: flex-start;
}

.games-2 .flex .box-1 {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.games-2 .flex .box-1 a {
    display: block;
    padding: 12px;
    grid-column: span 1;
    grid-row: span 1
}

.games-2 .flex .box-1 a .item {
    border-radius: 20px;
    border: 1px solid #E2E2E2;
    background: #FFF;
    padding: 8px 8px 16px;
}

.games-2 .flex .box-1 a .item img {
    display: block;
    width: 100%;
    aspect-ratio: 1/0.75;
    background-color: #d9d9d9;
    border-radius: 16px 16px 0px 0px;
    margin-bottom: 8px;
    object-fit: cover;
}

.games-2 .flex .box-1 a .item .play-btn {
    border-radius: 20px;
    background: #FFEA80;
    width: 80%;
    margin: 12px auto 0;
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    padding: 12px;
    text-align: center;

}

.games-2 .flex .box-1 a:nth-child(1) {
    grid-column: 3/5;
    grid-row: 1/3;

}

.games-2 .flex .box-1 a:nth-child(1) .title {
    width: 90%;
    text-align: center;
}

.games-2 .flex .box-2 {
    width: 30%;
}

.games-2 .flex .box-2 .top-game {
    padding-bottom: 12px;
}

.games-2 .flex .box-2 .top-game a {
    display: block;
    padding: 12px;
}

.games-2 .flex .box-2 .top-game a .item {
    align-items: center;
    padding: 8px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

.games-2 .flex .box-2 .top-game a .item .cover {
    display: block;
    width: 35%;
    aspect-ratio: 1/0.7;
    background-color: #d9d9d9;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

.games-2 .flex .box-2 .top-game a .item .text {
    width: 65%;
    padding-left: 8px;
}

.games-2 .flex .box-2 .top-game a .item .text .title {
    margin-bottom: 8px;
}

.games-2 .flex .box-2 .top-game a .item .text .like {
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}


.games-2 .flex .box-2 .popular-game {
    padding: 24px 0;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
}

.games-2 .flex .box-2 .popular-game a {
    display: block;
    padding: 12px;
}

.games-2 .flex .box-2 .popular-game a .item {
    align-items: center;
}

.games-2 .flex .box-2 .popular-game .cover {
    display: block;
    width: 80px;
    aspect-ratio: 1/1;
    background-color: #d9d9d9;
    object-fit: cover;
    border-radius: 50%;
}

.games-2 .flex .box-2 .popular-game .title {
    width: calc(100% - 135px);
    padding: 0 12px;
    height: 40px;
}

.games-2 .flex .box-2 .popular-game .star {
    width: 55px;
    color: #8E8F90;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 128.571% */
}

.games-2 .flex .box-2 .popular-game .star img {
    vertical-align: text-top;
    padding-right: 2px;
}

.games-2 .flex .box-2 .popular-game .heading {
    padding-left: 24px;
    padding-bottom: 0
}

.games-3 {
    border-radius: 0px 160px 0px 0px;
    background: #D9F2FF;
    position: relative;
}

.games-3::before {
    content: '';
    position: absolute;
    max-width: 468px;
    max-height: 468px;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translate(0, -50%);
    left: -234px;
    border: 20px solid #FFF;
    border-radius: 50%;
    z-index: 0;
}

.games-3 .heading,
.games-3 .flex {
    position: relative;
    z-index: 99;
}

.games-3 .flex a {
    display: block;
    padding: 12px;
    width: 50%;
}

.games-3 .flex a .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 20px;
    background: #FFEA7F;
}

.games-3 .flex a .item .text {
    width: 50%;
    padding: 0 24px;
}

.games-3 .flex a .item .cover {
    width: 50%;
    display: block;
    background-color: #d9d9d9;
    aspect-ratio: 1/0.7;
    border-radius: 0 20px 20px 0;
}

.games-3 .flex a .item .like {
    padding: 12px 0 24px;
}

.games-3 .flex a .item .play-btn {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgba(255, 128, 244, 0.24);
    padding: 12px 48px;
    width: max-content;
    color: #000;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 128.571% */
}

.games-3 .flex a .item .like {
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.games-2 {
    padding-bottom: 24px;
}

.games-3 {
    padding-bottom: 12px;
}

.info {
    border-radius: 0px 0px 0px 160px;
    background: #FFEA7F;
    position: relative;
    overflow: hidden;
    padding-bottom: 24px;
}

.info::before {
    content: '';
    position: absolute;
    max-width: 338px;
    max-height: 338px;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translate(0, -50%);
    right: -234px;
    border: 20px solid #FFF;
    border-radius: 50%;
    z-index: 0;
    overflow: hidden;
}

.info .container{
    padding: 0 12px;
}

.info .text {
    padding: 0 12px;
  border-radius: 20px;
    background: #FFF;
}

.info .text .box {
    padding: 48px;
  position: relative;
    z-index: 99;
}

.info .text p {
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
}


.info .text .h1 {
    color: #333;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 4px;
}

.info .text .box div {
    height: 10px;
}

footer {
    padding: 24px 0;
}

footer .share {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

footer .share a {
    display: flex;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 50%;
}

footer .pt {
    width: 50%;
    text-align: center;
}

footer .pt a {
    color: #333;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    padding: 0 24px 0 36px;
    position: relative;
}

footer .pt a::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-color: #B2E5FF;
    left: 0;
    top: 4px;
    border-radius: 50%;
}

footer .footer-copy {
    width: 100%;
    color: #333;
    text-align: center;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-top: 24px;
    /* 125% */
}

.dt .cover {
    width: 138px;
    height: 138px;
    border-radius: 16px;
    background: #D9D9D9;
    display: block;
    object-fit: cover;
}

.dt .flex {
    position: relative;

}

.dt a .text {
    width: calc(100% - 138px);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.dt a .text .top,
.play-box .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dt a .text .top .cate,
.play-box .top .cate {
    color: #0080A3;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
      text-transform: capitalize;
    /* 128.571% */
}

.dt a .text .top .cate i,
.play-box .top .cate i {
    font-size: 12px;
    padding-left: 8px;
}

.dt a .text .top .other,
.play-box .top .other {
    padding: 8px 24px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.06);
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 128.571% */
}

.dt a .text .top .other i,
.play-box .top .other i {
    color: #F0962D;
    padding-right: 8px;
}

.dt .title {
    color: #333;
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    /* 120% */
}

.dt .star {
    color: #8E8F90;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    /* 128.571% */
}

.dt .star img {
    vertical-align: top;
    padding-right: 4px;
}

.dt .paly-btn {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 20px;
    background: #FFEA80;
    width: max-content;
    padding: 12px 96px;
    display: flex;
    align-items: center;
}

.dt .paly-btn i {
    font-size: 20px;
    padding-left: 8px;
    line-height: 20px;
}

.dt .desc {
    padding-top: 12px;
}

.dt .desc .head {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.dt .desc .text {
    height: 68px;
    overflow: auto;
    padding-right: 8px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
}

.dt .desc .text::-webkit-scrollbar {
    background-color: #E9E9E9;
    width: 6px;
}

.dt .desc .text::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #B2E5FF;
}

.dt {
    padding-bottom: 24px;
    border-radius: 0px 0px 80px 80px;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}

.dt .container {
    padding: 0 12px;
}

.play-box {
    max-width: 800px;
    margin: auto;
    padding: 12px 24px;
}

#play-game {
    background: #D9F2FF;
    border-radius: 20px;
    display: flex;
}

.palymain {
    position: relative;
    width: calc(100% - 72px);
    aspect-ratio: 1 / 0.9;
    background: #FFF6CC;
    border: 12px solid #D9F2FF;
    border-right: 0;
    border-radius: 20px 0 0 20px;

}

.palymain .bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    text-align: center;
}

.palymain .bg .coverImg {
    width: 130px;
    height: 130px;
    background-color: #D9D9D9;
    border-radius: 16px;
    object-fit: cover;
}

.palymain .bg .dt-title {
    color: #333;
    text-align: center;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    padding: 12px 0;
    /* 120% */
}

.palymain .bg .palybtn {
    cursor: pointer;
}

.palybuttom {
    width: 72px;
    padding: 48px 0;
    display: flex;
    flex-direction: column-reverse;
}

.palybuttom .botton-love {
    margin: 48px auto;
    text-align: center;
    cursor: pointer;
}

.palybuttom .botton-love {
    background-image: url(../images/favorite.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 27px;
    height: 50px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: auto;
    margin-left: auto;
}

.palybuttom .botton-love.active {
    background-image: url(../images/favorite-active.svg);
    background-repeat: no-repeat;
    background-size: 27px;
    background-position: center;
    height: 50px;
    cursor: pointer;
    width: auto;
    margin-left: auto;
}

.palybuttom .botton-love span {
    color: #333;
    font-feature-settings: 'liga' off;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-top: 40px;
    display: inline-block;
  width: 30px;
    /* 125% */
}

#play-game {
    margin-top: 12px
}

#play-game .botton-full {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#play-game .botton-full .icon-fullscreen {
    color: #333;
    font-size: 20px;
}

.games-1 .box-2 a {
    display: block;
    padding: 12px;
    width: 20%;
}

.cate-game-2 .box-1 a {
    display: block;
    padding: 12px;
    width: 25%;
}

.games-1 .box-2 a .item,
.cate-game-2 .box-1 a .item {
    border-radius: 20px;
    border: 1px solid #E2E2E2;
    background: #FFF;
    padding: 8px 8px 16px;
}

.games-1 .box-2 a .item img,
.cate-game-2 .box-1 a .item img {
    display: block;
    width: 100%;
    aspect-ratio: 1/0.75;
    background-color: #d9d9d9;
    border-radius: 16px 16px 0px 0px;
    margin-bottom: 8px;
    object-fit: cover;
}


.cate-game-2 .box-1 {
    width: 70%;
}

.cate-game-2 .top-game {
    width: 30%;
}


.cate-game-2 .top-game a {
    display: block;
    padding: 12px;
    width: 100%;
}

.cate-game-2 .top-game a .item {
    align-items: center;
    padding: 8px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

.cate-game-2 .top-game a .item .cover {
    display: block;
    width: 35%;
    aspect-ratio: 1/0.85;
    background-color: #d9d9d9;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

.cate-game-2 .top-game a .item .text {
    width: 65%;
    padding-left: 8px;
}

.cate-game-2 .top-game a .item .text .title {
    margin-bottom: 8px;
}

.cate-game-2 .top-game a .item .text .like {
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search {
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 0 24px 24px;
    position: relative;
}

.search input {
    width: 100%;
    border-radius: 100px;
    border: 1.5px solid #333;
    background: #FFF;
    padding: 11px 24px;
    outline: none;
}

.search input::placeholder{
    color: #333;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.search .search_btn {
    position: absolute;
    top: 11px;
    right: 48px;
}

.cate-game{
    box-shadow:none
}

.nav-links li a{text-align: center;}

@media (max-width:992px) {
  .games-3 .flex a .item .play-btn{
    padding: 8px 36px;
  }
  .games-3 .flex a .item .like{    padding: 12px 0 12px;}

}


@media (max-width:768px) {
  .info .container{
    padding: 0 0px;
}
  .games-1{
    border-radius: 0px 0px 80px 80px;
  }
  .games-3 {
    border-radius: 0px 80px 0px 0px;}
  .info {
    border-radius: 0px 0px 0px 80px;
  }
    .games-1 .flex a {
        width: 33.33%;
    }

    .games-1 .flex a .item img {
        margin-bottom: 12px;
    }

    .games-2 .flex .box-1,
    .games-2 .flex .box-2 {
        width: 100%;
    }

    .games-2 .flex .box-1 a:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .games-2 .flex .box-1 a {
        padding: 6px;
    }

    .games-2 .flex .box-2 .popular-game,
    .games-2 .flex .box-2 .top-game {
        display: flex;
        flex-wrap: wrap;
    }

    .games-2 .flex .box-2 .popular-game {
        margin: 0 12px;
    }

    .games-2 .flex .box-2 .popular-game .more-games {
        width: 60%;
    }

    .games-2 .flex .box-2 .popular-game .more-games a {
        width: 100%;
    }

    .games-2 .flex .box-2 .popular-game .heading {
        width: 100%;
    }

    .games-2 .flex .box-2 .popular-game a,
    .games-2 .flex .box-2 .top-game a {
        width: 50%;
    }

    .info::before,
    .games-3::before {
        display: none;
    }

    .info .text {
        margin: 0 12px;
    }

    footer .share {
        width: 100%;
        padding-top: 12px;
    }

    footer .pt {
        order: -1;
        width: 100%;
        padding-left: 24px;
    }

    footer .pt a {
        line-height: 20px;
    }

    footer .footer-copy {
        padding-top: 12px;
    }

    footer .pt a {
        padding: 0 24px 0 24px;
    }

    .font-size-16,
    footer .pt a,
    footer .footer-copy {
        font-size: 14px;
        line-height: 18px;
    }

    footer .share a svg {
        width: 15px;
        height: 15px;
    }

    footer .pt a::after {
        width: 12px;
        height: 12px;
    }

    .dt .container {
        padding: 0 24px;
    }

    .dt .flex {
        padding-top: 36px;
    }

    .dt a .text .top {
        position: absolute;
        top: -12px;
        width: 100%;
        left: 0;
    }

    .dt {
        padding-bottom: 40px;
    }

    .cate-game .flex a {
        width: 50%;
    }

    .games-1 .box-2 a {
        width: 25%;
    }

    .cate-game-2 .box-1 {
        width: 100%;
    }

    .cate-game-2 .top-game {
        width: 100%;
        flex-wrap: wrap;
        display: flex;
    }

    .cate-game-2 .top-game a {
        width: 50%;
    }
  .games-2 .flex .box-2 .popular-game .title{
      height: 36px;}
  
  .games-3 .flex a .item .text{
      padding: 0 12px}
  .info .text .box {
    padding: 24px;}
  .games-3 .flex a .item .play-btn {
        padding: 4px 24px;
    }
      .games-3 .flex a .item .like {
        padding: 6px 0 6px;
    }
}

@media (max-width:550px) {
    section {
        padding-top: 12px;
    }

    .heading {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 6px;
    }

    .games-1 .flex a {
        width: 50%;
        padding: 6px;
    }

    .more-games a {
        padding: 8px 48px;
    }

    .games-1 .flex a .item img {
        margin-bottom: 4px;
    }

    .games-1 .flex a:nth-child(2n+1) {
        padding-left: 12px;
    }

    .games-1 .flex a:nth-child(2n+2) {
        padding-right: 12px;
    }



    .games-1 {
        border-radius: 0px 0px 40px 40px;
    }


    .games-1 .flex a .item {
        border: 8px solid #D9F2FF;
        padding: 6px;
    }

    .games-2 .flex .box-1,
    .games-2 .flex .box-2 {
        width: 100%;
    }

    .games-2 .flex .box-1 {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 6px;
    }

    .games-2 .flex .box-1 a .item {
        padding: 4px 4px 8px;
    }

    .games-2 .flex .box-1 a .item .play-btn {
        padding: 4px 0px;
        margin: 8px auto 0;
    }

    .games-2 .flex .box-2 .top-game a {
        width: 100%;
        padding: 6px 12px;
    }

    .games-2 .flex .box-2 .popular-game a {
        width: 100%;
        padding: 6px;
    }

    .games-2 .flex .box-2 .popular-game .heading {
        padding-bottom: 6px;
    }

    .games-2 .flex .box-2 .popular-game {
        padding: 12px 0;
        margin: 0 12px;
    }

    .games-2 .flex .box-2 .popular-game .more-games {
        width: 100%;
        margin: 0 12px;
        padding: 6px 0 0;
    }

    .more-games a i {
        font-size: 16px;
        line-height: 18px;
    }

    .games-3 .flex a {
        width: 100%;
        padding: 6px 12px;
    }

    .games-3 .flex a .item .text .t_1l {
        -webkit-line-clamp: 2;
    }

    .games-3 .flex a .item .like {
        padding: 8px 0;
    }

    .games-3 .flex a .item .play-btn {
        padding: 4px 24x;
    }

    .info .text .box {
        padding: 0px 12px 0px 0px;
        height: 250px;
        overflow: auto;
        padding-right: 12px;
    }

    .info .text .box::-webkit-scrollbar {
        background-color: #E9E9E9;
        width: 6px;
    }

    .info .text .box::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #B2E5FF;
    }


    .info {
        border-radius: 0px 0px 0px 48px;

    }
  
  .games-3 {
    border-radius: 0px 48px 0px 0px;}

    .info .text {
        margin: 0 12px;
        padding: 12px;
    }


    .back-to-top {
        right: 20px;
    }

    .games-1 .more-games {
        width: max-content;
        padding: 12px 0 12px;
    }

    .dt {
        border-radius: 0px 0px 40px 40px;
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
        padding-bottom: 12px;
        padding-top: 8px;
    }

    .dt a .text .top .other {
        padding: 4px 24px;
    }

    .dt a .text .top {
        top: 0;
    }

    .dt a .text .top .cate,
    .dt a .text .top .other,
    .play-box .top .cate,
    .play-box .top .other {
        font-size: 12px;
        line-height: 16px;
    }

    .dt a .text .top .cate i,
    .play-box .top .cate i {
        font-size: 8px;
        padding-left: 4px;
    }

    .dt a .text .top .other i,
    .play-box .top .other i {
        padding-right: 4px;
        font-size: 12px;
    }

    .dt .container {
        padding: 0 12px;
    }

    .dt .title {
        font-size: 16px;
        line-height: 20px;
    }

    .dt .cover {
        width: 88px;
        height: 88px;
    }

    .dt a .text {
        padding-left: 12px;
        width: calc(100% - 88px);
    }

    .dt .paly-btn {
        position: absolute;
        padding: 8px 36px;
        bottom: 0;
        width: 90%;
        left: 5%;
        justify-content: center;
    }

    .dt .flex {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .dt .paly-btn {
        color: transparent;
    }

    .dt .paly-btn::before {
        content: "Get Game";
        color: #333;
        position: absolute;
    }

    .dt .desc {
        display: none;
    }

    .games-2 .flex .box-2 .popular-game .star,
    .dt .star {
        font-size: 12px;
        line-height: 16px;
    }

    .info .text .h1 {
        font-size: 14px;
        line-height: 18px;
    }

    .games-2 .flex .box-2 .top-game a .item .text .like,
    .games-3 .flex a .item .like,
    .games-3 .flex a .item .play-btn,
    .info .text p {
        font-size: 12px;
        line-height: 16px;
    }

    .play-box {
        padding: 12px;
    }

    .palymain {
        border: 6px solid #D9F2FF;
        aspect-ratio: 1 / 1.3;
        border-radius: 20px
    }

    #play-game {
        flex-wrap: wrap;
    }

    .palymain {
        width: 100%;
    }

    .palybuttom {
        width: 100%;
        height: 40px;
        flex-direction: row;
        padding: 0 24px;
    }

    .palybuttom .botton-love,
    .palybuttom .botton-love.active {
        margin: 0 auto 0 0;
        background-size: 20px;
        background-position: left;
        height: auto;
        order: -1;
    }

    .palybuttom .botton-love span {
        padding-top: 0;
        padding-left: 20px;
    }

    #play-game .botton-full .icon-fullscreen {
        font-size: 16px;
    }

    .palymain .bg .coverImg {
        width: 110px;
        height: 110px;
    }

    .palymain .bg .dt-title {
        font-size: 16px;
        line-height: 20px;
    }

    .games-1 .box-2 {
        padding: 0 6px;
    }

    .games-1 .box-2 a {
        width: 33.33%;
        padding: 6px !important;
    }

    .games-1 .box-2 a .item {
        border: none;
        border-radius: 16px;
        border: 1px solid #E2E2E2;
        background: #FFF;
    }

    .cate-game-2 .box-1 {
        padding: 0 6px;
    }

    .cate-game-2 .box-1 a {
        width: 33.33%;
        padding: 6px;
    }

    .cate-game-2 .box-1 a .item {
        padding: 4px 4px 8px;
    }
  
  .games-3 .flex a .item .text{
      padding: 0 12px;}

}

@media (max-width: 450px) {
  .logo a {
        font-size: 20px;
    line-height: 28px;
  }
  .navbar .cate-btn {
    margin: 0 12px;
}
  .search input{
  padding: 6px 24px;}

.search .search_btn {
    position: absolute;
  top: 6px;}
  .search {
    padding: 0 24px 12px;
  }
  .games-3 .flex a .item .text .t_1l{
          -webkit-line-clamp: 1;}
  
      .font-size-16, footer .pt a, footer .footer-copy,
  .dt.h5-desc .desc .text{
        font-size: 12px;
        line-height: 16px;
    }
      .games-2 .flex .box-2 .popular-game .title {
        height: 32px;
    }
  
  }