/* 主要文本字体 */
@font-face {
    font-family: 'MyFont';
    src: url('../font/HarmonyOS_Sans_SC/HarmonyOS_Sans_Bold.woff') format('woff2'),
        url('../font/HarmonyOS_Sans_SC/HarmonyOS_Sans_Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --fontSize: 14.5px;
}

/* 标题 */
.Hui-box .template>.tit {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0.2rem;
    /* font-family: 'MyFont'; */
}

.Hui-box .main-card .com-tit {
    font-family: 'MyFont';
    color: #5a92ff;
    font-size: 20px;
    position: relative;
    padding-left: 15px;
}

.Hui-box .main-card .com-tit::before {
    width: 4px;
    height: 60%;
    background-color: #5a92ff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* 全父 */
.el-main {
    background-color: #fff !important;
}

.Hui-box .main-card .con {
    padding: 0;
}

/* 推荐商品 */
.Hui-box .Hui-commodity {
    display: flex;
    padding: 0.3rem 0;
    flex-direction: column;
    gap: 0.2rem;
}

.Hui-box .Hui-commodity .Hui-mainMenu span {
    font-family: 'MyFont';
    color: #5a92ff;
    font-size: 20px;
    position: relative;
    padding-left: 15px;
}

.Hui-box .Hui-commodity .Hui-mainMenu span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 4px;
    background-color: #5a92ff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.Hui-box .Hui-commodity .Hui-inside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.Hui-box .Hui-commodity .Hui-inside .goods-group-item {
    display: flex;
    gap: 30px;
    padding-left: 20px;
}

.Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-name {
    color: rgba(0, 0, 0, .6);
    font-size: 15px;
    flex-shrink: 0;
    line-height: 2.5;
}

.Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info .option-name {
    background-color: #f1f2f5;
    color: rgba(0, 0, 0, .9);
    padding: 0.1rem 0.2rem;
    font-size: var(--fontSize);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info .option-name:hover {
    background-color: #e3e6eb;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info .option-name.is-active {
    background-color: #0052d9;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2);
    color: #fff;
}

/* 系统配置 */
.Hui-box .image-ul .image-item {
    border: 1px solid #f1f2f5;
    background-color: #f1f2f5;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: calc(100% / 4 - (0.1rem * 1));
    height: 1rem;
    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-box .el-form-item__content .image-box {
    max-width: 100%;
    width: 100%;
}

.Hui-box .image-box .image-ul {
    max-width: 100%;
    width: 100%;
}

.Hui-box .image-ul .empty-image {
    width: 2rem;
    height: 1rem;
    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-box .image-ul .empty-image:hover {
    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;
    border: 1px solid #0052d9;
    background: rgba(0, 82, 217, .0389) !important;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .1);
}

.Hui-box .image-ul .image-item .icon {
    -webkit-filter: grayscale(0);
    opacity: 1;
}

.Hui-box .image-ul .image-item .name {
    font-size: 0.178rem;
    font-family: 'MyFont';
}

.Hui-box .image-ul .image-item .version {
    font-family: 'MyFont';
    font-size: 0.135rem;
}

.Hui-box .image-ul .image-item.hover {
    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;
    border: 1px solid #0052d9;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .1);
}

.Hui-box .image-ul .image-item.active {
    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;
    border: 1px solid #0052d9;
    background: rgba(0, 82, 217, .0389) !important;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .1);
}

.Hui-box .image-ul .image-item.active .name,
.Hui-box .image-ul .image-item.active .version {
    color: #0052d9;
}

/* 套餐 */
.Hui-box .template .cloud-box .cloud-item {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: auto;
    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;
    background: #fff;
}

.Hui-box .template .cloud-box .info p {
    font-family: 'MyFont';
}

.Hui-box .template .cloud-box .cloud-item p span:last-child {
    font-size: 13px;
}

.Hui-box .template .cloud-box .cloud-item:hover {
    border: 1px solid #0052d9;
    box-shadow: 0 4px 12px 0 rgba(55, 99, 170, .1);
    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-box .template .cloud-box .info .name {
    width: 50%;
}

.Hui-box .template .cloud-box .info {
    padding: 0.1rem 0.2rem 0 0.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem 0;
}

.Hui-box .template .cloud-box .cloud-item .inner {
    padding-bottom: 0.4rem;
}

.Hui-box .template .cloud-box .cloud-item .no-up {
    bottom: -0.05rem;
    right: 0.15rem;
}

.Hui-box .template .cloud-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.Hui-box .template .cloud-box .cloud-item.active {
    border: 1px solid #0052d9;
    box-shadow: 0 4px 12px 0 rgba(55, 99, 170, .2);
    background: linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 100%);
}

.Hui-box .template .cloud-box .cloud-item .top {
    font-family: 'MyFont';
    font-size: 0.175rem;
    background: url('../img/index_bg.png') no-repeat center !important;
    background-size: cover !important;
}

.Hui-box .f-order .l-empty {
    display: none;
}

/* 文本框 */
.Hui-box .el-input__inner {
    border-color: #e2e6ed;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    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-box .el-input__inner:hover {
    border-color: #0052d9 !important;
    color: rgba(0, 0, 0, .9);
    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-box .f-order .right .buy {
    background-color: #0052d9;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2);
    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-box .f-order .right .buy: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-box .f-order .el-main {
    box-shadow: none;
}

.Hui-box .f-order {
    height: 72px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(24, 44, 108, .15);
}

.Hui-box .f-order .bot-price {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.Hui-box .discount-text {
    box-shadow: 0 4px 12px rgb(249 150 0 / 20%) !important;
    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;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-family: 'MyFont';
}

.Hui-box .el-input-number__decrease,
.Hui-box .el-input-number__increase {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.Hui-box .f-order .bot-price .new span {
    font-family: 'MyFont';
    margin-left: 0;
}

* {
    font-family: 'MyFont';
}

.Hui-box .discount-text:hover {
    background-color: #f99600;
    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-box .f-order .bot-price .old {
    margin-top: 0;
}

.main-card .fast-form {
    padding-bottom: 0 !important;
}

.main-card .top-tab>.el-tabs__header+.el-tabs__content {
    padding-bottom: 0 !important;
}

/* 滑块 */
.Hui-box .main-card .el-tabs__nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.Hui-box .main-card .el-tabs__active-bar {
    display: flex !important;
    background-color: #fff;
    height: 0.32rem;
    padding: 0;
    bottom: initial;
    left: -0.1rem;
    padding: 0 0.1rem;
}

.Hui-box .main-card .el-tabs__nav-scroll {
    width: fit-content;
    background-color: #f1f2f5;
    padding: 0.15rem 0.2rem;
    display: flex;
    align-items: center;
}

.Hui-box .main-card .el-tabs .el-tabs__item::after {
    display: none;
}

.Hui-box .el-checkbox__input.is-checked+.el-checkbox__label {
    color: #1a56dba1;
}

.Hui-box .el-checkbox__input.is-checked .el-checkbox__inner,
.Hui-box .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #1a56dbe0;
}

.Hui-box .main-card .el-tabs__nav-wrap::after {
    display: none;
}

.Hui-box .main-card .el-tabs .el-tabs__item {
    padding: 0 !important;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 500;
    font-family: 'MyFont';
}

/* 基础配置 */
.Hui-box .main-card .el-tabs .el-tabs__item.is-active {
    color: #0052d9;
    font-weight: bold;
    font-size: var(--fontSize);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .main-card .el-tabs .el-tabs__item {
    font-size: var(--fontSize);
}

.Hui-box .main-card .el-tabs .el-tabs__item:nth-of-type(3) {
    padding-left: 0.2rem !important;
}

.Hui-box .main-card .el-form .el-tabs .el-tabs__item {
    font-size: var(--fontSize);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .main-card .el-form .el-tabs .el-tabs__item:nth-of-type(3) {
    padding-left: 0.2rem !important;
}

.Hui-box .main-card .el-form .el-tabs .el-tabs__item::after {
    height: 1.5px;
}

.Hui-box .el-form-item__label {
    color: rgba(0, 0, 0, .6);
    font-size: 15px;
}

.Hui-box .el-radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.Hui-box .main-card .el-form .el-radio-button__inner {
    border: none;
    border-radius: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    border-radius: 0;
    background-color: #f1f2f5;
    color: rgba(0, 0, 0, .9);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-size: var(--fontSize);
}

.Hui-box .main-card .el-form .el-radio-button__inner:hover {
    background-color: #e3e6eb;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .main-card .el-form .el-radio-button.is-active .el-radio-button__inner {
    background-color: #0052d9;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2) !important;
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* tips */
.Hui-box .main-card .s-tip {
    padding: 0.15rem 1rem;
    max-width: max-content;
    font-size: 14px;
    color: #0054e1;
    background-color: #eff6fd;
    border-left: 2px solid #2c56cd;
    border-right: 2px solid #2c56cd;
}

.Hui-box .main-card .s-tip span {
    color: #ff7200;
}

/* 商标注册 */
/* 商标 */
.goods .common-config .order-right {
    position: initial;
    margin-top: 0.4rem;
    box-shadow: 0px 0px 2px rgba(52, 52, 90, 0.1);
    border-radius: 0.1rem;
    padding: 0.3rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
}

.common-config .pro-tit {
    font-weight: bold;
}

.goods .common-config .description {
    background-color: #fff;
    border-radius: 0.15rem;
    font-size: 0.165rem;
}

.goods .common-config .cycle .item {
    background-color: #F9FAFB;
    border-radius: 0.1rem;
}

.goods .common-config .config-item {
    background-color: #fff;
    padding: 0.3rem;
    border-radius: 0.15rem;
    margin-top: 0.2rem;
}

.goods .common-config .l-config {
    margin-right: 0.5rem;
    width: 75%;
}

.common-config .cycle .item.com-active {
    background-color: #0052FF;
}

.common-config .cycle .item.com-active p {
    color: #fff;
}

.goods .common-config .cycle .item .name {
    font-size: 0.165rem;
    font-weight: bold;
}

.el-icon-check:before,
.common-config .com-active::after {
    display: none;
}

.goods .common-config .order-right .right-title {
    font-size: 0.2rem;
    padding-bottom: 0.2rem;
}

.goods .common-config .order-right .info {
    padding: 0.2rem 0;
}

.goods .common-config .order-right .info .des {
    font-size: 0.165rem;
    margin-bottom: 0.2rem;
}

.goods .common-config .order-right .subtotal {
    padding: 0.2rem 0;
    font-size: 0.165rem;
}

/* 财务 */
.Hui-box .common-config .common-box .click-select.area .item {
    
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.Hui-box .common-config .common-box .item {
    width: auto !important;
    padding: 0 0.2rem !important;
}

.Hui-box .common-config .common-box .item.com-active {
    background-color: #0052d9 !important;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2) !important;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.Hui-box .common-config .common-box .click-select.area .item.com-active {
    background-color: #0052d9;
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2) !important;
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.Hui-box .common-config .common-box .config-item {
    margin-top: 0 ;
}
.Hui-box .common-config .pro-tit {
    font-weight: 400;
}

/* 移动端 */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    .Hui-box .common-config .common-box .item {
    font-size: 3.5vw !important;
    height: 10vw !important;
    line-height: 10vw !important;
    margin-top: 5vw !important;
    }
    .Hui-box .common-config .common-box .el-icon-refresh {
    font-size: 4vw !important;
}

    /* 商标 */
    .common-config .common-box {
        flex-direction: column;
    }

    .goods .common-config .l-config {
        margin-right: 0;
        width: 100%;
    }

    .common-config .pro-tit {
        font-size: 6vw;
    }

    .goods .common-config .description {
        font-size: 3.5vw;
        padding: 5vw;
        margin-top: 4vw;
    }

    .common-config .config-tit {
        padding-left: 3vw !important;
        font-size: 4vw !important;
        margin-bottom: 3vw !important;
    }

    .common-config .el-select input {
        height: 9vw !important;
        width: 100%;
    }

    .common-config .cycle {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 3vw;
    }

    .common-config .cycle .item.com-active,
    .goods .common-config .cycle .item {
        margin: 0;
        padding: 3vw 0;
    }

    .goods .common-config .cycle .item .name {
        font-size: 4vw !important;
    }

    .common-config .cycle .item.com-active p {
        font-size: 3.5vw !important;
    }

    .goods .common-config .order-right {
        width: 100%;
    }

    .goods .common-config .order-right .right-title {
        font-size: 5vw;
        padding-bottom: 3vw;
    }

    .goods .common-config .order-right .info .des {
        font-size: 3.5vw;
    }

    .goods .common-config .order-right .info {
        padding: 3vw 0;
    }
    .goods .common-config .order-right .subtotal,
    .common-config .order-right .order-right-item .row div,
    .common-config .order-right .order-right-footer .footer-total .left {
        font-size: 3.5vw;
    }

    .common-config .cycle .item .price {
        font-size: 3vw;
    }

    .goods .common-config .order-right .info .des {
        margin-bottom: 4vw;
    }

    .goods .common-config .order-right .subtotal {
        padding: 3vw 0;
    }

    .common-config .order-right .order-right-item .row .del-add .del,
    .common-config .order-right .order-right-item .row .del-add .add {
        width: 6vw !important;
        height: 6vw !important;
        font-size: 4vw;
    }

    .common-config .order-right .order-right-item .row .del-add .num .el-input,
    .common-config .order-right .order-right-item .row .del-add .num {
        width: 6vw !important;
        height: 6vw !important;
    }

    .common-config .order-right .order-right-item .row .del-add .num .el-input__inner {
        width: 6vw !important;
        height: 6vw !important;
        font-size: 3.5vw;
    }

    .common-config .order-right .order-right-footer .footer-total .right span {
        font-size: 6vw;

    }

    .discount-text {
        font-size: 4vw !important;
        padding: 2vw 3vw;
    }

    .common-config .f-btn .el-button {
        height: 10vw !important;
    }
    /* 自营商品 */
    .Hui-box .Hui-commodity .Hui-mainMenu span {
        font-size: 5vw;
    }

    .Hui-box .Hui-commodity .Hui-inside .goods-group-item {
        gap: 3vw;
        padding-left: 0;
        flex-direction: column;
    }

    .Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-name {
        font-size: 4vw;
    }

    .Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info {
        gap: 3vw;
        flex-wrap: nowrap;
        overflow-y: auto;
        padding-bottom: 2vw;
    }

    .Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info::-webkit-scrollbar {
        height: 2px;
    }

    .Hui-box .Hui-commodity .Hui-inside .goods-group-item .goods-group-info .option-name {
        padding: 2vw 3vw;
        flex-shrink: 0;
    }

    .Hui-box .el-tabs__item {
        margin-bottom: 0;
        margin-top: 0;
    }

    .Hui-box .main-card .el-tabs__nav-scroll {
        padding: 3vw 4.5vw;
    }

    .Hui-box .main-card .el-tabs__active-bar {
        height: 6.5vw;
        left: 0;
        padding: 0 2vw;
    }

    .Hui-box .f-order .num .is-disabled {
        height: 11vw;
    }

    .Hui-box .main-card .el-tabs .el-tabs__item:nth-of-type(3) {
        padding-left: 5vw !important;
    }

    .Hui-box .el-input-number .el-input__inner {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .Hui-box .f-order .el-input-number .el-input-number__increase,
    .Hui-box .f-order .el-input-number .el-input-number__decrease {
        height: 11vw;
    }

    .Hui-box .main-card .el-tabs__active-bar::after {
        content: "";
        width: 2vw;
        height: 100%;
        position: absolute;
        left: -2vw;
        top: 0;
        background-color: #fff;
    }

    .Hui-box .main-card .el-tabs__active-bar::before {
        content: "";
        width: 2vw;
        height: 100%;
        position: absolute;
        right: -2vw;
        top: 0;
        background-color: #fff;
    }

    .Hui-box .main-card .el-tabs .el-tabs__item {
        padding: 0 !important;
        font-size: 3.5vw !important;
    }

    .Hui-box .main-card .el-form .el-tabs .el-tabs__item:nth-of-type(3) {
        padding-left: 5vw !important;
    }

    .el-form-item__content {
        margin-left: 0 !important;
    }

    .Hui-box .main-card .el-form .el-form-item {
        display: flex;
        flex-direction: column;
    }

    .Hui-box .main-card .com-tit {
        font-size: 5vw;
    }

    .Hui-box .main-card .el-form .el-radio-button.is-active .el-radio-button__inner {
        min-width: 21vw;
        height: 8vw;
        line-height: 8vw;
        width: auto;
    }

    .Hui-box .el-form-item__label {
        font-size: 4vw;
        width: auto !important;
    }

    .Hui-box .main-card .s-tip {
        padding: 2vw;
        font-size: 3vw;
        line-height: 1.6;
    }

    .Hui-box .template .cloud-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 3vw;
        margin-top: 0;
        margin-left: 0;
    }

    .Hui-box .template .cloud-box .cloud-item {
        margin-top: 0;
        margin-left: 0;
    }

    .Hui-box .template .cloud-box .cloud-item .top {
        font-size: 4vw;
        line-height: 9vw;
        padding: 0 3vw;
    }

    .Hui-box .template .cloud-box .info {
        padding: 2vw 3vw 0 3vw;
        gap: 2vw 0;
    }

    .Hui-box .template .cloud-box .cloud-item:hover {
        border-color: transparent;
    }

    .Hui-box .template .cloud-box .cloud-item.active {
        border: 1px solid #0052d9;
        box-shadow: 0 4px 12px 0 rgba(55, 99, 170, .2);
        background: linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 100%);
    }

    .Hui-box .template .cloud-box .cloud-item p span:last-child {
        font-size: 3vw;
    }

    .Hui-box .template .cloud-box .info p {
        line-height: 6vw;
        font-size: 3vw;
    }

    .Hui-box .image-ul .image-item {
        width: 100%;
        height: 15vw;
        padding: 3vw;
    }

    .Hui-box .main-card .el-form .el-radio-button__inner {
        min-width: 21vw;
        height: 8vw;
        line-height: 8vw;
        padding: 0 3vw;
    }

    .Hui-box .image-ul .image-item .icon {
        width: 5vw;
        height: 5vw;
    }

    .Hui-box .image-ul .image-item .name {
        font-size: 3.5vw;
    }

    .Hui-box .image-ul .image-item .version {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .Hui-box .image-ul.image-item .r-info {
        margin-left: 2vw;
    }

    .Hui-box .el-checkbox__label {
        font-size: 3.5vw;
    }

    .Hui-box thead tr {
        height: 10vw;
    }

    .Hui-box .f-order .bot-price .new span {
        font-size: 5.5vw;
    }

    .Hui-box .discount-content .discount-input .el-input__inner {
        height: 10vw;
        line-height: 10vw;
        padding-right: 1vw;
    }

    .Hui-box .discount-content .discount-btn {
        font-size: 3vw;
        width: 12vw;
        height: 10vw;
        line-height: 10vw;
        padding: 0;
    }

    .Hui-box tbody .el-table__row {
        height: 10vw;
    }

    .Hui-box .el-input.is-disabled .el-input__inner {
        height: 7vw !important;
        line-height: 7vw !important;
    }

    .Hui-box .main-card .el-table .el-select .el-input__inner {
        height: 7vw !important;
        line-height: 7vw !important;
    }

    .el-select-dropdown__item {
        font-size: 3vw !important;
    }

    .Hui-box .main-card .store {
        font-size: 3.5vw;
    }

    .Hui-box .main-card {
        padding-bottom: 0;
    }

    .Hui-box .f-order {
        position: initial;
        height: auto;
        box-shadow: none;
    }

    .Hui-box .f-order .el-main {
        padding: 0 !important;
    }

    .Hui-box .f-order .main-card .left {
        justify-content: space-between !important;
        width: 100%;
    }

    .Hui-box .el-input__inner {
        height: auto;
    }

    .Hui-box .f-order .el-input-number {
        width: 30vw;
    }

    .Hui-box .f-order .link {
        font-size: 3vw;
    }

    .Hui-box .f-order .l-txt {
        font-size: 3.5vw;
    }

    .Hui-box .f-order .main-card {
        row-gap: 5vw;
    }

    .Hui-box .f-order .mid {
        justify-content: space-between !important;
        width: 100%;
    }

    .Hui-box .f-order .right {
        justify-content: space-between !important;
        width: 100%;
    }

    .Hui-box .f-order .bot-price .new .price {
        font-size: 6vw;
    }

    .Hui-box .discount-text {
        padding: 0.5vw 1.5vw;
        font-size: 2.5vw;
    }

    .Hui-box .f-order .right .add-cart {
        width: 10vw;
        height: 10vw;
        border-radius: 0;
    }

    .Hui-box .f-order .right .buy {
        width: 34vw;
        line-height: 9vw;
        font-size: 3.5vw;
    }

    .Hui-box .el-input-number {
        line-height: 9vw;
    }

    .free-content .c-item .l-txt,
    .cur-content .c-item .l-txt {
        font-size: 2.5vw !important;
    }

    .free-content .c-item .price,
    .cur-content .c-item {
        font-size: 2.5vw !important;
    }

    .Hui-box .main-card .el-slider__runway {
        width: 50%;
    }

    .Hui-box .marks {
        width: 63%;
    }

    .Hui-box .marks .item {
        font-size: 3vw;
    }

    .Hui-box .el-slider__input {
        float: initial;
        width: 30vw;
    }

    .el-input--small .el-input__inner {
        line-height: 9vw;
    }

    .Hui-box .f-order .main-card {
        flex-direction: column;
    }
}