        .rule-card {
            border: 1px solid #e8e8ef;
            border-radius: 4px;
            background: #fff;
            padding: 0 16px;
            margin: 10px; /* 增加少许外边距，避免贴边 */
        }
        .rule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            color: #222;
        }
        .rule-table caption {
            caption-side: top;
            text-align: left;
            padding: 0 8px 12px 8px;
            font-size: 16px;
            color: #111;
            font-weight: 600;
        }
        .rule-table th, .rule-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f3;
        }
        .rule-table thead th {
            background: #f8f9fb;
            font-weight: 600;
            color: #333;
            text-align: left;
        }
        .rule-table td.label {
            width: 140px;
            color: #666;
        }
        .rule-table td.value {
            color: #222;
        }
        .rule-table tbody tr:nth-child(odd) td {
            background: #fbfbfd;
        }
        .rule-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* 移动端自适应：重构为卡片式堆叠展示（核心优化） */
        @media (max-width: 640px) {
            /* 1. 隐藏桌面端表头 */
            .rule-table thead {
                display: none;
            }

            /* 2. 将表格相关元素改为块级元素，占满移动端宽度 */
            .rule-table, .rule-table tbody, .rule-table tr {
                display: block;
                width: 100%;
            }

            /* 3. 重构表格单元格：移动端每个单元格独立成行，模拟卡片字段 */
            .rule-table td {
                display: block;
                width: 100%;
                padding: 10px 12px;
                box-sizing: border-box; /* 确保内边距不超出宽度 */
                position: relative; /* 用于定位伪元素（字段名称） */
                text-align: right; /* 数值靠右对齐，更整洁 */
                border-bottom: 1px dashed #f0f0f3; /* 虚线分隔，区分字段 */
            }

            /* 4. 关键：通过伪元素 ::before 还原桌面端表头字段（移动端核心适配） */
            /* 对应表格的9个列：规格、流量、带宽、连接数、主/总域名数、HTTP端口数、四层端口数、Webscoket、HTTP3 */
            .rule-table td:nth-child(1)::before {
                content: "规格：";
            }
            .rule-table td:nth-child(2)::before {
                content: "流量：";
            }
            .rule-table td:nth-child(3)::before {
                content: "带宽：";
            }
            .rule-table td:nth-child(4)::before {
                content: "连接数：";
            }
            .rule-table td:nth-child(5)::before {
                content: "主/总域名数：";
            }
            .rule-table td:nth-child(6)::before {
                content: "HTTP端口数：";
            }
            .rule-table td:nth-child(7)::before {
                content: "四层端口数：";
            }
            .rule-table td:nth-child(8)::before {
                content: "Webscoket：";
            }
            .rule-table td:nth-child(9)::before {
                content: "HTTP3：";
            }

            /* 5. 样式优化：伪元素（字段名）靠左对齐，加粗区分 */
            .rule-table td::before {
                position: absolute;
                left: 12px;
                top: 10px;
                font-weight: 600;
                color: #333;
                text-align: left;
            }

            /* 6. 优化移动端卡片和表格样式 */
            .rule-card {
                padding: 12px;
                margin: 5px;
            }
            .rule-table tbody tr {
                margin-bottom: 16px; /* 每个产品规格卡片之间留间距 */
                border: 1px solid #f0f0f3;
                border-radius: 4px;
                background: #fff;
                padding: 8px 0;
            }
            .rule-table tbody tr:nth-child(odd) td {
                background: transparent; /* 取消奇数行背景，移动端卡片更整洁 */
            }
            .rule-table tbody tr:last-child td {
                border-bottom: none; /* 最后一个字段取消虚线 */
            }
            .rule-table caption {
                text-align: left;
                font-size: 16px;
                color: #111;
                font-weight: 600;
            }
        }
        
        /* 主要文本字体 */
@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;
}

/* 标题 */
.A3-box .template>.tit {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0.2rem;
    /* font-family: 'MyFont'; */
}

.A3-box .main-card .com-tit {
    font-family: 'MyFont';
    color: #5a92ff;
    font-size: 20px;
    position: relative;
    padding-left: 15px;
}

.A3-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;
}

.A3-box .main-card .con {
    padding: 0;
}

/* 推荐商品 */
.A3-box .A3-commodity {
    display: flex;
    padding: 0.3rem 0;
    flex-direction: column;
    gap: 0.2rem;
}

.A3-box .A3-commodity .A3-mainMenu span {
    font-family: 'MyFont';
    color: #5a92ff;
    font-size: 20px;
    position: relative;
    padding-left: 15px;
}

.A3-box .A3-commodity .A3-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;
}

.A3-box .A3-commodity .A3-inside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
}

.A3-box .A3-commodity .A3-inside .el-drawer__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 显示y滚动条 */
.A3-box .A3-commodity .A3-inside .el-drawer__body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f1f2f5;
}

