@charset "UTF-8";
/* public css */
:root {
    /* 宽度 */
    --jq_w1200: 1200px;
    /* 颜色 */
    --jq_primary: #2A7FE7;
    /* 按钮主色、标题重点字、链接 hover */
    --jq_warn: #ff7134;
    /*  警告色 */
    --jq_error: #ff0000;
    /* 错误色 */
    --jq_success: #36a946;
    /* 成功色 */
    --jq_title: #1b70d8;
    /* 标题色或卡片轮廓线 */
    --jq_line: #94c2fa;
    /* 模块分割线或大段强调背景 */
    --jq_hover: #428fee;
    /* hover 状态、悬浮按钮 */
    --jq_block: #DDF6FB;
    /* 背景大区块底色，增强冷感氛围 */
    --jq_color1: #333333;
    --jq_color2: #666666;
    --jq_color3: #999999;
    --jq_color4: #cccccc;
    --jq_color5: #dddddd;
    --jq_color6: #eeeeee;
    --jq_color7: #f5f5f5;
    --jq_color8: #ffffff;
    /* 字体大小 */
    --jq_fs: 10px;
    --jq_fs1: 12px;
    --jq_fs2: 14px;
    --jq_fs3: 16px;
    --jq_fs4: 18px;
    --jq_fs5: 20px;
    --jq_fs6: 22px;
    --jq_fs7: 24px;
    --jq_fs8: 26px;
    --jq_fs9: 28px;
    --jq_fs10: 30px;
    --jq_fs11: 32px;
    --jq_fs12: 34px;
    --jq_fs13: 36px;
    --jq_fs14: 38px;
    --jq_fs15: 40px;
    --jq_fs16: 42px;
}

select,
input,
input:focus {
    outline: none !important;
}

:not(input) {
    text-transform: capitalize;
}

