@charset "UTF-8";
/* public css */
:root {
    /* 宽度 */
    --jq_w1400: 1400px;
    --jq_w1680: 1680px;
    /* 颜色 */
    --jq_color1: #1d2082;
    --jq_color2: #091528;
    --jq_color3: #333333;
    --jq_color4: #666666;
    --jq_color5: #999999;
    --jq_color6: #cccccc;
    --jq_color7: #dddddd;
    --jq_color8: #eeeeee;
    --jq_color9: #f5f5f5;
    --jq_color10: #ffffff;
    --jq_color11: #003a8d;
    --jq_error: #ff0000;
    --jq_success: green;
    /* 字体大小 */
    --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_ml1: 5px;
    --jq_ml2: 10px;
    --jq_ml3: 15px;
    --jq_ml4: 20px;
    --jq_ml5: 25px;
    --jq_ml6: 30px;
    --jq_ml7: 35px;
    --jq_ml8: 40px;
    --jq_ml9: 45px;
    --jq_ml10: 50px;
    --jq_mr1: 5px;
    --jq_mr2: 10px;
    --jq_mr3: 15px;
    --jq_mr4: 20px;
    --jq_mr5: 25px;
    --jq_mr6: 30px;
    --jq_mr7: 35px;
    --jq_mr8: 40px;
    --jq_mr9: 45px;
    --jq_mr10: 50px;
    --jq_mt1: 5px;
    --jq_mt2: 10px;
    --jq_mt3: 15px;
    --jq_mt4: 20px;
    --jq_mt5: 25px;
    --jq_mt6: 30px;
    --jq_mt7: 35px;
    --jq_mt8: 40px;
    --jq_mt9: 45px;
    --jq_mt10: 50px;
    --jq_mb1: 5px;
    --jq_mb2: 10px;
    --jq_mb3: 15px;
    --jq_mb4: 20px;
    --jq_mb5: 25px;
    --jq_mb6: 30px;
    --jq_mb7: 35px;
    --jq_mb8: 40px;
    --jq_mb9: 45px;
    --jq_mb10: 50px;
    /* 内边距 */
    --jq_pl1: 5px;
    --jq_pl2: 10px;
    --jq_pl3: 15px;
    --jq_pl4: 20px;
    --jq_pl5: 25px;
    --jq_pl6: 30px;
    --jq_pl7: 35px;
    --jq_pl8: 40px;
    --jq_pl9: 45px;
    --jq_pl10: 50px;
    --jq_pr1: 5px;
    --jq_pr2: 10px;
    --jq_pr3: 15px;
    --jq_pr4: 20px;
    --jq_pr5: 25px;
    --jq_pr6: 30px;
    --jq_pr7: 35px;
    --jq_pr8: 40px;
    --jq_pr9: 45px;
    --jq_pr10: 50px;
    --jq_pt1: 5px;
    --jq_pt2: 10px;
    --jq_pt3: 15px;
    --jq_pt4: 20px;
    --jq_pt5: 25px;
    --jq_pt6: 30px;
    --jq_pt7: 35px;
    --jq_pt8: 40px;
    --jq_pt9: 45px;
    --jq_pt10: 50px;
    --jq_pb1: 5px;
    --jq_pb2: 10px;
    --jq_pb3: 15px;
    --jq_pb4: 20px;
    --jq_pb5: 25px;
    --jq_pb6: 30px;
    --jq_pb7: 35px;
    --jq_pb8: 40px;
    --jq_pb9: 45px;
    --jq_pb10: 50px;
}

html, body {
    width: 100%;
    height: 100%;
    background: var(--jq_color10);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: var(--jq_fs2);
}

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

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

/* 布局样式 */
.layout-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* 头部 */
    /* 底部 */
    /* 主体 */
}

.layout-container .layout-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: fixed;
    background: var(--jq_color10);
    z-index: 999;
    box-shadow: 0 2px 5px var(--jq_color9);
}

