.el-main {
    padding: 60px 0 0 0 !important;
    background-color: #F1F5FB;
}

@keyframes admission {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.el-container:nth-child(2)>.el-main {
    margin-top: 0 !important;
    margin: 0 !important;
}

.Hui-backgroundGradient {
    background: url('../img/banner-pcc.jpg') no-repeat center;
    background-size: cover;
    /* background: rgba(236, 246, 252, 1); */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
}

/* 用户信息 以及背景 */
.Hui-user-background {
    /* background: linear-gradient(146.58deg, rgba(243, 245, 245, 1) 0%, rgba(201, 229, 255, 1) 100%); */
    background-size: cover;
    height: 150px;
    padding: 40px 30px 10px 30px;
    display: flex;
    gap: 30px;
}

.Hui-user-background .Hui-headPortrait {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3B82F6;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.4);
    position: relative;
}

.Hui-user-background .Hui-headPortrait .Hui-qqhead {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.Hui-user-background .Hui-headPortrait span {
    font-size: 30px;
    color: #fff;
}

.Hui-headArea {
    position: relative;
}

.Hui-headPortrait .Hui-avatarFrame {
    position: absolute;
}

.Hui-headPortrait .Hui-avatarFrame img {
    width: 1rem;
    height: 1rem;
}

.Hui-user-background .Hui-information {
    display: flex;
    flex-direction: column;
    font-family: 'MyFont';
    gap: 0.1rem;
}

.Hui-user-background .Hui-information .Hui-title {
    font-size: 25px;
    font-family: 'MyFont';
    display: flex;
    align-items: center;
    gap: 5px;
}

.Hui-securityGroup {
    width: 1.2rem;
    cursor: pointer;
}

.Hui-user-background .Hui-information .Hui-mainBody {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 12px 20px;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data {
    display: flex;
    align-items: center;
    color: rgb(0 0 0 / 60%);
    font-size: 14.5px;
    gap: 5px;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data .Hui-item {
    display: flex;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data .Hui-item:nth-of-type(1) {
    margin-right: 10px;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data .Hui-item .Hui-not {
    background-color: rgba(147, 147, 147, 0.7);
    color: #FFFFFF;
    font-size: 12px;
    flex-shrink: 0;
    padding: 0.02rem 0.1rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'MyFont';
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data .Hui-item .Hui-not:hover {
    background-color: #878787;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data .Hui-item .item {
    background-color: rgb(22 93 255 / 60%);
    cursor: pointer;
    color: #FFFFFF;
    font-size: 12px;
    padding: 0.02rem 0.1rem;
    border-radius: 3px;
    font-family: 'MyFont';
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data a {
    color: #005cff;
    text-decoration: none;
    margin-left: 0.1rem;
    font-size: 0.163rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data a:hover {
    color: #5f99ff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-user-background .Hui-information .Hui-mainBody .Hui-data img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}











.Hui-authentication {
    display: flex;
    justify-content: center;
    /* padding: 20px 30px 0 30px; */
    padding: 0;
    animation: admission 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: admission 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.Hui-contactMy .Hui-statement .Hui-elaborate span {
    align-items: flex-start;
}

.Hui-authentication .Hui-background {
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    background: linear-gradient(90deg, #3B82F6 0%, #1D4ED8 100%);
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 10px 30px;
    width: 100%;
    gap: 5px;
    margin: 15px 30px 0 30px;
}

.Hui-authentication .Hui-background .Hui-prospect {
    display: flex;
    align-items: center;
    gap: 5px;
}

.Hui-authentication .Hui-background img {
    width: 18px;
    height: 18px;
}

.Hui-authentication .Hui-background span {
    font-size: 14.5px;
    color: #fff;
}

.Hui-authentication .Hui-background a {
    margin-left: auto;
    background-color: rgb(81, 130, 239);
    color: #FFFFFF;
    padding: 3px 15px;
    font-size: 14.5px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.Hui-authentication .Hui-background a:hover {
    background-color: #ffffffe6;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    color: rgb(29, 79, 216);
}

/* 重构结构以下 */
.Hui-structure {
    padding: 20px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Hui-structure .Hui-userInformation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 0.2rem;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}



/* 右侧余额显示 */
.Hui-structure .Hui-userInformation .Hui-balance {
    min-width: 3.5rem;
    padding: 0.2rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    background: linear-gradient(180deg, #2D5FFE 0%, #4C7DFF 100%);
    box-shadow: 0px 2px 15px 0px rgba(0, 4, 255, 0.3);
    border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
    position: relative;
    overflow: hidden;
    height: 1.9rem;
}

.Hui-structure .Hui-userInformation .Hui-balance .notice-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: center;
}

.Hui-structure .Hui-userInformation .Hui-balance2 {
    padding: 0;
}

.Hui-structure .Hui-userInformation .Hui-balance2 .Hui-title-size {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.2rem 0 0 0.2rem;
    box-sizing: border-box;
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.23) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-items: center;
    box-sizing: border-box;
    z-index: 1;
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    color: #fff;
    padding: 0.1rem;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: 'MyFont';
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom a img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom a:hover {
    background-color: #ffffff2b;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-structure .Hui-userInformation .Hui-balance::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.Hui-structure .Hui-userInformation .Hui-balance::before {
    content: "";
    position: absolute;
    bottom: -69%;
    left: -36%;
    background-color: rgba(255, 255, 255, 0.05);
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-title {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'MyFont';
    font-size: 0.165rem;
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-title-size {
    color: #fff;
    font-size: 20px;
    font-family: 'MyFont';
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-amountOfMoney {
    color: #fff;
    font-size: 26px;
    font-family: 'MyFont';
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-recharge-btn {
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    color: #fff;
    padding: 5px 25px;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'MyFont';
}

.Hui-structure .Hui-userInformation .Hui-balance .Hui-recharge-btn:hover {
    background-color: #ffffff;
    color: rgb(60, 110, 255);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* Vip */
.Hui-VIP {
    min-width: 3.5rem;
    padding: 0.6rem 0.2rem 0.2rem 0.2rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
    position: relative;
    height: 1.9rem;
    gap: 0.08rem;
    justify-content: space-between;
}

.Hui-VIP .Hui-recharge-btn {
    position: absolute;
    right: 0.2rem;
    bottom: 0.2rem;
    width: 70px;
    height: 30px;
    opacity: 1;
    border-radius: 19px;
    background: rgba(58, 56, 66, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-family: 'MyFont';
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-VIP .Hui-recharge-btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-VIP .VIP {
    width: 51px;
    height: 59px;
    position: absolute;
    top: 0;
    left: 0.2rem;
}

.Hui-VIP .Hui-amountOfMoney {
    font-size: 17px;
    font-family: 'MyFont';
    color: rgba(58, 56, 66, 1);
}

.Hui-VIP .credit-title {
    display: flex;
    font-family: 'MyFont';
}

.Hui-VIP .credit-title .notice-btn {
    color: #005cff;
    cursor: pointer;
}

.Hui-VIP span {
    color: rgba(151, 123, 72, 1);
    font-size: 14px;
    font-family: 'MyFont';
}

.Hui-VIP .el-progress {
    width: 50%;
}


.Hui-VIP .el-progress-bar__outer {
    height: 8px !important;
}

.Hui-VIP .el-progress-bar__inner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,
            rgba(225, 202, 164, 0.8) 0%,
            rgba(181, 151, 101, 1) 30%,
            rgba(225, 202, 164, 0.8) 60%,
            rgba(181, 151, 101, 1) 100%);
    background-size: 200% 100%;
    overflow: hidden;
}

.Hui-VIP .el-progress-bar__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5%;
    height: 100%;
    background: white;
    filter: blur(2px);
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.6);
    animation: whiteFlow 2s linear infinite;
    -webkit-animation: whiteFlow 2s linear infinite;
    -webkit-filter: blur(2px);
}

@keyframes whiteFlow {
    0% {
        transform: translateX(-200%);
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
    }

    80% {
        transform: translateX(2100%);
        -webkit-transform: translateX(2100%);
        -moz-transform: translateX(2100%);
        -ms-transform: translateX(2100%);
        -o-transform: translateX(2100%);
    }

    100% {
        transform: translateX(2100%);
        -webkit-transform: translateX(2100%);
        -moz-transform: translateX(2100%);
        -ms-transform: translateX(2100%);
        -o-transform: translateX(2100%);
    }
}

/* 普通 */
.Hui-VIP-ordinary {
    background: url('../img/vip-bk1.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-ordinary::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz1.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* 青铜 */
.Hui-VIP-bronze {
    background: url('../img/vip-bk2.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-bronze::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz2.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* 白银 */
.Hui-VIP-silver {
    background: url('../img/vip-bk1.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-silver::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz3.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* 黄金 */
.Hui-VIP-gold {
    background: url('../img/vip-bk4.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-gold::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz4.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* 铂金 */
.Hui-VIP-platinum {
    background: url('../img/vip-bk5.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-platinum::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz5.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* 钻石 */
.Hui-VIP-diamond {
    background: url('../img/vip-bk6.png') no-repeat center;
    background-size: 100% 100%;
}

.Hui-VIP-diamond::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 5px;
    width: 95px;
    height: 95px;
    background: url('../img/vip-xz6.png') no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.Hui-news {
    background: radial-gradient(93% 143% at 29% 0%, rgba(109, 109, 109, 0.08) 0%, rgba(0, 0, 0, 0) 100%), #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2);
    border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
    overflow: hidden;
    height: 1.9rem;
    display: flex;
    box-sizing: border-box;
}

.Hui-news .Hui-title-size {
    width: 35%;
    height: 100%;
    background: radial-gradient(118% 118% at 79% 15%, #C7D8F1 0%, #F5F9FF 100%);
    display: flex;
    flex-direction: column;
    padding: 0.2rem 0.3rem;
    box-sizing: border-box;
    justify-content: center;
    gap: 0.1rem;
}

.Hui-news .Hui-title-size span {
    color: #000000;
    font-size: 0.28rem;
    font-family: 'MyFont';
}

.Hui-news .Hui-title-size a {
    color: #3B82F6;
    font-size: 0.185rem;
    display: flex;
    align-items: center;
    gap: 0.02rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-news .Hui-title-size a:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-news .Hui-title-size a img {
    width: 15px;
    height: 15px;
}

.Hui-news .el-carousel__container {
    height: 1.9rem;
}

.Hui-news .el-carousel__item {
    padding: 0.2rem;
    box-sizing: border-box;
}

.Hui-news .Hui-carouselImage {
    width: 65%;
    height: 100%;
}

.Hui-news .Hui-carouselImage img {
    width: 22px;
    height: 22px;
}

.Hui-news .Hui-carouselImage .Hui-itemNew {
    display: flex;
    cursor: pointer;
}

.Hui-news .Hui-carouselImage .Hui-itemNew:hover {
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    width: 100%;
}

.Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-title {
    color: #000000bf;
    font-size: 0.22rem;
    display: flex;
    align-items: center;
    gap: 0.05rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.1rem;
    font-family: 'MyFont';
}

.Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-timeLabel {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 0.1rem;
}

.Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-time {
    color: #9CA3AF;
    font-size: 0.165rem;
}

.Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-label {
    color: #9CA3AF;
    font-size: 0.165rem;
}

.Hui-news .el-carousel__button {
    background-color: #b8b8b8;
}

/* 数据快捷显示块 */
.Hui-dataBlock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.Hui-dataBlock .Hui-itemBlock {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 130px;
    justify-content: space-between;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2);
    border-radius: 0.15rem;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.8);
    position: relative;
    background: radial-gradient(93% 143% at 29% 0%, rgba(109, 109, 109, 0.08) 0%, rgba(0, 0, 0, 0) 100%), #FFFFFF;
}

.Hui-dataBlock .Hui-itemBlock:nth-of-type(1)::after {
    content: "";
    background: url('../img/itemBlock1.png') no-repeat center;
    background-size: contain;
    width: 258px;
    height: 248px;
    opacity: 0.6;
    position: absolute;
    bottom: -85%;
    right: -30%;
}

.Hui-dataBlock .Hui-itemBlock:nth-of-type(2)::after {
    content: "";
    background: url('../img/itemBlock2.png') no-repeat center;
    background-size: contain;
    width: 165px;
    height: 165px;
    opacity: 0.6;
    position: absolute;
    bottom: -37%;
    right: -10%;
}

.Hui-dataBlock .Hui-itemBlock:nth-of-type(3)::after {
    content: "";
    background: url('../img/itemBlock3.png') no-repeat center;
    background-size: contain;
    width: 196px;
    height: 196px;
    opacity: 0.6;
    position: absolute;
    bottom: -55%;
    right: -4%;
}

.Hui-dataBlock .Hui-itemBlock:nth-of-type(4)::after {
    content: "";
    background: url('../img/itemBlock4.png') no-repeat center;
    background-size: contain;
    width: 180px;
    height: 180px;
    opacity: 0.6;
    position: absolute;
    bottom: -40%;
    right: -5%;
}

.Hui-hoverTop {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-hoverTop:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.Hui-dataBlock .Hui-itemBlock .Hui-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Hui-dataBlock .Hui-itemBlock .Hui-title span {
    color: #4B5563;
    font-size: 20px;
    font-family: 'MyFont';
}

.Hui-dataBlock .Hui-itemBlock .Hui-title img {
    width: 40px;
    height: 40px;
}

.Hui-dataBlock .Hui-itemBlock .Hui-quantity {
    color: #000;
    font-size: 25px;
    font-family: 'MyFont';
}

.Hui-dataBlock .Hui-itemBlock .Hui-quantity i {
    font-style: normal;
    color: #9CA3AF;
    font-size: 14.5px;
    font-weight: normal;
    margin-left: 5px;
    font-family: 'MyFont';
}

.Hui-dataBlock .Hui-itemBlock a {
    color: #9CA3AF;
    font-size: 15px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: 'MyFont';
}

.Hui-dataBlock .Hui-itemBlock a:hover {
    color: rgb(37 136 255);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* 账户安全 */
.Hui-security {
    display: flex;
    gap: 15px;
}

.Hui-security .Hui-safetyScore {
    padding: 20px;
    width: 50%;
    min-height: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    overflow: hidden;
    background: radial-gradient(93% 143% at 29% 0%, rgba(109, 109, 109, 0.08) 0%, rgba(0, 0, 0, 0) 100%), #FFFFFF;
    border: 4px solid #ffffff;
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2);
    border-radius: 0.15rem;
    position: relative;
}

.Hui-security .Hui-safetyScore::after {
    content: "";
    width: 100%;
    height: 150px;
    background: url('../img/dengback.png') no-repeat center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: -10%;
}

.goods-box {
    background-color: #fff;
    max-height: 3.4rem;
    overflow-y: auto;
}

/* Chrome/Safari/Opera */
.goods-box::-webkit-scrollbar {}

.Hui-security .Hui-safetyScore .Hui-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Hui-security .Hui-safetyScore .Hui-title span {
    color: #000000;
    font-size: 20px;
    font-family: 'MyFont';
}

.Hui-security .Hui-safetyScore .Hui-title a {
    color: #3B82F6;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-security .Hui-safetyScore .Hui-title a:hover {
    filter: contrast(0.5);
    text-decoration: underline;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-security .Hui-safetyScore .Hui-title a img {
    width: 20px;
    height: 20px;
}

.Hui-security .Hui-safetyScore .Hui-echart {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 0.2rem 0.6rem 0 0.2rem;
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text span {
    color: #4B5563;
    font-size: 0.2rem;
    font-family: 'MyFont';
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text .Hui-fraction {
    font-size: 0.5rem;
    color: #000;
    font-weight: bold;
    font-family: cursive;
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text .Hui-fraction i {
    color: #9CA3AF;
    font-size: 14px;
    margin-left: 5px;
    font-style: normal;
    font-weight: normal;
    font-family: initial;
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text .Hui-compare {
    color: #9CA3AF;
    font-size: 15px;
    display: grid;
    align-items: center;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.Hui-security .Hui-safetyScore .Hui-echart .Hui-text .Hui-compare p {
    flex-shrink: 0;
}

.Hui-security .Hui-costInformation {
    background: #FFFFFF;
    padding: 20px;
    width: calc(100% / 4 - 53px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.Hui-security .Hui-costInformation .Hui-title {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.Hui-security .Hui-costInformation .Hui-quota {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.Hui-security .Hui-costInformation .Hui-balance {
    color: #4B5563;
    font-size: 14.5px;
}

.Hui-security .Hui-costInformation .Hui-amountOfMoney {
    color: #3B82F6;
    font-size: 25px;
    font-weight: bold;
    font-family: cursive;
}

.Hui-security .Hui-costInformation .Hui-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.Hui-security .Hui-costInformation .Hui-notYet {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    background: #F9FAFB;
    padding: 15px;
    width: 100%;
}

.Hui-security .Hui-costInformation .Hui-notYet span {
    color: #4B5563;
    font-size: 15px;
}

.Hui-security .Hui-costInformation .Hui-notYet p {
    color: #000;
    font-size: 15px;
    font-weight: bold;
}

/* 产品列表（原样式修改） */

.Hui-productList {
    display: flex;
    gap: 15px;
}

.Hui-productList .Hui-flexbox {
    width: 100%;
    display: flex;
    gap: 15px;
}

.Hui-productList .Hui-flexbox .Hui-zhongbu {
    display: flex;
    gap: 15px;
    width: 35%;
}

.Hui-outsource {
    margin: 0;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-list-box {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0.15rem;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2), inset 14px 14px 43px -23px rgba(0, 0, 0, 0);
    font-family: 'MyFont';
}

.el-table th.el-table__cell>.cell {
    font-weight: 500;
}

.product-list-box .title-text {
    font-size: 20px;
    margin-bottom: 0.15rem;
    font-family: 'MyFont';
    font-weight: 400;
}

.el-table th.el-table__cell {
    background-color: rgb(234, 234, 234);
}

.el-table__footer-wrapper,
.el-table__header-wrapper {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

thead tr,
tbody .el-table__row {
    height: 0.48rem;
}

.goods-table {}

.goods-table thead tr td {
    color: #64748B;
    font-size: 0.165rem;
    background-color: rgba(22, 93, 255, 0.04);
    font-family: 'MyFont';
}

.goods-table thead tr td img {
    width: 0.12rem;
    height: 0.12rem;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


.goods-table tbody tr td {
    font-size: 0.165rem;
    padding: 0.15rem 0;
    color: #4B5563;
    font-family: 'MyFont';
}

.goods-table .product-item:nth-of-type(2n) {
    background-color: #F9FAFB;
}

.goods-table .product-item:hover {
    background-color: #eaeaea;
}

.product-item td:nth-child(1) {
    color: #1F2937;
}

.goods-table {
    overflow: hidden;
}

.Hui-productList .Hui-rightTow {
    border-radius: 12px;
    width: calc(100% / 4 - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.Hui-productList .Hui-rightTow .Hui-finance {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.Hui-productList .Hui-rightTow .Hui-finance .Hui-title {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.Hui-productList .Hui-rightTow .Hui-finance p {
    color: #4B5563;
    font-size: 14.5px;
}

.Hui-productList .Hui-rightTow .Hui-apiInformation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 20px;
    height: 50%;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.Hui-productList .Hui-rightTow .Hui-apiInformation .Hui-title {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.Hui-productList .Hui-rightTow .Hui-apiInformation .Hui-itemActivation {
    display: flex;
    justify-content: space-between;
    padding: 5px 5px 5px 10px;
}

.Hui-productList .Hui-rightTow .Hui-apiInformation .Hui-itemActivation span {
    color: #4B5563;
    font-size: 14.5px;
}

.Hui-productList .Hui-rightTow .Hui-apiInformation .Hui-itemActivation p {
    color: #EF4444;
    font-size: 14.5px;
}

/* 推广计划  新闻 */
.Hui-campaign {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 75%;
}

.Hui-pushs {
    padding: 20px;
    width: 100%;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    background: radial-gradient(93% 143% at 29% 0%, rgba(109, 109, 109, 0.08) 0%, rgba(0, 0, 0, 0) 100%), #FFFFFF;
    box-sizing: border-box;
    border: 4px solid #ffffff;
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2);
    border-radius: 0.15rem;
}

/* 未开启 */
.Hui-unopened {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    justify-content: space-evenly;
    text-align: center;
}

.Hui-unopened img {
    width: 3rem;
    height: 2rem;
}

.Hui-unopened .recommend-text {
    margin: 0 auto;
    margin-top: 0.24rem;
    color: #8692B0;
    font-size: 0.14rem;
    background: #EEF4FF;
    height: 0.32rem;
    width: 2rem;
    text-align: center;
    line-height: 0.32rem;
    border-radius: 0.03rem;
}

.Hui-unopened .no-recommend {
    margin-top: 0.14rem;
    height: 0.42rem;
    line-height: 0.42rem;
}

.Hui-unopened .Hui-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.Hui-unopened .Hui-text span {
    color: #000000;
    font-size: 22px;
    font-weight: bold;
}

.Hui-unopened .Hui-text p {
    color: #4B5563;
    font-size: 14.5px;
}

.Hui-unopened .Hui-text a {
    border-radius: 4px;
    background: #165dff;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    font-size: 14.5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.no-product {
    margin-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.Hui-unopened .Hui-text a:hover {
    background: #0f4dff9c;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-unopened .Hui-blockDescription {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.Hui-unopened .Hui-blockDescription .Hui-item {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 1px 2px 4px #00000014;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.Hui-unopened .Hui-blockDescription .Hui-item .Hui-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.Hui-unopened .Hui-blockDescription .Hui-item .Hui-title img {
    width: 17px;
    height: 17px;
}

.Hui-unopened .Hui-blockDescription .Hui-item .Hui-title span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.Hui-unopened .Hui-blockDescription .Hui-item p {
    color: #4B5563;
    font-size: 14.5px;
}

.Hui-unopened .Hui-blockDescription .Hui-item:nth-of-type(1) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(135deg, #EFF6FF -6%, #FFFFFF 100%);
}

.Hui-unopened .Hui-blockDescription .Hui-item:nth-of-type(2) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(135deg, #FAF5FF -6%, #FFFFFF 100%);
}

.Hui-unopened .Hui-blockDescription .Hui-item:nth-of-type(3) {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
}

/* 原推介 样式修改 */
.recommend-box-open .recommend-top .left {
    padding: 0;
}

.recommend-box-open .top-statistic {
    gap: 33px;
    justify-content: flex-start
}

.recommend-box-open .top-statistic .top-item {
    margin: 0;
}


.Hui-journalism .Hui-currentlyUnavailable {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.165rem;
    height: 100%;
    justify-content: center;
}

.Hui-journalism .Hui-currentlyUnavailable img {
    width: 0.8rem;
    height: 0.8rem;
}

.Hui-journalism .Hui-currentlyUnavailable .Hui-label {
    color: #fff;
}

.Hui-campaign .Hui-contactMy .Hui-title {
    color: #000000;
    font-size: 20px;
    font-family: 'MyFont';
    margin-bottom: 0.2rem;
}

.Hui-campaign .Hui-contactMy {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    overflow-y: auto;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    background: radial-gradient(93% 143% at 29% 0%, rgba(109, 109, 109, 0.08) 0%, rgba(0, 0, 0, 0) 100%), #FFFFFF;
    border: 4px solid #ffffff;
    box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.2);
    border-radius: 0.15rem;
}

.Hui-contactMy .Hui-flexs {
    display: flex;
    align-items: center;
    height: 100%;
}

/* 即将上线 */
.Hui-contactMy .Hui-flexs span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    font-size: 0.165rem;
}

.Hui-contactMy .Hui-flexs span img {
    width: 2.5rem;
    height: 2.5rem;
}

.Hui-contactMy .Hui-qrCode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    width: 30%;
}

.Hui-contactMy .Hui-statement {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    justify-content: space-around;
}

.Hui-contactMy .Hui-statement .Hui-elaborate {
    background-color: #EFF6FF;
    padding: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.Hui-contactMy .Hui-statement .Hui-elaborate span {
    font-size: 0.18rem;
    color: #111827;
}

.Hui-contactMy .Hui-statement .Hui-elaborate div {
    font-size: 0.165rem;
    color: #4B5563;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.Hui-contactMy .Hui-statement p {
    font-size: 0.165rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.Hui-contactMy .Hui-qrCode img {
    width: 135px;
    height: 135px;
    object-fit: contain;
}

.Hui-contactMy .Hui-qrCode .Hui-label {
    background-color: #3B82F6;
    padding: 0.1rem 0.15rem;
    color: #fff;
    width: fit-content;
    border-radius: 1rem;
    font-size: 0.165rem;
    display: flex;
    align-items: center;
    gap: 0.05rem;
    box-shadow: 0px 12px 12px rgba(11, 83, 255, 0.24);
}

.Hui-contactMy .Hui-qrCode .Hui-label img {
    width: 0.2rem;
    height: 0.2rem;
}

.Hui-contactMy .Hui-qrCode span {
    color: #6B7280;
    font-size: 0.165rem;
}

.Hui-campaign .Hui-journalism::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.Hui-campaign .Hui-journalism .Hui-titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #fff;
    padding: 20px 20px 10px 20px;
}

.Hui-campaign .Hui-journalism .Hui-titles span {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.Hui-campaign .Hui-journalism .Hui-titles a {
    color: #165dff;
    text-decoration: none;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-titles a:hover {
    color: #91a8ff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-titles a img {
    width: 15px;
    height: 15px;
}

.Hui-campaign .Hui-journalism .Hui-itemNew {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-itemNew:hover .Hui-describe .Hui-timeLabel .Hui-label {
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-itemNew:hover {
    background-color: #f5f5f5;
}

.Hui-campaign .Hui-journalism .Hui-itemNew:hover .Hui-describe .Hui-title {
    color: #2563EB;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-itemNew img {
    width: 22px;
    height: 22px;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-title {
    color: #1F2937;
    font-size: 0.185rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-briefIntroduction {
    font-size: 0.165rem;
    color: #53575a;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-timeLabel {
    display: flex;
    justify-content: space-between;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-time {
    color: #9CA3AF;
    font-size: 14px;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-label {
    padding: 2px 10px;
    background-color: #EFF6FF;
    font-size: 0.165rem;
    color: #2563EB;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.Hui-campaign .Hui-journalism .Hui-itemNew .Hui-index {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: top;
    border: 2px solid #fff;
    background: linear-gradient(1turn, #fff, #f3f5f8);
    box-shadow: 8px 8px 20px rgba(55, 99, 170, 0.06);
    border-radius: 50%;
    font-size: 14.5px;
    font-weight: 500;
    text-align: center;
    line-height: 22px;
    flex-shrink: 0;
    color: #000000a6;
}

.recommend-box-open .url {
    margin-top: 0.16rem;
}

.recommend-box-open .top-statistic {
    margin-top: 0.15rem;
}

.recommend-box-open .top-statistic .top-item {
    min-height: 1.46rem;
}

/* 最近工单 */
.Hui-recentWorkOrders {
    width: calc(100% / 4 - 53px);
    padding: 20px;
    background-color: #fff;
    overflow: hidden;
    max-height: 100%;
    overflow-y: auto;
    animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -webkit-animation: bottom-top 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    max-height: 7.38rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}


.Hui-recentWorkOrders::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.WorkOrder-box {
    margin: 0;
    margin-top: 0;
    width: 100%;
    height: 65%;
    padding: 0 0.2rem 0.2rem 0.2rem;
    box-sizing: border-box;
    overflow-y: auto;
}

/* 滚动条浅白色 */
.WorkOrder-box::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.Hui-recentWorkOrders .WorkOrder-box .Hui-currentlyUnavailable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.165rem;
    margin-top: 2rem;
}

.Hui-recentWorkOrders .WorkOrder-box .Hui-currentlyUnavailable img {
    width: 2rem;
}

.Hui-recentWorkOrders .WorkOrder-box .WorkOrder-title {
    font-size: 16px;
}

.WorkOrder-content {
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.WorkOrder-item {
    border: none;
    margin: 0;
    gap: 0.05rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.replay-title {
    font-size: 0.165rem;
    color: rgb(255 255 255 / 70%);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 70%;
}

.more {
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.more:hover {
    color: #2563EB;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.replay-name {
    color: #4B5563;
    background-color: #F3F4F6;
    padding: 0.03rem 0.1rem;
    width: fit-content;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    box-shadow: 1px 2px 4px #0000001a;
}

.WorkOrder-item .Hui-boxBalance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
}

.WorkOrder-item:hover {
    background-color: #1366ec14;
    transform: scale(1.03);
    border-color: #0058ff87;
    color: #65696c82;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.WorkOrder-item:hover .replay-name {
    background-color: #f5f5f5;
    border-radius: 0.05rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.replay-box {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.replay-box .Hui-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.165rem;
}

.WorkOrder-item .Hui-boxBalance .Hui-time {
    color: #6B7280;
    font-size: 0.165rem;
}

.replay-div {
    border-radius: 2.03rem;
    margin-right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: 'MyFont';
}

@keyframes bottom-top {
    0% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1;
    }
}




/* 媒体查询 */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }

    .Hui-VIP {
        padding: 13vw 5vw 5vw 5vw;
        height: 40vw;
        gap: 2vw;
    }

    .Hui-VIP .Hui-amountOfMoney {
        font-size: 4.5vw;
    }

    .Hui-VIP .credit-title {
        font-size: 3.5vw;
    }

    .Hui-VIP-ordinary::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }

    .Hui-VIP-bronze::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }

    .Hui-VIP-silver::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }

    .Hui-VIP-gold::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }

    .Hui-VIP-platinum::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }

    .Hui-VIP-diamond::after {
        top: 8vw;
        right: 5vw;
        width: 22vw;
        height: 22vw;
    }


    .Hui-VIP span {
        font-size: 3.5vw;
    }

    .Hui-VIP .Hui-recharge-btn {
        right: 5vw;
        bottom: 5vw;
        width: 20vw;
        height: 8vw;
        font-size: 3.7vw;
    }

    .Hui-VIP .VIP {
        width: 13vw;
        height: 15vw;
        position: absolute;
        top: 0;
        left: 5vw;
    }

    .main-card {
        overflow-x: hidden;
    }

    .Hui-gai .Hui-logo {
        display: none;
    }

    .Hui-authentication {
        padding: 0;
    }

    .Hui-authentication .Hui-background {
        flex-direction: column;
        padding: 3vw;
        gap: 2vw;
        margin: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .Hui-authentication .Hui-background .Hui-prospect {
        align-items: initial;
    }

    .Hui-security .Hui-safetyScore .Hui-echart .Hui-text span {
        font-size: 4vw;
    }

    .Hui-authentication .Hui-background img {
        padding-top: 1vw;
        width: 4vw;
        height: 4vw;
    }

    tbody .el-table__row {
        height: 12vw;
    }

    tr>td,
    th {
        padding-left: 0 !important;
    }

    .product-list-box .product-name {
        font-size: 3vw;
    }

    .Hui-structure {
        padding: 0 5vw 5vw 5vw;
        gap: 3vw;
    }

    .Hui-user-background .Hui-headPortrait span {
        font-size: 7vw;
    }

    .Hui-user-background .Hui-information .Hui-mainBody {
        grid-template-columns: 1fr;
        gap: 2vw;
    }

    .Hui-user-background .Hui-information .Hui-title {
        margin-bottom: 1vw;
            font-size: 6vw;
    }

    .Hui-user-background .Hui-information .Hui-mainBody .Hui-data a {
        font-size: 3.5vw;
    }

    .Hui-user-background .Hui-information .Hui-mainBody .Hui-data {
        font-size: 3.5vw;
        flex-wrap: wrap;
        gap: 1vw;
    }

    .Hui-securityGroup {
        width: 25vw;
    }

    .Hui-user-background {
        height: auto;
        padding: 5vw 5vw 12vw 5vw;
        gap: 5vw;
    }

    .Hui-user-background .Hui-headPortrait {
        flex-shrink: 0;
        width: 18vw;
        height: 18vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData {
        width: 100%;
        flex-direction: column;
        gap: 5vw;
    }

    .Hui-structure .Hui-userInformation {
        padding: 0;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay {
        flex-direction: column;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-headPortrait {
        width: 22vw;
        height: 22vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-headPortrait span {
        font-size: 7vw !important;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-data img {
        width: 5vw;
        height: 5vw;
    }

    .Hui-security .Hui-safetyScore .Hui-echart .Hui-text {
        gap: 3vw;
        align-items: center;
        margin-top: 4vw;
    }

    .Hui-recentWorkOrders .WorkOrder-box .Hui-currentlyUnavailable img {
        width: 30vw;
    }

    .Hui-unopened .no-recommend {
        margin-top: 0.14rem;
        height: 7vw;
        line-height: 7vw;
        font-size: 3vw;
    }

    .Hui-unopened div h2 {
        font-size: 4vw;
    }

    .Hui-security .Hui-safetyScore .Hui-echart .Hui-text .Hui-compare {
        display: flex;
        align-items: center;
    }

    .Hui-unopened div p {
        font-size: 3vw;
    }

    .Hui-recentWorkOrders .WorkOrder-box .Hui-currentlyUnavailable {
        font-size: 4vw;
        margin-top: 0;
    }

    .Hui-unopened img {
        width: 45vw;
        height: 35vw;
    }

    .Hui-unopened .recommend-text {
        margin: 0 auto;
        margin-top: 0.24rem;
        color: #8692B0;
        font-size: 3.5vw;
        background: #EEF4FF;
        height: 8vw;
        width: 45vw;
        text-align: center;
        line-height: 8vw;
        border-radius: 0.03rem;
    }

    .Hui-journalism .Hui-currentlyUnavailable {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 4vw;
        height: 60vw;
    }

    .Hui-campaign .Hui-contactMy {
        width: 100%;
    }

    .Hui-contactMy .Hui-qrCode img {
        width: 30vw;
        height: 30vw;
    }

    .Hui-contactMy .Hui-qrCode {
        gap: 2vw;
        width: 100%;
    }

    .Hui-contactMy .Hui-qrCode .Hui-label {
        padding: 1.5vw 3vw;
        border-radius: 1rem;
        font-size: 3.5vw;
        gap: 1vw;
    }

    .Hui-contactMy .Hui-statement {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3vw;
        margin-top: 3vw;
    }

    .Hui-contactMy .Hui-qrCode span {
        font-size: 4vw;
    }

    .Hui-contactMy .Hui-statement p {
        font-size: 3.5vw;
    }

    .Hui-contactMy .Hui-qrCode .Hui-label img {
        width: 4vw;
        height: 4vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-data a {
        font-size: 3.5vw;
    }

    .Hui-contactMy .Hui-flexs {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .Hui-journalism .Hui-currentlyUnavailable img {
        width: 30vw;
        height: 30vw;
    }

    .Hui-structure .Hui-userInformation .Hui-balance {
        min-width: 100%;
        padding: 5vw;
        gap: 3vw;
        height: 45vw;
    }

    .Hui-structure .Hui-userInformation .Hui-balance .Hui-title-size {
        font-size: 5vw;
        padding: 0;
    }

    .replay-box .Hui-time {
        font-size: 3.5vw;
    }

    .WorkOrder-box {
        padding: 0;
    }

    .Hui-structure .Hui-userInformation .Hui-balance .Hui-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 4vw;
    }

    .Hui-contactMy .Hui-statement .Hui-elaborate {
        padding: 3vw;
        gap: 1vw;
    }

    .Hui-certify-text {
        width: auto;
    }

    .Hui-contactMy .Hui-statement .Hui-elaborate span {
        font-size: 4.5vw;
        color: #111827;
    }

    .Hui-contactMy .Hui-statement .Hui-elaborate div {
        font-size: 3.5vw;
        color: #4B5563;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    .Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-title {
        font-size: 4vw;
    }

    .Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-briefIntroduction {
        font-size: 3.5vw;
    }

    .Hui-campaign .Hui-journalism .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-label {
        padding: 1vw 2vw;
        font-size: 3vw;
    }

    .Hui-structure .Hui-userInformation .Hui-balance .Hui-amountOfMoney {
        font-size: 6vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-flexLeft .Hui-button {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-flexLeft .Hui-button a {
        padding: 2vw;
        gap: 1.5vw;
        justify-content: center;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-flexLeft .Hui-button a img {
        width: 4vw;
        height: 4vw;
    }

    .Hui-authentication .Hui-background span {
        font-size: 3.5vw;
    }

    .Hui-dataBlock {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .product-list-box {
        padding: 5vw;
    }

    .replay-div {
        font-size: 3vw;
        padding: 1vw 2vw;
        height: auto;
        line-height: initial;
    }

    .WorkOrder-item .Hui-boxBalance .Hui-time {
        font-size: 4vw;
    }

    .Hui-productList .Hui-flexbox {
        width: 100%;
        flex-direction: column;
    }

    .replay-title {
        font-size: 4vw;
    }

    .goods-table tbody tr td {
        font-size: 3vw;
    }

    .Hui-productList .Hui-flexbox .Hui-zhongbu {
        flex-direction: column;
        gap: 2vw;
        width: 100%;
    }

    .goods-box {
        height: 100%;
    }

    .replay-name {
        padding: 1vw 2vw;
        font-size: 3vw;
    }

    .Hui-recentWorkOrders {
        width: 100%;
    }

    .WorkOrder-item {
        padding: 2vw;
        gap: 2vw;
    }

    .no-product .el-button {
        width: 30vw;
        height: 9vw;
        font-size: 4vw;
    }

    .Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom a {
        gap: 1vw;
        padding: 3vw;
        font-size: 4vw;
    }

    .Hui-structure .Hui-userInformation .Hui-balance .Hui-flexBottom a img {
        width: 3vw;
        height: 3vw;
    }

    .Hui-news .el-carousel__container {
        height: 34vw;
    }

    .Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-label {
        font-size: 3.5vw;
    }

    .Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-timeLabel .Hui-time {
        font-size: 3.5vw;
    }

    .Hui-news .Hui-carouselImage .Hui-itemNew .Hui-describe .Hui-title {
        font-size: 4vw;
        padding-right: 3.5vw;
    }

    .Hui-dataBlock .Hui-itemBlock:nth-of-type(1)::after {
        content: "";
        width: 20vw;
        height: 20vw;
        bottom: -22%;
        right: -15%;
    }

    .Hui-dataBlock .Hui-itemBlock:nth-of-type(2)::after {
        content: "";
        width: 20vw;
        height: 20vw;
        bottom: -22%;
        right: -15%;
    }

    .Hui-dataBlock .Hui-itemBlock:nth-of-type(3)::after {
        content: "";
        width: 20vw;
        height: 20vw;
        bottom: -22%;
        right: -15%;
    }

    .Hui-dataBlock .Hui-itemBlock:nth-of-type(4)::after {
        content: "";
        width: 20vw;
        height: 20vw;
        bottom: -22%;
        right: -15%;
    }

    .Hui-news {
        height: 35vw;
    }

    .Hui-news .Hui-title-size span {
        font-size: 5vw;
    }

    .Hui-news .Hui-title-size a {
        font-size: 3.5vw;
    }

    .WorkOrder-content {
        gap: 0;
    }

    .no-product h2 {
        font-size: 5vw;
    }

    .no-product p {
        font-size: 3.5vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-flexLeft {
        gap: 3vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-flexRight {
        gap: 5vw;
        margin-top: 3vw;
    }

    .Hui-dataBlock .Hui-itemBlock {
        padding: 4vw;
        height: auto;
    }

    .Hui-dataBlock .Hui-itemBlock .Hui-title span {
        font-size: 3.7vw;
    }

    .Hui-structure .Hui-userInformation .Hui-userData .Hui-textDisplay .Hui-data {
        font-size: 3.5vw;
    }

    .Hui-dataBlock .Hui-itemBlock .Hui-title img {
        width: 7vw;
        height: 7vw;
    }

    .Hui-dataBlock .Hui-itemBlock .Hui-quantity i {
        font-size: 3.5vw;
    }



    .Hui-dataBlock .Hui-itemBlock a {
        font-size: 3.7vw;
    }

    .Hui-security {
        flex-direction: column;
        gap: 3vw;
    }

    .Hui-security .Hui-safetyScore {
        width: 100%;
        padding: 5vw;
    }

    .Hui-security .Hui-safetyScore .Hui-echart {
        flex-direction: column;
        padding: 0;
        align-items: center;
        gap: 5vw;
    }

    .Hui-security .Hui-costInformation {
        width: 100%;
        padding: 5vw;
    }

    .Hui-productList {
        gap: 3vw;
        flex-direction: column;
    }

    .Hui-outsource {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .Hui-productList .Hui-rightTow {
        width: 100%;
        gap: 3vw;
    }

    .Hui-productList .Hui-rightTow .Hui-finance {
        padding: 5vw;
        width: 100%;
    }

    .Hui-campaign {
        flex-direction: column;
        gap: 3vw;
    }

    .Hui-pushs {
        width: 100%;
        padding: 5vw;
    }

    .Hui-unopened .Hui-blockDescription {
        grid-template-columns: repeat(1, 1fr);
        gap: 3vw;
    }

    .Hui-campaign .Hui-journalism {
        width: 100%;
        max-height: 80vw;
        min-height: 80vw;
        padding: 0 0 5vw 0;
    }
}