index.scss 1.42 KB
.user-center-page {
    width: 750px;
    padding: 0 40px;
    box-sizing: border-box;

    .header {
        margin-bottom: 42px;
        display: flex;
        align-items: center;

        .avatar-img {
            width: 96px;
            height: 96px;
            margin-right: 12px;
            border-radius: 50%;
        }

        .user-name {
            width: 550px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-family: PingFang-SC-Semibold;
            font-size: 68px;
            color: #000;
            display: inline-block;
            background: transparent;
            line-height: 96px;
            text-align: left;
            padding: 0;

            &:after {
                border: none;
            }
        }
    }

    .entry-item {
        width: 670px;
        height: 120px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .label {
            font-family: PingFang-SC-Regular;
            font-size: 32px;
            color: #000;
        }

        .num {
            display: flex;
            align-items: center;
            .num-text {
                font-size: 32rpx;
            }
        }

        .arrow-right-icon {
            width: 40px;
            height: 40px;
        }

        &.mt {
            margin-top: 60px;
        }
    }
}