@font-face {
    font-family: "AvenirNextLTProRegular";
    src: url(../fonts/AvenirNextLTProRegular.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNextLTProBold";
    src: url(../fonts/AvenirNextLTProBold.otf);
    font-weight: normal;
    font-style: normal;
}

html,
body {
    position: relative;
    height: 100%;
    font-family: "AvenirNextLTProRegular";
    font-size: 16px;
    color: #333;
}

html.active {
    /* overflow: hidden; */
}

body * {
    /* 图片失真的问题 */
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */
}

i,
em,
b {
    font-style: normal;
    font-weight: normal;
    display: block;
}

a {
    color: #333;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    user-select: none;
}

input,
textarea,
button,
select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

textarea {
    resize: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #bfbfbf !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    background-color: transparent;
    background-image: none;
    transition: background-color 50000s ease-in-out 0s; /*背景色透明  生效时长  过渡效果  启用时延迟的时间*/
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 0.03rem;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* background: rgba(0,0,0,0.1); */
    background: #45c9b2;
    -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #45c9b2;
}

.center {
    width: 1200px;
    margin: 0 auto;
}

.mask {
    display: none !important;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
}

.mask.show {
    display: none !important;
}

ul {
    margin-bottom: 0;
}

.form-control {
    background-color: transparent;
    border: 1px solid #cbc9c9;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    outline: none;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    color: #777883;
}

.btn {
    height: 30px;
    line-height: 30px;
    border: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-modify: read-write-plaintext-only;
    box-shadow: none;
    display: inline-block;
    padding: 0 20px;
    background-color: #1abdb2;
    color: #eaeaea !important;
    -webkit-user-select: none;
    user-select: none;
}

.btn:focus {
    outline: none;
}

.btn[disabled="disabled"],
.btn[disabled="true"] {
    cursor: not-allowed;
}

.btn.primary-btn {
    background-color: #2c4c8d;
}

.btn.primary-btn:hover {
    background-color: #3d63ae;
}

.btn.danger-btn {
    background-color: #984b3c;
}

.btn.danger-btn:hover {
    background-color: #ac5443;
}

.btn.info-btn {
    background-color: #705b39;
}

.btn.info-btn:hover {
    background-color: #91764b;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.red {
    color: red;
}

html.show,
body.show {
    overflow: hidden;
    height: 100%;
}

#app {
    transition: all 0.3s ease-out;
    overflow: hidden;
}

#app.show {
    /* -webkit-transform: translateX(260px);
    transform: translateX(260px); */
    width: 100vw;
    height: 100vh;
}

#mobileMenu {
    position: fixed;
    left: -200px;
    top: 0;
    margin: 0;
    width: 200px;
    height: 100vh;
    background: #d9662b;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 910;
}

#mobileMenu.show {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
}

#mobileMenu .hello {
    padding: 8px;
    line-height: 54px;
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #fff;
}

#mobileMenu .menu {
    padding-top: 15px;
}

#mobileMenu .menu a {
    display: block;
    font-size: 14px;
    text-align: left;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 36px;
}

#mobileMenu .menu a.user {
    padding-left: 0;
    text-align: center;
    background: #2e3e60;
    color: #fff;
    margin: 5px 0;
}

#mobileMenu .menu .mbchild {
    width: auto !important;
    opacity: 1 !important;
}

#mobileMenu .menu .mbchild a {
    padding-left: 35px;
}

#mobileMenu .menu a:hover,
#mobileMenu .menu a.active {
    text-decoration: none;
    background: rgba(224, 211, 176, 0.4);
}

#navToggle {
    display: block;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 0;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    position: relative;
}

#navToggle span,
#navToggle::after,
#navToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #f8c80f;
    position: absolute;
    display: block;
    content: "";
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}

#navToggle::before {
    margin-top: -7px;
}

#navToggle::after {
    margin-top: 7px;
}

#navToggle.show span {
    opacity: 0;
}

#navToggle.show::before {
    margin-top: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#navToggle.show::after {
    margin-top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#mb-menu {
    position: fixed;
    left: -260px;
    top: 0;
    margin: 0;
    width: 260px;
    height: 100vh;
    background-color: #02489e;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    z-index: 910
}

#mb-menu {
    display: none !important;
}

#mb-menu.show, #menu.show {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.mm-listview .active {
    background: rgba(255, 255, 255, 0.5);
}

.mm-listview .lang {
    display: block;
    text-align: center;
    line-height: 1rem;
    margin-top: 0.5rem;
    color: #fff;
    font-size: 0.26rem;
    background: rgba(255, 255, 255, 0.05);
}

.header {
    position: relative;
    z-index: 999;
    background: #181818;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 10px;
    line-height: 0.8rem;
    display: flex;
    -webkit-display: flex;
    display: none;
}

.header img {
    height: 85%;
}

@-webkit-keyframes navMove {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes navMove {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container {
    /* width: 64%; */
    width: 14rem;
    /*display: inline;*/
}

/* 首页 */
.top {
    margin-top: 1.35rem;
}

.menu-sub {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 0 0.4rem;
    background: #fff;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.menu-sub.active, .menu-sub.act {
    background: #fff;
    transition-duration: 0;
}

.menu-sub.active .nava a, .menu-sub.act .nava a {
    color: #5B6670;
}

.menu-sub .menu a.search {
    margin-right: 0.35rem;
}

.menu-sub .menu a svg {
    width: auto;
    height: 18px;
}

.menu-sub .menu a svg path {
    fill: #888;
}

.menu-sub .menu a {
    display: flex;
    line-height: 18px;
    color: #777;
}

.menu-sub .menu span {
    margin: 0 0.11rem;
    color: #777;
}

.menu-sub .menu a img {
    height: 18px;
    margin-right: 0.06rem;
}

.subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu ul li {
    float: left;
    margin-right: 0.6rem;
    font-size: 0.14rem;
    line-height: 0.3rem;
}

.menu ul li a {
    color: #000;
    display: block;
    line-height: 0.3rem;
    transition: all 0.4s;
}

.menu ul {
    overflow: hidden;
    float: left;
}

.menu ul li a:hover {
    color: #ac1f24;
}

.link {
    float: left;
}

.link a {
    padding-left: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.4s;
    display: inline-block;
    border-left: 1px solid #254058;
}

.link a:first-child {
    border-left: 0;
}

.link a:hover {
    opacity: 0.65;
}

.menu {
    display: flex;
    align-items: center;
}

.subna {
    width: 2.3rem;
    text-align: center;
    position: absolute;
    top: 1.34rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background: #fff;
    padding: 0.32rem 0.32rem 0.25rem;
    border-radius: 0 0 0.1rem 0.1rem;
    display: none;
}

.subna a {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.18rem;
    color: #5B6670;
    padding: 0.11rem 0;
    border-radius: 0.05rem;
    display: block;
}

.subtoys {
    position: fixed;
    left: 32%;
    width: 9rem;
    padding: 0.32rem;
    /* display: flex; */
}

.subtoys .category {
    width: 60%;
    margin-right: 0.24rem;
    /* display: flex;
    flex-wrap: wrap; */
    background: transparent;
    float: left;
}

.subtoys .category .con {
    display: flex;
    flex-wrap: wrap;
}

.subtoys .category a {
    width: calc(25% - calc(3 / 4 * 0.14rem));
    margin: 0.14rem 0.14rem 0 0;
    background: #FBF7F3;
    padding: 0.1rem 0 0.16rem;
}

.subtoys .category a:nth-child(4n) {
    margin-right: 0;
}

.subtoys .category a:nth-child(1), .subtoys .category a:nth-child(2), .subtoys .category a:nth-child(3), .subtoys .category a:nth-child(4) {
    margin-top: 0;
}

.subtoys .category img {
    height: 0.7rem;
    margin: 0 auto 0.05rem;
}

.subtoys a {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.18rem;
    color: #5B6670;
}

.subtoys .age {
    float: left;
    width: 14%;
    margin-right: 0.28rem;
}

.subtoys .age a {
    padding: 0.11rem 0;
    border-radius: 0.05rem;
    background: #FBF7F3;
    margin-bottom: 0.14rem;
}

.subtoys .age a:last-child {
    margin-bottom: 0;
}

.subtoys .type {
    float: left;
    width: calc(26% - 0.52rem);
}

.subtoys .type a {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.18rem;
    color: #5B6670;
    margin-bottom: 0.14rem;
    padding: 0.29rem 0;
}

.subtoys .type a:last-child {
    margin-bottom: 0
}

/* Company History */
.history {
    padding: 1rem 0;
}

.history .title {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.4rem;
}

.history .box {
    position: relative;
}

.history .bg {
    /* width: 62%; */
    margin: 0 auto;
    display: block;
    /* 图片失真的问题 */
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */
}

/* Catalog */
.catalog {
    padding: 0.95rem 0 1.2rem;
}

.catalog .tab {
    text-align: center;
    margin-bottom: 0.8rem;
}

.catalog .tab a {
    font-size: 0.18rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin: 0 0.67rem;
    opacity: 0.5;
}

.catalog .tab a.active {
    opacity: 1;
}

.catalog .huace {
    position: relative;
    width: 9rem;
    margin: 0 auto;
}

.catalog .huace .swiper-button-prev {
    left: -0.5rem;
    background: url(../images/catalog_prev.png) no-repeat;
    background-size: contain;
}

.catalog .huace .swiper-button-next {
    right: -0.5rem;
    background: url(../images/catalog_next.png) no-repeat;
    background-size: contain;
}

.catalog .pdfbox {
    display: none;
    animation: pdf 1s;
}

.catalog .pdfbox.active {
    display: block;
}

@keyframes pdf {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo #pcBox {
    float: left;
    position: relative;
    margin-right: 0;
    margin-left: 0.48rem;
    margin-top: 0.36rem;
    font-size: 0.24rem;
    color: #254058;
    transition: all 0.4s;
}

.logo a img {
    margin-right: 0.45rem;
}

.logo #pcBox:hover {
    opacity: 0.8;
    margin-left: 0.52rem;
}

.logo #pcBox span {
    background: #231815;
    display: block;
    width: 0.4rem;
    height: 0.02rem;
    margin-top: 0.05rem;
}

.logo #pcBox span:nth-child(2) {
    width: 0.48rem;
}

.nava, .nava ul {
    display: flex;
}