.layout-container .layout-header .lang-search-box {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search {
    width: var(--jq_w1680);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-container .layout-header .lang-search-box .lang-search .lang {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.layout-container .layout-header .lang-search-box .lang-search .lang a {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--jq_color10);
}

.layout-container .layout-header .lang-search-box .lang-search .lang a .icon-lang {
    font-size: var(--jq_fs6);
}

.layout-container .layout-header .lang-search-box .lang-search .lang a span {
    margin: 0 10px;
}

.layout-container .layout-header .lang-search-box .lang-search .lang a .icon-jt_r {
    font-size: var(--jq_fs1);
    position: relative;
    transform: rotate(90deg);
    top: 2px;
}

.layout-container .layout-header .lang-search-box .lang-search .lang .lang-child {
    width: 100%;
    background: var(--jq_color10);
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 5px var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search .lang .lang-child a {
    width: 100%;
    color: var(--jq_color3);
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--jq_color9);
}

.layout-container .layout-header .lang-search-box .lang-search .lang .lang-child a:hover {
    color: var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search .lang:hover .lang-child {
    display: flex;
}

.layout-container .layout-header .lang-search-box .lang-search .search {
    width: 300px;
    height: 35px;
    background: var(--jq_color10);
    border-radius: 4px;
    display: flex;
}

.layout-container .layout-header .lang-search-box .lang-search .search .search-submit {
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--jq_color3);
    flex-shrink: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.layout-container .layout-header .lang-search-box .lang-search .search .search-submit:hover {
    color: var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search .search .input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 0 10px;
}

.layout-container .layout-header .lang-search-box .lang-search .phone-menu-click {
    display: none;
}

.layout-container .layout-header .lang-search-box .lang-search .phone-menu-click a {
    color: var(--jq_color10);
}

.layout-container .layout-header .lang-search-box .lang-search .phone-menu-click a i {
    font-size: var(--jq_fs8);
}

.layout-container .layout-header .lang-search-box .lang-search-phone {
    width: var(--jq_w1680);
    height: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-logo {
    width: 160px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-logo img {
    width: 100%;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang a {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--jq_color10);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang a .icon-lang {
    font-size: var(--jq_fs6);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang a span {
    margin: 0 10px;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang a .icon-jt_r {
    font-size: var(--jq_fs1);
    position: relative;
    transform: rotate(90deg);
    top: 2px;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang .lang-child {
    width: 100%;
    background: var(--jq_color10);
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 5px var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang .lang-child a {
    width: 100%;
    color: var(--jq_color3);
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--jq_color9);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang .lang-child a:hover {
    color: var(--jq_color1);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-lang:hover .lang-child {
    display: flex;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-menu-click {
    margin: 0 10px;
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-menu-click a {
    color: var(--jq_color10);
}

.layout-container .layout-header .lang-search-box .lang-search-phone .phone-lang-search .phone-menu-click a i {
    font-size: var(--jq_fs8);
}

.layout-container .layout-header .logo-menu-box {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout-container .layout-header .logo-menu-box .logo-menu {
    width: var(--jq_w1680);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order {
    height: 100%;
    display: flex;
    align-items: center;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .logo {
    width: 210px;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .logo img {
    width: 100%;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .order-menu {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 40px;
    flex-shrink: 0;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .order-menu a {
    height: 38px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: var(--jq_fs4);
    background: red;
    color: white;
    position: relative;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .order-menu a i {
    margin-right: 10px;
    font-size: var(--jq_fs9);
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .order-menu a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-right: 19px solid #ffaaaa;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.layout-container .layout-header .logo-menu-box .logo-menu .logo-order .order-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 19px solid #ffaaaa;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.layout-container .layout-header .logo-menu-box .logo-menu .search-box {
    display: none;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu {
    height: 100%;
    display: flex;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu a {
    height: 100%;
    padding: 0 34px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: var(--jq_fs4);
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu a span {
    font-size: var(--jq_fs4);
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--jq_color1);
    bottom: 0;
    left: 50%;
    transition: all 0.3s;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu a:hover {
    color: var(--jq_color1);
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu a:hover::after {
    width: 100%;
    left: 0;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu .menu-child-box {
    position: relative;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu .menu-child-box .hide {
    display: none;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu .menu-child-box .child-item-box {
    width: 100%;
    position: absolute;
    top: 85px;
    left: 0;
    z-index: 999;
    background: var(--jq_color10);
    display: none;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu .menu-child-box .child-item-box a {
    padding: 10px 24px;
}

.layout-container .layout-header .logo-menu-box .logo-menu .menu .menu-child-box:hover .child-item-box {
    display: block;
}

.layout-container .layout-footer-box {
    width: 100%;
    background: var(--jq_color1);
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.layout-container .layout-footer-box .layout-footer {
    width: var(--jq_w1400);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-footer-box .layout-footer .menu-contact {
    width: 100%;
    display: flex;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu {
    width: calc(100% - 390px);
    display: flex;
    flex-wrap: wrap;
    padding-right: 20px;
    padding-bottom: 50px;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu .footer-menu-item {
    width: 33.333333333%;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu .footer-menu-item .title {
    width: 100%;
    font-size: var(--jq_fs6);
    font-weight: bold;
    color: var(--jq_color10);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu .footer-menu-item .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu .footer-menu-item .items a {
    color: var(--jq_color5);
    margin-bottom: 15px;
    font-size: var(--jq_fs3);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-menu .footer-menu-item .items a:hover {
    color: var(--jq_color10);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact {
    width: 390px;
    flex-shrink: 0;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    padding: 0 20px;
    border-left: 1px solid var(--jq_color4);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .title {
    width: 100%;
    font-size: var(--jq_fs5);
    font-weight: bold;
    color: var(--jq_color10);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items span {
    color: var(--jq_color5);
    margin-bottom: 5px;
    font-size: var(--jq_fs3);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items a {
    position: relative;
    color: var(--jq_color10);
    margin-right: 30px;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items a i {
    font-size: var(--jq_fs8);
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items a .child {
    width: 120px;
    padding: 5px;
    background: var(--jq_color9);
    position: absolute;
    left: 50%;
    margin-left: -60px;
    top: 30px;
    display: none;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items a .child img {
    width: 100%;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items a:hover .child {
    display: flex;
}

.layout-container .layout-footer-box .layout-footer .menu-contact .footer-contact .footer-contact-item .items.flex {
    flex-direction: initial;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy {
    width: 100%;
    height: 90px;
    border-top: 1px solid var(--jq_color4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .copyright {
    color: var(--jq_color10);
    font-size: var(--jq_fs3);
    display: flex;
    align-items: center;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .copyright img {
    margin: 0 5px;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .copyright .bottom-list .list-items {
    color: var(--jq_color10);
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .copyright .bottom-list .list-items span {
    color: var(--jq_color10);
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .policy {
    display: flex;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .policy a {
    color: var(--jq_color10);
    font-size: var(--jq_fs3);
    margin: 0 10px;
}

.layout-container .layout-footer-box .layout-footer .copyright-policy .policy a:hover {
    color: var(--jq_color6);
}

.layout-container .layout-content {
    width: 100%;
    padding-top: 135px;
    min-height: 739px;
    /* 首页 */
    /* 产品列表 */
}

.layout-container .layout-content .banner-box {
    width: 100%;
    height: 550px;
}

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

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

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

.layout-container .layout-content .banner-box .swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

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

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

.layout-container .layout-content .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;
}

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

.layout-container .layout-content .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;
}

.layout-container .layout-content .banner-box .swiper .swiper-button-next, .layout-container .layout-content .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;
}

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

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

.layout-container .layout-content .search-technology-mall {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.layout-container .layout-content .search-technology-mall a {
    display: flex;
    margin: 0 50px;
    align-items: center;
}

.layout-container .layout-content .search-technology-mall a span {
    font-size: var(--jq_fs6);
}

.layout-container .layout-content .search-technology-mall a i {
    font-size: var(--jq_fs12);
    margin-right: 10px;
}

.layout-container .layout-content .search-technology-mall a i.icon-search {
    font-size: var(--jq_fs10);
}

.layout-container .layout-content .search-technology-mall a i.icon-bangzhu {
    font-size: var(--jq_fs14);
}

.layout-container .layout-content .latestRelease-box {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.layout-container .layout-content .latestRelease-box .latestRelease {
    width: var(--jq_w1400);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .latestRelease-box .latestRelease .max-title {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: var(--jq_fs10);
    font-weight: bold;
}

.layout-container .layout-content .latestRelease-box .latestRelease .min-title {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: var(--jq_fs6);
    color: var(--jq_color4);
    margin-top: 10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-more {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs5);
    margin-top: 20px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-more span {
    font-size: var(--jq_fs5);
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-more i {
    font-size: var(--jq_fs1);
    margin-left: 10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box {
    width: calc(100% + 20px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    left: -10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item {
    width: calc(25% - 20px);
    height: 178px;
    background: var(--jq_color9);
    margin: 0 10px;
    margin-bottom: 20px;
    padding: 20px;
    padding-bottom: 0;
    border: 1px solid var(--jq_color7);
    transition: all 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item .max-text {
    height: 30px;
    font-size: var(--jq_fs5);
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item .min-text {
    height: calc(100% - 70px);
    color: var(--jq_color4);
    padding-bottom: 10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item .look-text {
    border-top: 1px solid var(--jq_color7);
    height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item .look-text i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item:hover {
    border: 1px solid var(--jq_color1);
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item:hover .min-text {
    color: var(--jq_color3);
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 {
    width: calc(25% - 20px);
    height: 178px;
    margin: 0 10px;
    margin-bottom: 20px;
    border: 1px solid var(--jq_color7);
    transition: all 0.3s;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .img {
    width: 140px;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .text {
    width: calc(100% - 140px);
    padding: 10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .text .max-text {
    height: 30px;
    font-size: var(--jq_fs5);
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .text .min-text {
    height: calc(100% - 70px);
    color: var(--jq_color4);
    padding-bottom: 10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .text .look-text {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1 .text .look-text i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1:hover {
    border: 1px solid var(--jq_color1);
}

.layout-container .layout-content .latestRelease-box .latestRelease .lr-list-box .lr-list-item1:hover .min-text {
    color: var(--jq_color3);
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan {
    width: calc(100% + 20px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    left: -10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item {
    width: calc(25% - 20px);
    height: 400px;
    margin: 0 10px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border: 1px solid var(--jq_color7);
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main {
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s;
    opacity: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--jq_color10);
    z-index: 1;
    opacity: 0.7;
    left: 0;
    top: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .max-text {
    /* height: 30px; */
    font-size: var(--jq_fs5);
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .min-text {
    max-height: calc(100% - 95px);
    color: var(--jq_color4);
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .label-box {
    /* height: 25px; */
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .label-box a {
    padding: 3px 6px;
    border: 1px solid var(--jq_color4);
    display: flex;
    align-items: center;
    margin-right: 5px;
    border-radius: 3px;
    font-size: var(--jq_fs1);
    transition: all 0.5s;
    margin-bottom: 5px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .label-box a:hover {
    border: 1px solid var(--jq_color1);
    background-color: var(--jq_color1);
    color: var(--jq_color10);
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .look-text {
    height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item .applicationPlan-main .look-text i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item:hover {
    border: 1px solid var(--jq_color1);
}

.layout-container .layout-content .latestRelease-box .latestRelease .applicationPlan .applicationPlan-item:hover .applicationPlan-main {
    opacity: 1;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent {
    width: calc(100% + 20px);
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    left: -10px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item {
    width: calc(33.333333333% - 20px);
    height: 570px;
    margin: 0 10px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border: 1px solid var(--jq_color7);
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .img {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .time {
    width: 100%;
    height: 30px;
    margin-top: 20px;
    font-size: var(--jq_fs1);
    color: var(--jq_color5);
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .max-text {
    width: 100%;
    height: calc(100% - 390px);
    padding: 10px 20px;
    font-size: var(--jq_fs4);
    line-height: 34px;
    overflow: hidden;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .look-text {
    height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.layout-container .layout-content .latestRelease-box .latestRelease .newsEvent .newsEvent-item .look-text i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .growup-box {
    width: 100%;
    height: 850px;
    background: url("./images/bg3.jpg") no-repeat center center;
    background-size: cover;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.layout-container .layout-content .growup-box .growup {
    width: var(--jq_w1400);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .growup-box .growup .growup-about {
    width: 65%;
    display: flex;
    flex-direction: column;
    padding: 70px 0;
}

.layout-container .layout-content .growup-box .growup .growup-about .max-text {
    font-size: var(--jq_fs8);
    font-weight: bold;
    color: var(--jq_color10);
}

.layout-container .layout-content .growup-box .growup .growup-about .max-text span {
    font-size: var(--jq_fs8);
}

.layout-container .layout-content .growup-box .growup .growup-about .about {
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--jq_color10);
    margin-top: 20px;
}

.layout-container .layout-content .growup-box .growup .growup-about .about .text {
    font-size: var(--jq_fs7);
    font-weight: bold;
    color: var(--jq_color10);
}

.layout-container .layout-content .growup-box .growup .growup-about .about .text span {
    font-size: var(--jq_fs7);
}

.layout-container .layout-content .growup-box .growup .growup-about .about .more span {
    font-size: var(--jq_fs3);
    color: var(--jq_color10);
    display: flex;
    align-items: center;
}

.layout-container .layout-content .growup-box .growup .growup-about .about .more span i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .growup-box .growup .growup-about .statistics {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.layout-container .layout-content .growup-box .growup .growup-about .statistics .statistics-item {
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.layout-container .layout-content .growup-box .growup .growup-about .statistics .statistics-item .number {
    font-size: var(--jq_fs7);
    color: var(--jq_color10);
    font-weight: bold;
}

.layout-container .layout-content .growup-box .growup .growup-about .statistics .statistics-item .text {
    color: var(--jq_color8);
    display: flex;
    align-items: flex-end;
    margin-top: 10px;
}

.layout-container .layout-content .growup-box .growup .growup-quality {
    width: calc(100% + 20px);
    display: flex;
    position: relative;
    left: -10px;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item {
    width: calc(100% - 20px);
    height: 355px;
    background: var(--jq_color1);
    margin: 0 10px;
    position: relative;
    opacity: 0.9;
    border-radius: 5px;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item .items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item .items .max-text {
    font-size: var(--jq_fs6);
    font-weight: bold;
    color: var(--jq_color10);
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item .items .min-text {
    font-size: var(--jq_fs3);
    color: var(--jq_color6);
    margin-top: 20px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item .icon {
    position: absolute;
    right: 0;
    bottom: 0;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item .icon i {
    font-size: 120px;
    color: var(--jq_color10);
    opacity: 0.2;
}

.layout-container .layout-content .growup-box .growup .growup-quality .quality-item:hover {
    opacity: 1;
}

.layout-container .layout-content .explore-box {
    width: 100%;
    height: 410px;
    background: url("./images/63.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.layout-container .layout-content .explore-box .explore {
    width: var(--jq_w1400);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 90px 0;
}

.layout-container .layout-content .explore-box .explore .max-title {
    font-size: var(--jq_fs10);
    font-weight: bold;
    color: var(--jq_color3);
}

.layout-container .layout-content .explore-box .explore .min-text {
    font-size: var(--jq_fs5);
    color: var(--jq_color4);
    margin-top: 20px;
    line-height: 30px;
}

.layout-container .layout-content .explore-box .explore .min-text span {
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .explore-box .explore .explore-btn {
    display: flex;
}

.layout-container .layout-content .explore-box .explore .explore-btn a {
    padding: 10px 20px;
    background: var(--jq_color1);
    color: var(--jq_color10);
    border-radius: 5px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.layout-container .layout-content .explore-box .explore .explore-btn a span {
    font-size: var(--jq_fs4);
}

.layout-container .layout-content .explore-box .explore .explore-btn a i {
    font-size: var(--jq_fs1);
    margin-left: 5px;
}

.layout-container .layout-content .product-box {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.layout-container .layout-content .product-box .product {
    width: var(--jq_w1400);
    display: flex;
}

.layout-container .layout-content .product-box .product .product-type-box {
    width: 300px;
    border-right: 1px solid var(--jq_color7);
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-top: 20px;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type-title {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--jq_color7);
    display: flex;
    align-items: center;
    font-size: var(--jq_fs3);
    font-weight: bold;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item {
    width: 100%;
    border-bottom: 1px solid var(--jq_color7);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item a {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item a i {
    margin-right: 10px;
    font-size: var(--jq_fs1);
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item > a {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item .type-child-box {
    width: 100%;
    background: var(--jq_color9);
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item .type-child-box .child-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item .type-child-box .child-item a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item .type-child-box .child-item a i {
    margin-right: 10px;
    font-size: var(--jq_fs1);
}

.layout-container .layout-content .product-box .product .product-type-box .product-type .type-item .type-child-box .child-item .type-grandson {
    padding-left: 20px;
    background: var(--jq_color8);
    padding-left: 20px;
}

.layout-container .layout-content .product-box .product .product-list-box {
    width: calc(100% - 300px);
    padding: 20px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: var(--jq_pb4);
}

.layout-container .layout-content .product-box .product .product-list-box .search-type-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.layout-container .layout-content .product-box .product .product-list-box .search-type-box .search-keyword {
    flex-shrink: 0;
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .product-box .product .product-list-box .search-type-box .search-keyword span {
    background-color: yellow;
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .product-box .product .product-list-box .prod-list-type {
    width: 100%;
    padding: var(--jq_pl2);
    display: flex;
    justify-content: flex-end;
}

.layout-container .layout-content .product-box .product .product-list-box .prod-list-type a {
    margin-left: var(--jq_ml2);
    color: var(--jq_color5);
}

.layout-container .layout-content .product-box .product .product-list-box .prod-list-type a i {
    font-size: var(--jq_fs6);
}

.layout-container .layout-content .product-box .product .product-list-box .product-list {
    width: calc(100% + 20px);
    cursor: pointer;
    display: none;
    flex-wrap: wrap;
    /* padding: 0 var(--jq_pt2); */
    position: relative;
    left: -10px;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item {
    width: calc(100% / 4 - 20px);
    margin: var(--jq_mt2);
    display: flex;
    border: 1px solid var(--jq_color9);
    padding: var(--jq_pt2);
    transition: all 0.3s;
    cursor: pointer;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item:hover {
    border: 1px solid var(--jq_color8);
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item .img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item .img img {
    width: 100%;
    height: 100%;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item .text {
    width: calc(100% - 80px);
    padding-left: var(--jq_pl2);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item .text .max {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list .product-list-item .text .min {
    width: 100%;
    font-size: var(--jq_fs2);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list-table {
    margin-bottom: var(--jq_mb4);
    display: flex;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list.list-block {
    display: flex;
}

.layout-container .layout-content .product-box .product .product-list-box .product-list-table.list-block {
    display: flex;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list .list-item {
    width: calc(33.333333333% - 20px);
    height: 300px;
    background: #f5f5f5;
    margin: 0 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list .list-item:hover {
    background: #e5e5e5;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list .list-item .img {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list .list-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layout-container .layout-content .product-box .product .product-list-box .application-list .list-item .text {
    padding-top: 20px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    /* //属性规定当文本溢出包含元素时发生的事情  text-overflow: clip|ellipsis|string; (修剪/省略号/指定字符串) */
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    /* autoprefixer: off */
    -webkit-box-orient: vertical;
    /* //属性规定框的子元素应该被水平或垂直排列 */
    /* autoprefixer: on */
}

.layout-container .layout-content .product-box .product .product-list-box.news-list-box {
    width: 100%;
}

.layout-container .layout-content .product-box .product .product-list-box.news-list-box .application-list {
    width: 100%;
}

.layout-container .layout-content .product-box .product .product-list-box.news-list-box .application-list .list-item {
    width: calc(25% - 20px);
}

.layout-container .layout-content .product-box .product-main {
    width: var(--jq_w1400);
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product-main .product-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: var(--jq_fs4);
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .product-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .enlarge {
    width: 100%;
    height: auto;
    border: 1px solid var(--jq_color9);
    display: flex;
    padding: 20px;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .enlarge .enlarge-img {
    width: 165px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .enlarge .enlarge-img img {
    width: 100%;
    height: auto;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .enlarge .enlarge-img span {
    text-align: center;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .enlarge .enlarge-table {
    width: calc(100% - 165px);
    padding-left: 20px;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .specifications {
    width: 100%;
    height: auto;
    border: 1px solid var(--jq_color9);
    margin-top: var(--jq_mt4);
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .specifications .specifications-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid var(--jq_color17);
    font-size: var(--jq_fs4);
    background: var(--jq_color16);
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .specifications .specifications-content {
    padding: 0 20px;
}

.layout-container .layout-content .product-box .product-main .product-content .product-left-box .specifications .specifications-content.p0 {
    padding: 0;
}

.layout-container .layout-content .product-box .product-main .product-title1 {
    width: 100%;
    height: 168px;
    background: url("icon/7.jpg") no-repeat left top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 0 var(--jq_pt6);
    justify-content: center;
    color: var(--jq_color10);
}

.layout-container .layout-content .product-box .product-main .product-title1 .max-title {
    font-size: var(--jq_fs4);
}

.layout-container .layout-content .product-box .product-main .product-title1 .min-title {
    font-size: var(--jq_fs2);
    margin-top: var(--jq_mt2);
}

.layout-container .layout-content .product-box .product-main .product-title1.brand-title {
    background: url("icon/6.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .product-title1.aboutus-title {
    background: url("icon/3.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .product-title1.contact-title {
    background: url("icon/4.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .product-title1.news-title {
    background: url("icon/news-bg1.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .product-title1.help-title {
    background: url("icon/8.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .product-title1.application-title {
    background: url("icon/5.jpg") no-repeat left top;
    background-size: cover;
}

.layout-container .layout-content .product-box .product-main .contact-box {
    width: 100%;
    display: flex;
    padding: var(--jq_pt4) var(--jq_pl2);
    /* background: #f5f5f5; */
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-wrap {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-wrap .contact-item {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-wrap .contact-item .contact-item-title {
    margin: var(--jq_mt2) 0;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-wrap .contact-item .contact-item-title.notMt {
    margin-top: 0;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 var(--jq_mt2);
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-item-title {
    width: 100%;
    font-size: var(--jq_fs3);
    font-weight: bold;
    margin-bottom: var(--jq_mb2);
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main {
    width: 100%;
    height: 100%;
    border: 1px solid var(--jq_color7);
    padding: var(--jq_pt2);
    line-height: 28px;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main .text {
    width: 100%;
    display: flex;
    margin-bottom: var(--jq_mb2);
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main .text .field-label {
    font-size: var(--jq_fs2);
    font-weight: bold;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main .text .field-value {
    font-size: var(--jq_fs2);
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main .text .field-value img {
    width: 100px;
}

.layout-container .layout-content .product-box .product-main .contact-box .contact-item .contact-main .jq-common-form .form-box .form-item .field-label {
    width: auto;
}

.layout-container .layout-content .product-box .product-main .aboutus-box {
    width: 100%;
    /* background: var(--jq_color9); */
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-tab {
    width: 100%;
    height: 52px;
    background: var(--jq_color10);
    display: flex;
    padding: 0 40px;
    align-items: center;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-tab a {
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-tab a.active {
    color: var(--jq_color14);
    background: var(--jq_color2);
    border-bottom: 2px solid var(--jq_color8);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main {
    width: 100%;
    display: flex;
    padding: var(--jq_pt8) 0;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-content {
    width: calc(100% - 250px);
    padding-right: var(--jq_pl2);
    font-size: var(--jq_fs3);
    line-height: 30px;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-content * {
    font-size: var(--jq_fs3);
    line-height: 30px;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-content p {
    /* text-indent: 2em; */
    margin-bottom: var(--jq_mb4);
    /* line-height: 28px; */
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-content p.bold {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-content span.title {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-img {
    width: 250px;
    padding: 0 var(--jq_pl2);
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .aboutus-img img {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content {
    width: calc(100% - 250px);
    padding-right: var(--jq_pl2);
    font-size: var(--jq_fs2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-tips {
    width: 100%;
    display: flex;
    font-size: var(--jq_fs3);
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-process {
    width: 100%;
    display: flex;
    margin: var(--jq_mt2) 0;
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-title {
    width: 100%;
    display: flex;
    font-weight: bold;
    padding: var(--jq_pt2) 0;
    align-items: center;
    border-bottom: 1px solid var(--jq_color9);
    cursor: pointer;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-title i {
    margin-right: var(--jq_mr2);
    transition: all 0.3s;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-title span {
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-title.active i {
    transform: rotate(90deg);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content {
    width: 100%;
    padding-top: var(--jq_pt2);
    background: var(--jq_color9);
    padding: 0 var(--jq_pl6);
    display: none;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content * {
    line-height: 30px;
    font-size: var(--jq_fs3);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content p {
    /* text-indent: 2em; */
    margin-bottom: var(--jq_mb2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content p.bold {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content span {
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .aboutus-main .join-content .join-main .join-item .join-item-content.active {
    display: block;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main {
    width: 100%;
    display: flex;
    padding: var(--jq_pt8);
    justify-content: space-between;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-list {
    width: calc(100% - 260px);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding-right: var(--jq_pr4);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-list .news-list-title {
    width: 100%;
    font-size: var(--jq_fs3);
    font-weight: bold;
    margin-bottom: var(--jq_mb2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-list .news-list-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-list .news-list-main .news-list-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--jq_pl2) 0;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-list .news-list-main .news-list-item .text {
    white-space: initial;
    padding-right: var(--jq_pr2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend {
    width: 260px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-title {
    width: 100%;
    font-size: var(--jq_fs3);
    font-weight: bold;
    margin-bottom: var(--jq_mb2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-main {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-main a {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-main a .img {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-main a .img img {
    width: 100%;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-recommend .news-recommend-main a .text {
    width: 100%;
    font-size: var(--jq_fs2);
    white-space: initial;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail {
    width: calc(100% - 260px);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding-right: var(--jq_pr8);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .title-time-source {
    width: 100%;
    padding: var(--jq_pl4) 0;
    margin-bottom: var(--jq_mb4);
    border-bottom: 1px solid var(--jq_color9);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .title-time-source .news-detail-title {
    width: 100%;
    font-size: var(--jq_fs5);
    font-weight: bold;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .title-time-source .time-source {
    margin-top: var(--jq_mt2);
    font-size: var(--jq_fs2);
    color: var(--jq_color8);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .news-detail-content {
    font-size: var(--jq_fs2);
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .news-detail-content p {
    margin: var(--jq_mb4) 0;
}

.layout-container .layout-content .product-box .product-main .aboutus-box .news-main .news-detail .news-detail-content img {
    width: 100%;
}

.layout-container .layout-content .product-box.p0 {
    padding: 0;
}

/* products-table */
.products-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.products-table .theads {
    width: 100%;
}

.products-table .theads .ths {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--jq_color8);
    background: var(--jq_color16);
}

.products-table .theads .ths .tds {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs2);
}

.products-table .theads .ths .tds.border {
    border: none;
    border-right: 1px solid var(--jq_color8);
}

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

.products-table .tbodys .trs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--jq_color8);
}

.products-table .tbodys .trs .tds {
    width: 100%;
    display: flex;
    padding: var(--jq_pt3) var(--jq_pt1);
    align-items: center;
    font-size: var(--jq_fs2);
}

.products-table .tbodys .trs .tds .field-label {
    width: 100px;
    flex-shrink: 0;
    text-align: right;
}

.products-table .tbodys .trs .tds.center {
    justify-content: center;
    align-items: center;
}

.products-table .tbodys .trs .tds.border {
    border: none;
    border-right: 1px solid var(--jq_color8);
}

.products-table .tbodys .trs .tds.operate {
    justify-content: flex-end;
}

.products-table .tbodys .trs:nth-child(even):hover, .products-table .tbodys .trs:hover {
    background: var(--jq_color8);
}

.products-table .tbodys .trs:nth-child(even) {
    background: var(--jq_color9);
}

.products-table.border {
    border: 1px solid var(--jq_color8);
}

.products-table.pc-phone.products-table-phone {
    display: none;
}

.products-table.pc-phone.products-table-phone .tbodys {
    width: 100%;
}

.products-table.pc-phone.products-table-phone .tbodys .trs {
    display: flex;
    flex-direction: column;
}

.page-box {
    width: 100%;
    padding: var(--jq_pl4px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 10px;
}

.page-box a {
    height: 30px;
    padding: 0 var(--jq_pl2);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--jq_color9);
    margin-right: var(--jq_mr2);
    transition: all 0.3s;
}

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

.page-box a.active {
    background: var(--jq_color8);
    color: var(--jq_color2);
}

.highlight {
    background-color: yellow;
    /* 高亮背景色 */
    font-weight: bold;
    /* 加粗字体 */
}

.news-main {
    width: 100%;
    display: flex;
    padding: var(--jq_pt8);
    justify-content: space-between;
}

.news-main .news-list {
    width: calc(100% - 260px);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding-right: var(--jq_pr4);
}

.news-main .news-list .news-list-title {
    width: 100%;
    font-size: var(--jq_fs3);
    font-weight: bold;
    margin-bottom: var(--jq_mb2);
}

.news-main .news-list .news-list-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
}

.news-main .news-list .news-list-main .news-list-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: var(--jq_pl2) 0;
}

.news-main .news-list .news-list-main .news-list-item .text {
    white-space: initial;
    padding-right: var(--jq_pr2);
}

.news-main .news-recommend {
    width: 260px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.news-main .news-recommend .news-recommend-title {
    width: 100%;
    font-size: var(--jq_fs3);
    font-weight: bold;
    margin-bottom: var(--jq_mb2);
}

.news-main .news-recommend .news-recommend-main {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.news-main .news-recommend .news-recommend-main a {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
}

.news-main .news-recommend .news-recommend-main a .img {
    width: 100%;
    border: 1px solid #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
}

.news-main .news-recommend .news-recommend-main a .img img {
    width: 100%;
}

.news-main .news-recommend .news-recommend-main a .text {
    width: 100%;
    font-size: var(--jq_fs2);
    white-space: initial;
}

.news-main .news-detail {
    width: calc(100% - 260px);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding-right: var(--jq_pr8);
}

.news-main .news-detail .title-time-source {
    width: 100%;
    padding: var(--jq_pl4) 0;
    margin-bottom: var(--jq_mb4);
    border-bottom: 1px solid var(--jq_color9);
}

.news-main .news-detail .title-time-source .news-detail-title {
    width: 100%;
    font-size: var(--jq_fs5);
    font-weight: bold;
}

.news-main .news-detail .title-time-source .time-source {
    margin-top: var(--jq_mt2);
    font-size: var(--jq_fs2);
    color: var(--jq_color5);
}

.news-main .news-detail .news-detail-content {
    font-size: var(--jq_fs2);
}

.news-main .news-detail .news-detail-content p {
    margin: var(--jq_mb4) 0;
}

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

.jq-common-form .form-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
}

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

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

.jq-common-form .form-box .form-item .field-label {
    width: 120px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-shrink: 0;
}

.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 {
    width: 100%;
    height: 32px;
    padding: 0 var(--jq_pt2);
    border: 1px solid var(--jq_color7);
    outline: none;
    font-size: var(--jq_fs2);
    border-radius: 4px;
    transition: all 0.3s;
}

.jq-common-form .form-box .form-item .field-value .field-value-input .textarea {
    min-height: 64px;
    height: auto;
    padding: var(--jq_pt1) var(--jq_pt2);
}

.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 {
    border: 1px solid var(--jq_color1);
}

.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 {
    border: 1px solid var(--jq_error);
}

.jq-common-form .form-box .form-item .field-value .field-value-input .imgs {
    width: 80px;
    height: 32px;
    margin-left: var(--jq_ml1);
    flex-shrink: 0;
}

.jq-common-form .form-box .form-item .field-value .field-value-error {
    width: 100%;
    font-size: var(--jq_fs1);
    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-submit {
    width: 100%;
}

.jq-common-form .form-submit .btn {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs2);
    font-weight: bold;
    background: var(--jq_color1);
    border-radius: 5px;
    cursor: pointer;
    padding: 0 var(--jq_pt4);
    border: none;
    opacity: 0.8;
    color: var(--jq_color10);
}

.jq-common-form .form-submit .btn:hover {
    opacity: 1;
}

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

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

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

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

.button {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs2);
    font-weight: bold;
    background: var(--jq_color1);
    border-radius: 5px;
    cursor: pointer;
    padding: 0 var(--jq_pt4);
    border: none;
    opacity: 0.8;
    color: var(--jq_color10);
}

.button:hover {
    opacity: 1;
}

.button.danger {
    background: var(--jq_error);
    color: var(--jq_color10);
}

.button.info {
    background: var(--jq_color6);
}

.button.success {
    background: var(--jq_success);
    color: var(--jq_color10);
}

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

.swiper-button-prev, .swiper-button-next {
    display: none !important;
}

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

@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-max-text {
    width: 100%;
    font-size: 54px;
    /*color: var(--jq_color2);*/
    /*margin-bottom: 30px;*/
    /*white-space: pre-wrap;*/
    position: relative;
    left: -60px;
    opacity: 0;
}

.banner-min-text {
    width: 100%;
    font-size: 34px;
    color: var(--jq_color20);
    margin-bottom: 10px;
    white-space: pre-wrap;
    position: relative;
    left: -60px;
    opacity: 0;
}

.banner-en-text {
    width: 100%;
    font-size: 18px;
    color: var(--jq_color2);
    margin-bottom: 10px;
    white-space: pre-wrap;
    position: relative;
    left: -60px;
    opacity: 0;
}

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

.swiper-slide-active .banner-min-text {
    animation-name: example1;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}

.swiper-slide-active .banner-en-text {
    animation-name: example1;
    animation-duration: 1.4s;
    animation-fill-mode: forwards;
}

/* appProductsBasicInfor */
.appProductsBasicInfor-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.appProductsBasicInfor-box .appProductsBasicInfor-item {
    width: 100%;
    display: flex;
}

.appProductsBasicInfor-box .appProductsBasicInfor-item .field-label {
    width: 120px;
    padding: 5px 0;
    text-align: right;
    color: var(--jq_color5);
    flex-shrink: 0;
    /* font-size: var(--jq_fs1); */
}

.appProductsBasicInfor-box .appProductsBasicInfor-item .field-value {
    width: calc(100% - 120px);
    padding: 5px 0;
    color: var(--jq_color18);
    /* font-size: var(--jq_fs1); */
}

.appProductsBasicInfor-box .appProductsBasicInfor-item:hover {
    background-color: var(--jq_color8);
}

.appProductsBasicInfor-box.tableBorder .appProductsBasicInfor-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--jq_color8);
}

.appProductsBasicInfor-box.tableBorder .appProductsBasicInfor-item .field-label {
    text-align: left;
}

.appProductsBasicInfor-box.tableBorder .appProductsBasicInfor-item .field-label, .appProductsBasicInfor-box.tableBorder .appProductsBasicInfor-item .field-value {
    width: 50%;
    padding: 5px 10px;
    padding-left: 20px;
}

.appProductsBasicInfor-box.notHover .appProductsBasicInfor-item:hover {
    background: none;
}

/* appProductsOtherList */
.AppProductsOtherList-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.AppProductsOtherList-box .AppProductsOtherList-item {
    width: 100%;
    display: flex;
    border-bottom: 1px solid var(--jq_color22);
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-img {
    width: 50px;
    padding: 5px;
    flex-shrink: 0;
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-number {
    width: 200px;
    padding: 5px;
    flex-shrink: 0;
    color: var(--jq_color14);
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-label {
    width: calc(100% - 370px);
    padding: 5px;
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-value {
    width: 120px;
    padding: 5px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.AppProductsOtherList-box .AppProductsOtherList-item .field-value .more {
    color: var(--jq_color18);
    font-size: var(--jq_fs1);
}

.AppProductsOtherList-box .AppProductsOtherList-item:nth-child(odd):hover, .AppProductsOtherList-box .AppProductsOtherList-item:hover {
    background-color: var(--jq_color17);
}

.AppProductsOtherList-box .AppProductsOtherList-item:nth-child(odd) {
    background: var(--jq_color25);
}

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

.singlePage .advertisement {
    width: 100%;
}

.singlePage .advertisement img {
    width: 100%;
}

.singlePage .singlePage-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.singlePage .singlePage-content .singlePage-main {
    width: var(--jq_w1400);
    padding: 20px 0;
    line-height: 30px;
    font-size: var(--jq_fs3);
}

.singlePage .singlePage-content .singlePage-main * {
    font-size: var(--jq_fs3);
}

.crumbs-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.crumbs-box .crumbs {
    width: var(--jq_w1400);
    height: 50px;
    line-height: 50px;
    font-size: var(--jq_fs2);
    color: var(--jq_color10);
    display: flex;
}

.crumbs-box .crumbs a {
    display: flex;
    align-items: center;
    color: #7d879c;
    font-size: var(--jq_fs2);
}

.news-detail-content img {
    max-width: 100%;
}

.rfq-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.rfq-box .rfq {
    width: var(--jq_w1400);
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.rfq-box .rfq .rfq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
    box-shadow: 0px 2px 10px var(--jq_color7);
    border-radius: 10px;
}

.rfq-box .rfq .rfq-list .min-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: var(--jq_fs4);
    border-bottom: 1px solid var(--jq_color8);
}

.rfq-box .rfq .rfq-list .list-box {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}

.rfq-box .rfq .rfq-list .list-box .rfq-tips {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--jq_mb4);
    color: var(--jq_color1);
}

.rfq-box .rfq .rfq-list .list-box .rfq-tips span {
    width: 100%;
    font-size: var(--jq_fs2);
}

.rfq-box .rfq .rfq-list .list-box .rfq-tips .bold {
    font-size: var(--jq_fs3);
    font-weight: bold;
}

.rfq-box .rfq .rfq-list .list-box .clear-add {
    margin-top: var(--jq_mt4);
    display: flex;
    justify-content: flex-end;
}

.rfq-box .rfq .rfq-list .list-box .req-form {
    width: 100%;
}

.rfq-box .rfq .rfq-list .list-box .req-form .el-form {
    width: 100%;
    max-width: none !important;
    display: flex;
    flex-wrap: wrap;
}

.rfq-box .rfq .rfq-list .list-box .req-form .el-form .el-form-item {
    width: 50%;
    padding: 0 10px;
    margin-bottom: var(--jq_mb6);
}

.rfq-box .rfq .rfq-list .list-box .req-form .el-form .el-form-item .el-input {
    width: 100%;
}

.rfq-box .rfq .rfq-list .list-box .form-submit {
    /* margin-top: var(--jq_mt4); */
    display: flex;
    justify-content: center;
}

.fw {
    font-weight: bold;
}

.primary {
    color: var(--jq_color1);
}
