/* body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td a {
    margin: 0;
    padding: 0;
} */
.textoverflow{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
    list-style: none;
    text-decoration: none;
    line-height: 1;
    margin: 0 auto;
    padding: 0;
}
html{
    font-size: 100px;
}
* {
    list-style: none;
    text-decoration: none;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-family: 'Regular';
    font-size: .16rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: #212529;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}
.button{
    width: 280px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Medium';
    background-color: #212529;
    border: 2px solid #212529;
    color: #fff;
    transition: all 0.5s;
}
.button:hover{
    background-color: #fff;
    color: #212529;
}
a:hover, a:focus {
    color: #212529;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-overflow{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}
.title h2, .title h1{
  position: relative;
}
.title h2 span, .title h1 span{
    font-size: 0.36rem;
    font-family: 'Medium';
    margin-bottom: 5px;
    position: relative;
    color: #212529;
    z-index: 9;
    text-align: center;
    display: inline-block;
}
.title h2::after, .title h1::after{
  position: absolute;
  width: 124px;
  height: 10px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  background-color: rgb(213 22 37 / 30%);
  z-index: 8;
}
.title span{
  color: #D51625;
  font-size: 0.2rem;
  margin-bottom: 0.2rem;
}
.btn.more{
    width: 300px;
    height: 56px;
    background: #D51625;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    margin: 0 auto;
}
.btn.more:hover{
  background-color: #2c1f20;
    color: #fff;
}
.content {
    max-width: 1710px;
    width: 100%;
    margin: 0 auto;
    padding: 0 .4rem;
}

@font-face {
    font-family: 'Regular';
    src: url(/lib/fonts/Ubuntu-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Bold';
    src: url(/lib/fonts/Ubuntu-Bold.ttf);
    font-display: swap;
}

@font-face {
  font-family: 'Medium';
  src: url(/lib/fonts/Ubuntu-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: 'SemiBold';
  src: url(/lib/fonts/Ubuntu-Medium.ttf);
  font-display: swap;
}

/* 搜索栏样式开始 */
.c-close-icon {
    width: 20px;
    height: 20px;
    margin: auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.c-close-icon span {
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: #212529;
    -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}
.c-close-icon span:nth-child(1) {
    -webkit-transform: translateY(8.5px) rotate(-45deg);
    transform: translateY(8.5px) rotate(-45deg);
}
.c-close-icon span:nth-child(2) {
    -webkit-transform: translateY(-8.5px) rotate(45deg);
    transform: translateY(-8.5px) rotate(45deg);
}
input:focus, textarea:focus{
    border-color: #212529;
}
[type='submit']{
    background: #212529;
    border: 1px solid #212529;
}
[type='submit']:hover {
    background: #fff;
    color: #212529;
}
.c-search__submit:hover {
    background: #212529;
    border-color: #212529;
    color: #fff;
}
/* 手机导航搜索栏开始 */
.c-search__submit{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 搜索栏样式开始 */
/* 手机导航搜索栏结束 */

/* 弹出表单开始 */

.form_mask{
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 48, 48,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    display: none;
}

.common-fixed-contact {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 800px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    /* border-radius: 10px; */
    z-index: 998;
    overflow: hidden;
}

.common-fixed-contact h3 {
    margin: 20px 40px;
    color: #D51625;
    text-align: center;
    font-family: 'Bold';
}



.common-fixed-contact p {
    margin: 0 40px
}

.common-fixed-contact-form {
    padding: 20px 40px
}

.common-fixed-contact-form__input,
.common-fixed-contact-form__textarea {
    width: 100%;
    height: 48px;
    padding-left: 20px;
    border: 1px solid #e8e8e8;
    /* border-radius: 4px; */
    margin-bottom: 20px;
    background-color: #fff;
}
.common-fixed-contact-form__input:focus,
.common-fixed-contact-form__textarea:focus{
  border: 1px solid #D51625;
}

.common-fixed-contact-form__textarea {
    height: 144px;
    padding: 20px;
    resize: none
}

.common-fixed-contact-form__submit {
    width: 240px;
    margin: 0 auto;
    margin-top: 20px
}

.common-btn {
    width: 100%;
    height: 48px;
    background-color: #D51625;
    color: #fff;
    border: 1px solid #D51625;
    /* border-radius: 24px; */
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    -webkit-box-shadow: 0 15px 20px -5px rgba(50, 47, 46,0.2);
    box-shadow: 0 15px 20px -5px rgba(50, 47, 46,0.2)
}
.common-btn:hover{color: #D51625;}

.common-fixed-contact__close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: var(--wpr-bg-19bee5c7-09a0-4e37-a702-c98ec0baab9e) no-repeat center center
}

.common-fixed-contact__close img {
    display: none
}

.common-fixed-contact__close img.active {
    display: block
}
/* 弹出表单结束 */

/* page */
.nav-links {
  display: flex;
}
.page{
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: .3rem;
  margin-bottom: 0.3rem;
}
.page .flex,.page .page-numbers{
  min-width: 38px;
  min-height: 38px;
  padding: 10px;
  margin: 0 10px;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
}
.page .center{
  display: flex;
}
.page .flex a,.page .page-numbers{
  color: #D51625;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.page .flex.active,.page .page-numbers.current{
  background: #D51625;
}
.page .flex.active a,.page .page-numbers.current{
  color: #fff;
}
.page .flex:hover,.page .page-numbers:hover{
  background: #D51625;
}
.page .flex:hover a,.page .page-numbers:hover{
  color: #fff;
}
.page .flex .prev svg{
  margin-right: 5px;
}
.page .flex .next svg{
  transform: rotate(180deg);
  margin-left: 5px;
}
.right .page .flex:hover a svg path{
  fill:#fff;
}

.path .content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: .2rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.6rem;
}
.path .content span{
  color: #616161;
}




/* 手机端头部开始 */
.phone_header{
    display: block;
}
.phone_header .nav{
    display: block;
    height: 60px;
}
.body-top {
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  box-shadow: 0px 0px 15px 3px rgba(0, 6, 11, 0.1);
  top: 0;
}
.body-top .body_top{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.body-top .top_left {
  display: inline-block;
  padding: 5px;
  padding-left: 20px;
  background: #fff;
}
.body-top .top_left a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.body-top .top_left img {
    max-width: 150px;
    /* height: 100%; */
}
.body-top .top_right_{
  display: flex;
  align-items: center;
}
.body-top .top_right_ .login{
  margin-left: 10px;
}
.body-top .top_right {
  width: 22px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 17px;
  float: right;
  right: 0;
}
.body-top .top_right span {
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #212529;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1),-webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1),-webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1),opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1),opacity 500ms cubic-bezier(0.2, 0, 0, 1),-webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}
.body-top .active span:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.body-top .active span:nth-child(2) {
  opacity: 0;
}
.body-top .active span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(45deg);
  transform: translateY(-9.5px) rotate(45deg);
}
.body-top .cart {
  display: flex;
  float: right;
  justify-content: center;
  height: 100%;
  align-items: center;
  margin-right: 10px;
}
.body-top .cart a{
  text-decoration: none;
  border: none;
  position: relative;
}
.body-top .cart a span{
  display: none;
}
.body-top .cart a .active{
  width: 15px;
  height: 15px;
  text-decoration: none;
  color: #fff;
  background: #e11b22;
  border-radius: 50%;
  font-size: 12px;
  display: inline-block;
  position: absolute;
  right: -10px;
  top: -10px;
  text-align: center;
  display: block;
}

.phone_header .mask_1 {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  top: 0;
}
.phone_header>.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 1;
  pointer-events: auto;
}
.body-left {
  width: 30%;
  opacity: 0;
  height: 100%;
  float: right;
  /* position: fixed; */
  z-index: 9999;
  background-color: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.2,0,0,1);
  transition: -webkit-transform 500ms cubic-bezier(0.2,0,0,1);
  transition: transform 500ms cubic-bezier(0.2,0,0,1);
  transition: transform 500ms cubic-bezier(0.2,0,0,1), -webkit-transform 500ms cubic-bezier(0.2,0,0,1);
}
.body-left .search{
  width: 100%;
  height: 60px;
  background-color: #D51625;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}
.body-left .search .close{
  width: 16px;
  height: 16px;
  margin-left: 25px;
}

.body-left.body_left_active {
  opacity: 1 !important;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow: auto;
}
.body-left .img {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.body-left .img img{
  width: 100px;
}
.body-left .list {
  padding: 10px;
  min-height: 80%;
}
.body-left .list>ul>li {
  padding: 20px 0 20px 0px;
  color: #1d1d1d;
  font-size: 15px;
  position: relative;
  border-bottom: 1px solid #ccc;
}
.list>ul>li>.active {
  opacity: 1;
  pointer-events: auto;
}
.body-left .list>ul>li>a {
  color: #1d1d1d;
  font-size: 15px;
  position: relative;
  text-decoration: none;
}
.menu__children_phone {
  display: none;
}
.body-left .list>ul>li .active {
  color: #212529;
}
.menu__children_phone .menu__item {
  width: 100%;
  line-height: 18px;
  margin-top: 15px;
  margin-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.menu__children_phone .menu__item a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
}
.menu__item .menu__children_phone3{
  display: none;
}
.menu__item .menu__children_phone3 li{
width: 100%;
line-height: 18px;
margin-top: 15px;
margin-left: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.menu__item2 .triangle3 svg{
  width: 14px;
  height: 14px;
}
.menu__item2 .triangle3{
display: inline-block;
position: absolute;
right: 6px;
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transform-origin: 7px 8px;
}
.menu__item2 .triangle3.active{
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}

.body-left .list>ul>li .triangle{
display: inline-block;
position: absolute;
right: 6px;
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
transform-origin: 7px 8px;
}
.body-left .list>ul>li .triangle.active {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.body-left .nav_phone{
  padding: 10px;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.body-left .nav_phone .call{
  display: flex;
  margin-bottom: 20px;
}
.body-left .nav_phone .call img{
  margin-right: 10px;
}
.body-left .nav_phone .samples{
width: 180px;
height: 40px;
background-color: #212529;
border-radius: 20px;
}
.body-left .nav_phone .samples a{
width: 100%;
height: 100%;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 14px;
text-decoration: none;
font-family: 'Bold';
box-shadow: 0 4px 12px rgb(47 149 217 / 30%);
}
/* 手机端头部结束 */

header{
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px #00000030;
}
.zt{
  height: 120px;
}
header .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .content .right{
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
} 
header .content .right .rigth_top{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .content .right .rigth_top .email{
  display: flex;
  align-items: center;
  margin: 0 .24rem;
}
header .content .right .rigth_top .email a{
  display: block;
  position: relative;
  margin-left: 12px;
  font-family: 'Bold';
}
header .content .right .rigth_top .email a::after{
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #666;
  content: '';
}
header .content .right .rigth_top .share{
  margin: 0 .24rem;
}
header .content .right .rigth_top .share ul{
  display: flex;
}
header .content .right .rigth_top .share ul li{
  margin-right: .14rem;
}
header .content .right .rigth_top .share ul li:last-child{
  margin-right: 0;
}
header .content .right .rigth_top .search{
  width: 192px;
  height: 28px;
  position: relative;
  margin: 0 .24rem;
}
header .content .right .rigth_top .search input{
  width: 100%;
  height: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 14px;
}
header .content .right .rigth_top .search input::placeholder{
  color: #a8a8a8;
}

header .content .right .rigth_top .search svg{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
header .content .right .rigth_top .en{
    margin-left: 0.24rem;
}
header .content .right .rigth_top .en a{
  display: flex;
  align-items: center;
}
header .content .right .rigth_top .en a img{
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
header .content .right .right_btm ul{
  display: flex;
  justify-content: flex-end;
}
header .content .right .right_btm ul li a:hover{
  color: #D51625;
}
header .content .right .right_btm>ul>li:hover>a{
  color:#D51625;
}
header .content .right .right_btm>ul>li{
  padding: 0 .45rem;
  position: relative;
}
header .content .right .right_btm>ul>li>a{
  padding: .3rem 0;
  display: block;
}
header .content .right .right_btm>ul>li:first-child{
  padding-left: 0;
}
header .content .right .right_btm>ul>li:last-child{
  padding-right: 0;
}
header .content .right .right_btm ul li.active>a{
  color: #D51625;
  position: relative;
}
header .content .right .right_btm>ul>li.active>a::after{
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #D51625;
  content: '';
}
header .content .right .right_btm ul .sub_menu_0{
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 2px 10px 1px rgb(27 26 26 / 15%);
    padding: 10px 0;
    display: none;
    min-width: 200px;
    overflow: unset !important;
}
header .content .right .right_btm ul .sub_menu_0 li{
  padding: 10px;
  position: relative;
}

header .content .right .right_btm ul .sub_menu_1{
  position: absolute;
  left: 100%;
  width: 100%;
  background: #fff;
  display: block;
  padding: 0 10px;
  box-shadow: 0px 2px 10px 1px rgb(27 26 26 / 15%);
  top: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
}
header .content .right .right_btm ul .sub_menu_0>li:hover .sub_menu_1{
  visibility: visible;
  opacity: 1;
  top: 0px;
}


footer{
  background-color: #212529;
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  position: relative;
}
footer .content{
  display: flex;
  justify-content: space-between;
}
footer .top{
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #A8A8A8;
  cursor: pointer;
}
footer .top p{
  color: #fff;
  margin-top: 10px;
}

footer .content .left{
  color: #fff;
}
footer .content .left ul.nav{
  display: flex;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
footer .content .left ul.nav li{
  padding-right: 0.2rem;
  margin-right: 0.2rem;
  border-right: 1px solid #fff;
  height: 11px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
footer .content .left ul.nav li:first-child{
  padding-left: 0;
}
footer .content .left ul.nav li:last-child{
  border-right: none;
}
footer .content .left ul.nav li a{
  color: #fff;
  line-height: 1;
}
footer .content .left .logo{
  margin-bottom: 0.4rem;
}
footer .content .left .contact p{
  color: #A8A8A8;
  line-height: 2;
}
footer .content .left .contact p a{
  color: #A8A8A8;
}
footer .content .left .share ul{
  display: flex;
  margin: 0.2rem 0;
}
footer .content .left .share li{
  margin-right: 15px;
}
footer .content .left .share li:hover svg path{
  fill: #D51625;
}
footer .content .left p{
  color: #A8A8A8;
}

footer .content .right{
  max-width: 580px;
  width: 100%;
}
footer .content .right>p{
  color: #fff;
  position: relative;
  padding-left: 70px;
}
footer .content .right>p::after{
  position: absolute;
  width: 58px;
  height: 2px;
  background-color: #fff;
  content: '';
  top: 10px;
  left: 0;
}
footer .content .right ul{
  display: flex;
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
footer .content .right ul li{
  margin-right: 4px;
  margin-bottom: 4px;
  width: 140px;
  background-color: #D51625;
}
footer .content .right ul li:hover{
  background-color: #2c1f20;
    color: #fff;
}
footer .content .right ul li a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .content .right ul li p{
  color: #fff;
}

main .banner_top{
  border-bottom: 1px solid #E5E5E5;
}
main .banner_top .img{
  position: relative;
}
main .banner_top .img img{
  width: 100%;
}
main .banner_top .img .mask{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
main .banner_top .img .mask h2{
  color: #fff;
  font-size: 0.42rem;
  font-family: 'SemiBold';
}
main .banner_top .content .path{
  display: flex;
  align-items: center;
  padding: 10px 0;
}
main .banner_top .content .path span{
  margin: 0 10px;
  color: #666;
}
main .banner_top .content .path span a{
  color: #D51625;
}
main .banner_top .content .path span a:hover{
  color: #666;
}



@media (max-width:1700px) {
  header .content .right .right_btm ul li{
    padding: 0 0.25rem;
  }
}
@media (max-width:1279px) {
  footer .content .left{
    max-width: 50%;
    width: 100%;
  }
  footer .content .right{
    max-width: 50%;
    width: 100%;
  }
  footer .content .left ul.nav{
    flex-wrap: wrap;
  }
  footer .content .left ul.nav li{
    margin-bottom: 0.2rem;
  }
  .zt{
    display: none;
  }
}

@media (max-width:1023px) {
  footer .content{
    flex-direction: column;
  }
  footer .content .right{
    max-width: 580px;
    margin-top: 0.3rem;
  }
  footer .content .left{
    max-width: 100%;
  }
  .title{
    align-items: flex-start;
  }
  .title h2 span, .title h1 span{
    text-align: left;
  }
  .title h2::after, .title h1::after{
    left: 0;
    transform: none;
    bottom: 5px;
  }
}
@media (max-width:767px) {
  *{
    font-size: 0.28rem;
  }
  .title{
    align-items: flex-start;
  }
  .title h2 span, .title h1 span{
    text-align: left;
  }
  .title span{
    font-size: 0.32rem;
  }
  .title h2::after, .title h1::after{
    left: 0;
    transform: none;
    bottom: 5px;
  }
  .btn.more{
    height: 44px;
    width: 100%;
  }
  footer .top{
    right: 15px;
  }
  footer .content .right ul li{
    width: 32%;
  }
  .body-left{
    width: 80%;
  }
  .content{
    padding: 0 15px;
  }
  main .banner_top .img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .c-sidebar{
    right: 20px;
    bottom: 30px;
  }
  .c-sidebar-item--contact{
    width: 48px;
    height: 48px;
  }
  .page .flex{
    padding: 5px;
    margin: 0 5px;
  }
}
/* 25-4-3 */
.wp-video {
  width: auto !important;
}
.wp-video .mejs-container {
  width: auto !important;
}
@media (max-width:768px) {
  #quality table td {
    display: block;
    width: 100% !important;
  }
}

.about .row{
  row-gap: 20px;
}
.about .cart .img {
  background: #E5E5E5;
}
.about .cart .img img{
  height: 250px;
  object-fit: cover;
  margin: auto;
}
.about .cart h3 {
  padding: 20px 0;
  column-gap: 20px;
}
@media (max-width: 768px) {
.about .cart .img img {
  height: auto;
}
}