.A3-box .A3-commodity .A3-inside .el-drawer__header {
    margin-bottom: 20px;
    font-size: 18px;
}

.A3-box .A3-commodity .A3-inside .el-button {
    border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -ms-border-radius: var(--borderRadius);
    -o-border-radius: var(--borderRadius);
    box-shadow: 0 4px 12px rgba(55, 99, 170, .2);
}

.A3-box .A3-commodity .A3-inside .el-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.A3-box .A3-commodity .A3-inside .el-button img {
    width: 15px;
    object-fit: contain;
}

.A3-box .A3-commodity .A3-inside .goods-group-item {
    display: flex;
    gap: 30px;
    padding-left: 20px;
}

.A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-name {
    color: rgba(0, 0, 0, .6);
    font-size: 15px;
    flex-shrink: 0;
    line-height: 2.5;
}

.A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.A3-box .A3-commodity .A3-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;
}

.A3-box .A3-commodity .A3-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;
}

.A3-box .A3-commodity .A3-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;
}

/* 系统配置 */
.A3-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;
}

.A3-box .el-form-item__content .image-box {
    max-width: 100%;
    width: 100%;
}

.A3-box .image-box .image-ul {
    max-width: 100%;
    width: 100%;
}

.A3-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;
}

.A3-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);
}

.A3-box .image-ul .image-item .icon {
    -webkit-filter: grayscale(0);
    opacity: 1;
}

.A3-box .image-ul .image-item .name {
    font-size: 0.178rem;
    font-family: 'MyFont';
}

.A3-box .image-ul .image-item .version {
    font-family: 'MyFont';
    font-size: 0.135rem;
}

.A3-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);
}

.A3-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);
}

.A3-box .image-ul .image-item.active .name,
.A3-box .image-ul .image-item.active .version {
    color: #0052d9;
}

/* 套餐 */
.A3-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;
}

.A3-box .template .cloud-box .info p {
    font-family: 'MyFont';
}

.A3-box .template .cloud-box .cloud-item p span:last-child {
    font-size: 13px;
}

.A3-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;

}

.A3-box .template .cloud-box .info .name {
    width: 50%;
}

.A3-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;
}

.A3-box .template .cloud-box .cloud-item .inner {
    padding-bottom: 0.4rem;
}

.A3-box .template .cloud-box .cloud-item .no-up {
    bottom: -0.05rem;
    right: 0.15rem;
}

.A3-box .template .cloud-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.A3-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%);
}

.A3-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;
}

.A3-box .f-order .l-empty {
    display: none;
}

/* 文本框 */
.A3-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;
}

.A3-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;
}

/* 底部按钮 */
.A3-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;
}

.A3-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;
}

/* 底部粘性 */
.A3-box .f-order .el-main {
    box-shadow: none;
}

.A3-box .f-order {
    height: 72px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(24, 44, 108, .15);
}

.A3-box .f-order .bot-price {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.A3-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';
}

.A3-box .el-input-number__decrease,
.A3-box .el-input-number__increase {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.A3-box .f-order .bot-price .new span {
    font-family: 'MyFont';
    margin-left: 0;
}

* {
    font-family: 'MyFont';
}

.A3-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;
}

.A3-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;
}

/* 滑块 */
.A3-box .main-card .el-tabs__nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.A3-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;
}

.A3-box .main-card .el-tabs__nav-scroll {
    width: fit-content;
    background-color: #f1f2f5;
    padding: 0.15rem 0.2rem;
    display: flex;
    align-items: center;
}

.A3-box .main-card .el-tabs .el-tabs__item::after {
    display: none;
}

.A3-box .el-checkbox__input.is-checked+.el-checkbox__label {
    color: #1a56dba1;
}

.A3-box .el-checkbox__input.is-checked .el-checkbox__inner,
.A3-box .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #1a56dbe0;
}

.A3-box .main-card .el-tabs__nav-wrap::after {
    display: none;
}

.A3-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';
}

/* 基础配置 */
.A3-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;
}

.A3-box .main-card .el-tabs .el-tabs__item {
    font-size: var(--fontSize);
}

.A3-box .main-card .el-tabs .el-tabs__item:nth-of-type(3) {
    padding-left: 0.2rem !important;
}

.A3-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;
}

.A3-box .main-card .el-form .el-tabs .el-tabs__item:nth-of-type(3) {
    padding-left: 0.2rem !important;
}

.A3-box .main-card .el-form .el-tabs .el-tabs__item::after {
    height: 1.5px;
}

.A3-box .el-form-item__label {
    color: rgba(0, 0, 0, .6);
    font-size: 15px;
}

.A3-box .el-radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.A3-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);
}

.A3-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;
}

.A3-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 */
.A3-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;
}

.A3-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: #2929FF !important;
}

