.app-user .notice {
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #FFF9EA;
}

.app-user .notice .icon {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-user .notice img {
    width: 30px;
}

.app-user .bg {
    width: 100%;
    height: 260px;
    background: linear-gradient(90deg, #80ddda, #36cfc9);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.app-user .bg::after {
    content: "";
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg, #f5f5f5, hsla(0, 0%, 96.1%, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.announcement {
    width: 100%;
    height: 60px;
    background-color: #FFF9EA;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.announcement-content {
    display: inline-block;
    padding-left: 0;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.announcement-text {
    font-size: 18px;
    line-height: 60px;
    color: #ff9a43;
    padding-right: 20px;
}

.app-user .top {
    z-index: 20;
    padding: 40px 0 30px 30px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.app-user .top .avatar {
    gap: 12px;
    display: flex;
    align-items: center;
}

.app-user .top .avatar img {
    width: 70px;
    border-radius: 50%;
}

.app-user .top .avatar .name {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

.app-user .top .avatar .name p:nth-child(1) {
    font-size: 16px;
    color: #fff;
}

.app-user .top .avatar .name p:nth-child(2) {
    font-size: 12px;
    color: #fff;
}

.app-user .top .controls {
    gap: 10px;
    display: flex;
    color: #fff;
    flex-direction: column;
}

.app-user .top .controls .language {
    gap: 4px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.app-user .top .controls .language img {
    width: 16px;
}

.app-user .top .controls .settings {
    opacity: 0.4;
    color: #fff;
    background-color: #fff;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.app-user .top .controls .settings a {
    color: #666;
    display: flex;
    padding: 10px 16px;
}

.modal {
    display: none;
    z-index: 1000;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.modal .modal-content {
    position: relative;
    top: 40%;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    height: 200px;
    max-width: 100%;
    background-color: #f8f8f8;
    border-radius: 5px;
    overflow: hidden;
}

.modal .modal-content h3 {
    font-weight: 500;
    font-size: 16px;
    color: #666;
    padding: 8px;
}

.modal .modal-content .language-option {
    color: #666;
    font-size: 16px;
    text-align: center;
    padding: 8px 10px;
    cursor: pointer;
    background-color: #f1f1f1;
}

.modal .modal-content .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
}

.app-user .navs {
    gap: 30px;
    z-index: 20;
    position: relative;
    margin: 10px;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    background-color: #fff;
}

.app-user .navs .item {
    gap: 4px;
    width: calc(25% - 30px);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.app-user .navs .item a {
    gap: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.app-user .navs .item .num {
    font-size: 22px;
    color: #333;
}

.app-user .navs .item .tip {
    font-size: 12px;
    color: #aaa;
}

.app-user .navs .item img {
    width: 30px;
}

.app-user .box {
    position: relative;
    margin: 20px 10px;
    border-radius: 8px;
    background-color: #fff;
}

.app-user .box .title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 16px;
}

.app-user .box .data {
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.app-user .box .data .item {
    gap: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.app-user .box .data .item p:nth-child(1) {
    font-size: 22px;
    color: #333;
}

.app-user .box .data .item p:nth-child(2) {
    font-size: 12px;
    color: #aaa;
}

.app-user .box .data.tools {
    gap: 30px;
    justify-content: flex-start;
}

.app-user .box .data .item img {
    width: 30px;
}

.app-user .box .data .item.tool {
    width: calc(25% - 30px);
}

.app-user .copyright {
    gap: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.app-user .copyright * {
    color: #666;
    font-size: 11px;
}