:root {
    --theme: #4591FB;
    --color: #333333;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: uucn;
    -webkit-box-sizing: border-box;
    -moapp-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--color);
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
}

li {
    list-style-type: none;
}

body {
    font-size: 13px;
    color: var(--color);
    background-color: #F5F5F5;
}

.app-back {
    z-index: 200;
    position: absolute;
    top: 12px;
    left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.app-back:hover {
    opacity: 0.7;
}

.app-back a {
    display: flex;
}

.app-back img {
    width: 20px;
}

.app-main {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-block-end: 60px;
    flex-direction: column;
}

.app-main .app-banner {
    padding: 10px;
}

.app-main .app-banner img {
    height: 170px;
    width: 100%;
    border-radius: 8px;
}

.app-navs {
    gap: 12px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.app-navs a {
    gap: 12px;
    width: calc(50% - 12px);
    display: flex;
    padding: 16px;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
}

.app-navs a p {
    font-size: 14px;
    font-weight: 700;
    color: #4b5a84;
}

.app-navs a img {
    width: 52px;
    height: 52px;
}

.app-navs .favourite {
    background-color: #FCF4E6;
}

.app-navs .quest {
    background-color: #DFF6EF;
}

.app-navs .notice {
    background-color: #EFF2FB;
}

.app-navs .client {
    background-color: #DEF5F7;
}

.app-recommended {
    padding: 10px;
}

.app-recommended .title {
    color: #666;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    padding-inline-start: 10px;
}

.app-recommended .title::before {
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 5px;
    content: '';
    background-color: #36CFC9;
}

.app-recommended .data {
    gap: 10px;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
}

.app-recommended .item {
    gap: 10px;
    display: flex;
    padding: 10px 0 10px 10px;
    border-radius: 8px;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 3px 3px 12px 3px rgba(0, 0, 0, .05), 0 6px 16px 0 rgba(0, 0, 0, .03), 3px 3px 6px -6px rgba(0, 0, 0, .12);
}

.app-recommended .item .top {
    display: flex;
    padding-inline-end: 10px;
    justify-content: space-between;
}

.app-recommended .item .top img {
    width: 36px;
    height: 36px;
}

.app-recommended .item .top .text {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

.app-recommended .item .top .text p:nth-child(1) {
    font-size: 16px;
    color: #666;
}

.app-recommended .item .top .text p:nth-child(2) {
    color: #36cfc9;
}

.app-recommended .item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-recommended .item .bottom .infos {
    gap: 10px;
    display: flex;
}

.app-recommended .item .bottom .infos .text,
.app-recommended .item .bottom .infos .count {
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.app-recommended .item .bottom .infos .text p:nth-child(1) {
    color: #f759ab;
    font-size: 12px;
}

.app-recommended .item .bottom .infos .text p:nth-child(2) {
    color: #aaa;
    font-size: 12px;
}

.app-recommended .item .bottom .infos .count p:nth-child(2) {
    color: #aaa;
    font-size: 12px;
}

.app-recommended .item .bottom .but {
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    background-color: #F55AA7;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}