.item.com-active {
    border: solid 1px #4949F8 !important;
}

.common-config .cycle .item.com-active p {
    color: #fff !important;
}

.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;
}

/* 财务 */
.A3-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;
}

.A3-box .common-config .common-box .item {
    width: auto !important;
    padding: 0 0.2rem !important;
}

.A3-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;
}

.A3-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;
}

.A3-box .common-config .common-box .config-item {
    margin-top: 0;
}

.A3-box .common-config .pro-tit {
    font-weight: 400;
}

.A3-choice {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    display: flex;
    align-items: center;
    gap: 5vw;
    background-color: rgb(242, 243, 243);
    border-radius: 0.1rem;
    overflow: hidden;
}

.van-dropdown-menu {
    width: calc(100% / 3);
}

.A3-search {
    width: calc(100% / 3);
    flex-shrink: 0;
}

.A3-search .el-input__inner {
    background-color: transparent !important;
    border-color: transparent !important;
    padding-right: 0 !important;
    padding-left: 7vw !important;
    padding: 0 5vw 0 7vw !important;
}

.A3-search .el-input__inner:hover {
    border-color: transparent !important;
}

.A3-search .el-icon-search {
    font-size: 4vw !important;
    display: flex;
    align-items: center;
}

.van-dropdown-menu__title::after {
    border-color: transparent transparent #000000ab #000000ab !important;
}

.van-dropdown-menu__bar {
    box-shadow: none !important;
    background-color: transparent !important;
    height: auto !important;
}

.van-cell__title,
.van-cell__value {
    font-size: 3.5vw;
}

@media (min-width: 768px) {
    .h5 {
        display: none !important;
    }

}

.van-ellipsis {
    font-size: 3.5vw;
}

