@charset "UTF-8";
/* 中型设备（平板电脑，768 像素及以上） */
@media only screen and (max-width: 768px) {
  :root {
    --jq_w1200: 100%;
  }
  /* 公共 */
  /* 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_color17);
    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_color17);
  }
  .products-table .tbodys {
    width: 100%;
  }
  .products-table .tbodys .trs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--jq_color17);
  }
  .products-table .tbodys .trs .tds {
    width: 100%;
    display: flex;
    padding: var(--jq_pt1);
    font-size: var(--jq_fs1);
  }
  .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_color17);
  }
  .products-table .tbodys .trs:hover {
    background: var(--jq_color17);
  }
  .products-table.border {
    border: 1px solid var(--jq_color17);
  }
  /* 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 {
    width: 100%;
    display: flex;
    margin-bottom: var(--jq_mb3);
    font-size: var(--jq_fs2);
  }
  .jq-common-form .form-box .form-item .field-label {
    width: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: 7px;
  }
  .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_color17);
    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_color14);
  }
  .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_color19);
  }
  .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_color19);
    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_color14);
    border-radius: 5px;
    cursor: pointer;
    padding: 0 var(--jq_pt4);
    border: none;
    opacity: 0.8;
    color: var(--jq_color2);
  }
  .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_color17);
    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_color14);
  }
  .input.error, .textarea.error {
    border: 1px solid var(--jq_color19);
  }
  .button {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--jq_fs2);
    font-weight: bold;
    background: var(--jq_color14);
    border-radius: 5px;
    cursor: pointer;
    padding: 0 var(--jq_pt4);
    border: none;
    opacity: 0.8;
    color: var(--jq_color2);
  }
  .button:hover {
    opacity: 1;
  }
  .button.danger {
    background: var(--jq_color19);
  }
  .button.info {
    background: var(--jq_color6);
  }
  .button.success {
    background: var(--jq_color24);
  }
  .wrap {
    display: flex;
    flex-direction: column;
  }
  .wrap .content {
    width: 100%;
    height: 100%;
    padding-top: 60px;
  }
  /* 菜单 */
  .menu-pc {
    display: none;
  }
  .menu-phone {
    display: flex;
  }
  /* AppBanner */
  .banner-box {
    height: 500px;
  }
  /* 产品列表 */
  .product-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .product-box .product-title {
    background: url("http://www.cnszic.com/images/7.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .product-box .product-title.brand-title {
    background: url("http://www.cnszic.com/images/6.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .product-box .product-title.aboutus-title {
    background: url("http://www.cnszic.com/images/3.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .product-box .product-title.contact-title {
    background: url("http://www.cnszic.com/images/2.jpg") no-repeat right bottom;
    background-size: cover;
  }
  .product-box .product-main {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .product-box .product-main .tab-box {
    padding: 0;
    background: var(--jq_color6);
    display: block;
  }
  .product-box .product-main .tab-box .tab-active {
    height: auto;
    flex-wrap: wrap;
  }
  .product-box .product-main .tab-box .tab-active a {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    flex-shrink: 0;
  }
  .product-box .product-main .tab-box .tab-main {
    width: 100%;
    flex-shrink: 0;
    padding: 0 var(--jq_pt2);
    padding-bottom: var(--jq_pb4);
  }
  .product-box .product-main .tab-box .tab-main .prodeuct-search .search-input {
    width: 100%;
  }
  .product-box .product-main .product-list-box .product-list .product-list-item {
    width: 100%;
  }
  .product-box .product-main .product-detail-box .product-detail-main {
    flex-direction: column;
    justify-content: flex-start;
  }
  .product-box .product-main .product-detail-box .product-detail-main .product-detail-pic {
    width: 100%;
    height: 300px;
  }
  .product-box .product-main .product-detail-box .product-detail-main .product-detail-basicInfo {
    width: 100%;
    height: auto;
    margin-top: var(--jq_mt4);
  }
  .product-box .product-main .product-detail-box .product-detail-main .product-detail-from {
    width: 100%;
    height: auto;
    margin-top: var(--jq_mt4);
  }
  .page-box {
    width: 100%;
    padding: var(--jq_pl4px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .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);
  }
  .brand-box .brand-list {
    width: 100%;
  }
  .aboutus-box {
    width: 100%;
    background: var(--jq_color2);
    display: flex;
    flex-direction: column;
  }
  .aboutus-box .aboutus-tab {
    width: 100%;
    height: 52px;
    background: var(--jq_color10);
    display: flex;
    padding: 0 20px;
    align-items: center;
  }
  .aboutus-box .aboutus-tab a {
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aboutus-box .aboutus-tab a.active {
    color: var(--jq_color14);
    background: var(--jq_color2);
    border-bottom: 2px solid var(--jq_color8);
  }
  .aboutus-box .aboutus-main {
    flex-direction: column;
    padding: var(--jq_pt4);
  }
  .aboutus-box .aboutus-main .aboutus-content {
    width: 100%;
    padding-right: 0;
  }
  .aboutus-box .aboutus-main .aboutus-content p {
    /* text-indent: 2em; */
    margin-bottom: var(--jq_mb4);
    line-height: 26px;
  }
  .aboutus-box .aboutus-main .aboutus-content p.bold {
    font-weight: bold;
  }
  .aboutus-box .aboutus-main .aboutus-content span.title {
    font-weight: bold;
  }
  .aboutus-box .aboutus-main .aboutus-img {
    width: 100%;
    padding: 0 var(--jq_pl2);
    flex-shrink: 0;
  }
  .aboutus-box .aboutus-main .aboutus-img img {
    width: 100%;
  }
  .aboutus-box .aboutus-main .join-content {
    width: 100%;
    padding-right: 0;
  }
  .aboutus-box .news-main {
    justify-content: center;
    flex-direction: column;
    padding: var(--jq_pt4);
  }
  .aboutus-box .news-main .news-list {
    width: 100%;
    margin-bottom: var(--jq_mb4);
    padding-right: 0;
  }
  .aboutus-box .news-main .news-list .news-list-main .news-list-item {
    flex-direction: column;
  }
  .aboutus-box .news-main .news-list .news-list-main .news-list-item .text {
    padding-right: 0;
  }
  .aboutus-box .news-main .news-recommend {
    width: 100%;
  }
  .aboutus-box .news-main .news-detail {
    width: 100%;
    padding-right: 0;
  }
  .contact-box {
    padding: var(--jq_pt4);
    flex-direction: column;
  }
  .contact-box .contact-wrap {
    width: 100%;
  }
  .contact-box .contact-item {
    width: 100%;
    margin: 0;
    /* margin-bottom: var(--jq_mb4); */
  }
  .contact-box .contact-item .contact-item-title.mt2 {
    margin-top: var(--jq_mt2);
  }
  .contact-box .contact-item #container {
    height: 400px;
  }
  .typeList .typelist-items .typelist-content.typelist-content-max {
    display: none;
  }
  .typeList .typelist-items .typelist-content-min {
    display: block;
    padding: 10px;
    font-size: var(--jq_fs2);
  }
  .help-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--jq_pt4);
  }
  .help-main .help-tips {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .help-main .help-tips .max {
    font-size: var(--jq_fs2);
    font-weight: bold;
  }
  .help-main .help-tips .min {
    font-size: var(--jq_fs1);
    margin-top: var(--jq_mt2);
  }
  .help-main .help-table, .help-main .help-from {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: var(--jq_mt4);
  }
  .help-main .help-table .table-button {
    margin-top: var(--jq_mt2);
  }
  .help-main .help-from {
    border: 1px solid var(--jq_color9);
    padding: var(--jq_pt2);
  }
  .application-box .application-item {
    width: calc(50% - 40px);
  }
  .application-box .application-detail-item {
    width: 100%;
  }
  .rfqTd {
    width: calc((100% - 100px) / 3) !important;
    flex-shrink: 0 !important;
  }
  .rfqTd.hide {
    display: none !important;
  }
}