.nava ul li {
    position: relative;
    height: 1rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nava ul li > a {
    position: relative;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.19rem;
    display: flex;
    margin: 0 0.25rem;
}

.nava ul li > a:after {
    opacity: 0;
    content: '';
    position: absolute;
    bottom: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.67rem;
    height: 0.23rem;
    background: url(../images/nav_bg.png) no-repeat center;
}

.nava ul li > a.active {
    color: #008bdb;
}

.nava ul li > a.active:after {
    opacity: 1;
    bottom: -0.4rem;
}

/* 轮播图文字 */
.banner .swiper-slide {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.banner .swiper-slide .img1 {
    width: 100%;
    -webkit-mask-box-image: url(../images/banner_mask.png);
    box-shadow: 0px 60px 70px 0px rgba(40, 94, 171, 0.13);
}

.banner-img .crumbs {
    width: 76.5%;
    margin: 0 auto;
    position: absolute;
    bottom: 0.12rem;
    left: 50%;
    margin-left: -38.25%;
    z-index: 9;
}

.banner-img .crumbs a,
.banner-img .crumbs span {
    color: #fff;
    font-size: 0.14rem;
}

.banner {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1rem;
    /* margin-bottom: 0.89rem; */
    /* background: #000; */
}

.banner .swiper-button-next.swiper-button-disabled,
.banner .swiper-button-prev.swiper-button-disabled {
    pointer-events: inherit;
    opacity: 1;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 0.4rem;
    height: 1rem;
    margin-top: -0.5rem;
    border-radius: 3px;
    transition: all 0.3s;
    animation: adBack 3s;
}

@keyframes adBack {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes adBack {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner .swiper-button-prev {
    background: #f8c80f url("../images/banner_prev.png") no-repeat center;
    left: 0.3rem;
    background-size: 0.13rem;
}

.banner .swiper-button-next {
    background: #f8c80f url("../images/banner_next.png") no-repeat center;
    right: 0.3rem;
    background-size: 0.13rem;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    opacity: 0.8;
    cursor: pointer;
}

.banner .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.3rem;
    text-align: center;
    z-index: 2222;
    margin: 0 auto;
}

.banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 0.6rem;
    height: 0.03rem;
    border-radius: 0;
    margin: 0 0.05rem !important;
}

.banner .swiper-pagination-bullet-active {
    background: #46c9b2;
}

.home-newscont {
    overflow: hidden;
    position: relative;
}

/* Family */
.family {
    height: 9.3rem;
}

.family .box {
    width: 31.25%;
    margin-top: 3.15rem;
}

.family .box b {
    font-size: 0.16rem;
    font-family: 'Pacifico-Regular';
    font-weight: 400;
    line-height: 0.24rem;
    color: #A2A9AD;
    margin-bottom: 0.06rem;
}

.family .box span {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    color: #5B6670;
    margin-bottom: 0.55rem;
    display: block;
}

.family .box p {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.6rem;
}

.family .box a {
    width: 2.09rem;
    line-height: 0.53rem;
    display: inline-block;
    position: relative;
    border: 1px solid #E3132F;
    border-radius: 0.27rem;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    color: #E3132F;
    text-align: center;
    overflow: hidden;
}

.family .box a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 350%;
    background: #E3132F;
    left: -110%;
    top: -85px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
}

.family .box a em {
    position: relative;
}

/* Discover our news 首页 */
.ournews {
    padding: 1.3rem 0;
    background: #EDDFD0;
}

.ournews .left {
    width: 50%;
}

.ournews .left img {
    width: 100%;
}

.ournews .right {
    width: 31.25%;
}

.ournews .right b {
    font-size: 0.16rem;
    font-family: 'Pacifico-Regular';
    font-weight: 400;
    line-height: 0.24rem;
    color: #A2A9AD;
    margin-bottom: 0.06rem;
}

.ournews .right span {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    color: #5B6670;
    margin-bottom: 0.55rem;
    display: block;
}

.ournews .right p {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.6rem;
}

.ournews .right a {
    width: 2.09rem;
    line-height: 0.53rem;
    display: inline-block;
    position: relative;
    border: 1px solid #E3132F;
    border-radius: 0.27rem;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    color: #E3132F;
    text-align: center;
    overflow: hidden;
}

.ournews .right a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 350%;
    background: #E3132F;
    left: -110%;
    top: -85px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
}

.ournews .right a em {
    position: relative;
}

.ournews .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    position: relative;
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
}

.title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width:2.2rem;
    height: 0.03rem;
}

/* solution 首页 */
.home-solution {
    z-index: 1;
    width: 100%;
    height: 10.3rem;
    margin-bottom: 1.2rem;
    background: url(/style/images/home_solution_banner.png) no-repeat center / cover;
}

.home-solution .box {
    width: 50%;
    position: relative;
    top: 90px;
}

.home-solution .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.home-solution .title {
    line-height: 0.6rem;
    margin-bottom: 0.85rem;
    text-align: left;
}

.home-solution .title:after {
    background: #333;
    bottom: -0.35rem;
    left: 0;
    transform: translateX(0);
}

.home-solution .span {
    font-size: 0.3rem;
    color: #666;
    margin-bottom: 0.53rem;
    line-height: 0.36rem;
}

.home-solution .icon {
    display: flex;
    flex-wrap: wrap;
}

.home-solution .icon a {
    width: 1.2rem;
    margin-right: 0.8rem;
    text-align: center;
    color: #8394ad;
    margin-top: 0.32rem;
}

.home-solution .icon:nth-child(3n) {
    margin-right: 0;
}

.home-solution .circle {
    width: 100%;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.03rem solid #d7e3ef;
    border-radius: 50%;
    margin-bottom: 0.23rem;
}

.home-solution .icon-act {
    display: none;
    animation: icon-act 0.5s;
}

@keyframes icon-act {
    from {
        opacity: 0;
        transform: scale(0) perspective(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) perspective(10px);
    }
}

/* spare parts */
.spare-title {
    margin-bottom: 0.58rem;
}

.spare-parts, .about-parts {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.22rem;
}

.spare-parts a {
    overflow: hidden;
    position: relative;
    /*width: calc(100% / 3 - calc(2 / 3 * 0.3rem));*/
    margin: 0.3rem 18px 0.3rem 0;
    transition-duration: 0.5s;
}

.about-parts a {
    overflow: hidden;
    position: relative;
    width: calc(100% / 5);
    margin: 0.2rem 0.2rem 0 0;
    transition-duration: 0.5s;
}

.spare-parts .img, .about-parts .img {
    height: 320px;
    width: 320px;
    overflow: hidden;
}

.spare-parts .img div, .about-parts .img div {
    height: 100%;
    transform: perspective(10px);
}