/* 移动端 */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }

    .pc {
        display: none !important;
    }

    .A3-box .template>.tit {
        font-size: 6vw;
    }



    .A3-box .main-card .el-form .el-radio-button__inner {
        font-size: 3.5vw;
    }

    .A3-box .common-config .common-box .item {
        font-size: 3.5vw !important;
        height: 10vw !important;
        line-height: 10vw !important;
        margin-top: 5vw !important;
    }

    .A3-box .el-radio-group {
        gap: 0;
    }

    .A3-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;
    }

    /* 自营商品 */
    .A3-box .A3-commodity {
        position: fixed;
        top: 15vw;
        left: 0;
        width: 100%;
        padding: 3vw;
        background-color: #fff;
        z-index: 999;
    }

    .A3-box .A3-commodity .A3-mainMenu span {
        font-size: 5vw;
    }

    .A3-box .A3-commodity .A3-inside .goods-group-item {
        gap: 3vw;
        padding-left: 0;
        flex-direction: column;
    }

    .A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-name {
        font-size: 4vw;
    }

    .A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-info {
        gap: 3vw;
        flex-wrap: nowrap;
        overflow-y: auto;
        padding-bottom: 2vw;
    }

    .A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-info::-webkit-scrollbar {
        height: 2px;
    }

    .A3-box .A3-commodity .A3-inside .goods-group-item .goods-group-info .option-name {
        padding: 2vw 3vw;
        flex-shrink: 0;
    }

    .A3-box .el-tabs__item {
        margin-bottom: 0;
        margin-top: 0;
    }

    .A3-box .main-card .el-tabs__nav-scroll {
        padding: 3vw 4.5vw;
    }

    .A3-box .main-card .el-tabs__active-bar {
        height: 6.5vw;
        left: 0;
        padding: 0 2vw;
    }

    .A3-box .f-order .num .is-disabled {
        height: 11vw;
    }

    .A3-box .main-card .el-tabs .el-tabs__item:nth-of-type(3) {
        padding-left: 5vw !important;
    }

    .A3-box .el-input-number .el-input__inner {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .A3-box .f-order .el-input-number .el-input-number__increase,
    .A3-box .f-order .el-input-number .el-input-number__decrease {
        height: 10vw;
        width: 9vw;
    }

    .A3-box .el-input-number__decrease,
    .A3-box .el-input-number__increase {
        width: 8vw;
        height: 10vw;
    }

    .A3-box .main-card .el-tabs__active-bar::after {
        content: "";
        width: 2vw;
        height: 100%;
        position: absolute;
        left: -2vw;
        top: 0;
        background-color: #fff;
    }

    .A3-box .main-card .el-tabs__active-bar::before {
        content: "";
        width: 2vw;
        height: 100%;
        position: absolute;
        right: -2vw;
        top: 0;
        background-color: #fff;
    }

    .A3-box .main-card .el-tabs .el-tabs__item {
        padding: 0 !important;
        font-size: 3.5vw !important;
    }

    .A3-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;
    }

    .A3-box .main-card .el-form .el-form-item {
        display: flex;
        flex-direction: column;
    }

    .A3-box .main-card .com-tit {
        font-size: 5vw;
    }

    .A3-box .main-card .el-form .el-radio-button.is-active .el-radio-button__inner {
        min-width: 21vw;
        height: 8vw;
        line-height: 8vw;
        width: auto;
        font-size: 3.5vw;
    }

    .A3-box .el-form-item__label {
        font-size: 4vw;
        width: auto !important;
    }

    .A3-box .main-card .s-tip {
        padding: 2vw;
        font-size: 3vw;
        line-height: 1.6;
        max-width: 100%;
    }

    .A3-box .template .cloud-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 3vw;
        margin-top: 0;
        margin-left: 0;
    }

    .A3-box .template .cloud-box .cloud-item {
        margin-top: 0;
        margin-left: 0;
    }

    .A3-box .template .cloud-box .cloud-item .top {
        font-size: 4vw;
        line-height: 9vw;
        padding: 0 3vw;
    }

    .A3-box .template .cloud-box .info {
        padding: 2vw 3vw 0 3vw;
        gap: 2vw 0;
    }

    .A3-box .template .cloud-box .cloud-item:hover {
        border-color: transparent;
    }

    .A3-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%);
    }

    .A3-box .template .cloud-box .cloud-item p span:last-child {
        font-size: 3vw;
    }

    .A3-box .template .cloud-box .info p {
        line-height: 6vw;
        font-size: 3vw;
    }

    .A3-box .image-ul .image-item {
        width: 100%;
        height: 15vw;
        padding: 3vw;
    }

    .A3-box .main-card .el-form .el-radio-button__inner {
        min-width: 21vw;
        height: 8vw;
        line-height: 8vw;
        padding: 0 3vw;
    }

    .A3-box .image-ul .image-item .icon {
        width: 5vw;
        height: 5vw;
    }

    .A3-box .image-ul .image-item .name {
        font-size: 3.5vw;
    }

    .A3-box .image-ul .image-item .version {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .A3-box .image-ul.image-item .r-info {
        margin-left: 2vw;
    }

    .A3-box .el-checkbox__label {
        font-size: 3.5vw;
    }

    .A3-box thead tr {
        height: 10vw;
    }

    .A3-box .f-order .bot-price .new span {
        font-size: 5.5vw;
    }

    .A3-box .discount-content .discount-input .el-input__inner {
        height: 10vw;
        line-height: 10vw;
        padding-right: 1vw;
    }

    .A3-box .discount-content .discount-btn {
        font-size: 3vw;
        width: 12vw;
        height: 10vw;
        line-height: 10vw;
        padding: 0;
    }

    .A3-box tbody .el-table__row {
        height: 10vw;
    }

    .A3-box .el-input.is-disabled .el-input__inner {
        height: 7vw !important;
        line-height: 7vw !important;
    }

    .A3-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;
    }

    .A3-box .main-card .store {
        font-size: 3.5vw;
    }

    .A3-box .main-card {
        padding-bottom: 0;
    }

    .A3-box .f-order {
        position: initial;
        height: auto;
        box-shadow: none;
    }

    .A3-box .f-order .el-main {
        padding: 0 !important;
    }

    .A3-box .f-order .main-card .left {
        justify-content: space-between !important;
        width: 100%;
    }

    .A3-search .el-input__inner {
        font-size: 3vw;
    }

    .A3-box .f-order .el-input-number {
        width: 30vw;
    }

    .A3-box .f-order .link {
        font-size: 3vw;
    }

    .A3-box .f-order .l-txt {
        font-size: 3.5vw;
    }

    .A3-box .f-order .main-card {
        row-gap: 5vw;
    }

    .A3-box .f-order .mid {
        justify-content: space-between !important;
        width: 100%;
        flex-wrap: wrap;
    }

    .A3-box .f-order .right {
        justify-content: space-between !important;
        width: 100%;
    }

    .A3-box .f-order .bot-price .new .price {
        font-size: 6vw;
    }

    .A3-box .discount-text {
        padding: 0.5vw 1.5vw;
        font-size: 2.5vw;
    }

    .A3-box .f-order .right .add-cart {
        width: 10vw;
        height: 10vw;
        border-radius: 0;
    }

    .A3-box .f-order .right .buy {
        width: 34vw;
        line-height: 9vw;
        font-size: 3.5vw;
    }

    .A3-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;
    }

    .A3-box .main-card .el-slider__runway {
        width: 50%;
    }

    .A3-box .marks {
        width: 63%;
    }

    .A3-box .marks .item {
        font-size: 3vw;
    }

    .A3-box .el-slider__input {
        float: initial;
        width: 30vw;
    }

    .el-input--small .el-input__inner {
        line-height: 9vw;
    }

    .A3-box .f-order .main-card {
        flex-direction: column;
    }
}