.email {
    text-transform: none !important;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

html, body, .app {
    width: 100%;
    height: 100%;
    color: var(--jq_color1);
    font-size: var(--jq_fs2);
}

.app {
    height: auto;
    min-height: 100%;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s;
}

a {
    color: var(--jq_color1);
    text-decoration: none;
}

a:hover {
    color: var(--jq_primary);
}

.box-1480 {
    width: var(--jq_w1480);
}

.h-100 {
    height: 100%;
}

.flex {
    display: flex;
}

.j-center {
    justify-content: center;
}

.j-between {
    justify-content: space-between;
}

.j-end {
    justify-content: flex-end;
}

.a-center {
    align-items: center;
}

.a-end {
    align-items: flex-end;
}

.button {
    width: 100%;
    height: 36px;
    background: var(--jq_primary);
    border: none;
    border-radius: 5px;
    color: var(--jq_color7);
    font-size: var(--jq_fs2);
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button.border {
    border: 1px solid var(--jq_primary);
    background: var(--jq_color7);
    color: var(--jq_primary);
}

.button.error {
    width: auto;
    background: var(--jq_error);
    color: var(--jq_color8);
    padding: 0 10px;
}

.button:hover {
    opacity: 0.8;
    color: var(--jq_color7);
}

.button.border:hover {
    color: var(--jq_primary);
    background: #ebf3fc;
}

.button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.button[disabled].border {
    border: 1px solid var(--jq_color3);
    color: var(--jq_color5);
}

.button[disabled].border:hover {
    background: var(--jq_color7);
}

.bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
}

/* 动画代码 */
@keyframes example1 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

@keyframes example2 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

@keyframes example3 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

/* 轮播图 */
.banner-box {
    width: 100%;
    height: 600px;
    position: relative;
}

.banner-box .swiper {
    height: 100%;
}

.banner-box .swiper .swiper-wrapper {
    height: 100%;
}

.banner-box .swiper .swiper-wrapper .swiper-slide {
    height: 100%;
}

.banner-box .swiper .swiper-wrapper .swiper-slide video {
    /* width: 100%; */
    position: absolute;
    z-index: 1;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a .banner-text-box {
    width: var(--jq_w1200);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -100px;
    color: var(--jq_color2);
    padding: 0 20px;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-title {
    font-size: 1.75rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-text {
    font-size: 3rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.banner-box .swiper .swiper-wrapper .swiper-slide a .banner-text-box .min-text {
    font-size: 1.2rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.banner-box .swiper .swiper-button-next, .banner-box .swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--jq_color2);
    opacity: 0;
    transition: all 0.3s;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-box .swiper .swiper-button-next::after, .banner-box .swiper .swiper-button-prev::after {
    color: var(--jq_color14);
    font-size: var(--jq_fs4);
}

.banner-box .swiper:hover .swiper-button-next, .banner-box .swiper:hover .swiper-button-prev {
    opacity: 1;
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .max-title {
    animation-name: example1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .max-text {
    animation-name: example2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .min-text {
    animation-name: example3;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

/* 分页 */
.page-box {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.page-box a {
    padding: 0 10px;
    min-width: 34px;
    height: 34px;
    border: 1px solid var(--jq_color5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin: 0 5px;
}

.page-box a:hover {
    border: 1px solid var(--jq_primary);
}

.page-box a.active {
    border: 1px solid var(--jq_primary);
    background: var(--jq_primary);
    color: var(--jq_color8);
}

/* 面包屑 */
.crumbs-box {
    width: 100%;
    display: flex;
    align-items: center;
}

.crumbs-box .crumbs {
    width: var(--jq_w1400);
    display: flex;
}

.crumbs-box .crumbs a {
    font-size: var(--jq_fs1);
    padding: 10px 0;
    padding-right: 10px;
}

.crumbs-box .crumbs a::after {
    content: '/';
    margin-left: 10px;
}

.crumbs-box .crumbs a:last-child {
    color: var(--jq_color3);
}

.crumbs-box .crumbs a:last-child::after {
    content: '';
}

/* form */
.jq-common-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.jq-common-form .form-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jq-common-form .form-box .form-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    font-size: var(--jq_fs2);
}

.jq-common-form .form-box .form-item .field-label {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    font-size: var(--jq_fs4);
}

.jq-common-form .form-box .form-item .field-label span {
    color: var(--jq_error);
    margin-right: 5px;
}

.jq-common-form .form-box .form-item .field-value {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.jq-common-form .form-box .form-item .field-value .field-value-input {
    width: 100%;
    display: flex;
}

.jq-common-form .form-box .form-item .field-value .field-value-input .input, .jq-common-form .form-box .form-item .field-value .field-value-input .textarea, .jq-common-form .form-box .form-item .field-value .field-value-input .select {
    width: 100%;
    height: 56px;
    padding: 0 10px;
    border: 1px solid var(--jq_color5);
    outline: none;
    font-size: var(--jq_fs2);
    border-radius: 4px;
    transition: all 0.3s;
    background: #f6f6f6;
}

.jq-common-form .form-box .form-item .field-value .field-value-input .textarea {
    min-height: 240px;
    height: auto;
    padding: 10px;
    background: #f6f6f6;
}

.jq-common-form .form-box .form-item .field-value .field-value-input .input:hover, .jq-common-form .form-box .form-item .field-value .field-value-input .textarea:hover, .jq-common-form .form-box .form-item .field-value .field-value-input .select:hover {
    border: 1px solid var(--jq_primary);
}

.jq-common-form .form-box .form-item .field-value .field-value-input .input.error, .jq-common-form .form-box .form-item .field-value .field-value-input .textarea.error, .jq-common-form .form-box .form-item .field-value .field-value-input .select.error {
    border: 1px solid var(--jq_error);
}

.jq-common-form .form-box .form-item .field-value .field-value-input .imgs {
    width: 120px;
    height: 56px;
    margin-left: 10px;
    flex-shrink: 0;
}

.jq-common-form .form-box .form-item .field-value .field-value-error {
    width: 100%;
    font-size: var(--jq_fs2);
    color: var(--jq_error);
    margin-top: 2px;
    display: none;
}

.jq-common-form .form-box .form-item .field-value .field-value-error.active {
    display: block;
}

.jq-common-form .form-box .form-item.w50 {
    width: calc(50% - 20px);
}

.jq-common-form .form-submit {
    width: 100%;
    display: flex;
    justify-content: center;
}

.jq-common-form .form-submit .button {
    width: 140px;
    height: 52px;
    margin: 0 10px;
}

.jq-common-form .form-submit .button.error {
    width: 100%;
    height: 32px;
    background: var(--jq_error);
    color: var(--jq_color8);
    margin: 0;
    margin-bottom: 10px;
}

.input, .textarea {
    width: 100%;
    height: 32px;
    padding: 0 var(--jq_pt2);
    border: 1px solid var(--jq_color17);
    outline: none;
    font-size: var(--jq_fs2);
    border-radius: 4px;
    transition: all 0.3s;
    padding: 0 10px;
}

.textarea {
    min-height: 64px;
    height: auto;
    padding: var(--jq_pt1) var(--jq_pt2);
}

.input:hover, .textarea:hover {
    border: 1px solid var(--jq_color14);
}

.input.error, .textarea.error {
    border: 1px solid var(--jq_color19);
}

/* 公共表格 */
.public-table {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 5px;
    background: var(--jq_color8);
}

.public-table .theads {
    width: 100%;
    height: 46px;
    flex-shrink: 0;
}

.public-table .theads .ths {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
}

.public-table .theads .ths .tds {
    width: 100%;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    font-weight: bold;
    /*color: var(--jq_color8);*/
}

.public-table .tbodys {
    width: 100%;
}

.public-table .tbodys .trs {
    width: 100%;
    display: flex;
    border-bottom: 1px solid var(--jq_color6);
}

.public-table .tbodys .trs:hover {
    background: var(--jq_color6);
}

.public-table .tbodys .trs .tds {
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
}

.public-table .tbodys .trs .tds a:hover {
    text-decoration: underline;
}

.public-table .tbodys .trs .tds > .img {
    width: 68px;
    height: 68px;
}

.public-table .tbodys .trs .tds > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-table.border {
    border: 1px solid var(--jq_color6);
}

.public-table.border .tbodys .trs:last-child {
    border: none;
}

.public-table.borderAndTd {
    border: 1px solid var(--jq_color7);
}

.public-table.borderAndTd .theads .ths .tds {
    border-right: 1px solid var(--jq_color7);
}

.public-table.borderAndTd .theads .ths .tds:last-child {
    border-right: none;
}

.public-table.borderAndTd .tbodys .trs .tds {
    border-right: 1px solid var(--jq_color7);
}

.public-table.borderAndTd .tbodys .trs .tds:last-child {
    border-right: none;
}

.public-table.h-100 {
    height: 100%;
}

.public-table.h-100 .tbodys {
    height: calc(100% - 46px);
    overflow: hidden auto;
}

.public-table.deals .theads .ths {
    background: #b3d7fb;
}

.public-table.discount .theads .ths {
    background: #3172dc;
}

.public-table.discount .theads .ths .tds {
    color: var(--jq_color2);
}

.public-table.popular .theads .ths {
    background: #304d82;
}

.public-table.popular .theads .ths .tds {
    color: var(--jq_color2);
}

.public-table.rfq .theads .ths {
    background: #e9f0fe;
}

.del-text {
    text-decoration: line-through;
}

.now-price {
    color: var(--jq_color13);
}

/* 头部 */
.header-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-box .header {
    width: var(--jq_w1200);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-box .header .logo {
    width: 160px;
    flex-shrink: 0;
}

.header-box .header .logo img {
    width: 100%;
}

.header-box .header .search-box {
    width: 100%;
    height: 38px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.header-box .header .search-box .search {
    width: 100%;
    height: 100%;
    display: flex;
    border: 1px solid var(--jq_primary);
    border-radius: 10px;
    overflow: hidden;
}

.header-box .header .search-box .search .input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.header-box .header .search-box .search .icon {
    width: 60px;
    height: 38px;
    background: var(--jq_primary);
    color: var(--jq_color8);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    outline: none;
}

.header-box .header .tel-lang {
    width: 520px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-box .header .tel-lang .tel {
    display: flex;
    flex-shrink: 0;
}

.header-box .header .tel-lang .tel .tel-item {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header-box .header .tel-lang .tel .tel-item .icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.header-box .header .tel-lang .tel .tel-item .icon i {
    font-size: 26px;
    color: var(--jq_primary);
}

.header-box .header .tel-lang .tel .tel-item .number {
    font-size: var(--jq_fs3);
    color: var(--jq_color2);
}

.header-box .header .tel-lang .lang {
    width: 100px;
    height: 32px;
    display: flex;
    position: relative;
    flex-shrink: 0;
}

.header-box .header .tel-lang .lang .lang-item {
    width: 100%;
    height: 100%;
    background: var(--jq_primary);
    color: var(--jq_color8);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.header-box .header .tel-lang .lang .lang-item i {
    font-size: 12px;
    transform: rotate(90deg);
}

.header-box .header .tel-lang .lang .lang-child {
    width: 100%;
    background: var(--jq_primary);
    position: absolute;
    left: 0;
    top: 30px;
    border-radius: 0 0 5px 5px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-top: 1px solid var(--jq_color8);
    z-index: 99;
}

.header-box .header .tel-lang .lang .lang-child .child-item {
    width: 100%;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    color: var(--jq_color8);
}

.header-box .header .tel-lang .lang .lang-child .child-item:hover {
    background: var(--jq_hover);
}

.header-box .header .tel-lang .lang:hover .lang-item {
    border-radius: 5px 5px 0 0;
}

.header-box .header .tel-lang .lang:hover .lang-item i {
    transform: rotate(0deg);
}

.header-box .header .tel-lang .lang:hover .lang-child {
    display: flex;
}

/* 菜单 */
.menu-box {
    width: 100%;
    height: 50px;
    background: var(--jq_primary);
    display: flex;
    justify-content: center;
}

.menu-box .menu {
    width: var(--jq_w1200);
    height: 100%;
    display: flex;
}

.menu-box .menu .menu-item {
    height: 100%;
    position: relative;
    display: flex;
}

.menu-box .menu .menu-item > a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--jq_color8);
    font-size: var(--jq_fs4);
    padding: 0 40px;
}

.menu-box .menu .menu-item > a:hover {
    background: var(--jq_hover);
}

.menu-box .menu .menu-item .menu-child {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50px;
    display: none;
    flex-direction: column;
    background: var(--jq_hover);
    z-index: 10;
}

.menu-box .menu .menu-item .menu-child > a {
    width: 100%;
    padding: 8px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs3);
    color: var(--jq_color8);
    position: relative;
    word-break: break-all;
}

.menu-box .menu .menu-item .menu-child > a .iconfont {
    font-size: var(--jq_fs1);
    position: absolute;
    left: 5px;
    opacity: 0;
}

.menu-box .menu .menu-item .menu-child > a:hover .iconfont {
    left: 10px;
    opacity: 1;
}

.menu-box .menu .menu-item:hover {
    background: var(--jq_hover);
}

.menu-box .menu .menu-item:hover .menu-child {
    display: flex;
}

/* 移动端 */
.phone-header {
    width: 100%;
    height: 50px;
    display: none;
    padding: 0 10px;
}

.phone-header .menu-check {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.phone-header .menu-check .iconfont {
    font-size: var(--jq_fs7);
    color: var(--jq_color3);
}

.phone-header .search-box {
    width: 100%;
    height: 100%;
    padding: 5px 0;
    display: flex;
    padding-left: 20px;
}

.phone-header .search-box .search {
    width: 100%;
    height: 100%;
    border: 1px solid var(--jq_primary);
    border-radius: 5px;
    display: flex;
}

.phone-header .search-box .search .input {
    width: 100%;
    height: 100%;
}

.phone-header .search-box .search .button {
    width: 60px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    flex-shrink: 0;
}

.phone-menu-box {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: hidden auto;
    display: none;
}

.phone-menu-box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.phone-menu-box .phone-menu-close {
    height: 50px;
    display: flex;
    padding: 0 10px;
    align-items: center;
    flex-shrink: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
}

.phone-menu-box .phone-menu-close .iconfont {
    font-size: var(--jq_fs7);
    color: var(--jq_primary);
}

.phone-menu-box .phone-menu {
    width: 70%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    background: var(--jq_color8);
    padding-top: 50px;
    overflow: hidden auto;
    display: flex;
    flex-direction: column;
}

.phone-menu-box .phone-menu .menu-item {
    width: 100%;
    padding: 15px 30px;
    border-bottom: 1px solid var(--jq_color7);
    font-size: var(--jq_fs4);
}

.phone-menu-box .phone-menu .lang-item {
    width: 100%;
    padding: 15px 30px;
    border-bottom: 1px solid var(--jq_color8);
    font-size: var(--jq_fs4);
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.phone-banner {
    display: none;
    width: 100%;
    height: 200px;
    position: relative;
}

.phone-banner .swiper {
    width: 100%;
    height: 100%;
}

.phone-banner .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide video {
    /* width: 100%; */
    position: absolute;
    z-index: 1;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box {
    width: var(--jq_w1200);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -100px;
    color: var(--jq_color2);
    padding: 0 20px;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-title {
    font-size: 1.75rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-text {
    font-size: 3rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.phone-banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .min-text {
    font-size: 1.2rem;
    opacity: 0;
    position: relative;
    transition: all 0.3;
}

.phone-banner .swiper .swiper-button-next, .phone-banner .swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--jq_color2);
    opacity: 0;
    transition: all 0.3s;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-banner .swiper .swiper-button-next::after, .phone-banner .swiper .swiper-button-prev::after {
    color: var(--jq_color14);
    font-size: var(--jq_fs4);
}

.phone-banner .swiper:hover .swiper-button-next, .phone-banner .swiper:hover .swiper-button-prev {
    opacity: 1;
}

/* 底部 */
.footer-box {
    width: 100%;
    background: var(--jq_primary);
    display: flex;
    justify-content: center;
}

.footer-box .footer {
    width: var(--jq_w1200);
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
}

.footer-box .footer .menu-company-copyright {
    width: calc(100% - 160px);
    display: flex;
    flex-direction: column;
}

.footer-box .footer .menu-company-copyright .footer-menu-box {
    display: flex;
    height: 40px;
}

.footer-box .footer .menu-company-copyright .footer-menu-box > a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--jq_color8);
    font-size: var(--jq_fs3);
    margin-right: 40px;
    position: relative;
}

.footer-box .footer .menu-company-copyright .footer-menu-box > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--jq_color8);
    bottom: 0;
    left: 50%;
    transition: all 0.3s;
}

.footer-box .footer .menu-company-copyright .footer-menu-box > a:hover::after {
    width: 100%;
    left: 0;
}

.footer-box .footer .menu-company-copyright .company-box {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    color: var(--jq_color8);
    line-height: 28px;
}

.footer-box .footer .menu-company-copyright .company-box .name {
    font-size: var(--jq_fs3);
}

.footer-box .footer .menu-company-copyright .company-box .tel-email span {
    margin-right: 10px;
}

.footer-box .footer .menu-company-copyright .logo {
    width: 120px;
    height: 40px;
    margin-top: 20px;
}

.footer-box .footer .menu-company-copyright .logo a {
    width: 100%;
    height: 100%;
}

.footer-box .footer .menu-company-copyright .logo a img {
    width: 100%;
    height: 100%;
}

.footer-box .footer .menu-company-copyright .copyright {
    margin-top: 20px;
    display: flex;
}

.footer-box .footer .menu-company-copyright .copyright span, .footer-box .footer .menu-company-copyright .copyright a {
    color: var(--jq_color8);
    margin-right: 10px;
}

.footer-box .footer .menu-company-copyright .copyright a:hover {
    text-decoration: underline;
}

.footer-box .footer .code-box {
    width: 160px;
    display: flex;
    flex-direction: column;
}

.footer-box .footer .code-box .img {
    width: 100%;
    height: 160px;
}

.footer-box .footer .code-box .img img {
    width: 100%;
    height: 100%;
}

.footer-box .footer .code-box .text {
    font-size: var(--jq_fs4);
    color: var(--jq_color8);
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* 动画代码 */
@keyframes example1 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: initial;
    }
}

@keyframes example2 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

@keyframes example3 {
    from {
        opacity: 0;
        left: -60px;
    }
    to {
        opacity: 1;
        left: 0;
    }
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .max-title {
    animation-name: example1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .max-text {
    animation-name: example2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.banner-box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active a .banner-text-box .min-text {
    animation-name: example3;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

/* 内容区 */
.content-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--jq_color7);
}

.content-box .content-wrap {
    width: var(--jq_w1200);
    display: flex;
    flex-direction: column;
    /* 分类-banner-产品 */
    /* 主打产品 */
    /* 品牌分布 */
    /* 热门零件 */
    /* 行业新闻 */
    /* 产品列表页面 */
    /* 产品详情页面 */
    /* 品牌 */
    /* rfq */
    /* 新闻资讯 */
}

.content-box .content-wrap .common-title {
    width: 100%;
    height: 32px;
    font-size: var(--jq_fs6);
    font-weight: bold;
}

.content-box .content-wrap .type-banner-product {
    width: 100%;
    height: 760px;
    background: var(--jq_color8);
    box-shadow: 0 5px 5px var(--jq_color6);
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    padding-bottom: 20px;
    display: flex;
}

.content-box .content-wrap .type-banner-product .type-box {
    width: 270px;
    height: 100%;
    overflow: hidden auto;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .type-banner-product .type-box a {
    width: 100%;
    padding: 5px 0px;
    font-weight: bold;
}

.content-box .content-wrap .type-banner-product .banner-product {
    width: calc(100% - 270px);
    height: 100%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .type-banner-product .banner-product .banner {
    width: 100%;
    height: 360px;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper {
    height: 100%;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper {
    height: 100%;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide {
    height: 100%;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box {
    width: var(--jq_w1200);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* top: -100px; */
    color: var(--jq_color2);
    padding: 0 20px;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-title {
    font-size: 1.75rem;
    opacity: 0;
    position: relative;
    transition: all 0.3s;
    animation-name: example1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .max-text {
    font-size: 3rem;
    opacity: 0;
    position: relative;
    transition: all 0.3s;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-wrapper .swiper-slide a .banner-text-box .min-text {
    font-size: 1.2rem;
    opacity: 0;
    position: relative;
    transition: all 0.3s;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-button-next, .content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--jq_primary);
    color: var(--jq_color8);
    opacity: 0;
    transition: all 0.3s;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-button-next::after, .content-box .content-wrap .type-banner-product .banner-product .banner .swiper .swiper-button-prev::after {
    color: var(--jq_color14);
    font-size: var(--jq_fs4);
}

.content-box .content-wrap .type-banner-product .banner-product .banner .swiper:hover .swiper-button-next, .content-box .content-wrap .type-banner-product .banner-product .banner .swiper:hover .swiper-button-prev {
    opacity: 1;
}

.content-box .content-wrap .type-banner-product .banner-product .product {
    width: 100%;
    height: calc(100% - 360px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item {
    width: calc(25% - 10px);
    height: calc(50% - 10px);
    border: 1px solid var(--jq_color5);
    margin-top: 14px;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item .img {
    width: 100%;

    height: calc(100% - 48px);
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item .img img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item .max-text {
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item .min-text {
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--jq_color3);
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item:hover {
    border: 1px solid var(--jq_primary);
    box-shadow: 0 0 10px var(--jq_color6);
}

.content-box .content-wrap .type-banner-product .banner-product .product .product-item:hover .img img {
    transform: scale(1.05);
}

.content-box .content-wrap .featured-product {
    width: 100%;
    height: 340px;
    background: var(--jq_color8);
    box-shadow: 0 0 10px var(--jq_color6);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-box .content-wrap .featured-product .featured-product-box {
    width: 100%;
    height: calc(100% - 42px);
}

.content-box .content-wrap .featured-product .featured-product-box .swiper {
    height: 100%;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide {
    height: 100%;
    padding-right: 10px;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a {
    width: 100%;
    height: 100%;
    border: 1px solid var(--jq_color5);
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a .img {
    width: 100%;
    height: calc(100% - 48px);
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a .max-text {
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a .min-text {
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--jq_color3);
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a:hover {
    border: 1px solid var(--jq_primary);
    box-shadow: 0 0 10px var(--jq_color6);
}

.content-box .content-wrap .featured-product .featured-product-box .swiper-slide a:hover .img img {
    transform: scale(1.03);
}

.content-box .content-wrap .brand-distribution {
    width: 100%;
    height: 340px;
    background: var(--jq_color8);
    box-shadow: 0 0 10px var(--jq_color6);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box {
    width: 100%;
    height: calc(100% - 42px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item {
    width: calc(100% / 6 - 10px);
    height: calc(50% - 10px);
    margin-top: 14px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item .img {
    width: 100%;
    height: calc(100% - 24px);
    border: 1px solid var(--jq_color5);
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item .max-text {
    height: 24px;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item:hover .img {
    border: 1px solid var(--jq_primary);
}

.content-box .content-wrap .brand-distribution .brand-distribution-box .product-item:hover .img img {
    transform: scale(1.05);
}

.content-box .content-wrap .hot-parts {
    width: 100%;
    background: var(--jq_color8);
    box-shadow: 0 0 10px var(--jq_color6);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .hot-parts .hot-parts-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.content-box .content-wrap .hot-parts .hot-parts-box a {
    width: calc(100% / 7 - 10px);
    height: 46px;
    background: var(--jq_color7);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 10px;
}

.content-box .content-wrap .hot-parts .hot-parts-box a:hover {
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .home-news {
    width: 100%;
    background: var(--jq_color8);
    box-shadow: 0 0 10px var(--jq_color6);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .home-news .home-news-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.content-box .content-wrap .home-news .home-news-box a {
    width: calc(100% / 4 - 10px);
    height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .home-news .home-news-box a .img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 5px;
}

.content-box .content-wrap .home-news .home-news-box a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box .content-wrap .home-news .home-news-box a .title {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
    font-size: var(--jq_fs3);
    font-weight: bold;
}

.content-box .content-wrap .home-news .home-news-box a .time-look {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    color: var(--jq_color3);
}

.content-box .content-wrap .home-news .home-news-box a .describe {
    width: 100%;
    margin-top: 10px;
    color: var(--jq_color3);
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-box .content-wrap .home-news .home-news-box a:hover .img img {
    transform: scale(1.05);
}

.content-box .content-wrap .product-type-box {
    width: 100%;
    display: flex;
    padding: 10px 0;
}

.content-box .content-wrap .product-type-box .product-type {
    width: 270px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--jq_primary);
}

.content-box .content-wrap .product-type-box .product-type .title {
    width: 100%;
    font-size: var(--jq_fs4);
    color: var(--jq_color8);
    font-weight: bold;
    background: var(--jq_primary);
    padding: 10px;
}

.content-box .content-wrap .product-type-box .product-type .list-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 0;
}

.content-box .content-wrap .product-type-box .product-type .list-box a {
    width: 100%;
    padding: 5px 0px;
    font-weight: bold;
}

.content-box .content-wrap .product-type-box .product-type-child {
    width: calc(100% - 270px);
    padding-left: 20px;
}

.content-box .content-wrap .product-type-box .product-type-child .one-child {
    width: 100%;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-type-box .product-type-child .one-child > a {
    width: 100%;
    padding: 5px 0px;
    font-weight: bold;
    font-size: var(--jq_fs3);
}

.content-box .content-wrap .product-type-box .product-type-child .one-child .two-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.content-box .content-wrap .product-type-box .product-type-child .one-child .two-child a {
    padding: 10px 20px;
    margin-right: 10px;
    margin-top: 10px;
    background: var(--jq_color6);
}

.content-box .content-wrap .product-type-box .product-type-child .one-child .two-child a:hover {
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .product-detail-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .product-detail-box .basic-price-box {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box {
    width: calc(100% - 415px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    background: var(--jq_color8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--jq_color6);
    overflow: hidden;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .title {
    width: 100%;
    font-size: var(--jq_fs8);
    color: var(--jq_primary);
    font-weight: bold;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic {
    width: 100%;
    display: flex;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img {
    width: 250px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img .max-img {
    width: 100%;
    height: 250px;
    border: 1px solid var(--jq_color5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img .max-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img .min-img {
    width: 100%;
    height: 50px;
    display: flex;
    /* justify-content: space-between; */
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img .min-img a {
    width: calc(100% / 4 - 10px);
    height: 50px;
    border: 1px solid var(--jq_color5);
    margin-right:10px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .img .min-img a img {
    width: 100%;
    height: 100%;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter {
    width: calc(100% - 250px);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item {
    width: 100%;
    display: flex;
    margin-bottom: 5px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item .label {
    width: 100px;
    color: var(--jq_color3);
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item .value {
    width: calc(100% - 100px);
    padding-left: 5px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item .value .share {
    margin-right: 5px;
    color: var(--jq_color3);
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item .value .share .iconfont {
    font-size: var(--jq_fs6);
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .parameter-item .value .share:hover {
    color: var(--jq_primary);
}

.content-box .content-wrap .product-detail-box .basic-price-box .basic-box .basic .parameter .btn-box {
    width: 100px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box {
    width: 395px;
    background: var(--jq_color8);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--jq_color6);
    overflow: hidden;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box > .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: var(--jq_fs4);
    color: var(--jq_color8);
    padding: 0 10px;
    background: var(--jq_primary);
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .number {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .number span {
    width: 60px;
    flex-shrink: 0;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .number .input-button {
    width: 100%;
    border: 1px solid var(--jq_primary);
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .number .input-button .input {
    border: none;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .number .input-button .button {
    width: 100px;
    min-height: 32px;
    height: auto;
    border-radius: 0;
    font-size: var(--jq_fs2);
    flex-shrink: 0;
    padding: 0 5px;
}

.content-box .content-wrap .product-detail-box .basic-price-box .price-box .price .price-table {
    width: 100%;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-detail-box .parameter-pdf-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--jq_color8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--jq_color6);
    overflow: hidden;
    margin-bottom: 20px;
}

.content-box .content-wrap .product-detail-box .parameter-pdf-box .tab-box {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--jq_primary);
    display: flex;
    margin-bottom: 10px;
}

.content-box .content-wrap .product-detail-box .parameter-pdf-box .tab-box a {
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--jq_color6);
    margin-right: 10px;
    border-radius: 5px 5px 0 0;
}

.content-box .content-wrap .product-detail-box .parameter-pdf-box .tab-box a:hover {
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .product-detail-box .parameter-pdf-box .tab-box a.active {
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .product-detail-box .new-product-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--jq_color8);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--jq_color6);
    overflow: hidden;
    margin-bottom: 20px;
}

.content-box .content-wrap .product-detail-box .new-product-box > .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: var(--jq_fs4);
    color: var(--jq_color8);
    padding: 0 10px;
    background: var(--jq_primary);
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item {
    width: calc(100% / 4 - 10px);
    height: 200px;
    border: 1px solid var(--jq_color6);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .img {
    width: 100px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .img span {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn {
    width: calc(100% - 100px);
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn .tit {
    width: 100%;
    margin-bottom: 5px;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn .tit a {
    font-weight: bold;
    font-size: var(--jq_fs3);
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn .model {
    width: 100%;
    margin-bottom: 5px;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn .btn {
    width: 80px;
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item .title-model-btn .btn .button {
    height: 28px;
    font-size: var(--jq_fs1);
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item:hover {
    border: 1px solid var(--jq_primary);
}

.content-box .content-wrap .product-detail-box .new-product-box .new-product .product-item:hover .title-model-btn .tit a {
    color: var(--jq_primary);
}

.content-box .content-wrap .manufacturers-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.content-box .content-wrap .manufacturers-box .title {
    width: 100%;
    font-size: var(--jq_fs5);
    font-weight: bold;
    color: var(--jq_primary);
    margin-bottom: 20px;
}

.content-box .content-wrap .manufacturers-box .letter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.content-box .content-wrap .manufacturers-box .letter a {
    padding: 5px 20px;
    border: 1px solid var(--jq_color5);
    border-radius: 5px;
    margin-right: 10px;
}

.content-box .content-wrap .manufacturers-box .letter a:hover {
    border: 1px solid var(--jq_primary);
}

.content-box .content-wrap .manufacturers-box .letter a.active {
    border: 1px solid var(--jq_primary);
    background-color: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .manufacturers-box .list-box {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-box .content-wrap .manufacturers-box .list-box .list-item {
    width: calc(100% / 6 - 10px);
    height: 62px;
    margin-bottom: 10px;
    border: 1px solid var(--jq_color5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--jq_color8);
}

.content-box .content-wrap .manufacturers-box .list-box .list-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.content-box .content-wrap .manufacturers-box .list-box .list-item:hover {
    border: 1px solid var(--jq_primary);
}

.content-box .content-wrap .manufacturers-box .list-box .list-item:hover img {
    transform: scale(1.05);
}

.content-box .content-wrap .rfq-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.content-box .content-wrap .rfq-box > .title {
    width: 100%;
    font-size: var(--jq_fs5);
    font-weight: bold;
    color: var(--jq_primary);
    margin-bottom: 20px;
}

.content-box .content-wrap .rfq-box .rfq-main {
    width: var(--jq_w1200);
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload {
    width: 490px;
    height: 115px;
    border: 1px solid var(--jq_primary);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-shrink: 0;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-add {
    width: 115px;
    height: 75px;
    border: 1px dashed var(--jq_color5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-add i {
    font-size: 30px;
    transform: rotate(45deg);
    color: var(--jq_color6);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-add input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: pointer;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-add:hover {
    border: 1px dashed var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-add:hover i {
    color: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content {
    width: 100%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content .upload-title {
    font-size: var(--jq_fs4);
    color: var(--jq_color1);
    font-weight: bold;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content .upload-text {
    font-size: var(--jq_fs1);
    color: var(--jq_color3);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content .upload-operate {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content .upload-operate a {
    color: var(--jq_color1);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload .upload-content .upload-operate a:hover {
    color: var(--jq_primary);
    text-decoration: underline;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload:hover .upload-add {
    border: 1px dashed var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-upload:hover .upload-add i {
    color: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process {
    width: 100%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box {
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .before-round {
    width: 9px;
    height: 18px;
    background: var(--jq_color5);
    position: absolute;
    right: -45px;
    top: 50%;
    /* margin-top: -18px; */
    transform: translateY(-50%);
    border-radius: 0 9px 9px 0;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .before-round::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--jq_color5);
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -4px;
    border-radius: 4px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .before-round::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--jq_color5);
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -4px;
    border-radius: 4px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .after-round {
    width: 9px;
    height: 18px;
    background: var(--jq_color5);
    position: absolute;
    right: -36px;
    top: 50%;
    /* margin-top: -18px; */
    transform: translateY(-50%);
    border-radius: 9px 0 0 9px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .after-round::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--jq_color5);
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -4px;
    border-radius: 4px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .after-round::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--jq_color5);
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -4px;
    border-radius: 4px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .icon {
    width: 68px;
    height: 68px;
    background: none;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .icon::before {
    content: "";
    width: 60px;
    height: 60px;
    background: var(--jq_color5);
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 4px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .icon i {
    font-size: 30px;
    color: var(--jq_color8);
    position: relative;
    z-index: 1;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .icon-box .icon i.icon-wenben {
    left: 3px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item .text {
    font-size: var(--jq_fs1);
    color: var(--jq_color3);
    margin-top: 5px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item:last-child .before-round, .content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item:last-child .after-round {
    display: none;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .before-round {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .before-round::before, .content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .before-round::after {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .after-round {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .after-round::before, .content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .after-round::after {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .icon {
    background: var(--jq_color11);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .icon::before {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .icon i {
    color: var(--jq_color8);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.active .text {
    color: var(--jq_primary);
    font-weight: bold;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .before-round {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .before-round::before, .content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .before-round::after {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .after-round {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .after-round::before, .content-box .content-wrap .rfq-box .rfq-main .rfq-upload-process .rfq-process .process-item.now .after-round::after {
    background: var(--jq_primary);
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-table-form .public-table {
    display: flex;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-table-form .phone-table {
    display: none;
}

.content-box .content-wrap .rfq-box .rfq-main .table-add {
    width: 100%;
    margin: 20px 0;
}

.content-box .content-wrap .rfq-box .rfq-main .tips {
    padding: 30px 0;
    color: var(--jq_color5);
}

.content-box .content-wrap .rfq-box .rfq-main .tips a {
    color: var(--jq_color1);
}

.content-box .content-wrap .rfq-box .rfq-main .tips a:hover {
    text-decoration: underline;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-submit .tips {
    padding: 10px 0;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-submit .submit {
    width: 140px;
}

.content-box .content-wrap .rfq-box .rfq-main .rfq-submit .submit .button {
    height: 42px;
}

.content-box .content-wrap .news-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .news-box .news-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .news-box .news-list .list-item {
    width: 100%;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--jq_color6);
}

.content-box .content-wrap .news-box .news-list .list-item .img {
    width: 180px;
    height: 180px;
}

.content-box .content-wrap .news-box .news-list .list-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share {
    width: calc(100% - 180px);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .tit {
    width: 100%;
    font-size: var(--jq_fs5);
    color: var(--jq_primary);
    margin-bottom: 5px;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .tit:hover {
    text-decoration: underline;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .describe {
    width: 100%;
    color: var(--jq_color3);
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .time-look {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    color: var(--jq_color3);
    margin-bottom: 5px;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .shares {
    width: 100%;
    display: flex;
    align-items: center;
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .shares .share {
    margin-right: 5px;
    color: var(--jq_color3);
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .shares .share .iconfont {
    font-size: var(--jq_fs6);
}

.content-box .content-wrap .news-box .news-list .list-item .tit-describe-time-look-share .shares .share:hover {
    color: var(--jq_primary);
}

.content-box .content-wrap .news-box .news-list .list-item:hover .img img {
    transform: scale(1.05);
}

.content-box .content-wrap .newsDetail-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.content-box .content-wrap .newsDetail-box .title {
    width: 100%;
    font-size: var(--jq_fs6);
    color: var(--jq_primary);
    margin-bottom: 5px;
}

.content-box .content-wrap .newsDetail-box .time-look {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    color: var(--jq_color3);
    margin-bottom: 5px;
}

.content-box .content-wrap .newsDetail-box .shares {
    width: 100%;
    display: flex;
    align-items: center;
}

.content-box .content-wrap .newsDetail-box .shares .share {
    margin-right: 5px;
    color: var(--jq_color3);
}

.content-box .content-wrap .newsDetail-box .shares .share .iconfont {
    font-size: var(--jq_fs6);
}

.content-box .content-wrap .newsDetail-box .shares .share:hover {
    color: var(--jq_primary);
}

.content-box .content-wrap .newsDetail-box .detail-content {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--jq_primary);
    margin-top: 20px;
}

.content-box .content-wrap .newsDetail-box .detail-content img {
    width: 100%;
}

.content-box .content-wrap .newsDetail-box .prev-next {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.content-box .content-wrap .newsDetail-box .prev-next a {
    padding: 10px 20px;
    background: var(--jq_color4);
    max-width: calc(100% / 2 - 10px);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.content-box .content-wrap .newsDetail-box .prev-next a:hover {
    background: var(--jq_primary);
    color: var(--jq_color8);
}

.content-box .content-wrap .aboutUs-box .title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.content-box .content-wrap .aboutUs-box .shares {
    justify-content: center;
}

.content-box .content-wrap .aboutUs-box .contactUs-form {
    width: 100%;
}

.content-box .content-wrap .aboutUs-box .contactUs-form .form-title {
    width: 100%;
    font-size: var(--jq_fs6);
    color: var(--jq_primary);
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.content-box .content-wrap .aboutUs-box .contactUs-map {
    width: 100%;
    height: 600px;
    margin-top: 30px;
}

.content-box.white {
    background: var(--jq_color8);
}

.title-brand-package {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.title-brand-package .title {
    color: var(--jq_primary);
}

.title-brand-package .title a {
    font-size: var(--jq_fs3);
    color: var(--jq_primary);
}

.title-brand-package .brand {
    color: var(--jq_color2);
}

.title-brand-package .package {
    color: var(--jq_color2);
}

.model-types-pdf {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.model-types-pdf a {
    color: var(--jq_primary);
}

.model-types-pdf .pdf {
    display: flex;
    flex-direction: row;
}

.model-types-pdf .pdf a {
    color: var(--jq_error);
    margin-right: 5px;
}

.sendGoods {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sendGoods .fast {
    padding: 5px 10px;
    background: var(--jq_color4);
    display: flex;
    margin-bottom: 5px;
    border-radius: 5px;
    color: var(--jq_primary);
}

.tb-rfq {
    width: 100%;
    display: flex;
}

.tb-rfq .input {
    margin-right: 10px;
    border: 1px solid var(--jq_primary);
}

.tb-rfq .button {
    height: 32px;
    font-size: var(--jq_fs2);
}

.cus_info_window {
    background: var(--jq_primary);
    padding: 10px;
    color: var(--jq_color8);
    font-size: var(--jq_fs3);
}