.spare-parts .text, .about-parts .text {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.spare-parts .text em, .about-parts .text em {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    line-height: 30px;
    font-size: 0.18rem;
    padding: 0 0.1rem;
}

i.onn {
    line-height: 0.4rem;
    height: 0.4rem;
    background: #eaeaea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

i.onn svg {
    width: auto;
    height: 20px;
}

/* Finished Projects 首页 */
.home-projects {
    display: inline;
    position: relative;
    margin-bottom: 0.7rem;
}

.home-projects:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #FBF7F3;
}

.home-projects .title {
    margin-bottom: 0.6rem;
    display: inline;
}

.home-projects .title p {

}

.home-projects .title:after {
    background: #ddd;
    bottom: -0.17rem;
}

.home-projects-box {
    padding-bottom: 0.67rem;
}

.home-projects-box .container {
    position: relative;
}

.home-projects-box .swiper-pagination {
    width: 100%;
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
}

.home-projects-box .swiper-pagination span {
    opacity: 1;
    margin: 0 0.1rem;
    width: 0.08rem;
    height: 0.08rem;
    background: #ddd;
    border: 0.02rem solid transparent;
}

.home-projects-box .swiper-pagination span.swiper-pagination-bullet-active {
    width: 0.12rem;
    height: 0.12rem;
    border: 0.02rem solid #008bdb;
    background: #fff;
}

.arrivals-cont {
    position: relative;
    overflow: hidden;
}

.arrivals-cont .swiper-button-prev, .arrivals-cont .swiper-button-next {
    opacity: 1;
    width: 0.58rem;
    height: 0.58rem;
    margin-top: -0.29rem;
    background: transparent;
}

.arrivals-cont .swiper-button-prev {
    left: 5%;
}

.arrivals-cont .swiper-button-next {
    right: 5%;
}

.arrivals-cont .swiper-slide {
    width: auto;
}

.arrivals-cont .swiper-slide a {
    display: block;
    position: relative;
}

.arrivals-cont .swiper-slide .img {
    height: 4.5rem;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.arrivals-cont .swiper-slide .img div {
    width: 100%;
    height: 100%;
    transform: perspective(10px);
}

.arrivals-cont .swiper-slide .text p {
    font-size: 0.28rem;
    margin-bottom: 0.3rem;
    line-height: 0.36rem;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.arrivals-cont .swiper-slide .text span * {
    font-size: 0.18rem;
    color: #888;
    line-height: 0.24rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* service 首页 */
.home-service {
    position: relative;
    height: 10rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-box-image: url(../images/home_service_mask.png);
}

.home-service:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 63, 84, 0.9);
    /* mix-blend-mode: screen; */
}

.home-service .title {
    color: #fff;
    margin-bottom: 0.55rem;
}

.home-service .title:after {
    background: #fff;
}

.home-service-box .box {
    display: flex;
    flex-wrap: wrap;
    border-left: 0.01rem solid #73777b;
    border-top: 0.01rem solid #73777b;
}

.home-service-box .box li {
    width: calc(100% / 3);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    box-sizing: border-box;
    border-bottom: 0.01rem solid #73777b;
    border-right: 0.01rem solid #73777b;
    display: flex;
    align-items: center;
}

.home-service-box .box li img {
    opacity: 0.8;
    width: 0.63rem;
    margin-right: 0.55rem;
}

.home-service-box .box li .text {
    width: calc(100% - 1.18);
}

.home-service-box .box li .text span {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 0.18rem;
    line-height: 0.18rem;
    font-style: italic;
}

.home-service-box .box li .text p {
    opacity: 0.4;
    color: #fff;
    font-size: 0.18rem;
    line-height: 0.24rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* partner 首页 */
.home-partner {
    margin-bottom: 0.95rem;
}

.home-partner .title {
    margin-bottom: 0.6rem;
}

.home-partner .title:after {
    background: #ddd;
}

.home-partner-box .box {
    display: flex;
    flex-wrap: wrap;
    border-left: 0.01rem solid #eee;
    border-top: 0.01rem solid #eee;
}

.home-partner-box .box a {
    filter: grayscale(1);
    display: block;
    width: calc(100% / 7);
    box-sizing: border-box;
    border-bottom: 0.01rem solid #eee;
    border-right: 0.01rem solid #eee;
}

/* about us */
.about {
    margin-bottom: 1.2rem;
}

.about .box {
    display: flex;
}

.about .nav {
    width: 3rem;
    margin-right: 0.8rem;
}

.about .nav > em {
    position: relative;
    padding: 0.35rem 0 0.2rem 0;
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.4rem;
    font-weight: bold;
    color: #fff;
    background: #285eab;
    -webkit-clip-path: polygon(0 0, 0px 125px, 1550px 125px, 0 0px);
}


}
.about .nav > em:before {
    content: '';
    position: absolute;
    top: -0.3rem;
    left: 0;
    width: 0;
    height: 0;
    border-color: transparent #285eab;
    border-width: 0.31rem 0 0 3rem;
    border-style: solid;
}

.about .nav li a, .about .nav li > i {
    position: relative;
    padding: 0.18rem 0.2rem;
    font-size: 0.18rem;
    background: #f8f8f8;
    border-bottom: 0.01rem solid #eaeaea;
    cursor: pointer;
}

.abvideo {
    display: none;
    padding: 0 0 0.1rem;
}

.abvideo a {
    border-bottom: 0 !important;
    background: #fff !important;
    padding: 0.11rem 0.11rem 0.11rem 0.55rem !important;
    color: #333;
    display: block;
}

.abvideo a.active {
    color: #45c9b2;
}

.abvideo a:before {
    display: none;
}

.about .nav li a:before, .about .nav li > i:before {
    content: '';
    position: absolute;
    width: 0.08rem;
    height: 0.16rem;
    background: rgba(69, 201, 178, 0);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about .nav li:last-child a {
    border-bottom: 0;
}

.about .nav li.active > a, .about .nav li.active > i {
    background: #fff;
    color: #45c9b2;
    border-color: #fff;
}

.about .nav li.active a:before, .about .nav li.active > i:before {
    opacity: 1;
    background: rgba(69, 201, 178, 1);
}

.about .right-box {
    width: calc(100% - 3.8rem);
}

.right-box > em {
    position: relative;
    font-size: 0.4rem;
    padding: 0.28rem 0;
    border-bottom: 0.01rem solid #eee;
    font-weight: bold;
    line-height: 0.4rem;
    display: block;
    margin-bottom: 0.52rem;
}

.right-box > em:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.015rem;
    width: 0.5rem;
    height: 0.03rem;
    background: #008bdb;
}

.about .right-box .content {
    color: #888;
    line-height: 30px;
}

.about .right-box .cont {
    margin: 0.5rem 0;
}

.about .right-box .cont1 > em {
    font-size: 0.36rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.about .right-box .cont1 .text {
    display: flex;
}

.about .right-box .cont1 .text li:nth-child(1) {
    width: 5.2rem;
    height: 3.5rem;
    margin-right: 0.55rem;
}

.about .right-box .cont1 .text li:last-child {
    width: calc(100% - 5.75rem);
    max-height: 3.5rem;
    overflow-y: scroll;
}

.about .right-box .content ul {
    display: flex;
    margin-left: 40%;
}

.about .right-box .content ul li {
    /*height: 3rem;*/
}

.about .right-box .content ul li:last-child {
    width: 5.4rem;
}

.about .right-box .content ul li:nth-child(1) {
    /*width: calc(100% - 5.4rem);*/
    /*background: #285eab;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .right-box .content ul li:nth-child(1) img {
    height: 1.44rem;
}

/* download */
.download-box {
    display: flex;
    flex-wrap: wrap;
}

.download-box a {
    width: calc(100% / 3 - calc(2 / 3 * 0.3rem));
    margin: 0.3rem 0.3rem 0 0;
}

.download-box a:nth-child(1), .download-box a:nth-child(2), .download-box a:nth-child(3) {
    margin-top: 0;
}

.download-box a:nth-child(3n) {
    margin-right: 0;
}

.download-box .img {
    position: relative;
    height: 2.4rem;
    overflow: hidden;
}

.download-box .img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.download-box .img svg {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 0.5rem;
}

.download-box .img div {
    height: 100%;
    transform: perspective(10px);
}

.download-box .text {
    padding: 0.28rem 0.1rem;
}

.download-box .text p {
    font-size: 0.18rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}

/* Quality Importance */
.importance .list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.importance .list:last-child {
    margin-bottom: 0;
}

.importance .list:nth-child(even) {
    flex-direction: row-reverse;
}

.importance .list:nth-child(even) .img {
    margin-right: 0.5rem;
}

.importance .list em {
    font-family: "AvenirNextLTProBold";
    width: 0.8rem;
    height: 1.19rem;
    font-size: 0.36rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    line-height: 1.6rem;
    text-align: center;
    margin-right: 0.36rem;
    background: url(../images/Quality_Importance_icon.png) no-repeat center / contain;
}

.importance .list .img {
    width: 4.5rem;
    height: 3rem;
    overflow: hidden;
}

.importance .list .img div {
    width: 100%;
    height: 100%;
    transform: perspective(10px);
}

.importance-cont {
    width: 40%;
    margin-right: 0.5rem;
}

.importance-cont .tit {
    font-size: 0.2rem;
    line-height: 30px;
    margin-bottom: 0.29rem;
    font-weight: bold;
    color: #333;
}

.importance-cont .text {
    line-height: 28px;
}

/* How to control */
.control li {
    margin-bottom: 0.5rem;
}

.control li:last-child {
    margin-bottom: 0;
}

.control .icon {
    display: flex;
    align-items: center;
    margin-bottom: 0.32rem;
    font-size: 0.24rem;
    color: #333;
    font-weight: bold;
    line-height: 24px;
}

.control .icon img {
    width: 0.27rem;
    margin-right: 0.2rem;
}

.control .text p {
    position: relative;
}

.control li:nth-child(3) .text p {
    padding-left: 0.2rem;
}

.control li:nth-child(3) .text p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: #888;
}

.control .procudure .icon {
    padding-bottom: 0.25rem;
    margin-bottom: 0;
    border-bottom: 0.01rem solid #eee;
}

.control .pro-tit a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 28px;
    padding: 0.22rem 0;
    border-bottom: 0.01rem solid #eee;
}

.control .pro-tit a svg {
    width: auto;
    height: 25px;
}

.control .pro-tit.active a {
    color: #45c9b2;
    border-color: transparent;
}

.control .pro-tit.active a svg {
    transform: rotate(180deg);
}

.control .pro-tit.active a svg path {
    fill: #45c9b2;
}

.control .pro-tit .contt {
    display: none;
    padding-bottom: 0.2rem;
    border-color: transparent;
}

.control .pro-tit.active .contt {
    border-bottom: 0.01rem solid #eee;
}

/* news center */
.news a {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    border-top: 0.01rem solid #eee;
}

.news .img {
    width: 3rem;
    height: 2rem;
    margin-right: 0.38rem;
    overflow: hidden;
}

.news .img div {
    width: 100%;
    height: 100%;
    transform: perspective(10px);
}

.news .text {
    width: calc(100% - 3.38rem);
}

.news .text em {
    font-size: 0.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news .text i {
    line-height: 24px;
    margin-bottom: 0.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .text .date {
    color: #879bb8;
}

.news-details > em {
    font-size: 0.36rem;
    line-height: 36px;
    color: #333;
    margin-bottom: 0.8rem;
    text-align: center;
}

.news-details .contt {
    padding-bottom: 0.68rem;
    border-bottom: 0.01rem solid #eee;
}

.pnpage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.01rem solid #eee;
}

.pnpage a {
    width: 45%;
    font-size: 0.18rem;
    color: #888;
    display: flex;
    align-items: center;
    padding: 0.42rem 0;
}

.pnpage svg {
    width: auto;
    height: 22px;
    margin-right: 0.25rem;
}

.pnpage a:last-child {
    justify-content: flex-end;
}

.pnpage a:last-child svg {
    transform: rotate(180deg);
    margin-right: 0;
    margin-left: 0.25rem;
}

.pnpage a p {
    width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* projects */
.projects {
    margin-bottom: 0.9rem;
}

.projects .title {
    margin-bottom: 0.5rem;
}

.projects .cont {
    display: flex;
    flex-wrap: wrap;
}

.projects .cont a {
    width: calc(100% / 3 - calc(2 / 3 * 0.35rem));
    margin: 0.4rem 0.35rem 0 0;
    transition-duration: 0.5s;
}

.projects .cont a:nth-child(1), .projects .cont a:nth-child(2), .projects .cont a:nth-child(3) {
    margin-top: 0;
}

.projects .cont a:nth-child(3n) {
    margin-right: 0;
}

.projects .cont .img {
    height: 3rem;
    overflow: hidden;
}

.projects .cont .img div {
    height: 100%;
    transform: perspective(10px);
}

.projects .cont .text {
    padding: 0.25rem;
}

.projects .cont .text > p {
    font-size: 0.18rem;
    margin-bottom: 0.2rem;
    line-height: 24px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.projects .cont .text > span {
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.projects-details {
    margin-bottom: 0.9rem;
}

.projects-details .title {
    font-size: 0.36rem;
    line-height: 0.36rem;
    margin-bottom: 0.6rem;
    font-weight: normal;
}

.projects-details .cont {
    padding-bottom: 0.5rem;
    border-bottom: 0.01rem solid #eee;
}

.projects-details .picture {
    width: 85%;
    margin: 0 auto 1.35rem;
}

.projects-details .intro-title {
    margin-bottom: 0.55rem;
    border-bottom: 0.01rem solid #eee;
}

.projects-details .intro-cont {
    color: #888;
    line-height: 30px;
}

.projects-details .intro-title em {
    width: 2.6rem;
    position: relative;
    display: inline-block;
    padding: 0.23rem 0;
    text-align: center;
    font-size: 0.2rem;
    line-height: 30px;
    color: #fff;
    background: #46c9b2;
}

.projects-details .intro-title em:before {
    content: '';
    position: absolute;
    top: -0.23rem;
    left: 0;
    width: 0;
    height: 0;
    border-color: transparent #46c9b2;
    border-width: 0.23rem 0 0 2.6rem;
    border-style: solid;
}

.projects-details .swiper-container {
    max-width: 83%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.projects-details .picture .swiper-slide {
    min-height: 6.82rem;
    max-height: 6.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-details .picture .swiper-button-prev, .projects-details .picture .swiper-button-next {
    background: transparent;
}

.projects-details .picture .swiper-button-prev svg, .projects-details .picture .swiper-button-next svg {
    width: auto;
    height: 0.5rem;
}

.projects-details .picture .swiper-button-next {
    transform: rotate(180deg);
}

/* Questionnaire */
.questionnaire .swiper-button-prev, .questionnaire .swiper-button-next {
    opacity: 1;

    top: 0;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    display: flex;
}

.questionnaire .swiper-button-next {
    transform: rotate(180deg);
}

.questionnaire .swiper-button-prev svg, .questionnaire .swiper-button-next svg {
    width: auto;
    height: 20px;
}

.questionnaire .swiper-container {
    top: -0.2rem;
}

.questionnaire .top {
    font-size: 0.3rem;
    color: #333;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.questionnaire .cont {
    margin: 0.3rem 0 !important;
}

/* equipment */
.equipment {
    margin-bottom: 0.9rem;
}

.equipment .title {
    margin-bottom: 0.58rem;
}

.equipment .cont {
    display: flex;
    flex-wrap: wrap;
}

.equipment .cont a {
    position: relative;
    width: calc(50% - calc(1 / 2 * 0.4rem));
    margin: 0.4rem 0.4rem 0 0;
}

.equipment .cont a:nth-child(1), .equipment .cont a:nth-child(2) {
    margin-top: 0;
}

.equipment .cont a:nth-child(2n) {
    margin-right: 0;
}

.equipment .cont .img {
    height: 4.5rem;
    overflow: hidden;
}

.equipment .cont .img div {
    height: 100%;
    transform: perspective(10px);
}

.equipment .text {
    position: absolute;
    top: 18%;
    left: 8%;
}

.equipment .text .btnn {
    position: relative;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    background: #43c7b0;
    border-radius: 50%;
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment .text .btnn svg {
    width: auto;
    height: 20px;
}

.equipment .text > p {
    width: 70%;
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
}

.equipment-list {
    display: flex;
    flex-wrap: wrap;
}

.equipment-list a {
    overflow: hidden;
    position: relative;
    width: calc(100% / 3 - calc(2 / 3 * 0.3rem));
    margin-right: 0.3rem;
    transition-duration: 0.5s;
}

.equipment-list a:nth-child(1), .equipment-list a:nth-child(2), .equipment-list a:nth-child(3) {
    margin-top: 0;
}

.equipment-list a:nth-child(3n) {
    margin-right: 0;
}

.equipment-list .img {
    height: 3.2rem;
    overflow: hidden;
}

.equipment-list .img div {
    height: 100%;
    transform: perspective(10px);
}

.equipment-list .text {
    padding: 0.25rem 0;
}

.equipment-list .text em {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    font-size: 0.18rem;
    line-height: 24px;
}

/* certificates */
.certificates {
    margin-bottom: 0.9rem;
}

.certificates .cont {
    display: flex;
    flex-wrap: wrap;
}

.certificates .cont a {
    width: calc(25% - calc(3 / 4 * 0.4rem));
    margin: 0.4rem 0.4rem 0 0;
}

.certificates .cont a:nth-child(4n) {
    margin-right: 0;
}

.certificates .cont .img {
    padding: 0.1rem;
    border: 0.01rem solid #ddd;
    margin-bottom: 0.25rem;
    overflow: hidden;
}

.certificates .cont .img img {
    transform: perspective(10px);
}

.certificates .cont p {
    font-size: 0.18rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* catalog */
.download .cont {
    display: flex;
    flex-wrap: wrap;
}

.download .cont a {
    width: calc(100% / 3 - calc(2 / 3 * 0.3rem));
    margin: 0.35rem 0.3rem 0 0;
}

.download .cont a:nth-child(3n) {
    margin-right: 0;
}

.download .cont a:nth-child(1), .download .cont a:nth-child(2), .download .cont a:nth-child(3) {
    margin-top: 0;
}

.download .cont .img {
    padding: 0.1rem;
    border: 0.01rem solid #ddd;
    margin-bottom: 0.22rem;
    overflow: hidden;
}

.download .cont .text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download .cont .text p {
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.download .cont .text svg {
    width: auto;
    height: 0.22rem;
}

.report .cont a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.18rem;
    color: #888;
    line-height: 0.18rem;
    padding: 0.2rem 0;
    border-bottom: 0.01rem dotted #888;
}

.report .cont a svg {
    width: 0.22rem;
    height: auto;
    margin-right: 0.2rem;
}

.report .cont .text, .report .cont .icon {
    display: flex;
    align-items: center;
}

.report .cont .text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* solution */
.solution {
    display: flex;
    flex-wrap: wrap;
}

.solution a {
    overflow: hidden;
    position: relative;
    width: calc(100% / 3 - calc(2 / 3 * 0.3rem));
    margin: 0.3rem 0.3rem 0 0;
    transition-duration: 0.5s;
}

.solution a:nth-child(1), .solution a:nth-child(2), .solution a:nth-child(3) {
    margin-top: 0;
}

.solution a:nth-child(3n) {
    margin-right: 0;
}

.solution .img {
    height: 3.2rem;
    overflow: hidden;
}

.solution .img div {
    height: 100%;
    transform: perspective(10px);
}

.solution .text {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.solution .text em {
    position: relative;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    line-height: 0.6rem;
    font-size: 0.18rem;
    background: #46c9b2;
    color: #fff;
    padding: 0 0.1rem;
}

.solution .text em:before {
    content: '';
    position: absolute;
    top: -0.12rem;
    left: 0;
    width: 0;
    height: 0;
    border-color: transparent #46c9b2;
    border-width: 0.12rem 0 0 3rem;
    border-style: solid;
}

/* Our team */
.team {
    padding: 1rem 0;
}

.team-banner .box > b {
    font-size: 0.35rem;
    font-family: 'Pacifico-Regular';
    font-weight: 400;
    line-height: 0.24rem;
    color: #FFFFFF;
    margin-bottom: 0.18rem;
}

.team-banner .box > span {
    display: block;
    font-size: 0.14rem;
    font-family: 'Open-Sans-Regular';
    font-weight: 400;
    line-height: 0.24rem;
    color: #FFFFFF;
    margin-bottom: 0.56rem;
}

.team-banner .con {
    font-size: 0.14rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #FFFFFF;
}

.team-banner .text {
    position: absolute;
    left: 55%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    width: 3.72rem;
    bottom: inherit;
    top: 42%;
}

.teamli {
    margin-bottom: 1.1rem;
}

.teamli:last-child {
    margin-bottom: 0;
}

.teamli:last-child .img {
    width: 38%;
}

.teamli:nth-child(2) .img {
    width: 43%;
}

.teamli .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teamli .img {
    width: 49%;
}

.teamli .img img {
    width: 100%;
}

.teamli .con {
    width: 3.72rem;
}

.teamli .con > b {
    font-size: 0.18rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.17rem;
}

.teamli .con .text {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.teamli:nth-child(2n) .box {
    flex-direction: row-reverse;
}

/* subscribe */
.subscribe {
    padding: 0.45rem 0 0.37rem;
    background: #EDDFD0;
}

.subscribe .box {
    width: 64%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subscribe .box > p {
    width: 382px;
    height: 16px;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.subscribe .box > p.mb {
    display: none;
}

.subscribe .box a {
    width: 1.86rem;
    line-height: 0.48rem;
    background: #E21A35;
    border-radius: 0.08rem;
    font-size: 0.18rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe .box a i {
    position: relative;
    left: 0;
    font-size: 0.18rem;
    font-family: 'Raleway-Regular';
    font-weight: 400;
    line-height: 0.24rem;
    color: #FFFFFF;
    margin-left: 0.1rem;
}

/* Parents Comments */
.parents {
    padding: 1rem 0;
    background: #FBF7F3;
}

.parents .container > b {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.55rem;
}

.grid-wrap {
    position: relative;
    height: 6.4rem;
    overflow-y: scroll;
    padding-right: 0.4rem;
    /* border-right: 1px solid #E21A35; */
}

.grid-gallery {
    position: relative;
}

.grid-gallery:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0.025rem;
    background: #E21A35;
    width: 1px;
    height: 100%;
}

.grid-wrap::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0.06rem; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.grid-wrap::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background: #E21A35;
    width: 0.06rem;
    border-radius: 0.06rem;
}

.grid-wrap::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
}

.grid .list {
    width: calc(50% - 0.2rem - calc(1 / 2 * 0.4rem));
    background: #fff;
    padding: 0.26rem 0.23rem;
    margin-top: 1.15rem;
}

.grid .list:nth-child(1) {
    margin-top: 0;
}

.grid .list:nth-child(2n) {
    margin-left: 0.4rem;
}

.grid .list:nth-child(3) {
    margin-top: 1.38rem;
}

.grid-gallery figure img {
    /* margin-left: 0.09rem; */
    margin-bottom: 0.12rem;
}

.grid-gallery figcaption h3 {
    font-size: 0.16rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    padding: 0 0 0.12rem 0rem !important;
}

.grid .text {
    font-size: 0.12rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}


/* Brand Influence */
.brand_map img {
    width: 100%;
}

.brand {
    padding: 0.18rem 0 0.98rem;
}

.brand .title {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.98rem;
}

.brand .shops {
    margin-bottom: 1.28rem;
}

.brand .shops > b {
    font-size: 0.18rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.32rem;
    color: #5B6670;
    margin-bottom: 0.18rem;
}

.brand .wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand .wide .text {
    width: 36%;
    width: 3.72rem;
}

.brand .wide .text > b {
    font-size: 0.18rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.32rem;
    color: #5B6670;
    margin-bottom: 0.17rem;
}

.brand .wide .text .con {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.5rem;
}

.brand .wide .text a {
    width: 1.79rem;
    line-height: 0.53rem;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    border: 1px solid #E3132F;
    border-radius: 0.27rem;
    font-size: 0.16rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    color: #E3132F;
    text-align: center;
    overflow: hidden;
}

.brand .wide .text a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 350%;
    background: #E3132F;
    left: -110%;
    top: -85px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
}

.brand .wide .text a em {
    position: relative;
}

.brand .wide .img {
    width: 44%;
}

.brand .wide .img img {
    width: 100%;
}

/* FAQ */
.faq {
    padding: 0.75rem 0 1rem;
}

.faq .title {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.59rem;
}

.faq .box {
    display: flex;
}

.faq-text {
    width: 66%;
    padding-right: 9%;
}

.faq-text .list {
    margin-bottom: 0.65rem;
}

.faq-text .list:last-child {
    margin-bottom: 0;
}

.faq-text .list > em {
    font-size: 0.2rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.25rem;
}

.faq-text ul li {
    margin-bottom: 0.27rem;
}

.faq-text ul li i {
    font-size: 0.15rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.14rem;
}

.faq-text ul li .text {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.faq-con {
    position: sticky;
    top: 1.34rem;
    width: 34%;
    height: 3.06rem;
    display: flex;
    background: #FBF7F3;
    padding: 0.51rem 0.29rem;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #A2A9AD;
}

.faq-con span {
    display: block;
    color: #5B6670;
    margin-bottom: 0.3rem;
}

/* Privacy Policy */
.privacy {
    padding: 0.97rem 0;
}

.privacy .faq-text {
    width: 62%;
    padding-right: 8%;
}

.privacy .faq-con {
    width: 38%;
    height: 1.8rem;
    padding: 0.5rem 0.29rem;
}

.privacy .faq-text ul li {
    margin-bottom: 0.39rem;
}

.privacy .faq-text ul li i {
    font-size: 0.18rem;
}

.privacy .faq-con ul li i {
    font-size: 0.12rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #A2A9AD;
    margin-bottom: 0.23rem;
}

/* Quality and safety */
.quality_banner {
    position: relative;
}

.quality_banner .text {
    position: absolute;
    bottom: 0.8rem;
    right: 1.6rem;
    font-size: 0.6rem;
    font-family: 'Pacifico-Regular';
    font-weight: 400;
    line-height: 1rem;
    color: #FFFFFF;
}

.quality_banner .text p:first-child {
    position: relative;
    right: 1.3rem;
}

.quality {
    padding: 1rem 0;
}

.qualityli {
    margin-bottom: 0.71rem;
}

.qualityli:nth-child(2) {
    margin-bottom: 1.13rem;
}

.qualityli:last-child {
    margin-bottom: 0;
}

.qualityli:last-child .img {
    width: 52%;
}

.qualityli:nth-child(2) .img {
    width: 43%;
}

.qualityli .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qualityli .img {
    width: 49%;
}

.qualityli .img img {
    width: 100%;
}

.qualityli .con {
    width: 3.1rem;
}

.qualityli .con > b {
    font-size: 0.18rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.17rem;
}

.qualityli .con .text {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.qualityli:nth-child(2n) .box {
    flex-direction: row-reverse;
}


/* 分页 */
.page {
    margin-top: 0.8rem;
    text-align: center;
}

.page a {
    width: 0.5rem;
    height: 0.5rem;
    border: 0.01rem solid #ddd;
    border-radius: 0.05rem;
    margin-left: 0.1rem;
    font-size: 0.18rem;
    line-height: 0.5rem;
    color: #888;
    display: inline-block;
    text-align: center;
}

.page a.active {
    background: #008bdb;
    color: #fff;
    border-color: #008bdb;
}

.page a:nth-child(1), .page a:last-child {
    width: 1rem;
}

.page a:nth-child(1) {
    margin-left: 0;
}

/* Our Toys */
.toys_banner {
    position: relative;
}

.toys_banner .text {
    position: absolute;
    bottom: 0.35rem;
    right: 3.4rem;
    font-size: 0.6rem;
    font-family: 'Pacifico-Regular';
    font-weight: 400;
    line-height: 1rem;
    color: #FFFFFF;
}

.toys_banner .text p:first-child {
    position: relative;
    right: 1rem;
    top: 0.1rem;
}

.toys {
    padding: 0.87rem 0 0.95rem;
}

.toys .box {
    display: flex;
}

.toys .cate {
    width: 20%;
    margin-right: 0.45rem;
}

.toys .cate .li {
    margin-bottom: 0.25rem;
}

.toys .cate .li:last-child {
    margin-bottom: 0;
}

.toys .cate .li > b {
    cursor: pointer;
    font-size: 0.16rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    opacity: 0.5;
}

.toys .cate .li > b.active {
    opacity: 1;
}

.toys .cate .list {
    padding: 0 0 0 0.2rem !important;
    width: 100% !important;
}

.toys .cate .list a {
    display: block;
    font-size: 0.14rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-top: 0.1rem;
    opacity: 0.5;
}

.toys .cate .list a:nth-child(1) {
    margin-top: 0.14rem;
}

.toys .cate .list a.active {
    opacity: 1;
}

.toys .pro {
    width: calc(80% - 0.45rem);
}

.toys .page {
    text-align: center;
}

.toys .cont {
    display: flex;
    flex-wrap: wrap;
}

.toys .cont .box {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: calc(100% / 3 - calc(2 / 3 * 0.13rem));
    margin: 0 0.13rem 0.5rem 0;
}

.toys .cont .box:nth-child(3n) {
    margin-right: 0;
}

.toys .cont .box a {
    position: relative;
    z-index: 1;
}

.toys .cont .new {
    position: absolute;
    width: 0.42rem;
    top: 0.1rem;
    left: 0.1rem;
    opacity: 0;
}

.toys .cont .shou {
    position: absolute;
    z-index: 2;
    right: 0.1rem;
    top: 0.15rem;
    width: 0.21rem;
    cursor: pointer;
    opacity: 0;
}

.toys .cont .shou .grey {
    position: absolute;
}

.toys .cont .shou .red {
    opacity: 0;
    position: absolute;
}

.toys .cont .shou.active {
    opacity: 1;
}

.toys .cont .shou.active .red {
    opacity: 1;
}

.toys .cont .shou.active .grey {
    opacity: 0;
}

.toys .cont p {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    font-size: 0.25rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.28rem;
    color: #5B6670;
    opacity: 0;
}

/* Cart */
.carts {
    padding: 0.47rem 0 0.94rem;
}

.carts .box > b {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    padding-bottom: 0.53rem;
    border-bottom: 1px solid #A2A9AD;
}

.carts .cont {
    margin-bottom: 1.28rem;
}

.carts .cont .tt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #A2A9AD;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.carts .cont .tt .left {
    width: 2.07rem;
    text-align: center;
}

.carts .cont .tt .right {
    display: flex;
    align-items: center;
}

.carts .cont .tt .right div {
    width: 1.07rem;
    text-align: center;
}

.carts .list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
    border-bottom: 1px solid #A2A9AD;
}

.carts .list .left {
    display: flex;
    align-items: center;
}

.carts .list .left .img {
    width: 2.07rem;
}

.carts .list .left .text {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-left: 0.35rem;
}

.carts .list .in {
    position: relative;
}

.carts .list .in .delete {
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: -0.37rem;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    line-height: 0.24rem;
    color: #5B6670;
    cursor: pointer;
}

.carts .list .in .jj {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carts .list .in span {
    width: 0.33rem;
    height: 0.35rem;
    line-height: 0.35rem;
    font-size: 0.3rem;
    font-family: 'Raleway-Regular';
    font-weight: 400;
    color: #5B6670;
    cursor: pointer;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}

.carts .list .right {
    display: flex;
    align-items: center;
}

.carts .list .num {
    width: 1.07rem;
    text-align: center;
}

.carts .list .intotal {
    width: 1.07rem;
    text-align: center;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.carts .list .numm {
    width: 0.35rem;
    height: 0.35rem;
    border: 2px solid #707070;
    border-radius: 50%;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtotal {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.subtotal .text {
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.4rem;
}

.subtotal .text p {
    width: 1.07rem;
    text-align: center;
}

.subtotal .text span {
    width: 1.07rem;
    text-align: center;
    font-size: 0.2rem;
}

.subtotal .btnmore {
    width: 2.27rem;
    font-size: 0.15rem;
    margin: 0;
}

.like .toys {
    padding: 0;
}

.like .toys .cont {
    margin-bottom: 0;
}

.like .toys .box {
    margin-bottom: 0;
    width: calc(25% - calc(3 / 4 * 0.13rem));
}

.like .toys .box:nth-child(3) {
    margin-right: 0.13rem;
}

.like .toys .box:nth-child(4n) {
    margin-right: 0;
}

.like > b {
    font-size: 0.26rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.4rem;
}

/* toys info */
.toysinfo {
    padding: 0.33rem 0 0.94rem;
}

.toysinfo .arrow, .toysinfo .arrow a, .toysinfo .arrow i {
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    opacity: 0.5;
    margin-bottom: 0.37rem;
}

.toysinfo .arrow a {
    margin-bottom: 0;
}

.toysinfo .arrow a:last-child {
    text-decoration: underline;
}

.toysinfo .arrow i {
    margin: 0 0.03rem;
}

.toysinfo .reviews {
    margin-bottom: 1.28rem;
}

.toys-pic {
    display: flex;
    margin-bottom: 1.28rem;
}

.toys-pic .left {
    width: 56%;
    margin-right: 0.68rem;
}

.toys-pic .left .swiper-slide img {
    width: 100%;
}

.toys-pic .left .swiper-button-prev, .toys-pic .left .swiper-button-next {
    background: transparent;
    width: 0.58rem;
    height: 0.58rem;
}

.toys-pic .left .gallery-top {
    margin-bottom: 0.15rem;
}

.toys-pic .left .gallery-thumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}

.toys-pic .left .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.toys-pic .right {
    width: calc(44% - 0.68rem);
}

.toys-pic .right .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.16rem;
}

.toys-pic .right .name p {
    font-size: 0.3rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #47545D;
    width: 65%;
}

.toys-pic .right .name .shou {
    cursor: pointer;
}

.toys-pic .right .name .shou img {
    width: 0.23rem;
}

.toys-pic .right .name .share {
    cursor: pointer;
}

.toys-pic .right .name .share img {
    width: 0.3rem;
}

.toys-pic .right .num {
    font-size: 0.2rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.16rem;
    color: #47545D;
    margin-bottom: 0.12rem;
}

.toys-pic .right .chicun {
    font-size: 0.12rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.2rem;
    color: #47545D;
    margin-bottom: 0.13rem;
}

.toys-pic .right .pcs {
    display: flex;
    align-items: center;
    margin-bottom: 0.23rem;
}

.toys-pic .right .pcs .li {
    width: 0.31rem;
    height: 0.31rem;
    border: 1px solid #47545D;
    border-radius: 50%;
    line-height: 0.12rem;
    margin-right: 0.13rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toys-pic .right .pcs .li p {
    font-size: 0.19rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    color: #47545D;
}

.toys-pic .right .pcs .li span {
    position: relative;
    font-size: 0.12rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    color: #47545D;
}

.toys-pic .right .pcs .li:nth-child(1) span {
    top: 0.02rem;
}

.toys-pic .right .det {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    max-height: 0.72rem;
    overflow: hidden;
}

.toys-pic .right .more, .toys-pic .right .less {
    font-size: 0.12rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #A2A9AD;
    cursor: pointer;
    display: inline-block;
}

.toys-pic .right .anniu {
    display: flex;
    margin-top: 0.26rem;
}

.toys-pic .right .anniu a {
    margin: 0;
    width: 1.54rem;
    font-size: 0.15rem;
}

.toys-pic .right .anniu a:nth-child(1) {
    margin-right: 0.11rem;
}

/* Customers reviews */
.reviews {
    display: flex;
}

.reviews .left {
    width: 33%;
}

.reviews .left > b {
    font-size: 0.26rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.42rem;
}

.reviews .left > em {
    font-size: 0.45rem;
    font-family: 'Quicksand-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.23rem;
}

.reviews .left .star {
    display: flex;
    align-items: center;
    margin-bottom: 0.1rem;
}

.reviews .left .star img {
    width: 0.15rem;
    margin-right: 0.05rem;
}

.reviews .left span {
    font-size: 0.11rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.32rem;
    display: block
}

.reviews .left a {
    margin: 0;
    width: 1.54rem;
}

.reviews .right {
    width: 67%;
    padding: 0;
}

.reviews .right form {
    width: 100%;
    padding: 0.37rem 0 0.53rem;
    border-top: 1px solid #A2A9AD;
    border-bottom: 1px solid #A2A9AD;
}

.reviews-list {
    padding: 0.48rem 0 0.56rem;
    border-bottom: 1px solid #A2A9AD;
    display: flex;
}

.reviews .right form .list {
    margin-bottom: 0.33rem;
}

.reviews .right form .list:nth-child(3) {
    margin-bottom: 0.15rem;
}

.reviews .right form .list span {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.05rem;
    display: block;
}

.reviews .right form .first {
    display: flex;
    margin-bottom: 0.22rem;
}

.reviews .right form .layui-input-block {
    margin-left: 0;
    min-height: 0;
}

.reviews .right form .layui-input-block div {
    font-size: 0.14rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #A2A9AD;
    padding: 0;
    margin: 0 0.08rem 0 0;
}

.reviews .right form .reviews .right form {
    margin-right: 0.08rem;
}

.reviews .right form .layui-form-radio {
    margin-right: 0.32rem !important;
}

.reviews .right form .layui-form-radio > i:hover, .reviews .right form .layui-form-radioed > i {
    color: #E3132F;
}

.reviews-list:last-child {
    border-bottom: 0;
}

.reviews-list .name {
    width: 18%;
    margin-right: 0.64rem;
}

.reviews-list .name > p {
    font-size: 0.16rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.19rem;
}

.reviews-list .star {
    display: flex;
    align-items: center;
}

.reviews-list .star img {
    width: 0.15rem;
    margin-right: 0.05rem;
}

.reviews-list .con {
    width: calc(82% - 0.64rem);
}

.reviews-list .con b {
    font-size: 0.16rem;
    font-family: 'Quicksand-Bold';
    font-weight: bold;
    line-height: 0.24rem;
    color: #5B6670;
    margin-bottom: 0.19rem;
}

.reviews-list .con p {
    font-size: 0.12rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #5B6670;
}

.block .star_score {
    float: left;
}

.star_score a {
    height: 21px;
    display: block;
    text-indent: -999em;
    position: absolute;
    left: 0;
}

.star_score a:hover, #starttwo .star_score a.clibg {
    background: url(../images/star3.png);
    left: 0;
}

#starttwo {
    height: 0.18rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#starttwo .fs {
    float: left;
    margin-left: 0.2rem;
}

#starttwo .fs span {
    margin-bottom: 0;
    width: 0.5rem;
    font-family: 'Quicksand-Medium';
}

#starttwo .star_score {
    background: url(../images/star2.png);
}

.star_score {
    width: 160px;
    height: 0.18rem;
    position: relative;
}

/* Contact Us */
.contact {
    margin-bottom: 0.9rem;
}

.contact .title {
    margin-bottom: 0.7rem;
}

.contact #container {
    height: 7rem;
    margin-bottom: 0.95rem;
}

.contact .cont {
    display: flex;
    padding: 0.55rem 0;
    margin-bottom: 1rem;
    box-shadow: 3.857px 4.596px 28.8px 3.2px rgba(3, 0, 0, 0.05);
}

.contact .cont li {
    color: #aaa;
    line-height: 26px;
    width: 25%;
    text-align: center;
    border-right: 0.01rem solid #eee;
}

.contact .cont li span {
    display: block;
    font-size: 0.18rem;
    line-height: normal;
    color: #333;
    margin-bottom: 0.23rem;
}

.contact .cont li .img {
    height: 0.82rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
}

.contact form {
    position: relative;
}

.contact form button {
    position: absolute;
    left: 50%;
    bottom: -0.35rem;
    transform: translateX(-50%);
    width: 0.7rem;
    height: 0.7rem;
    line-height: 0.7rem;
    text-align: center;
    background: #285eab;
    border-radius: 50%;
    color: #fff;
    font-size: 0.18rem;
    z-index: 5;
}

.contact .cont li img {
    display: block;
    margin: 0 auto;
}

.contact form input {
    width: 100%;
    line-height: 0.6rem;
    height: auto;
    padding: 0 0 0 0.2rem;
    font-size: 0.18rem;
}

.contact form input::-moz-input-placeholder, .contact form input::-webkit-input-placeholder, .contact form input::-ms-input-placeholder, .contact form input::placeholder {
    color: #A2A9AD;
}

.contact form input:focus {
    border-color: #008bdb;
    transition: all 0.2s;
}

.contact form textarea {
    height: 1.4rem;
    width: 100%;
    padding: 0.2rem 0 0.2rem 0.2rem;
    font-size: 0.18rem;
}

.contact form .list {
    width: calc(100% / 3 - calc(2 / 3 * 0.17rem));
    margin-right: 0.17rem;
    display: table;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0 0.2rem;
    margin-bottom: 0.2rem;
}

.contact form .list span {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
    font-size: 0.18rem;
    color: #ccc;
}

.contact form .list span i {
    display: inline-block;
    color: #ff0000;
}

.contact form .list:nth-child(3n) {
    margin-right: 0;
}

.contact form .last {
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
}

.contact form .last span {
    vertical-align: top;
    padding-top: 0.2rem;
}

.contact form > em {
    font-size: 0.3rem;
    font-weight: bold;
    margin-bottom: 0.49rem;
}

.form-box {
    display: flex;
    flex-wrap: wrap;
}


/* footer */
.footer {
    position: relative;
    overflow: hidden;
}

.foot {
    background: #2b2e34;
}

.foota {
    padding-bottom: 0.8rem;
}

.foot-address {
    width: 27%;
}

.foot-address .list {
    color: #fff;
}

.foot-address .list li {
    display: table;
    line-height: 0.3rem;
    margin-bottom: 0.16rem;
}

.foot-address .list li span {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding-right: 0.03rem;
}

.foot-address .list li p, .foot-address .list li em {
    display: table-cell;
}

.foot-nav a:nth-child(1), .foot-address > a {
    color: #ddd;
    margin-bottom: 0.4rem;
}

.foot-address .list li em p {
    display: block;
}

.foot-nav a {
    color: #888;
    display: block;
    margin-bottom: 0.16rem;
    line-height: normal;
}

.foot-nav a.active {
    opacity: 0.7;
}

.foot-nav .left a:last-child {
    margin-bottom: 0;
}

.home-contact {
    display: flex;
    justify-content: space-between;
    padding-top: 0.6rem;
}

.foot-address a {
    display: block;
    margin-bottom: 0.3rem;
}

.foot-nav {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.copy {
    padding: 0.17rem 0;
    background: #22252a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fshare {
    display: flex;
    align-items: center;
    font-size: 0.12rem;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 0.24rem;
    color: #FFFFFF;
}

.fshare a {
    margin-left: 0.2rem;
}

.copyright {
    color: #777;
}

.copy .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copya a {
    display: inline-block;
    margin-left: 0.1rem;
}

.copya a.active {
    opacity: 0.7;
}


/* 1200 */
.mobile {
    display: none;
}

@media screen and (max-width: 1600px) {
    .banner .index-class,
    .banner-img .index-class {
        width: 19%;
        margin-right: 1%;
    }
}

@media screen and (max-width: 1500px) {
    .banner .index-class,
    .banner-img .index-class {
        width: 100%;
        margin-left: -50%;
    }

    .banner-img .crumbs {
        width: 100%;
        margin-left: -49%;
    }

    .banner .index-class a,
    .banner-img .index-class a {
        width: 19%;
        margin: 0;
        margin: 0 0.06rem;
    }

    .home-class a:hover .title {
        font-size: 0.18rem;
    }

    .dis-cont .cont .list {
        padding-left: 0.5rem;
    }
}

/* 1200 */
@media screen and (max-width: 1200px) {
    .container {
        width: 8.67rem !important;
        padding: 0;
    }

    .foot .container {
        width: 95% !important;
    }

    .menu-sub {
        padding: 0 0.29rem;
    }

    .banner .text {
        width: 8.67rem;
    }

    .banner .swiper-slide img {
        /* display: none; */
    }

    .banner .text > b {
        font-size: 0.8rem;
        line-height: 1rem;
        margin-bottom: 0.2rem;
    }

    .banner .text .more span {
        margin-right: 0.2rem;
    }

    /* .banner .swiper-slide:nth-child(1){
        background: url(../images/banner1_1080.jpg) no-repeat;
        background-size: cover;
        height: 100vh;
    }
    .banner .swiper-slide:nth-child(2){
        background: url(../images/banner2_1080.jpg) no-repeat;
        background-size: cover;
        height: 100vh;
    }
    .banner .swiper-slide:nth-child(3){
        background: url(../images/banner3_1080.jpg) no-repeat;
        background-size: cover;
        height: 100vh;
    }
    .banner .swiper-slide:nth-child(4){
        background: url(../images/banner4_1080.jpg) no-repeat;
        background-size: cover;
        height: 100vh;
    } */
    .banner .swiper-slide:nth-child(3) .text > b {
        line-height: 1.1rem;
    }

    .banner .swiper-slide:nth-child(4) .text > b {
        line-height: 1rem;
    }

    .ournews {
        padding: 1.3rem 0 1.54rem;
    }

    .ournews .right {
        width: 3.1rem;
    }

    .subscribe {
        padding: 0.33rem 0;
    }

    .subscribe .box > p {
        width: 2.5rem;
        height: auto;
    }

    .arrivals-cont .swiper-button-prev {
        left: 0.29rem;
    }

    .arrivals-cont .swiper-button-next {
        right: 0.29rem;
    }

    .arrivals-cont .swiper-slide-active .text {
        opacity: 1;
    }

    .arrivals-cont .swiper-slide-active img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        transition: all 0.4s;
    }

    .video video {
        height: 6rem;
    }
}

/* 992 */
@media screen and (max-width: 992px) {


}

/* 大于992 */
@media screen and (min-width: 992px) {
    .home-solution .icon p {
        transition: all 0.3s;
    }

    .home-solution .icon a:hover p {
        color: #285eab;
    }

    .home-solution .icon a:hover .circle {
        background: #46c9b2;
        border-color: #46c9b2;
    }

    .home-solution .circle {
        transition: all 1s;
    }

    .home-solution .icon a:hover .circle img {
        display: none;
    }

    .home-solution .icon a:hover .circle .icon-act {
        display: block;
    }

    .home-service-box .box li {
        transition: all 0.5s;
    }

    .home-service-box .box li:hover {
        background: #46c9b2;
        border-color: #46c9b2;
    }

    .home-service-box .box li:hover .text p {
        opacity: 0.6;
    }

    .home-service-box .box li:hover img {
        opacity: 1;
    }

    .home-partner-box .box a {
        transition: all 0.3s;
    }

    .home-partner-box .box a:hover {
        filter: inherit;
    }

    .about .nav li a {
        transition: all 0.3s;
    }

    .about .nav li a:hover {
        color: #45c9b2;
    }

    .certificates .cont .img img, .download .cont .img img, .arrivals-cont .swiper-slide .img div, .projects .cont .img div, .download-box .img div, .solution .img div, .equipment .cont .img div, .equipment-list .img div, .spare-parts .img div {
        transition: all 0.5s;
    }

    .certificates .cont a:hover .img, .download .cont a:hover .img {
        border-color: #008bdb;
    }

    .certificates .cont a:hover .img img, .download .cont a:hover .img img, .arrivals-cont .swiper-slide a:hover .img div, .projects .cont a:hover .img div, .download-box a:hover .img div, .solution a:hover .img div, .equipment .cont a:hover .img div, .equipment-list a:hover .img div, .spare-parts a:hover .img div {
        transform: scale(1.05) perspective(10px);
    }

    .report .cont a * {
        transition: all 0.1s;
    }

    .report .cont a:hover, .report .cont a:hover svg path {
        color: #46c9b2;
        fill: #46c9b2;
    }

    .importance .list .img div {
        transition: all 0.5s;
    }

    .importance .list:hover .img div {
        transform: scale(1.05) perspective(10px);
    }

    .control .pro-tit a svg {
        transition: all 0.5s;
    }

    .control .pro-tit a {
        transition: all 0.3s;
    }

    .control .pro-tit a:hover {
        opacity: 0.7;
    }

    .news .text em {
        transition: all 0.3s;
    }

    .news a:hover {
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
        padding: 0.3rem;
        border-top-color: transparent;
    }

    .news a:hover .text em {
        color: #45c9b2;
    }

    .pnpage a, .projects .cont .text > p {
        transition: all 0.3s;
    }

    .pnpage a:hover {
        color: #46c9b2;
    }

    .pnpage a:hover svg path {
        fill: #46c9b2;
    }

    .projects .cont a:hover .text > p {
        color: #008bdb;
    }

    .projects .cont a:hover {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }

    .projects-details .picture .swiper-button-prev svg path, .projects-details .picture .swiper-button-next svg path {
        transition: all 0.3s;
    }

    .projects-details .picture .swiper-button-prev:hover svg path, .projects-details .picture .swiper-button-next:hover svg path {
        fill: #46c9b2;
    }

    .foot-nav a {
        transition: all 0.3s;
    }

    .foot-nav a:hover {
        color: #46c9b2;
    }

    .download-box a {
        transition-duration: .5s;
    }

    .download-box a:hover {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }

    .download-box a:hover .img svg path {
        fill: #46c9b2;
    }

    .download-box a:hover .text * {
        color: #46c9b2;
    }

    .download-box .img svg path, .download-box .text * {
        transition: all 0.3s;
    }

    .questionnaire .swiper-button-prev, .questionnaire .swiper-button-next {
        transition: all 0.3s;
    }

    .questionnaire .swiper-button-prev:hover, .questionnaire .swiper-button-next:hover {
        background: #45c9b2;
    }

    .equipment .cont a:hover .text .btnn {
        left: 0.2rem;
    }

    .equipment .text .btnn {
        transition: all 0.3s;
    }

    .equipment-list .text em {
        transition: all 0.3s;
    }

    .equipment-list a:hover .text em {
        color: #008bdb;
    }

    .contact form button {
        transition: all 0.3s;
    }

    .contact form button:hover {
        background: #008bdb;
    }

}

/* 768 */
@media screen and (max-width: 768px) {
    html {
        font-size: 55.2px;
        width: 100%;
    }

    body {
        font-size: 0.3rem !important;
        font-size: 16px !important;
        overflow-x: hidden;
    }

    .container {
        width: 100 !important;
    }

    .send p {
        line-height: 0.4rem;
        margin-bottom: 0.3rem;
        font-size: 0.24rem;
    }

    .send form {
        width: 100%;
    }

    .send form input {
        width: 76%;
        font-size: 0.24rem;
        height: auto;
        min-height: 0.52rem;
        padding: 0.2rem 0.12rem;
    }

    .send form button {
        width: 20%;
        font-size: 0.24rem;
        height: auto;
        min-height: 0.52rem;
        padding: 0.2rem 0.12rem;
    }

    .foot .left {
        margin-bottom: 0.2rem;
        font-size: 0.24rem;
    }

    .foot .right {
        display: none;
    }

    .copy {
        font-size: 0.22rem;
        line-height: 0.4rem;
    }

    .box_div {
        top: 28%;
        width: 90%;
        margin-left: -45%;
    }

    .box_div .close {
        position: relative;
        float: none;
        top: 0;
        right: 0;
        left: -0.1rem;
        height: 0;
    }

    .box_div .close img {
        position: absolute;
        left: 50%;
        top: 0.5rem;
        border: 0.02rem solid #fff;
        border-radius: 50%;
        padding: 0.15rem;
        margin-left: -0.17rem;
    }

    .box_div .title {
        font-size: 0.24rem;
    }

    .menu-sub {
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        background: #fff;
        padding: 0.36rem 0.48rem 0.32rem;
    }

    .header img {
        height: 0.88rem;
    }

    #navToggle span, #navToggle::after, #navToggle::before {
        width: 0.4rem;
        height: 0.03rem;
        background: #5B6670;
    }

    .parents {
        display: none;
    }

    .foot .container {
        width: 100% !important;
        padding-bottom: 0;
    }

    .home-contact {
        flex-direction: column;
        padding: 1.15rem 0 0.75rem;
    }

    .foot .left {
        text-align: center;
    }

    .foot .home-contact {
        padding: 0.48rem 0 0;
    }

    .foot-address {
        width: auto;
        text-align: center;
    }

    .foot-address .list {
        padding: 0.4rem;
        font-size: 0.24rem;
        line-height: 0.36rem;
        text-align: center;
    }

    .foot-nav {
        flex-direction: column;
        width: auto;
    }

    .foot-address .list a {
        font-size: 0.22rem;
        line-height: 0.36rem;
    }

    .foot-nav a {
        font-size: 0.26rem;
        margin-bottom: 0.34rem !important;
    }

    .foot-nav .left a:last-child {
        margin-bottom: 0;
    }

    .copyright {
        display: none;
    }

    .copy {
        flex-direction: column;
        padding: 0.78rem 0;
    }

    .fshare {
        font-size: 0.22rem;
        line-height: 0.48rem;
        margin-bottom: 0.4rem;
    }

    .copya a {
        font-size: 0.22rem;
        margin-left: 0;
        margin: 0 0.28rem;
    }

    .subscribe .box {
        width: auto;
        flex-direction: column;
    }

    .subscribe {
        padding: 0.78rem 0;
    }

    .subscribe .box > p {
        display: none;
    }

    .subscribe .box > p.mb {
        display: block;
        width: auto;
        text-align: center;
        font-size: 0.28rem;
        line-height: 0.48rem;
    }

    .subscribe .box a {
        width: 2.92rem;
        line-height: 0.86rem;
        font-size: 0.3rem;
        margin-top: 0.3rem;
    }

    .subscribe .box a i {
        font-size: 0.3rem;
    }

    .container {
        /*width: 6.54rem!important;*/
        width: 98% !important;
    }

    .about .nav {
        width: 2rem;
        margin-right: 0.2rem;
    }

    .about .right-box {
        width: 73%;
        text-align: justify;
    }

    .about .nav > em:before, .about .nav > em:before {
        border-width: 0.35rem 0 0 2rem;
    }

    .projects-details .intro-title em:before {
        border-width: 0.25rem 0 0 2.6rem;
    }

    .spare-parts a, .download-box a {
        /*width: calc(100% / 2 - calc( 1 * 0.2rem));*/
        margin: 0 0 0.2rem 0.4rem;
    }

    .projects .cont a:nth-child(3) {
        margin-top: 0.2rem;
    }

    .projects .cont a {
        width: 46%;
        margin: 0.2rem 0.1rem;
    }

    .arrivals-cont .swiper-button-prev, .arrivals-cont .swiper-button-next {
        width: 0.8rem;
        height: 0.8rem
    }

    .equipment-list {
        display: inline;
    }

    .about .right-box .content ul {
        margin-left: 0;
    }

    .about .right-box .content ul li:nth-child(1) {
        width: auto;
    }

    .arrivals-cont .swiper-slide-active img {
        transform: scale(1);
    }

    .contt ul, .contt table {
        width: 100%;
        overflow-x: auto;
        display: flex;
    }

    .about .right-box .content ul li {
        margin-right: 0.5rem;
    }

    .contt p {
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .home-projects .title {
        font-size: 0.56rem;
        margin-bottom: 0.92rem;
    }

    .home-projects {
        padding-top: 1.6rem;
    }

    .menu .cart {
        height: 0.35rem;
        display: flex;
        margin-right: 0.5rem;
    }

    .menu .cart svg {
        height: 0.35rem;
    }

    .menu .cart svg path {
        fill: #5B6670;
    }

    .menu .cart p {
        font-size: 0.22rem;
        color: #5B6670;
    }

    .mm-menu {
        left: -100% !important;
        width: 100% !important;
    }

    .mobile {
        background: #FBF7F3;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: calc(100% - 1.56rem);
        z-index: 99;
        border-top: 1px solid #d6d6d6;
    }

    .mobile .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        margin: 0;
        padding: 0.32rem 0.48rem;
    }

    .mobile .top svg {
        width: auto;
        height: 0.35rem;
        margin-right: 0.32rem;
    }

    .mobile .top svg path {
        fill: #5B6670;
    }

    .mobile .top a {
        font-size: 0.28rem;
        font-family: 'Raleway-Medium';
        font-weight: 500;
        line-height: 0.32rem;
        color: #5B6670;
        display: flex;
        align-items: center;
    }

    .mobile .bot {
        position: relative;
        height: calc(100% - 1.44rem);
        padding: 0.84rem 0.48rem 0;
    }

    .icon_mb {
        position: absolute;
        height: 1.66rem;
        bottom: 0;
        width: calc(100% - 0.96rem);
        display: flex;
        align-items: center;
        border-top: 0.02rem solid #D6D6D6;
    }

    .icon_mb img {
        height: 0.45rem;
    }

    .icon_mb a {
        margin-right: 0.52rem;
    }

    .nav_mb {
        height: calc(100% - 1.66rem);
        overflow-y: scroll;
    }

    .nav_mb .li, .nav_mb .li > a {
        font-size: 0.48rem;
        font-family: 'Raleway-Medium';
        line-height: 0.58rem;
        color: #5B6670;
        margin-bottom: 0.62rem;
    }

    .nav_mb .list {
        padding-right: 0.15rem;
    }

    .nav_mb .list .ul1, .nav_mb .list .ul2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav_mb .list img {
        transform: rotate(90deg);
        width: 0.2rem;
    }

    .nav_mb .ul2 {
        font-size: 0.26rem;
        font-family: 'Raleway-Medium';
        line-height: 0.3rem;
        color: #5B6670;
        margin-bottom: 0.35rem;
    }

    .nav_mb .ul2 img {
        width: 0.15rem;
    }

    .nav_mb .ul1 {
        margin-bottom: 0.45rem;
    }

    .nav_mb .ul1.active img, .nav_mb .ul2.active img {
        transform: rotate(-90deg);
    }

    .nav_mb .list3 {
        display: none;
        padding: 0 0 0 0.38rem !important;
        width: auto !important;
    }

    .nav_mb .list2-box {
        display: none;
        padding: 0 !important;
        width: auto !important;
    }

    .nav_mb .list3 a {
        font-size: 0.26rem;
        font-family: 'Raleway-Medium';
        line-height: 0.3rem;
        color: #5B6670;
        margin-bottom: 0.35rem;
        display: block;
    }

    .nav_mb .list2-box > a {
        font-size: 0.26rem;
        font-family: 'Raleway-Medium';
        line-height: 0.3rem;
        color: #5B6670;
        margin-bottom: 0.35rem;
        display: block;
    }

    .home-solution .box {
        width: 100%;
    }

    .home-service-box .box li {
        padding: 0.2rem;
    }

    .home-service-box .box li img {
        margin-right: 0.05rem;
    }

    .home-partner-box .box a {
        width: calc(100% / 4);
    }

    .contact .cont li .img {
        margin-bottom: 0.1rem;
    }

    .contact .cont li img {
        width: 20%;
    }

    .contact .cont {
        padding: 0.2rem 0;
        font-size: 0.2rem;
    }

    .form-box {
        display: inline;
    }

    .contact form .list {
        width: 100%;
    }

    .certificates .cont a {
        width: 100%;
        margin: 0.4rem 0 0 0;
    }
}

/* 新增页面 */
@media (min-width: 1200px) {
    .container {
        width: 1820px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .nav > li > a {
        line-height: 30px;
    }

    .navbar-brand img {
        width: 70%;
    }

    .navbar-inverse .navbar-nav > li > a.on:after {
        opacity: 0;
    }

    .pull-right {
        float: left !important;
        padding-bottom: 20px;
    }

    .menu {
        margin-top: 0px;
    }

    .menu a.search {
        display: none;
    }

    .banner {
        margin-top: 1.48rem;
    }

    .importance .list {
        display: inline-block;
    }

    .importance-cont {
        width: 100%;
    }

    .importance .list .img {
        margin-top: 10px;
        width: 100%;
    }

    .control .text p {
        text-align: left;
    }

    .equipment .cont a {
        width: 100%;
        margin: 0 0 0.2rem 0
    }

    .about .nav > em, .right-box > em {
        font-size: 0.3rem;
    }

    .right-box > em {
        padding: 0.38rem 0 0.15rem 0;
    }

    .spare-parts {
        margin-top: 0.17rem;
    }
}

.menu {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.menu a.search {
    margin-right: 0.35rem;
}

.menu a svg {
    width: auto;
    height: 18px;
}

.menu a svg path {
    fill: #888;
}

.menu a {
    display: flex;
    line-height: 18px;
    color: #777;
}

.menu span {
    margin: 0 0.11rem;
    color: #777;
}

.menu a img {
    height: 18px;
    margin-right: 0.06rem;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #fff;
    border: none;
}

.navbar-inverse {
    background: #fff;
    border-color: #fff;
    box-shadow: 0px 1px 5px 3px rgb(0 0 0 / 10%);
}

.nav > li > a {
    /*line-height:65px;*/
    padding: 15px;
}

.navbar-inverse .nav li a:hover {
    color: #008bdb
}

.navbar-inverse .navbar-nav > li > a {
    color: #333;
    font-size: 0.18rem;
    margin: 0 0.15rem
}

.navbar-inverse .navbar-nav > li > a.on {
    color: #008bdb;

}

.navbar-inverse .navbar-nav > li > a:after {
    opacity: 0;
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.67rem;
    height: 0.23rem;
    background: url(../images/nav_bg.png) no-repeat center;
}

.navbar-inverse .navbar-nav > li > a.on:after {
    opacity: 1;
    bottom: -0.08rem;
}

.navbar-toggle {
    margin-top: 23px;
    padding: 10px;
    border: none;
}

.container > .navbar-header {
    padding: 0px 0px 15px 0px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #fff;
}

.containers {
    width: 73%;
    margin: 0 auto;

}

.product {
    overflow: hidden;
    padding: 0;
}

.productInfo h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.productInfo p {
    color: #888;
    font-size: 14px;
    list-style: disc;
    line-height: 25px;
}

.describeTab {
    padding-bottom: 50px;
}

.tabList {
    border-bottom: 1px solid #eee;
}

.describeTab {
    margin-top: 100px;
}

.tab-content {
    margin-top: 20px;
    display: flex;
}

.tab-content p {
    overflow: hidden;
    color: #888;
    font-size: 14px;
    line-height: 25px;
}

.tab-content imgtab-content
.nav-tabs {
    border-bottom: 2px solid #eee;
    overflow: hidden;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: none;
    color: #fff;
    background: #46c9b2;
}

.nav-tabs > li:hover a {
    border-top: none;
    border-left: none;
    border-bottom: none;
}

.nav-tabs > li a {
    padding: 0px 18px;
    border-right: 1px solid #eee;
    color: #333;
    font-weight: bold;
    font-size: 20px;
}

.nav-tabs > li:last-child a {
    border: none;
}

.nav-tabs > li {
    padding: 20px 0px;
}

.nav-tabs > li.active {
    -webkit-clip-path: polygon(0 0, 1px 68px, 1200px 100px, 0 0);
    background: #46c9b2;
    margin-left: -4px;
}

.tab-pane {
    padding-left: 0;
    padding-right: 0;
}

.related {
    overflow: hidden;
    margin: 50px 0px;
}

.rp {
    border-bottom: 1px solid #eee;
}

.rp h5 {
    width: 200px;
    height: 90px;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    color: #fff;
    font-size: 20px;
    background: #46c9b2;
    -webkit-clip-path: polygon(0 0, 1px 90px, 1200px 100px, 0 0);
}

.reps {
    margin-top: 50px;
}

.reps img {
    width: 100%;
    margin-bottom: 20px;
}

.reps a {
    display: block;
    color: #333;
    text-align: center;
    font-size: 18px;
    margin: 20px 0px;
}

.reps div:hover a {
    color: #008bdb;
}

.swiper {
    width: 500px;
    height: 500px;
    float: left;
    border: 2px solid #eee;
}

.swiper-wrapper .swiper-slide {
    width: 100%;

}

.swiper-wrapper .swiper-slide img {
    width: 100%;
}

.thumbsSwiper {
    border: none;
    width: 120px;
    float: left;
    margin-left: 20px;
    height: 410px;
    overflow: hidden;
    position: relative;
    top: 45px;
}

.thumbsSwiper .swiper-wrapper .swiper-slide {
    height: 120px;
    width: 100%;
    overflow: hidden;
    border: 2px solid #eee;
    padding: 5px;
}

.thumbsSwiper .swiper-wrapper .swiper-slide img {
    width: 106px;
    height: 106px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    top: 22px;
    width: 120px;
    height: 35px;
    left: 521px;
    background-size: 100% 100%;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    top: 485px;
    width: 120px;
    height: 35px;
    right: 60px;
    background-size: 100% 100%;
}

.swiper-button-next.swiper-button-disabled {
    background-image: url(../images/down.png);
    opacity: 1;
}

.swiper-button-prev.swiper-button-disabled {
    background-image: url(../images/up.png);
    opacity: 1;
}

.swiper-button-prev {
    background-image: url(../images/up2.png);
}

.swiper-button-prev:after {

    background-repeat: no-repeat;
    width: 120px;
    height: 35px;
    content: '';
    background-size: 100% auto;
}

.swiper-button-next {
    background-image: url(../images/down2.png);
}

.swiper-button-next:after {

    background-repeat: no-repeat;
    width: 120px;
    height: 35px;
    content: '';
    background-size: 100% auto;
}

@media screen and (min-width: 1200px) and (max-width: 1820px) {
    .navbar-nav {
        margin: 0px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1820px) {
    .swiper {
        width: 400px;
        height: 400px;
    }

    .thumbsSwiper {
        top: 32px;
        width: 100px;
        height: 310px;
    }

    .thumbsSwiper .swiper-wrapper .swiper-slide {
        width: 100px;
        height: 100px;
    }

    .thumbsSwiper .swiper-wrapper .swiper-slide img {
        width: 90px;
        height: 90px;
    }

    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        width: 100px;
        left: 420px;
        height: 25px;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        width: 100px;
        height: 25px;
        left: 420px;
        top: 395px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
    .swiper {
        width: 300px;
        height: 300px;
    }

    .thumbsSwiper {
        top: 32px;
        width: 90px;
        height: 210px;
    }

    .thumbsSwiper .swiper-wrapper .swiper-slide {
        width: 90px;
        height: 90px;
    }

    .thumbsSwiper .swiper-wrapper .swiper-slide img {
        width: 80px;
        height: 80px;
    }

    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        width: 90px;
        left: 320px;
        height: 25px;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        width: 90px;
        height: 25px;
        left: 320px;
        top: 297px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .navbar-nav {
        margin: 0px 0px 0px -180px;
    }

    .navbar-inverse .navbar-nav > li > a {
        margin: 0;
    }

    .menu {
        position: absolute;
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .container > .navbar-header {
        padding: 0px;

    }

    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        min-height: 500px;
    }

    .navbar-inverse .navbar-nav > li > a {
        font-size: 0.28rem;
        line-height: 30px;
    }

    .nav > li > a {
        line-height: 0.3rem;
    }

    .navbar-inverse .navbar-nav > li > a:after {
        background: none;
    }

    .topPic img {
        max-width: 130%;
        position: relative;
        left: -15%;
        margin-top: 80px;
    }

    .swiper {
        width: 76%;
        height: 310px;
        border: none;
    }

    .thumbsSwiper {
        width: 22%;
        margin-left: 5px;
        height: 310px;
        top: 0px;
    }

    .describeTab {
        overflow: hidden;
        margin-top: 30px;
    }

    .nav-tabs {
        display: flex;
    }

    .nav-tabs > li {
        padding: 10px 0px;
    }

    .nav-tabs > li a {
        padding: 0 0.1rem;
        font-size: 16px;
    }

    .tab-content p {
        width: 100%;
        min-height: auto;
    }

    .related {
        margin: 0px 0px 50px 0px;
    }

    .rp h5 {
        font-size: 16px;
        height: 48px;
        line-height: 55px;
    }

    .menu {
        margin-top: 10px;
        padding: 20px 0;
    }

    .containers {
        width: 96%;
    }

    .home-solution {

        margin-bottom: 0;
        padding-top: 1rem;
    }

    .thumbsSwiper .swiper-wrapper .swiper-slide, .thumbsSwiper .swiper-wrapper .swiper-slide img {
        width: 80px;
        height: 80px;
        padding: 0;
    }

    .productInfo h1 {
        font-size: 18px;
    }

}

.navbar-nav > li > a {
    line-height: 65px;
}

.infomation {
    overflow: hidden;
}

.nav-tabs {
    overflow: hidden;

}

.swiper-nextLeft.swiper-button-disabled {
    position: absolute;
    left: 0px;
    z-index: 100;
    background-image: url(../images/l.png);
    background-size: 100% 100%;
}

.swiper-nextLeft {
    background-image: url(../images/l2.png);
    width: 36px;
    height: 36px;
    background-size: 100% 100%;
}

.swiper-nextRight.swiper-button-disabled {
    position: absolute;
    right: 0px;
    z-index: 100;
    background-image: url(../images/r.png);
    background-size: 100% 100%;
    transform: rotate(0deg);
}

.swiper-nextRight {
    transform: rotate(0deg);
    background-image: url(../images/r2.png);
    width: 36px;
    height: 36px;
    background-size: 100% 100%;
}

/* home-hot-products */
.home-products {
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
    /* box-shadow:0px 60px 70px 0px rgb(40 94 171 / 13%) */
}

.home-products .hot-title p {
    position: relative;
    position: relative;
    font-size: 0.6rem;
    font-weight: bold;
    border-bottom: 0.01rem solid #eee;
}

.home-products .hot-title p:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.015rem;
    width: 0.5rem;
    height: 0.03rem;
    background: #008bdb;
}

.hotProductsList {
}

#homeTabs {
    border: none;
}

#homeTabs > li.active > a, #homeTabs > li.active > a:focus, #homeTabs > li > a:hover {
    border: none;
    color: #008bdb;
    background: none;
}

#homeTabs > li:hover a {
    border-top: none;
    border-left: none;
    border-bottom: none;
}

#homeTabs > li a {
    padding: 0px 35px 0px 6px;
    color: #333;
    font-weight: normal;
    font-size: 20px;
    text-align: left;
    border: none;
}

#homeTabs > li:last-child a {
    border: none;
}

#homeTabs > li {
    padding: 20px 0px;
}

#homeTabs > li.active {
    background: none;
}

.allSwiper, .equipmentSwiper, .partsSwiper {
    width: 100%;
    border: none;
}

.tab-hotPros .swiper-slide img {
    width: 400px;
    height: 400px;
    margin-bottom: 30px;
    display: block;
    object-fit: cover;
}

.tab-hotPros p {
    color: #333;
    font-size: 20px;
    position: relative;
    left: 25%;
}

.all-swiper-pagination, .equipment-swiper-pagination, .parts-swiper-pagination {
    position: absolute;
    top: -124px;
    right: 0px;
}

.all-swiper-pagination .swiper-pagination-bullet, .equipment-swiper-pagination .swiper-pagination-bullet, .parts-swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: #eee;
    opacity: 1;
}

.all-swiper-pagination .swiper-pagination-bullet-active, .equipment-swiper-pagination .swiper-pagination-bullet-active, .parts-swiper-pagination .swiper-pagination-bullet-active {
    background: url(../images/dot.png);
    width: 14px;
    height: 14px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.home-products .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 14px));
    height: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 14px));
}

