.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 5px;
    background-color: #f7f8f9;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #272d82;
  }
  .header-wrapper.shadow {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  }
  .index-box-5 .list li:nth-child(-n+5) {
    margin-top: 0;
  }
  .index-box-5 .list li:nth-child(5n) {
    margin-right: 0;
  }
  .index-more {
    width: 1.8rem;
    height: 0.55rem;
    line-height: 0.51rem;
  }
  .index-more:hover i:nth-child(1),
  .index-more.on i:nth-child(1),
  .index-more:hover i:nth-child(3),
  .index-more.on i:nth-child(3) {
    width: 1.8rem;
  }
  .index-more:hover i:last-child,
  .index-more.on i:last-child,
  .index-more:hover i:nth-child(2),
  .index-more.on i:nth-child(2) {
    height: 0.55rem;
  }
  .index-box-5 canvas {
    height: 40%!important;
  }
  .page-nav-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 0.4rem;
  }
  .page-nav-wrapper .intruction-caption {
    display: none;
  }
  .page-nav-wrapper .page-nav-box {
    display: none;
  }
  .page-nav-wrapper .nav {
    font-size: 0;
  }
  .page-nav-wrapper .nav > a {
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 0.82rem;
    margin-right: 0;
    color: #666;
    font-size: var(--fs16);
    min-width: 1.78rem;
    padding: 0 0.2rem;
    border-right: 1px solid rgba(39, 45, 130, 0.1);
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
  }
  .page-nav-wrapper .nav > a:first-child {
    border-left: 1px solid rgba(39, 45, 130, 0.1);
  }
  .page-nav-wrapper .nav > a:last-child {
    margin-right: 0;
  }
  .page-nav-wrapper .nav > a.on,
  .page-nav-wrapper .nav > a:hover {
    color: #272d82;
    font-weight: 700;
    background-color: #f1f2ff;
  }
  .page-nav-wrapper .nav > a.on:before,
  .page-nav-wrapper .nav > a:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .page-nav-wrapper .nav > a.on:after,
  .page-nav-wrapper .nav > a:hover:after {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .page-nav-wrapper .nav > a:before {
    content: "";
    width: 100%;
    height: 0.03rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    background-color: #272d82;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }
  .page-nav-wrapper .nav > a:after {
    content: "";
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border-radius: 50%;
    border: solid 3px #272d82;
    position: absolute;
    left: 50%;
    bottom: 0.15rem;
    margin-left: -5px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.1rem);
    -webkit-transform: translateY(0.1rem);
    -moz-transform: translateY(0.1rem);
    -ms-transform: translateY(0.1rem);
    -o-transform: translateY(0.1rem);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .page-nav-wrapper .breadcrumb span,
  .page-nav-wrapper .breadcrumb a,
  .page-nav-wrapper .breadcrumb img {
    vertical-align: middle;
    display: inline-block;
  }
  .page-nav-wrapper .breadcrumb span,
  .page-nav-wrapper .breadcrumb a {
    font-weight: 700;
  }
  .page-nav-wrapper .breadcrumb > img {
    width: 6px;
    margin: 0 0.14rem;
  }
  .page-nav-wrapper .breadcrumb a {
    color: #999;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }
  .page-nav-wrapper .breadcrumb a:hover {
    color: #272d82;
  }
  .page-nav-wrapper .breadcrumb span {
    color: #272d82;
  }
  .honor-wrapper .list li:nth-child(4n) {
    margin-right: 0;
  }
  .honor-wrapper .list li:nth-child(-n+4) {
    margin-top: 0;
  }
  .brand-wrapper .list li:nth-child(6n),
  .brand-wrapper .list li:last-child {
    border-right: 1px solid #ededed;
  }
  .brand-wrapper .list li:nth-child(-n+6) {
    border-top: 1px solid #ededed;
  }
  .goods-nav-box li > a:hover {
    font-weight: 700;
    color: #fff;
    border-color: #272d82;
    background-color: #272d82;
  }
  .goods-nav-box .cat:hover:after {
    background-image: url(../img/i-right3.png);
  }
  .goods-nav-box .cat.on:hover:after {
    background-image: url(../img/down2.png);
    background-size: 11px;
  }
  .goods-nav-box .child a:hover {
    font-weight: 700;
    color: #272d82;
    background-image: linear-gradient(90deg, #ffffff 0%, #e4e9f9 100%), linear-gradient(#4a53b7, #4a53b7);
    background-blend-mode: normal, normal;
  }
  .goods-wrapper .max .main .list li {
    width: 23.5%;
    margin-right: 2%;
    margin-top: 2%;
  }
  .goods-wrapper .max .main .list li:nth-child(-n+4) {
    margin-top: 0;
  }
  .goods-wrapper .max .main .list li:nth-child(4n) {
    margin-right: 0;
  }
  .goods-wrapper .goods-nav-box + .main .list li {
    width: 31.14%;
    margin-right: 3.29%;
    margin-top: 3.29%;
  }
  .goods-wrapper .goods-nav-box + .main .list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .goods-wrapper .goods-nav-box + .main .list li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1600px) {
  :root {
    --fs18: 17px;
    --fs20: 18px;
    --fs22: 20px;
    --fs24: 22px;
    --fs28: 26px;
    --fs30: 28px;
    --fs36: 34px;
    --fs40: 36px;
    --fs48: 44px;
    --fs60: 0.56rem;
    --fs72: 0.68rem;
  }
}
@media screen and (max-width: 1440px) {
  :root {
    --fs16: 15px;
    --fs18: 16px;
    --fs20: 17px;
    --fs22: 0.2rem;
    --fs24: 0.22rem;
    --fs28: 0.26rem;
    --fs30: 0.28rem;
    --fs36: 0.3rem;
    --fs40: 0.32rem;
    --fs48: 0.4rem;
    --fs60: 0.52rem;
    --fs72: 0.64rem;
  }
  .index-banner-wrapper .info-2 .name {
    line-height: 0.68rem;
  }
  .goods-nav-box .child a {
    padding: 0 0.4rem;
  }
  .goods-nav-box .cat:after {
    right: 0.3rem;
  }
  .index-box-2 li {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --fs14: 13px;
    --fs16: 14px;
    --fs18: 16px;
    --fs60: 0.48rem;
    --fs72: 0.6rem;
  }
  .index-box-1 h1 {
    font-size: 0.34rem;
  }
  .page-banner-wrapper .en {
    margin-top: 0.1rem;
  }
  .box-container {
    width: 12rem;
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --fs14: 12px;
  }
  .index-banner-wrapper .info-2 .name {
    line-height: 0.6rem;
  }
}
@media screen and (max-width: 1004px) {
  :root {
    --fs14: 0.24rem;
    --fs16: 0.28rem;
    --fs18: 0.3rem;
    --fs20: 0.32rem;
    --fs22: 0.36rem;
    --fs24: 0.38rem;
    --fs28: 0.4rem;
    --fs30: 0.42rem;
    --fs36: 0.44rem;
    --fs40: 0.46rem;
    --fs60: 0.44rem;
    --fs72: 0.44rem;
  }
  .box-container,
  .w1200 {
    width: 100%;
    padding: 0 0.3rem;
  }
  .hidden-xs {
    display: none;
  }
  .hidden-pc {
    display: block;
  }
  .nav-icon {
    font-size: 0;
    width: 0.48rem;
    height: 0.48rem;
    position: relative;
    margin-left: 0.4rem;
  }
  .nav-icon.on span:nth-child(1) {
    transform: rotate(45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon.on span:nth-child(2) {
    opacity: 0;
  }
  .nav-icon.on span:nth-child(3) {
    transform: rotate(-45deg);
    margin: 0;
    transition: margin 180ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms, -webkit-transform 270ms cubic-bezier(0.215, 0.61, 0.355, 1) 180ms;
  }
  .nav-icon span {
    display: inline-block;
    width: 100%;
    height: 0.05rem;
    background: #272d82;
    position: absolute;
    left: 0;
    top: 0.24rem;
    z-index: 10;
    transform-origin: center center;
    transition: margin 140ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 230ms, transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms, -webkit-transform 280ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  }
  .nav-icon span:nth-child(1) {
    margin-top: -8px;
  }
  .nav-icon span:nth-child(2) {
    margin-top: 0;
    width: 65%;
  }
  .nav-icon span:nth-child(3) {
    margin-top: 8px;
  }
  .phone-nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    position: fixed;
    right: 0;
    top: 1.2rem;
    background: #fff;
    z-index: 501;
    overflow: auto;
    border-top: 1px solid #f3f3f3;
  }
  .phone-nav ul {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
    transition: max-height 0.8s ease;
    -webkit-transition: max-height 0.8s ease;
    -moz-transition: max-height 0.8s ease;
    -ms-transition: max-height 0.8s ease;
    -o-transition: max-height 0.8s ease;
  }
  .phone-nav ul::-webkit-scrollbar {
    width: 4px;
  }
  .phone-nav ul::-webkit-scrollbar-track {
    background-color: #eaeaea;
  }
  .phone-nav ul::-webkit-scrollbar-thumb {
    background-color: #272d82;
  }
  .phone-nav ul li {
    position: relative;
  }
  .phone-nav ul li.active .cat {
    color: #272d82;
    font-weight: 700;
  }
  .phone-nav ul li.active .cat:before {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .phone-nav ul li > a {
    position: relative;
    display: block;
    font-size: 0.28rem;
    color: #333;
    line-height: 0.96rem;
    padding: 0 0.3rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .phone-nav ul li .cat:before,
  .phone-nav ul li .cat:after {
    content: "";
    display: inline-block;
    background: #272d82;
    position: absolute;
    z-index: 10;
  }
  .phone-nav ul li .cat:before {
    width: 0.06rem;
    height: 0.26rem;
    right: 0.4rem;
    top: 0.36rem;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }
  .phone-nav ul li .cat:after {
    width: 0.26rem;
    height: 0.06rem;
    right: 0.3rem;
    top: 0.46rem;
  }
  .phone-nav ul li.on > a {
    font-weight: 700;
    color: #272d82;
  }
  .phone-nav ul li .navs .cate {
    position: relative;
    color: #333;
  }
  .phone-nav ul li .navs .cate:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 10;
    width: 6px;
    height: 100%;
    background-image: url(../img/i-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .phone-nav ul li .navs .cate.on {
    color: #272d82;
  }
  .phone-nav ul li .navs .cate.on:before {
    transform: rotate(90deg);
    background-image: url(../img/i-right2.png);
  }
  .phone-nav ul li .child {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    display: none;
    padding-left: 0.3rem;
    overflow: hidden;
  }
  .phone-nav ul li .child a {
    width: 50%;
    color: #999;
    font-size: 0.26rem;
    line-height: 0.44rem;
    padding-left: 0;
    margin-top: 0.12rem;
  }
  .phone-nav ul li .child a:nth-child(-n+2) {
    margin-top: 0;
  }
  .phone-nav ul li .child a:nth-child(odd) {
    float: left;
  }
  .phone-nav ul li .child a:nth-child(even) {
    float: right;
  }
  .phone-nav ul li .navs {
    background: #f9f9f9;
    width: 100%;
    display: none;
  }
  .phone-nav ul li .navs a {
    display: block;
    padding: 0 0.3rem;
  }
  .phone-nav ul li .navs a:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .phone-nav ul li .navs > a {
    color: #666;
    font-size: 0.28rem;
    line-height: 1rem;
    border-bottom: 1px solid #f3f3f3;
  }
  .pic img.pc {
    display: none;
  }
  .pic img.phone {
    display: block;
  }
  .search-form {
    top: 1.2rem;
    padding: 0.24rem 0;
    width: 100%;
    right: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.05);
    /* input placeholder  */
  }
  .search-form img {
    width: 14px;
  }
  .search-form .box {
    width: 100%;
    padding: 0 0.3rem;
  }
  .search-form .keywords {
    line-height: 40px;
    margin-left: 15px;
    font-size: 14px;
    padding-right: 20px;
  }
  .search-form ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
    font-size: 14px;
  }
  .search-form :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
    font-size: 14px;
  }
  .search-form ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    font-size: 14px;
  }
  .search-form :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999;
    font-size: 14px;
  }
  .search-form .close {
    margin-top: -10px;
    width: 16px;
    height: 16px;
    right: 15px;
    display: block;
  }
  .search-form .search-btn img {
    width: 16px;
  }
  .pc-nav-box {
    display: none;
  }
  .header-wrapper {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  }
  .header-wrapper .box-container {
    height: 1.2rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header-wrapper .logo-box {
    width: 60%;
  }
  .header-wrapper .search {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 100%;
  }
  .header-wrapper .other-box {
    display: flex;
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    align-items: center;
  }
  .p_h {
    height: 1.2rem;
  }
  .index-banner-wrapper .swiper-slide img {
    display: none;
  }
  .index-banner-wrapper .swiper-slide img.phone {
    display: block;
  }
  .index-banner-wrapper .info-1 {
    top: 1.9rem;
  }
  .index-banner-wrapper .info-1 .name {
    line-height: 0.66rem;
  }
  .index-banner-wrapper .en {
    line-height: 0.54rem;
  }
  .index-banner-wrapper .info-2 {
    top: 1.8rem;
  }
  .index-banner-wrapper .info-2 .name {
    line-height: 0.6rem;
  }
  .index-banner-wrapper .swiper-pagination {
    bottom: 0.4rem;
  }
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.24rem;
  }
  .index-title-box {
    margin-bottom: 0.6rem;
  }
  .index-title-box h2 {
    line-height: 0.5rem;
  }
  .index-title-box p {
    display: none;
  }
  .index-title-box .line {
    width: 0.54rem;
    height: 0.07rem;
    margin-top: 0.34rem;
  }
  .top .index-more {
    top: 0;
  }
  .index-more {
    width: 2.7rem;
    height: 0.84rem;
    line-height: 0.8rem;
  }
  .index-more:hover:nth-child(1),
  .index-more.on i:nth-child(1),
  .index-more:hover:nth-child(3),
  .index-more.on i:nth-child(3) {
    width: 2.7rem;
  }
  .index-more:hover:last-child,
  .index-more.on i:last-child,
  .index-more:hover:nth-child(2),
  .index-more.on i:nth-child(2) {
    height: 0.84rem;
  }
  .index-more i:nth-child(1),
  .index-more i:nth-child(3) {
    height: 1px;
  }
  .index-more i:last-child,
  .index-more i:nth-child(2) {
    width: 1px;
  }
  .index-more i:nth-child(1) {
    left: -1px;
    top: -1px;
  }
  .index-more i:nth-child(2) {
    right: -1px;
    top: -1px;
  }
  .index-more i:nth-child(3) {
    right: -1px;
    bottom: -1px;
  }
  .index-more i:last-child {
    left: -1px;
    bottom: -1px;
  }
  .footer-wrapper {
    background-color: #091a39;
  }
  .footer-wrapper .box-container {
    display: block;
  }
  .footer-wrapper .box-1 {
    padding: 0.86rem 0 0;
  }
  .footer-wrapper .box-2 {
    padding: 1.2rem 0 0.3rem;
  }
  .footer-wrapper .contact {
    text-align: center;
  }
  .footer-wrapper .copyright {
    text-align: center;
    margin-top: 0;
  }
  .footer-wrapper .title {
    color: #fff;
    line-height: 0.48rem;
  }
  .footer-wrapper .tel {
    margin: 0.36rem auto 0.2rem;
  }
  .footer-wrapper .tel img {
    width: 0.4rem;
    margin-right: 0.16rem;
  }
  .footer-wrapper .desc {
    text-align: center;
  }
  .footer-wrapper .qrcode {
    margin-top: 0.6rem;
  }
  .footer-wrapper .qrcode ul {
    justify-content: center;
  }
  .footer-wrapper .qrcode li {
    width: 29%;
    margin-right: 0.3rem;
  }
  .footer-wrapper .qrcode li:last-child {
    margin-right: 0;
  }
  .footer-wrapper .other {
    width: 100%;
    margin-right: 0;
  }
  .footer-wrapper .link,
  .footer-wrapper .friendlink,
  .footer-wrapper .author {
    display: none;
  }
  .index-box-1 {
    padding: 1rem 0;
  }
  .index-box-1 .box-container {
    display: block;
  }
  .index-box-1 .info {
    width: 100%;
  }
  .index-box-1 .pic {
    width: 100%;
    margin-top: 1rem;
  }
  .index-box-1 h1 {
    font-size: 0.32rem;
    line-height: 0.5rem;
  }
  .index-box-1 .desc {
    margin: 0.3rem auto 0.6rem;
    line-height: 0.48rem;
  }
  .index-box-2 {
    background: none;
    margin-top: 1rem;
  }
  .index-box-2 .top {
    display: block;
    padding-left: 0.3rem;
  }
  .index-box-2 .top .index-more {
    left: auto;
    right: 0.3rem;
    bottom: auto;
  }
  .index-box-2 ul {
    background: url(../img/p_index2bg.jpg) no-repeat center center;
    background-size: cover;
  }
  .index-box-2 li {
    width: 50%;
    height: auto;
    padding: 0.6rem 0.24rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    border-right: none;
    border-top: none;
  }
  .index-box-2 li:first-child {
    display: none;
  }
  .index-box-2 li:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }
  .index-box-2 li:not(:first-child):before {
    width: 100%;
    height: 100%;
  }
  .index-box-2 .icon {
    height: 0.5rem;
  }
  .index-box-2 .title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    margin: 0.24rem auto 0.1rem;
  }
  .index-box-2 .en {
    display: none;
  }
  .index-box-2 .more {
    position: static;
  }
  .index-box-3 {
    padding: 1rem 0;
    background: url(../img/p_index3bg.jpg) no-repeat bottom center;
    background-size: 100%;
  }
  .index-box-3 .news {
    flex-flow: wrap;
  }
  .index-box-3 .left {
    width: 100%;
    background-color: #fbfbfb;
  }
  .index-box-3 .left .pic img {
    height: auto;
  }
  .index-box-3 .left .info {
    padding: 0.32rem 0.4rem 0.35rem;
  }
  .index-box-3 .left .title {
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
  .index-box-3 .left .desc {
    font-size: var(--fs14);
    line-height: 0.44rem;
    height: 0.88rem;
    margin: 0.1rem auto 0.3rem;
  }
  .index-box-3 .left .more:before {
    width: 0.36rem;
  }
  .index-box-3 .right {
    width: 100%;
    margin-top: 0.5rem;
  }
  .index-box-3 .right li:first-child {
    padding-top: 0;
  }
  .index-box-3 .right li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .index-box-3 .right li:hover .more:before {
    width: 0.36rem;
  }
  .index-box-3 .right li a {
    align-items: center;
  }
  .index-box-3 .right .pic {
    width: 36%;
  }
  .index-box-3 .right .pic img {
    height: auto;
  }
  .index-box-3 .right .info {
    width: 60%;
  }
  .index-box-3 .right .title {
    font-size: var(--fs16);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .index-box-3 .right .desc {
    display: none;
  }
  .index-box-3 .more {
    font-size: 0.24rem;
    line-height: 0.3rem;
    margin-top: 0.2rem;
  }
  .index-box-3 .more:before {
    height: 0.04rem;
  }
  .padding {
    padding: 1rem 0;
  }
  .index-box-4 .main {
    display: block;
  }
  .index-box-4 .pic {
    width: 100%;
  }
  .index-box-4 .info {
    width: 100%;
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
  }
  .index-box-4 .time {
    font-size: var(--fs18);
    line-height: 0.4rem;
  }
  .index-box-4 .first-box {
    padding-bottom: 0.4rem;
  }
  .index-box-4 .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    height: 0.48rem;
  }
  .index-box-4 .desc {
    font-size: var(--fs16);
    line-height: 0.44rem;
    height: 0.88rem;
    margin: 0.12rem auto 0.28rem;
  }
  .index-box-4 .first-box,
  .index-box-4 .list {
    padding-left: 0.3rem;
  }
  .index-box-4 .list {
    margin-top: 0.4rem;
  }
  .index-box-4 .list a {
    line-height: 0.56rem;
  }
  .index-box-5 {
    background-image: url(../img/p_index5bg.jpg);
  }
  .index-box-5 .box-container {
    display: block;
  }
  .index-box-5 .index-title-box {
    margin-bottom: 0.4rem;
  }
  .index-box-5 .index-title-box .line {
    margin-left: auto;
    margin-right: auto;
  }
  .index-box-5 .info {
    width: 100%;
    text-align: center;
  }
  .index-box-5 .title {
    font-size: 0.48rem;
    line-height: 0.6rem;
    margin-bottom: 0.8rem;
    min-height: inherit;
  }
  .index-box-5 .index-more {
    margin: 0 auto;
  }
  .index-box-5 .list {
    width: 100%;
    margin-top: 1rem;
  }
  .index-box-5 .list li {
    width: 23.5%;
    margin-right: 2%;
    margin-top: 2%;
    border-radius: 5px;
  }
  .index-box-5 .list li:nth-child(-n+4) {
    margin-top: 0;
  }
  .index-box-5 .list li:nth-child(4n) {
    margin-right: 0;
  }
  .index-box-5 .list li img {
    height: auto;
  }
  .index-box-5 canvas {
    height: 30%!important;
  }
  .page-nav-wrapper {
    position: relative;
    z-index: 20;
    padding: 0;
    height: auto;
    margin-top: 0;
  }
  .page-nav-wrapper.pc {
    display: none;
  }
  .page-nav-wrapper .breadcrumb {
    display: none;
  }
  .page-nav-wrapper .box-container {
    height: auto;
    padding: 0;
  }
  .page-nav-wrapper .page-nav-box {
    padding-right: 0;
  }
  .page-nav-box {
    width: 100%;
    background: #f4f4f4;
  }
  .page-nav-box .box-container {
    position: relative;
    height: auto;
    padding: 0;
  }
  .page-nav-box .intruction-caption {
    position: relative;
    display: block;
    line-height: 44px;
    padding: 0 15px;
    background: #272d82;
    color: #fff;
  }
  .page-nav-box .intruction-caption.extend:after {
    transform: rotateX(180deg);
  }
  .page-nav-box .intruction-caption:after {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 10;
    content: "";
    width: 13px;
    height: 100%;
    background: url(../img/down.png) no-repeat center center;
    background-size: contain;
  }
  .page-nav-box .nav {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    width: 100%;
    background: #f7f8f9;
    display: none;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  }
  .page-nav-box .nav a {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 42px;
    padding: 0 15px;
    border-top: 1px solid #f2f2f2;
    height: auto;
    max-width: inherit;
    min-width: inherit;
  }
  .page-nav-box .nav a:first-child {
    border-top: none;
  }
  .page-nav-box .nav > a.on,
  .page-nav-box .nav > a:hover {
    background: none;
  }
  .page-nav-box .nav > a:before {
    display: none;
  }
  .content {
    line-height: 0.48rem;
  }
  .page-banner-wrapper > img {
    height: 3rem;
    object-fit: cover;
  }
  .page-banner-wrapper h1,
  .page-banner-wrapper .en {
    font-size: var(--fs24);
  }
  .page-banner-wrapper .en {
    line-height: 0.4rem;
    margin: 0.1rem auto 0.4rem;
  }
  .page-banner-wrapper .line {
    height: 0.04rem;
  }
  .page-box {
    padding: 1rem 0;
  }
  .about-wrapper {
    display: block;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .about-wrapper .pic {
    margin-top: 0.8rem;
    width: 100%;
  }
  .about-wrapper .pic img {
    height: auto;
  }
  .about-wrapper .info {
    width: 100%;
  }
  .about-wrapper .title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    margin-bottom: 0.5rem;
  }
  .about-wrapper .index-title-box {
    margin-bottom: 0.3rem;
  }
  .history-wrapper {
    display: block;
  }
  .history-wrapper .swiper-box:before {
    left: 0.26rem;
  }
  .history-wrapper .swiper-slide {
    padding-left: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .history-wrapper .swiper-slide:before {
    left: 0.18rem;
    top: 0.2rem;
  }
  .history-wrapper .year {
    width: 1.4rem;
    height: 0.52rem;
    line-height: 0.52rem;
    font-size: var(--fs14);
    padding-left: 0.1rem;
    margin-right: 0.4rem;
  }
  .history-wrapper .desc {
    line-height: 0.48rem;
  }
  .culture-wrapper .box-container {
    display: block;
  }
  .culture-wrapper .left {
    width: 100%;
  }
  .culture-wrapper .left .info {
    margin-top: 0.8rem;
  }
  .culture-wrapper .pic {
    padding: 0.8rem 0.6rem;
  }
  .culture-wrapper .pic .title {
    font-size: var(--fs24);
  }
  .culture-wrapper .brief {
    line-height: 0.48rem;
  }
  .culture-wrapper .en {
    line-height: 0.32rem;
  }
  .culture-wrapper .caption {
    line-height: 0.48rem;
    letter-spacing: 0.04rem;
    margin-bottom: 0.24rem;
  }
  .culture-wrapper .caption:after {
    width: 0.3rem;
    margin-top: 0.2rem;
  }
  .culture-wrapper .content img {
    margin: 0 auto;
  }
  .culture-wrapper .right {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .culture-wrapper .right:before {
    right: 0;
    width: 1.6rem;
  }
  .culture-wrapper .right > img {
    width: calc(100% - 1.2rem);
  }
  .culture-wrapper .right .info {
    padding: 1rem 0.6rem 0;
  }
  .culture-wrapper .right .name {
    font-size: 0.7rem;
    line-height: 0.8rem;
  }
  .culture-wrapper .right .desc {
    font-size: var(--fs22);
    line-height: 0.48rem;
    margin-top: 0.32rem;
  }
  .culture-wrapper .right .desc em {
    margin-right: 0.2rem;
  }
  .culture-wrapper .right .en {
    font-size: 1.6rem;
    line-height: 1.4rem;
    letter-spacing: 0.6rem;
    right: -0.6rem;
    bottom: -0.86rem;
  }
  .pic-modal-box .box {
    padding: 0 0.3rem;
  }
  .pic-modal-box .main {
    width: 100%;
    padding: 0.6rem 0.3rem 0.4rem;
  }
  .pic-modal-box .top {
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
  }
  .pic-modal-box .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    padding-right: 1rem;
    text-align: left;
    padding-left: 0;
  }
  .pic-modal-box .close {
    width: 0.32rem;
    height: 0.32rem;
    top: -5px;
  }
  .pic-modal-box .pic-box {
    width: 100%;
  }
  .honor-wrapper .list ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .honor-wrapper .list li {
    width: calc((100% - 0.3rem) / 2);
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .honor-wrapper .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .honor-wrapper .pic img {
    height: auto;
  }
  .honor-wrapper .info {
    height: 0.84rem;
    line-height: 0.42rem;
    margin-top: 0.24rem;
  }
  .honor-wrapper .name {
    padding: 0;
    font-size: 0.24rem;
  }
  .pageNum {
    display: none;
  }
  .pageMore {
    display: block;
  }
  .brand-wrapper li {
    width: 25%;
  }
  .brand-wrapper li:nth-child(4n),
  .brand-wrapper li:last-child {
    border-right: 1px solid #ededed;
  }
  .brand-wrapper li:nth-child(-n+4) {
    border-top: 1px solid #ededed;
  }
  .brand-wrapper li img {
    height: 1.12rem;
  }
  .learn {
    line-height: 0.74rem;
    font-size: 0.24rem;
  }
  .learn:hover {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .learn i {
    width: 0.5rem;
    height: 0.12rem;
    margin-left: 0.2rem;
  }
  .news-wrapper li {
    padding: 0.3rem;
    display: block;
    margin-bottom: 0.3rem;
  }
  .news-wrapper li:hover .learn {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .news-wrapper .pic {
    width: 100%;
  }
  .news-wrapper .info {
    width: 100%;
    padding-right: 0;
    margin-top: 0.5rem;
  }
  .news-wrapper .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    height: 0.48rem;
  }
  .news-wrapper .desc {
    line-height: 0.4rem;
    height: auto;
    max-height: 1.2rem;
    margin: 0.1rem auto 0.3rem;
  }
  .news-wrapper .time {
    display: block;
    margin-bottom: 0.32rem;
  }
  .news-wrapper .date {
    display: none;
  }
  .newsinfo-wrapper .box-container {
    display: block;
  }
  .newsinfo-wrapper .main {
    width: 100%;
  }
  .newsinfo-wrapper .top {
    margin-bottom: 0.4rem;
  }
  .newsinfo-wrapper .top h2 {
    font-size: var(--fs24);
    line-height: 0.56rem;
  }
  .newsinfo-wrapper .top .bottom span {
    font-size: 0.24rem;
    margin-right: 0.15rem;
  }
  .newsinfo-wrapper .top .bottom img {
    height: 0.2rem;
    margin-right: 0.06rem;
  }
  .newsinfo-wrapper .caption-box {
    margin-bottom: 0.3rem;
  }
  .newsinfo-wrapper .caption-box p {
    font-size: 0.24rem;
    line-height: 0.4rem;
    margin: 0.16rem auto 0.3rem;
  }
  .newsinfo-wrapper .caption-box .line {
    width: 0.36rem;
    height: 0.06rem;
  }
  .newsinfo-wrapper .caption {
    line-height: 0.48rem;
  }
  .newsinfo-wrapper .other {
    width: 100%;
    margin-top: 0.8rem;
  }
  .newsinfo-wrapper .other .bottom {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    margin-top: 0.3rem;
  }
  .newsinfo-wrapper .other .bottom p,
  .newsinfo-wrapper .other .bottom p a {
    font-size: 0.24rem;
  }
  .newsinfo-wrapper .other .bottom p {
    line-height: 0.48rem;
    margin-bottom: 0.1rem;
    height: 0.48rem;
  }
  .newsinfo-wrapper .other .bottom p a {
    max-width: 72%;
  }
  .newsinfo-wrapper .recommend,
  .newsinfo-wrapper .other .bottom {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .newsinfo-wrapper .recommend {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .newsinfo-wrapper .recommend li {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .newsinfo-wrapper .recommend .title {
    line-height: 0.48rem;
    margin: 0.4rem auto 0.16rem;
  }
  .newsinfo-wrapper .recommend .more {
    width: 0.6rem;
    height: 0.4rem;
  }
  .newsinfo-wrapper .share {
    margin: 0.3rem auto 0.4rem;
  }
  .newsinfo-wrapper .share a {
    width: 30px;
    height: 30px;
  }
  .newsinfo-wrapper .return {
    line-height: 0.7rem;
    font-size: 0.24rem;
  }
  .contact-wrapper > div {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .contact-wrapper .box-1 .box-container {
    display: block;
  }
  .contact-wrapper .map {
    margin-top: 0.8rem;
    width: 100%;
    height: 4rem;
  }
  .contact-wrapper .info {
    width: 100%;
  }
  .contact-wrapper .info .name {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin-bottom: 0.4rem;
  }
  .contact-wrapper .info ul {
    display: flex;
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .contact-wrapper .info li {
    width: 48%;
    margin-bottom: 0.15rem;
  }
  .contact-wrapper .info li:last-child {
    width: 100%;
  }
  .contact-wrapper .info li p {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .contact-wrapper .info .brief {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .contact-wrapper .box-2 .desc {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.3rem;
  }
  .contact-wrapper .box-2 .index-title-box .line {
    margin-top: 0.3rem;
  }
  .contact-wrapper .form i {
    line-height: 0.84rem;
    left: 0.3rem;
  }
  .contact-wrapper .group {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.3rem;
  }
  .contact-wrapper .group.max i {
    line-height: 0.6rem;
    top: 0.3rem;
  }
  .contact-wrapper .text,
  .contact-wrapper .msg {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .contact-wrapper .text {
    height: 0.84rem;
    line-height: 0.84rem;
  }
  .contact-wrapper .msg {
    line-height: 0.48rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    height: 3rem;
  }
  .contact-wrapper .submit {
    width: 2.4rem;
    line-height: 0.8rem;
    font-size: var(--fs14);
    margin: 0.4rem auto 0;
  }
  .goods-nav-box {
    width: 100%;
    padding-bottom: 0;
    position: relative;
    background: none;
  }
  .goods-nav-box .title-box {
    display: none;
  }
  .goods-nav-box .caption {
    position: relative;
    display: block;
    font-size: var(--fs16);
    line-height: 44px;
    padding: 0 15px;
    background: #272d82;
    color: #fff;
  }
  .goods-nav-box .caption.extend:after {
    transform: rotateX(180deg);
  }
  .goods-nav-box .caption:after {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 10;
    content: "";
    width: 13px;
    height: 100%;
    background: url(../img/down.png) no-repeat center center;
    background-size: contain;
  }
  .goods-nav-box ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    background-color: #fbfbfb;
    width: 100%;
    max-height: 7.34rem;
    overflow-y: auto;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  }
  .goods-nav-box ul::-webkit-scrollbar {
    width: 3px;
    background-color: #f7f8f9;
  }
  .goods-nav-box ul::-webkit-scrollbar-thumb {
    background-color: #272d82;
  }
  .goods-nav-box li:last-child a {
    border-bottom: none;
  }
  .goods-nav-box li > a {
    line-height: 0.8rem;
    padding-left: 0.3rem;
    padding-right: 0.6rem;
    font-size: var(--fs14);
    padding-top: 0;
    padding-bottom: 0;
  }
  .goods-nav-box li > a.on {
    background-color: #fbfbfb;
    color: #272d82;
    border-color: #ebebeb;
  }
  .goods-nav-box li > a span {
    -webkit-line-clamp: 1;
  }
  .goods-nav-box a {
    display: block;
  }
  .goods-nav-box .cat:after {
    right: 0.3rem;
  }
  .goods-nav-box .cat.on:after {
    background-image: url(../img/down3.png);
  }
  .goods-nav-box .child a {
    height: 0.82rem;
    line-height: 0.82rem;
    padding: 0 0.4rem;
  }
  .goods-wrapper {
    padding-top: 0;
  }
  .goods-wrapper .box-container {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .goods-wrapper .main {
    width: 100%;
    padding-top: 0.6rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .goods-wrapper .cate-box {
    padding: 0.3rem 0.4rem 0.4rem;
  }
  .goods-wrapper .cate-box .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .goods-wrapper .cate-box ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .goods-wrapper .cate-box ul li {
    width: 48%;
    margin-top: 0.1rem;
    padding-right: 0;
  }
  .goods-wrapper .cate-box ul li:nth-child(5n) {
    padding-right: 0;
  }
  .goods-wrapper .cate-box ul li:hover a,
  .goods-wrapper .cate-box ul li.on a {
    color: #272d82;
    font-weight: 700;
  }
  .goods-wrapper .cate-box a {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .goods-wrapper .quick-box {
    margin: 0.4rem auto;
    align-items: flex-end;
  }
  .goods-wrapper .quick-box .group:first-child {
    margin-right: 0.3rem;
  }
  .goods-wrapper .quick-box span {
    font-size: var(--fs14);
    line-height: 0.62rem;
    margin: 0 0.16rem;
  }
  .goods-wrapper .quick-box span:first-child {
    margin-right: 0;
  }
  .goods-wrapper .quick-box span.tit {
    width: 100%;
    display: block;
  }
  .goods-wrapper .quick-box .text,
  .goods-wrapper .quick-box .submit {
    height: 0.62rem;
  }
  .goods-wrapper .quick-box .text {
    width: 1.6rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    line-height: 0.62rem;
  }
  .goods-wrapper .quick-box .text.mini {
    width: 1.1rem;
  }
  .goods-wrapper .quick-box .submit {
    width: 1.2rem;
    line-height: 0.62rem;
    font-size: var(--fs14);
  }
  .goods-wrapper .list ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .goods-wrapper .list li {
    width: calc((100% - 0.3rem) / 2);
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .goods-wrapper .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .goods-wrapper .list .pic img {
    height: auto;
  }
  .goods-wrapper .list .info {
    padding: 0.3rem;
  }
  .goods-wrapper .list .name {
    font-size: var(--fs16);
    line-height: 0.36rem;
    height: 1.08rem;
  }
  .goods-wrapper .list p {
    font-size: var(--fs14);
    line-height: 0.4rem;
    margin-top: 0.04rem;
  }
  .goods-wrapper .price {
    line-height: 0.34rem;
  }
  .goods-wrapper .load {
    width: 2.2rem;
    line-height: 0.76rem;
    font-size: 0.22rem;
  }
  .goodsinfo-wrapper {
    padding-top: 0;
  }
  .goodsinfo-wrapper .box-container {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .goodsinfo-wrapper .main {
    width: 100%;
    padding-top: 0.6rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .goodsinfo-wrapper .base-box {
    display: block;
  }
  .goodsinfo-wrapper .base-box .pic-swiper {
    height: auto;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-wrapper {
    padding-bottom: 0.8rem;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-slide {
    display: block;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination {
    display: block;
    bottom: 0.3rem;
    font-size: 0;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: none;
    margin: 0 5px;
    width: 8px;
    height: 8px;
    border: 1px solid #272d82;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination .swiper-pagination-bullet:focus,
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination .swiper-pagination-bullet:active,
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination .swiper-pagination-bullet:link {
    outline: none;
  }
  .goodsinfo-wrapper .base-box .pic-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #272d82;
    width: 24px;
    border-radius: 30px;
  }
  .goodsinfo-wrapper .base-box .pic,
  .goodsinfo-wrapper .base-box .info {
    width: 100%;
  }
  .goodsinfo-wrapper .base-box .info {
    margin: 0.6rem auto 0;
  }
  .goodsinfo-wrapper .base-box .name {
    font-size: var(--fs22);
    line-height: 0.5rem;
  }
  .goodsinfo-wrapper .base-box .title {
    font-size: var(--fs18);
    line-height: 0.44rem;
  }
  .goodsinfo-wrapper .base-box .content {
    height: auto;
  }
  .goodsinfo-wrapper .base-box .thumbs {
    display: none;
  }
  .goodsinfo-wrapper .base-box .btn {
    width: 2.4rem;
    line-height: 0.7rem;
    font-size: var(--fs14);
    margin-top: 0.7rem;
  }
  .goodsinfo-wrapper .price {
    font-size: 0.3rem;
    margin: 0.2rem auto;
  }
  .goodsinfo-wrapper .detail-box {
    margin-top: 0.7rem;
  }
  .goodsinfo-wrapper .detail-box .content {
    line-height: 0.48rem;
  }
  .goodsinfo-wrapper .detail-box .content li {
    padding-left: 0.6rem;
    margin-bottom: 0.06rem;
  }
  .goodsinfo-wrapper .detail-box .content li i {
    top: 4px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
  }
  .goodsinfo-wrapper .item {
    margin-bottom: 0.6rem;
    padding-left: 0;
    padding-top: 0.6rem;
    padding-right: 0;
  }
  .goodsinfo-wrapper .item .caption {
    font-size: var(--fs20);
    margin-bottom: 0.3rem;
  }
  .goodsinfo-wrapper table td {
    padding-left: 0.3rem;
    line-height: 0.36rem;
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 375px) {
  .goods-wrapper .quick-box .text.mini {
    width: 1rem;
  }
}
