.app-content-page {
    position: relative;
    z-index: 1;
}

.app-content-page .category-panel {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.875rem;
}

.app-content-page .category-panel h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #333333;
    padding-left: 3.5rem;
    position: relative;
}

.app-content-page .category-panel h2::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 2.75rem;
    height: 2.75rem;
    background-image: url(../images/joystickIcon.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.app-content-page.app .category-panel h2::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 2.75rem;
    height: 2.75rem;
    background-image: url(../images/gridIcon.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.app-content-page .category-panel .category-list {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 1.875rem;
}

.app-content-page .category-panel .category-list a {
    width: calc(25% - 1rem);
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    height: 3.75rem;
    text-align: center;
    line-height: 3.75rem;
    padding: 0 0.25rem;
    background: #F5F5F5;
    border-radius: 1.875rem;
    font-size: 1.5rem;
    color: #333333;
}

.app-content-page .category-panel .category-list a.active {
    font-weight: bold;
    background: linear-gradient(90deg, rgb(86, 243, 188) 0%, rgb(194, 250, 199) 100%);
}

.app-content-page.app .category-panel .category-list a.active {
    font-weight: bold;
    background: linear-gradient(90deg, rgb(45, 162, 252) 0%, rgb(45, 252, 208) 100%);
}

.app-content-page .app-listing {
    margin-top: 3.125rem;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.875rem 1.25rem;
    display: flex;
    flex-direction: column;
    row-gap: 2.25rem;
}

.app-content-page .app-listing .appWrap {
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
}

.app-content-page .app-listing .appWrap .imgWrap {
    width: 7.5rem;
    height: 7.5rem;
    flex: 0 0 7.5rem;
    max-width: 7.5rem;
}

.app-content-page .app-listing .appWrap .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem;
}

.app-content-page .app-listing .appWrap .detailWrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    flex-shrink: 0;
    overflow: hidden;
}

.app-content-page .app-listing .appWrap .detailWrap .appName {
    font-size: 1.75rem;
    font-weight: 500;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.app-content-page .app-listing .appWrap .detailWrap .infoWrap {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.app-content-page .app-listing .appWrap .detailWrap .infoWrap span {
    font-size: 1.5rem;
    color: #999999;
    line-height: 1.5;
}

.app-content-page .app-listing .appWrap .detailWrap .infoWrap i {
    width: 2px;
    height: 1.25rem;
    transform: rotate(20deg);
    background-color: #999999;
}

.app-content-page .app-listing .appWrap .detailWrap>p {
    font-size: 1.5rem;
    color: #999999;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-content-page .app-listing .appWrap .viewBtn {
    width: 6.25rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.5rem;
    background: #f5f7fb;
    color: #35c84d;
    box-shadow: 0 4px 12px rgba(87, 214, 107, .12);
    font-weight: 500;
}