@media screen and (max-width: 768px) {
    /* hotProducts */
    .home-products {
        margin-bottom: 0;
    }

    #homeTabs > li a {
        font-size: 14px;
        padding: 0 0 0 3px;

    }

    #homeTabs > li {
        padding: 10px 0px;
    }

    #homeTabs {
        width: 150%;
        overflow-x: scroll;
    }

    .hotProductsList .swiper-wrapper .swiper-slide {
        width: 100% !important;
    }

    .tab-hotPros .swiper-slide img {
        width: 60%;
        margin: 0 auto;
        height: 250px;
    }

    .tab-hotPros p {
        padding: 0;
        left: 0;
        text-align: center;
        font-size: 14px;
    }

    .hotProductsList .swiper-pagination {
        display: none;
    }

    .home-solution .box {
        top: 15px;
    }
}

/* 替换分类二级菜单 */
/* pc */
.about .navs {
    width: 3rem;
    margin-right: 0.8rem;
}

.about .navs > em {
    position: relative;
    padding: 0.35rem 0 0.2rem 0;
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.4rem;
    font-weight: bold;
    color: #fff;
    background: #285eab;
    -webkit-clip-path: polygon(0 0, 0px 125px, 1550px 125px, 0 0px);
}


.about .navs > em:before {
    content: '';
    position: absolute;
    top: -0.3rem;
    left: 0;
    width: 0;
    height: 0;
    border-color: transparent #285eab;
    border-width: 0.31rem 0 0 3rem;
    border-style: solid;
}

.navMenu .firstUl li.firstLi {
    position: relative;
    padding: 20px 15px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eaeaea;

}

.navMenu .firstUl li.firstLi a {
    color: #333;
    font-size: 16px;
}

.navMenu .firstUl .firstLi:hover {
    background-color: #fff;
}

.navMenu .firstUl li.navActive {
    background-color: #fff;
}

.navMenu .firstUl li.firstLi:hover a, .navMenu .firstUl .navActive {
    color: #46c9b2;
}

.navMenu .firstUl .firstLi a:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 15px;
    background-color: #f8f8f8;
    left: 0;
    top: 37%;
    opacity: 0;
}

.navMenu .firstUl .firstLi.navActive a:before {
    opacity: 1;
    background-color: rgba(69, 201, 178, 1);
}

.beyond {
    background-color: #eaeaea;
    height: 40px;
    text-align: center;
}

.beyond img {
    width: 200px;
    height: 32px;
    padding-top: 10px;
}

.navMenu .firstUl li .second {
    display: none;
    position: absolute;
    top: 0px;
    width: 300px;
    background-color: #fff;
    box-shadow: 3.857px 4.596px 28.8px 3.2px rgb(3 0 0 / 5%);
    z-index: 2;
    left: 300px;
}

.navMenu .firstUl li .second li {
    padding: 10px 25px;
    background-color: #fff;
}

.navMenu .firstUl li .second li a {
    color: #333;
    font-size: 14px;
}

.navMenu .firstUl li .second li:hover a {
    color: #46c9b2;
    font-weight: bold;
}

.navMenu .firstUl li.firstLi:hover .second {
    display: block;
}

.navMenu .firstUl li.navActive .second li a:before {
    opacity: 0;
}

/* mobiel menus */
.mobielNav {
    background-color: #fff;
    width: 100%;
}

.allParts {
    width: 96%;
    margin: 0 auto;
    box-shadow: 2.857px 1.596px 6.8px 2.2px rgb(3 0 0 / 4%);
    margin-bottom: 20px;
}

.mbtn {
    width: 96%;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    padding: 10px;

}

.mbtn svg {
    float: right;
    height: 20px;
    width: 20px;
}

.allParts .mobielFirstUl .mobileFLi {
    padding: 10px 15px;
}

.allParts .mobielFirstUl .mobileFLi a {
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 16px;
    color: #8a8a8a;
}

.allParts .mobielFirstUl .mobileFLi a span {
    float: left;
}

.allParts .mobielFirstUl .mobileFLi a em {
    float: right;
    right: 1px;
    padding-right: 20px;
    font-size: 1em;
}

.mobileSecondUl .mobileSecondLi {
    padding: 10px;
}

.mobileSecondUl, .mobielFirstUl, .mobielNav {
    display: none;
}

.showNow {
    display: block;
}

/*10.11*/
/*@media screen and (max-width: 1366px) and (min-width:1200px){*/
/*    .tab-hotPros .swiper-slide img{*/
/*        width:295px;*/
/*        height: 295px;*/
/*    }*/
/*    .col-md-2{*/
/*        width:5%;*/
/*    }*/
/*    .navbar-inverse .navbar-nav>li>a{*/
/*        margin: 0;*/
/*    }*/
/*    .pull-right{*/
/*        float: none!important;*/
/*    }*/
/*    .menu a.search{*/
/*        margin-right: 0.15rem;*/
/*    }*/
/*    .menu span{*/
/*        margin: 0 0.1rem 0 0.35rem;*/
/*    }*/
/*    .navbar-inverse .navbar-nav>li>a.on:after{*/
/*        bottom:-0.01rem;*/
/*    }*/
/*}*/
/*11.22*/
@media screen and (max-width: 1681px) and (min-width: 1400px) {
    .col-md-2 {
        width: 8%;
    }

    .pull-right {
        float: left !important;
    }

    .menu span {
        margin: 0 0.1rem 0 0.31rem;
    }

    .navbar-inverse .navbar-nav > li > a {
        margin: 0;
    }
}

@media screen and (max-width: 1366px) and (min-width: 992px) {
    .importance .list .img {
        width: 2.5rem;
        height: 2rem;
        overflow: hidden;
    }

    .importance .list em {
        font-family: "AvenirNextLTProBold";
        width: 0.5rem;
        height:0.8rem;
        font-size: 0.26rem;
        font-weight: bold;
        font-style: italic;
        color: #fff;
        line-height:1.1rem;
        text-align: center;
        margin-right: 0.2rem;
        background: url(../images/Quality_Importance_icon.png) no-repeat center / contain;
    }
    .importance-cont .tit {
        font-size:16px;
        line-height: 30px;
        margin-bottom: 0.1rem;
        font-weight: bold;
        color: #333;
    }
    .importance-cont{
        width: 48%;
        margin-right: 0.1rem;
    }
    .importance .list:nth-child(even) .img {
        margin-right: 0.1rem;
    }
    .importance-cont .text {
        line-height:24px;
        font-size:14px;
    }
}

/*9.29*/
@media screen and (max-width: 1366px) and (min-width: 992px) {
    .col-md-2 {
        width: 5%;
    }

    .navbar-inverse .navbar-nav > li > a {
        margin: 0;
    }

    .pull-right {
        float: none !important;
    }

    .menu a.search {
        margin-right: 0.15rem;
    }

    .menu span {
        margin: 0 0.1rem 0 0.35rem;
    }

    .navbar-inverse .navbar-nav > li > a.on:after {
        bottom: -0.01rem;
    }

    .tab-hotPros .swiper-slide img {
        width: 295px;
        height: 295px;
    }

    .rrrParts .img {
        width: 185px;
        height: 185px;
    }

    .spare-parts a {
        margin: 0.3rem 5px 0.3rem 0;
    }

    /*.download-video{*/
    /*    width:33%;*/
    /*}*/

}
