@charset "utf-8";

.more-ck {
    cursor: pointer;
}

html,
body {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.btn-swt {
    cursor: pointer;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
figure,
figcaption,
table,
th,
td img {
    margin: 0;
    padding: 0;
}

a,
abbr,
acronym,
address,
big,
blockquote,
body,
caption,
cite,
code,
dd,
dl,
dt,
fieldset,
form,
h1,
time,
h2,
h3,
h4,
h5,
h6,
html,
img,
ins,
kbd,
label,
legend,
li,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

body {
    font-family: "times", helvetica_neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: left;
    margin: 0 !important;
    line-height: 24px;
    color: #333;
    font-weight: normal;
    overflow-x: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: "times";
    src: url("../font/times.woff") format("woff"),
        url("../font/times.ttf") format("truetype");
    font-display: swap;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    text-decoration: none;
}

.transition {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    outline: none;
}

button {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    outline: none;
}

input {
    border-radius: 0;
    outline: none;
}

input:-ms-clear {
    display: none;
}

input,
textarea {
    border: 0;
    font-family: "Microsoft YaHei";
}

textarea {
    resize: none;
    outline: none;
}

img {
    border: 0;
    vertical-align: middle;
}

ul,
li {
    list-style: none;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

img {
    max-width: 100% !important;
    height: auto !important;
    _width: expression(this.width > 100% ? "100%": this.width) !important;
}

.warp-mb {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    cursor: pointer;
    background-color: #ff5500;
}

.btn i {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 25px;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    position: relative;
    z-index: 2;
}

.btn::before {
    content: "";
    background-color: #0f2c49;
    content: "";
    height: 100%;
    opacity: 0.2;
    position: absolute;
    right: -15px;
    top: 0;
    width: 35px;
    z-index: 2;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn:hover:before {
    opacity: 1;
    right: 0;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    width: 100%;
}

.top-title {
    text-align: center;
    margin-bottom: 30px;
}

.top-title .top-sp {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #ff5500;
    border-radius: 50px;
    padding: 4px 20px;
    margin-bottom: 5px;
}

.top-title .h2 {
    font-weight: 600;
    color: #333;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 5px;
    margin-top: 5px;
    text-align: center;
    padding: 0;
}

.top-title .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.m-top {
    margin-top: 80px;
}

.m-btm {
    margin-bottom: 80px;
}

.p-top {
    padding-top: 80px;
}

.p-btm {
    padding-bottom: 80px;
}

@media screen and (max-width: 1500px) {
    .warp-mb {
        width: 1200px;
    }

    .m-top {
        margin-top: 70px;
    }

    .m-btm {
        margin-bottom: 70px;
    }

    .p-top {
        padding-top: 70px;
    }

    .p-btm {
        padding-bottom: 70px;
    }

    .top-title .h2 {
        font-size: 30px;
    }

    .top-title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1200px) {
    .warp-mb {
        width: 980px;
    }

    .m-top {
        margin-top: 60px;
    }

    .m-btm {
        margin-bottom: 60px;
    }

    .p-top {
        padding-top: 60px;
    }

    .p-btm {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 992px) {
    body {
        padding-top: 90px !important;
    }

    .warp-mb {
        width: 750px;
    }

    .top-title {
        margin-bottom: 20px;
    }

    .top-title .h2 {
        font-size: 28px;
    }

    .m-top {
        margin-top: 50px;
    }

    .m-btm {
        margin-bottom: 50px;
    }

    .p-top {
        padding-top: 50px;
    }

    .p-btm {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-bottom: 90px !important;
    }

    .warp-mb {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .top-title .text {
        font-size: 14px;
    }

    .m-top {
        margin-top: 40px;
    }

    .m-btm {
        margin-bottom: 40px;
    }

    .p-top {
        padding-top: 40px;
    }

    .p-btm {
        padding-bottom: 40px;
    }

    .btn {
        max-width: 160px;
    }

    .btn i {
        font-size: 14px;
        padding: 0 10px;
        line-height: 40px;
    }
}

@media screen and (max-width: 500px) {
    body {
        padding-bottom: 51px !important;
    }
}

@media screen and (max-width: 480px) {
    .m-top {
        margin-top: 30px;
    }

    .m-btm {
        margin-bottom: 30px;
    }

    .p-top {
        padding-top: 30px;
    }

    .p-btm {
        padding-bottom: 30px;
    }
}

/* header  */
.zxy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.zxy-header::before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.25);
    position: absolute;
    left: 0;
    top: 40px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.zxy-header .header1 {
    padding-left: 130px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header1 .h-phone {
    float: left;
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    padding-left: 22px;
    background: url(../images/whatsapp.png) no-repeat left center;
    background-size: 17px;
}

.header1 .h-email {
    float: left;
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    padding-left: 22px;
    background: url(../images/emil.png) no-repeat left center;
    background-size: 18px;
    margin-left: 20px;
}

.header1 .more {
    float: right;
    display: none;
}

.header1 .more i {
    line-height: 41px;
    padding: 0 20px;
}

.header1 .social-media {
    float: right;
    overflow: hidden;
}

.social-media .a1 {
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    padding: 5px;
    margin-top: 5px;
    background-color: #ff5500;
    border-radius: 5px;
}

.social-media .a1+.a1 {
    margin-left: 3px;
}

.social-media .a1 img {
    display: block;
    width: 100%;
    height: auto;
}

.zxy-header.active::before {
    display: none;
}

.zxy-header.active .header1 {
    display: none;
}

.zxy-header.active {
    background-color: #0e2954;
    border-bottom: solid 1px #ff5500;
}

.header2 .logo {
    width: 110px;
    display: block;
    position: absolute;
    top: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.zxy-header.active .logo {
    width: 70px;
}

.header2 .more {
    float: right;
    margin-left: 30px;
    margin-top: 10px;
}


.menu-custom-menu-container {
    float: right;
}

.navlist>li {
    float: left;
    position: relative;
}

.navlist>li>.sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 222;
    display: block;
    visibility: hidden;
    width: 260px;
    padding: 10px 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    pointer-events: none;
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
    list-style: none;
    padding-right: 5px;
}

.navlist>li>.sub-menu>li>a {
    position: relative;
    display: block;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>a:before {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 1px;
    background: #ffae2a;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li:hover>a {
    padding-left: 20px;
}

.navlist>li>.sub-menu>li:hover>a:before {
    width: 10px;
    opacity: 1;
}

.navlist .menu-item-has-children:hover>ul.sub-menu {
    left: 0;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    pointer-events: all;
}

.navlist>li>a {
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    padding: 0 20px;
    color: #fff;
    line-height: 70px;
}

.navlist li.menu-item-has-children>a::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/jt.png) no-repeat center;
    background-size: 12px;
    transition: transform 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navlist li.menu-item-has-children:hover>a::after {
    transform: translateY(-50%) rotate(180deg);
}

.header .navlist .current-menu-item>a {
    color: #ffae2a !important;
}

/* 三级 */

.navlist>li>.sub-menu>li>.sub-menu>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
    list-style: none;
}

.navlist>li>.sub-menu>li>.sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 223;
    display: block;
    visibility: hidden;
    width: 300px;
    padding: 10px 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    pointer-events: none;
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>.sub-menu>li>a {
    position: relative;
    display: block;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>a {
    position: relative;
    display: block;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>.sub-menu>li>a::before {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 1px;
    background: #0f934a;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>a:before {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 1px;
    background: #0f934a;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    -ms-transition: all 0.5s ease;
}

.navlist>li>.sub-menu>li>.sub-menu>li:hover>a {
    padding-left: 20px;
}

.navlist>li>.sub-menu>li:hover>a {
    padding-left: 20px;
}

.navlist>li>.sub-menu>li>.sub-menu>li:hover>a::before {
    width: 5px;
    opacity: 1;
}

.navlist>li>.sub-menu>li:hover>a:before {
    width: 5px;
    opacity: 1;
}

.navlist>.menu-item-has-children:hover>ul.sub-menu {
    left: 0;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    pointer-events: all;
}

.navlist>.menu-item-has-children>.sub-menu>.menu-item-has-children:hover>ul.sub-menu {
    left: inherit;
    right: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    pointer-events: all;
}

/* 三级 */
.menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    height: auto;
    width: 40px;
    float: right;
    display: none;
}

.menu input {
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    opacity: 0;
}

.menu span {
    height: 3px;
    width: 35px;
    position: relative;
    background-color: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.2s linear;
}

.menu span:nth-of-type(1) {
    width: 20px;
    margin-right: auto;
}

.menu span:nth-of-type(2) {
    width: 40px;
}

.menu span:nth-of-type(3) {
    width: 20px;
    margin-left: auto;
}

.menu input:checked~span:nth-of-type(1) {
    transform: rotate(45deg) translate(4px, 1px);
    background-color: #ff5500;
    box-shadow: 0 0 2em 0.2em #ff5500;
}

.menu input:checked~span:nth-of-type(2) {
    transform: rotate(-45deg);
    background-color: #ff5500;
    box-shadow: 0 0 2em 0.2em #ff5500;
}

.menu input:checked~span:nth-of-type(3) {
    transform: rotate(45deg) translate(-4px, 0px);
    background-color: #ff5500;
    box-shadow: 0 0 2em 0.2em #ff5500;
}

@media screen and (max-width: 992px) {
    .zxy-header {
        background-color: #0e2954;
    }

    .header1 .h-phone,
    .header1 .h-email,
    .header1 .social-media,
    .header2 .more {
        display: none;
    }

    .header1 .more {
        display: block;
    }

    .zxy-header .header2 {
        position: relative;
    }

    .menu {
        display: flex;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .header2 .logo {
        width: 90px;
        top: -41px;
        left: -10px;
    }

    .zxy-header.active .header2 .logo {
        top: 0;
    }

    .header2 .menu-custom-menu-container {
        position: fixed !important;
        top: 90px;
        left: 0;
        z-index: 99999;
        overflow: auto;
        width: 100%;
        height: 100vh;
        background: #fff !important;
        -webkit-transition: -webkit-transform 0.3s ease-in;
        -moz-transition: -moz-transform 0.3s ease-in;
        -o-transition: -o-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-overflow-scrolling: touch;
        -ms-transform: translateX(-100%);
        padding: 0 15px;
    }

    .zxy-header.active .header2 .menu-custom-menu-container {
        top: 49px;
    }

    .header2 .menu-custom-menu-container.active {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -ms-transform: translateX(0);
    }

    .navlist {
        display: block;
        padding-bottom: 160px;
        float: none;
    }

    .navlist>li {
        float: none;
        border-bottom: 1px solid #e6ebf1;
    }

    .header2 .menu-custom-menu-container ul>li.current-menu-item>a,
    .header2 .menu-custom-menu-container ul>li:hover>a,
    .header2 .menu-custom-menu-container ul li.current-menu-parent>a {
        background: 0 0;
        color: #ffae2a !important;
    }

    .navlist li.menu-item-has-children>a::after {
        display: none;
    }

    .header2 .menu-custom-menu-container ul>li>ul.sub-menu {
        position: static;
        display: none;
        visibility: visible;
        padding: 0;
        width: 100%;
        border-top: none;
        border-top: 3px solid #ffae2a;
        border-bottom: none;
        box-shadow: none;
        opacity: 1;
        -webkit-transition: none;
        margin-left: 0;
    }

    .header2 .menu-custom-menu-container ul li.menu-item-has-children .icon-drop-down {
        position: absolute;
        top: 0;
        right: 0;
        color: #000;
        transform: none;
        background: url(../images/jt.png) no-repeat center;
        background-size: 12px;
        width: 50px;
        height: 50px;
    }

    .header2 .menu-custom-menu-container ul li.menu-item-has-children .icon-drop-down.ri-arrow-up-s-line {
        transform: rotate(180deg);
    }

    .header2 .menu-custom-menu-container ul>li.menu-item-has-children:hover>ul.sub-menu {
        display: none;
    }

    .header2 .menu-custom-menu-container ul>li>ul.sub-menu>li {
        border-bottom: 1px solid #e6ebf1;
    }

    .header2 .menu-custom-menu-container ul>li>ul.sub-menu>li>a {
        display: inline-block;
        padding: 16px;
    }

    .header2 .menu-custom-menu-container ul>li>a {
        display: inline-block;
        padding: 13px 0;
        color: #000 !important;
        line-height: 24px;
        background: 0 0 !important;
    }

    .zxy-header.active .logo {
        width: 49px;
    }

    /* 三级 */
    .navlist>li>.sub-menu>li>.sub-menu {
        position: static;
        display: none;
        visibility: visible;
        padding: 0;
        width: 100%;
        border-top: none;
        border-top: 2px solid #0f934a;
        border-bottom: none;
        box-shadow: none;
        opacity: 1;
        -webkit-transition: none;
        margin-left: 0;
    }

    .navlist>li>.sub-menu>li>.sub-menu>li>a {
        padding: 12px;
    }

    /* 三级 */
}

/* header  */

.banner {
    overflow: hidden;
    height: 100vh;
    position: relative;
    width: 100%;
}

.banner:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.banner video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .intro_box {
    padding-top: 35vh;
    position: relative;
    z-index: 2;
}

.banner .intro_box .intro_title {
    color: #fcfcfc;
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 0;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    font-family: "pingfang-h";
    text-transform: uppercase;
}

.banner .intro_box .intro_title span {
    display: inline-block;
    vertical-align: middle;
    font-family: "pingfang-h";
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.banner .intro_box .intro_title span+span {
    margin-left: 25px;
}

.banner .intro_box .intro_en {
    font-size: 20px;
    line-height: 24px;
    margin-top: 7px;
    letter-spacing: 1px;
    color: #fcfcfc;
    opacity: 0.6;
    font-family: "pingfang-m";
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.banner .intro_box .intro_desc {
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin-top: 23px;
    letter-spacing: 2px;
    color: #fcfcfc;
    font-family: "pingfang-b";
    text-transform: capitalize;
}

.banner .intro_box .intro_desc span {
    display: inline-block;
    vertical-align: middle;
}

.banner .intro_box .intro_desc span+span {
    margin-left: 16px;
}

@media screen and (max-width: 1200px) {
    .banner .intro_box .intro_title {
        font-size: 40px;
        line-height: 1.4;
    }

    .banner .intro_box .intro_desc {
        font-size: 20px;
        line-height: 1.4;
        margin-top: 18px;
    }
}

@media screen and (max-width: 992px) {
    .banner .intro_box .intro_title {
        font-size: 32px;
    }

    .banner .intro_box .intro_desc {
        font-size: 18px;
        margin-top: 15px;
    }

    .banner .intro_box .intro_title span+span {
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .banner .intro_box .intro_title {
        font-size: 26px;
    }

    .banner .intro_box .intro_desc {
        font-size: 16px;
        margin-top: 12px;
    }

    .banner .intro_box .intro_title span+span {
        margin-left: 10px;
    }
}

@media screen and (max-width: 640px) {
    .banner {
        height: 60vh;
    }

    .banner .intro_box {
        text-align: center;
        padding-top: 15vh;
    }

    .banner .intro_box .intro_title {
        font-size: 24px;
    }
}

/* index-about */
.index-about {
    position: relative;
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    flex-direction: row-reverse;
}

.index-about .about-fl {
    width: 50%;
    position: relative;
    padding-top: 60px;
}

.index-about .about-fl::before {
    content: "";
    width: 55%;
    height: 95%;
    background-color: #f3f3f3;
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-fl .text-box {
    width: 88%;
    position: relative;
}

.text-box .img {
    display: block;
    width: 78%;
    height: auto;
}

.text-box .text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.8;
    padding-left: 90px;
    padding-bottom: 60px;
    position: relative;
    text-align: justify;
}

.text-box .text::before {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #999;
    position: absolute;
    left: 0;
    top: 12px;
}

.index-about .about-fr {
    width: 50%;
}

.about-fr img {
    display: block;
    width: 100%;
    height: auto;
}

.elementor-innerbox {
    position: relative;
    z-index: 6;
    margin-top: -60px;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
}

.elementor-innerbox .innerbox-item {
    text-align: center;
}

.innerbox-item .numb {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    display: block;
    position: relative;
}

.innerbox-item .numb::after {
    content: "+";
    font-size: 15px;
    margin-left: 3px;
    font-weight: 600;
    font-family: "Microsoft YaHei";
}

.innerbox-item .one.numb::after {
    content: "m²+";
}

.innerbox-item .text {
    color: #4a4a4a;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

@media screen and (max-width: 1400px) {
    .text-box .text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.8;
        padding-left: 70px;
    }

    .text-box .text::before {
        width: 60px;
    }

    .about-fl .text-box {
        width: 94%;
    }

    .index-about {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .index-about {
        padding-left: 20px;
        padding-right: 20px;
    }

    .index-about .about-fl::before {
        height: 100%;
        width: 60%;
    }

    .index-about .about-fl {
        padding-top: 10px;
    }

    .text-box .text {
        font-size: 14px;
        padding-left: 0px;
        padding-bottom: 30px;
    }

    .text-box .text::before {
        width: 0;
        display: none;
    }

    .elementor-innerbox {
        margin-top: -30px;
        padding: 10px 25px;
    }

    .innerbox-item .numb {
        font-size: 28px;
    }

    .innerbox-item .numb::after {
        font-size: 12px;
    }

    .innerbox-item .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .index-about {
        padding-left: 5%;
        padding-right: 5%;
    }

    .index-about {
        display: block;
        overflow: hidden;
    }

    .index-about .about-fr {
        width: 100%;
    }

    .index-about .about-fl {
        padding-top: 0;
        width: 100%;
        margin-top: 30px;
    }

    .about-fl .text-box {
        width: 100%;
        padding-top: 30px;
        padding-right: 30px;
        padding-bottom: 40px;
    }

    .text-box .text {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .index-about {
        padding-left: 20px;
        padding-right: 20px;
    }

    .elementor-innerbox {
        flex-wrap: wrap;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -10px;
        padding: 20px 10px;
    }

    .elementor-innerbox .innerbox-item {
        width: 33.333333%;
    }

    .elementor-innerbox .innerbox-item:nth-of-type(4),
    .elementor-innerbox .innerbox-item:nth-of-type(5) {
        width: 50%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 420px) {
    .about-fl .text-box {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .text-box .img {
        width: 90%;
    }

    .text-box .text {
        margin-top: 10px;
    }

    .innerbox-item .numb {
        font-size: 22px;
    }

    .innerbox-item .text {
        font-size: 12px;
    }

    .elementor-innerbox .innerbox-item {
        width: 50%;
    }

    .elementor-innerbox .innerbox-item:nth-of-type(4),
    .elementor-innerbox .innerbox-item:nth-of-type(3) {
        margin-top: 20px;
    }

    .elementor-innerbox .innerbox-item:nth-of-type(5) {
        width: 100%;
        margin-top: 20px;
    }
}

/* index-cp */
.index-cp .carg-box {
    background-image: -webkit-repeating-radial-gradient(center center,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3) 1px,
            transparent 1px,
            transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3) 1px,
            transparent 1px,
            transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3) 1px,
            transparent 1px,
            transparent 100%);
    background-image: -o-repeating-radial-gradient(center center,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3) 1px,
            transparent 1px,
            transparent 100%);
    background-image: repeating-radial-gradient(center center,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3) 1px,
            transparent 1px,
            transparent 100%);
    background-size: 3px 3px;
    display: flex;
    width: 600px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 5px;
}

.carg-box .carg-item.active {
    background-color: #ff5500;
    color: #fff;
}

.carg-box .carg-item {
    display: inline-block;
    font-size: 17px;
    line-height: 50px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 20px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
}

.index-cp .cp-box {
    overflow: hidden;
    margin-top: 30px;
    padding-bottom: 20px;
}

.cp-box .cp-swiper {
    display: none;
}

.cp-box .cp-swiper.img-swiper {
    display: block;
}

.cp-swiper .img {
    display: block;
}

.cp-swiper .img img {
    display: block;
    width: 100%;
    height: auto;
}

.cp-swiper .cp-text {
    background-color: #fff;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    margin-top: -50px;
    padding: 20px;
    text-align: center;
}

.cp-swiper .cp-text h3 a {
    display: block;
    font-size: 20px;
    color: #333;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-swiper .cp-text .btn-more {
    display: inline-block;
    color: #ff5500;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .cp-swiper .cp-text h3 a {
        font-size: 18px;
    }

    .carg-box .carg-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .index-cp .carg-box {
        width: 100%;
    }

    .carg-box .carg-item {
        font-size: 14px;
        padding: 0 10px;
        line-height: 40px;
    }
}

@media screen and (max-width: 400px) {
    .carg-box .carg-item {
        font-size: 12px;
        padding: 0 5px;
    }
}

/* index-cp */


/* index-cp1 */

.index-prods .cp-imglist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-prods .cp-imglist li {
    width: 32%;
    margin-top: 20px;
}

.index-prods .cp-imglist li .img {
    display: block;
    overflow: hidden;
}

.index-prods .cp-imglist li .img img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

.index-prods .cp-imglist li:hover .img img {
    transform: scale(1.1);
}

.index-prods .cp-imglist li .pro-text {
    background-color: #fff;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    margin-top: -50px;
    padding: 20px;
    text-align: center;
}

.index-prods .cp-imglist li .pro-text h3 a {
    display: block;
    font-size: 20px;
    color: #333;
    text-transform: capitalize;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-prods .cp-imglist li:hover .pro-text h3 a {
    color: #ff5500;
}

.index-prods .cp-imglist li .pro-text .btn-more {
    display: inline-block;
    color: #ff5500;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .index-prods .cp-imglist li .pro-text h3 a {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .index-prods .cp-imglist li {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .index-prods .cp-imglist li .pro-text {
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
        margin-top: -30px;
        padding: 15px 5px;
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    .index-prods .cp-imglist li {
        width: 100%;
    }
}

/* index-cp1 */

/* index-home3 */

.home4-con {
    margin-top: 60px;
    width: 100%;
    height: 930px;
    position: relative;
    background: #dcdfe4;
    overflow: hidden;
}

.home4-pic {
    font-size: 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale3d(0.9, 0.9, 1);
    transition: 1.5s ease-in-out;
}

.home4-pic img {
    width: 100%;
    height: auto;
}

.home4-single-text {
    color: #ff5657;
    font-size: 16px;
    position: absolute;
    opacity: 0;
    transition: all 1.5s 0.5s;
}

.home4-single-text.active {
    opacity: 1;
}

.home4-single-text1.active {
    right: 51%;
    top: 43%;
}

.home4-single-text2.active {
    right: 50%;
    top: 50.5%;
}

.home4-single-text3.active {
    right: 51.5%;
    top: 53%;
}

.home4-single-text4.active {
    right: 54%;
    top: 53%;
}

.home4-single-text5.active {
    right: 52%;
    top: 42%;
}

.home4-single-text6.active {
    right: 52.5%;
    top: 53%;
}

.home4-single-text7.active {
    right: 50%;
    top: 47%;
}

.home4-single-text8.active {
    left: 43%;
    top: 49%;
}

.home4-single-text9.active {
    left: 47%;
    top: 53%;
}

.home4-single-text10.active {
    left: 46%;
    top: 46.5%;
}

.home4-single-text11.active {
    left: 44%;
    top: 47%;
}

.home4-con-amp {
    display: none;
}

.home4-safe {
    width: calc(100% - 300px);
    height: 68%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home4-left {
    height: 100%;
    overflow-y: auto;
}

.home4-left::-webkit-scrollbar {
    width: 0;
}

.home4-leftSingle {
    padding: 18px 0;
    width: 205px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.home4-right {
    box-sizing: border-box;
    width: 415px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    opacity: 0;
    transition: all 1.5s;
}

.home4-leftSingle {
    padding: 18px 0;
    width: 205px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.home4-rightSingle {
    display: none;
}

.home4-rightSingle .imgs {
    display: block;
    margin-bottom: 10px;
}

.home4-rightSingle .imgs img {
    display: block;
    width: 100%;
    height: auto;
}

.home4-rightSingle h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: normal;
    color: #333333;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
}

.home4-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
    margin-bottom: 15px;
}
.home4-text strong{
        display: block;
}
.home4-btn {
    width: 160px;
}

.home4-btn a {
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #333333;
    border-radius: 50px;
    border: solid 1px #cfcfcf;
    line-height: 20px;
    opacity: 0.56;
}

.home4-rightSingle.active {
    display: block;
}

.home4-leftSingle.active {
    color: #ffffff;
    background-image: linear-gradient(to right, #ff5657, #ffa904 100%);
}

@media screen and (max-width: 1800px) {
    .home4-safe {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 1440px) {
    .home4-leftSingle {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 800px) {
    .home4-leftSingle {
        padding: 12px 0;
        margin-bottom: 15px;
    }

    .home4-con {
        display: none;
    }

    .home4-con-amp {
        display: block;
        padding: 0 10px;
        margin-top: 25px;
    }

    .home4-amp-pic {
        width: 100%;
        font-size: 0;
    }

    .home4-amp-pic img {
        width: 100%;
    }

    .home4-amp-title {
        margin: 25px auto 5px auto;
        display: flex;
        flex-wrap: wrap;
    }

    .home4-amp-titleSingle {
        padding: 6px 20px;
        margin: 0 15px 15px 0;
        font-size: 13px;
        color: #333333;
        border-radius: 20px;
        border: solid 1px #cfcfcf;
    }

    .home4-amp-titleSingle.active {
        background: #ff550a;
        border: none;
        color: #ffffff;
    }

    .home4-amp-conSingle {
        display: none;
        padding: 30px 15px;
        box-shadow: 0px 3px 30px 0px rgb(0 0 0 / 8%);
    }

    .home4-amp-conSingle .home4-text {
        margin: 0 0 25px 0;
    }

    .home4-amp-conSingle.active {
        display: block;
    }
}

/* index-home3 */
.index-feedback{
      background-color: #eeeeee;
}
.index-feedback .img img{
     display: block;
       width: 100%;
  height: auto;
}
/* zxy-mtlbox */
.zxy-mtlbox {
    padding-left: 5%;
    padding-right: 5%;
}

.zxy-mtlbox.color0 {
    background-color: #2292e4;
}

.zxy-mtlbox.color1 {
    background-color: #233f93;
}

.zxy-mtlbox.color2 {
    background-color: #bf8648;
}

.zxy-mtlbox.color3 {
    background-color: #897433;
}

.zxy-mtlbox.color4 {
    background-color: #317cb5;
}

.zxy-mtlbox.color5 {
    background-color: #459862;
}

.zxy-mtlbox.color6 {
    background-color: #1085ba;
}

.zxy-mtlbox.color7 {
    background-color: #762e20;
}

.zxy-mtlbox .mtl-imgs {
    width: 50%;
    float: left;
    position: relative;
}

.mtl-imgs .imgs-item.active {
    display: block;
}

.mtl-imgs .imgs-item {
    display: none;
}

.mtl-imgs .text {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.mtl-imgs .text .h3 {
    font-size: 26px;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mtl-imgs .text .more {
    color: #fff;
    font-size: 14px;
    display: block;
    width: 170px;
    line-height: 28px;
    text-align: center;
    background-color: #ff7126;
    border-radius: 40px;
}

.zxy-mtlbox .mtl-text {
    width: 35%;
    float: right;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    margin-top: 100px;
}

.mtl-text .h3 {
    font-size: 26px;
    color: #00b4c5;
    text-transform: capitalize;
    line-height: 1.3;
}

.mtl-text .mtl-listbox {
    margin-top: 20px;
}

.mtl-text dl {
    overflow: hidden;
    margin-top: 15px;
}

.mtl-text dl dt {
    color: #00b4c5;
    font-size: 18px;
    line-height: 1.3;
    width: 86px;
    text-transform: uppercase;
    float: left;
    margin-top: 18px;
}

.mtl-text .tern {
    width: auto;
    width: 126px;
    height: 60px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.mtl-text .tern.active::before {
    content: "";
    width: auto;
    height: auto;
    border: solid 2px red;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
}

.mtl-text dl dd {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 100px);
    float: right;
    justify-content: flex-start;
}

.mtl-text dl .tern.cheng {
    background-color: #ff7126;
}

.mtl-text dl .tern.huang {
    background-color: #ffda3b;
}

.mtl-text dl .tern.lv {
    background-color: #34c0ff;
}

.mtl-text dl .tern.qing {
    background-color: #c2fba1;
}

.mtl-text dl .tern.lan {
    background-color: #1000dc;
}

.mtl-text dl .tern.qkl {
    background-color: #a84d3b;
}

/* zxy-mtlbox */

/* about us */

/* about-zxyp1 */
.about-zxyp1 {
    background: #faf9f9 url(../images/about-pattern-bg.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.about-zxyp1 .zxyp1-img {
    width: 40%;
    float: left;
    position: relative;
}

.about-zxyp1 .zxyp1-img::before {
    content: "";
    background-color: transparent;
    border: 50px solid #ff5500;
    border-radius: 50%;
    height: 300px;
    left: -30%;
    position: absolute;
    top: 20%;
    width: 300px;
    -webkit-animation: bounce-x 10s infinite linear;
    animation: bounce-x 10s infinite linear;
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.zxyp1-img .img {
    padding-right: 60px;
    position: relative;
}

.zxyp1-img .img::before {
    content: "";
    width: 15px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ff5500;
}

.zxyp1-img .img img {
    display: block;
    width: 100%;
    height: auto;
}

.zxyp1-img .img .img1 {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.zxyp1-img .img .img2 {
    max-width: 320px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: solid 15px #fff;
    border-left: solid 15px #fff;
    z-index: 4;
    overflow: hidden;
}

.zxyp1-img .img .img1:after,
.zxyp1-img .img .img2:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.zxyp1-img .img .img1:hover::after,
.zxyp1-img .img .img2:hover::after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.about-zxyp1 .zxyp1-text {
    width: 56%;
    float: right;
}

.zxyp1-text .sub-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.6px;
    position: relative;
    text-transform: uppercase;
    color: #ff5500;
    display: block;
}

.zxyp1-text .ht {
    font-size: 40px;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 30px;
    color: #0f2c49;
    text-transform: capitalize;
}

.zxyp1-text .ht span {
    color: #ff5500;
}

.zxyp1-text .text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.zxyp1-text .list {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.zxyp1-text .list li {
    width: 50%;
    text-align: center;
    margin-bottom: 30px;
}

.zxyp1-text .list .numb {
    font-size: 36px;
    display: block;
    font-weight: bold;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #ff5500;
}

.zxyp1-text .list .numb::after {
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-left: 3px;
}

.zxyp1-text .list .l1 .numb::after {
    content: "Year+";
}

.zxyp1-text .list .l2 .numb::after {
    content: "m²+";
}

.zxyp1-text .list .pt {
    font-size: 16px;
    color: #444;
    text-transform: capitalize;
    font-weight: 500;
}

.zxyp1-text .btm-cl {
    margin-top: 30px;
}

.btm-cl .more {
    float: left;
}

.btm-cl .iptom {
    float: left;
    margin-left: 30px;
    padding-left: 60px;
    position: relative;
}

.btm-cl .iptom::before {
    content: "";
    width: 48px;
    height: 48px;
    background: #f3f3f9 url(../images/iphone.png) no-repeat center;
    background-size: 25px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btm-cl .iptom .t1 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6d8181;
    line-height: 1.2;
    margin-bottom: 10px;
}

.btm-cl .iptom .a1 {
    font-size: 20px;
    font-weight: 700;
    display: block;
    color: #0f2c49;
    line-height: 1.2;
}

@media screen and (max-width: 1500px) {
    .zxyp1-img .img {
        padding-right: 40px;
    }

    .zxyp1-text .ht {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .zxyp1-text .list {
        margin-top: 25px;
    }

    .zxyp1-text .list .numb {
        font-size: 30px;
    }

    .zxyp1-text .list .pt {
        font-size: 14px;
    }

    .zxyp1-text .list li {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .about-zxyp1 .zxyp1-img::before {
        width: 200px;
        height: 200px;
    }

    .about-zxyp1 .zxyp1-img {
        width: 47%;
    }

    .zxyp1-img .img .img2 {
        max-width: 220px;
        border-top: solid 10px #fff;
        border-left: solid 10px #fff;
    }

    .about-zxyp1 .zxyp1-text {
        width: 50%;
    }

    .zxyp1-text .sub-title {
        font-size: 14px;
    }

    .zxyp1-text .text {
        font-size: 14px;
    }

    .zxyp1-text .ht {
        font-size: 30px;
    }

    .zxyp1-text .ht {
        margin-bottom: 15px;
    }

    .zxyp1-text .list li {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 992px) {
    .about-zxyp1 .zxyp1-img {
        display: none;
        float: none;
    }

    .about-zxyp1 .zxyp1-text {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 480px) {
    .about-zxyp1 .zxyp1-img {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .about-zxyp1 .zxyp1-img::before {
        border: 40px solid #ff5500;
    }

    .zxyp1-img .img::before {
        width: 8px;
    }

    .zxyp1-img .img {
        padding-right: 30px;
    }

    .zxyp1-img .img .img2 {
        max-width: 180px;
        border-top: solid 5px #fff;
        border-left: solid 5px #fff;
    }

    .zxyp1-text .ht {
        font-size: 24px;
    }

    .zxyp1-text .list .numb {
        font-size: 24px;
    }

    .zxyp1-text .list .numb::after {
        font-size: 12px;
    }

    .zxyp1-text .list .pt {
        font-size: 12px;
    }

    .btm-cl .iptom {
        margin-left: 10px;
        padding-left: 42px;
    }

    .btm-cl .iptom .t1 {
        margin-bottom: 8px;
    }

    .btm-cl .iptom .a1 {
        font-size: 12px;
    }

    .btm-cl .iptom::before {
        width: 38px;
        height: 38px;
        background-size: 20px;
    }
}

/* about-zxyp1 */
/* about-factory */
.about-factory {
    overflow: hidden;
}

.about-factory .factory-swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 15px;
}

.factory-swiper .factory-next,
.factory-swiper .factory-prev {
    background-color: #ff5500;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #fff;
}

.factory-swiper .factory-next {
    right: 0;
}

.factory-swiper .factory-prev {
    left: 0;
}

.factory-swiper .swiper-slide {
    box-shadow: 0 5px 10px 0 rgba(50, 65, 141, 0.07);
}

.factory-swiper .swiper-slide .f-box {
    padding: 20px 15px;
}

.factory-swiper .f-box .h3 {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.factory-swiper .f-box .text {
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.about-factory .more {
    margin: 30px auto 0;
}

/* about-factory */

/* about-process */
.about-process {
    background: url(../images/pc_event_bg.jpg) no-repeat bottom center;
    background-size: cover;
    position: relative;
}

.about-process .bt {
    font-size: 10em;
    color: #f4f4f6;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-process .process-num {
    width: 20%;
    float: left;
    height: 400px;
    overflow: hidden;
    border-left: solid 1px #dadada;
    border-right: solid 1px #dadada;
}

.process-num .num-swiper {
    height: 100%;
    height: 80px;
    margin-top: 160px;
}

.process-num .swiper-slide {
    height: 80px !important;
    line-height: 80px;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.2;
    text-align: center;
    position: relative;
}

.process-num .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    color: #ff5500;
    font-size: 30px;
    font-weight: 600;
}

.process-num .swiper-slide.swiper-slide-thumb-active::before {
    content: "";
    width: 44px;
    height: 10px;
    background: url(../images/event_ico_03.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.process-num .swiper-slide.swiper-slide-thumb-active::after {
    content: "";
    width: 44px;
    height: 10px;
    background: url(../images/event_ico_03.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.about-process .process-text {
    width: 76%;
    float: right;
    overflow: hidden;
}

.about-process .process-text .swiper-slide {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.process-text .swiper-slide .img {
    width: 62%;
}

.process-text .swiper-slide .img img {
    display: block;
    width: 100%;
    height: auto;
}

.process-text .swiper-slide .text {
    width: 35%;
}

.process-text .text .h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.process-text .text .pt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media screen and (max-width: 1500px) {
    .about-process .process-num {
        height: 340px;
        overflow: hidden;
    }

    .process-num .num-swiper {
        height: 100%;
        height: 68px;
        margin-top: 136px;
    }

    .process-num .swiper-slide {
        height: 68px !important;
        line-height: 68px;
    }

    .process-num .swiper-slide.swiper-slide-thumb-active {
        font-size: 26px;
    }

    .about-process .bt {
        font-size: 9em;
    }
}

@media screen and (max-width: 1200px) {
    .about-process .process-num {
        height: 270px;
    }

    .process-num .num-swiper {
        height: 100%;
        height: 54px;
        margin-top: 108px;
    }

    .process-num .swiper-slide {
        height: 54px !important;
        line-height: 54px;
    }

    .process-num .swiper-slide.swiper-slide-thumb-active {
        font-size: 26px;
    }

    .about-process .bt {
        font-size: 8em;
    }

    .process-text .text .pt {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .about-process .process-num {
        height: 162px;
        width: 100%;
        float: none;
    }

    .process-num .num-swiper {
        margin-top: 54px;
    }

    .process-num .swiper-slide.swiper-slide-thumb-active {
        /* background-color: #eeeeee; */
    }

    .about-process .process-text {
        width: 100%;
        float: none;
        margin-top: 30px;
    }

    .process-text .text .h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .about-process .bt {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 60px;
    }
}

@media screen and (max-width: 640px) {
    .about-process .process-text .swiper-slide {
        flex-wrap: wrap;
    }

    .process-text .swiper-slide .img,
    .process-text .swiper-slide .text {
        width: 100%;
    }

    .process-text .swiper-slide .text {
        margin-top: 20px;
    }

    .process-text .text .h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-process .bt {
        font-size: 5em;
        top: 72px;
    }

    .process-text .text .h3 {
        font-size: 18px;
    }
}

/* about-process */

/* player-join */
.player-join {
    background: url(../images/palyer-join-banner.jpg) no-repeat center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.player-join::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.player-join .join-box {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.player-join .h2 {
    font-size: 38px;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 20px;
}

.player-join .text {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.player-join .more {
    margin-left: auto;
    margin-right: auto;
}

.prot-list {
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

.prot-list ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.prot-list .img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.prot-list h4 {
    font-size: 20px;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 1.3;
    margin-top: 20px;
    color: #ff5500;
}

@media screen and (max-width: 1500px) {
    .player-join .h2 {
        font-size: 34px;
    }
}

@media screen and (max-width: 1200px) {
    .player-join .h2 {
        font-size: 30px;
    }

    .prot-list h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .player-join .h2 {
        font-size: 30px;
    }

    .prot-list {
        margin-top: -80px;
    }

    .prot-list ul {
        flex-wrap: wrap;
    }

    .prot-list ul li {
        width: 50%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .player-join .h2 {
        font-size: 26px;
    }

    .player-join::before {
        clip-path: none;
    }

    .prot-list .img {
        width: 100px;
        height: 100px;
    }
}

/* player-join */

/* zxy-team */
.zxy-team {
    overflow: hidden;
}

.top-team {
    border-bottom: 1px solid #afb3b8;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.top-team .h2 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.3;
    float: left;
}

.top-team .tab-swiper {
    float: right;
    width: 60%;
    overflow: hidden;
}

.tab-swiper .swiper-slide {
    font-size: 14px;
    color: #111;
    text-transform: capitalize;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    cursor: pointer;
}

.tab-swiper .swiper-slide.swiper-slide-thumb-active {
    background-color: #ff5500;
    color: #fff;
}

.btm-team {
    position: relative;
}

.btm-team .img {
    width: 45%;
    float: left;
    position: relative;
}

.btm-team .img::before {
    content: "";
    width: 50px;
    height: 50px;
    background: rgba(255, 85, 0, 0.7);
    position: absolute;
    right: -25px;
    top: 50%;
    border-radius: 50%;
    margin-top: -25px;
    z-index: 3;
}

.btm-team .img::after {
    content: "";
    width: 200px;
    height: 200px;
    background: rgba(255, 85, 0, 0.1);
    position: absolute;
    right: -100px;
    top: 50%;
    border-radius: 50%;
    margin-top: -100px;
    z-index: 2;
}

.btm-team .text {
    width: 45%;
    float: right;
}

.btm-team .text h3 {
    position: relative;
    font-size: 26px;
    text-transform: capitalize;
    color: #ff5500;
    line-height: 1.1;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #a8a7a7;
}

.btm-team .text h3::before {
    content: "";
    width: 29px;
    height: 29px;
    background: url(../images/prot.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
}

.btm-team .text .content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btm-team .team-buttn {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 45%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.team-buttn .more {
    border-radius: 50px;
}

.team-buttn .team-prev,
.team-buttn .team-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #a8a7a7;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #a8a7a7;
    cursor: pointer;
}

.team-buttn .team-prev:hover,
.team-buttn .team-next:hover {
    background-color: #ff5500;
    border: solid 1px #ff5500;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .btm-team .text .content {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .btm-team .img {
        width: 50%;
    }

    .btm-team .text h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .btm-team .img::before {
        width: 30px;
        height: 30px;
        right: -15px;
        margin-top: -15px;
    }

    .btm-team .img::after {
        width: 100px;
        height: 100px;
        right: -50px;
        margin-top: -50px;
    }

    .btm-team .text h3::before {
        width: 20px;
        height: 20px;
    }

    .team-buttn .team-prev,
    .team-buttn .team-next {
        width: 30px;
        height: 30px;
        line-height: 26px;
        font-size: 16px;
    }

    .team-buttn .more i {
        padding: 0 20px;
        line-height: 38px;
    }

    .top-team .h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    .btm-team .text {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .btm-team .text {
        padding-bottom: 50px;
    }

    .btm-team .img {
        width: 100%;
        float: none;
    }

    .btm-team .text {
        width: 100%;
        float: none;
        margin-top: 30px;
    }

    .btm-team .team-buttn {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .top-team {
        /* */
        border-bottom: none;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .top-team .h2 {
        font-size: 26px;
        float: none;
        border-bottom: 1px solid #afb3b8;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .top-team .tab-swiper {
        float: none;
        width: 100%;
    }

    .btm-team .img::before,
    .btm-team .img::after {
        display: none;
    }
}

/* zxy-team */

/* customer-box */
.customer-box {
    background: url(../images/customer-bg.jpg) no-repeat center;
    background-size: cover;
}

.customer-box .customer-onle {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.customer-onle .customer-text {
    width: 38%;
}

.customer-text .tit {
    color: #ff5500;
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 5px;
}

.customer-text .h2 {
    font-size: 38px;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.customer-text .text {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.customer-text .more {
    border-radius: 5px;
}

.customer-onle .customer-img {
    width: 45%;
}

.customer-box .customer-img ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.customer-img li {
    width: 48%;
    position: relative;
    text-align: center;
    max-width: 270px;
    padding-top: 30px;
}

.customer-img li::before {
    content: "";
    width: 100%;
    height: auto;
    border-radius: 270px 270px 5px 5px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 30px;
}

.customer-img li .img {
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.customer-img li.l1 {
    margin-bottom: 50px;
}

.customer-img li .tit {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: -50px;
    background-color: #fff;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    z-index: 2;
}

.customer-img li .tit .p1 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.customer-img li .tit .p2 {
    font-size: 16px;
    text-transform: capitalize;
}

@media screen and (max-width: 1500px) {
    .customer-onle .customer-img {
        width: 55%;
    }

    .customer-text .h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 992px) {
    .customer-text .h2 {
        font-size: 30px;
    }

    .customer-text .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .customer-text .h2 {
        font-size: 26px;
    }

    .customer-box .customer-onle {
        flex-wrap: wrap;
    }

    .customer-onle .customer-text {
        width: 100%;
        text-align: center;
    }

    .customer-onle .customer-img {
        width: 100%;
        margin-top: 20px;
    }

    .customer-text .more {
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .customer-box .customer-img ul {
        justify-content: center;
    }

    .customer-img li {
        width: 100%;
    }
}

/* customer-box */
/* certif-about */
.certif-about {
    position: relative;
    background: url(../images/certif-bg.jpg) no-repeat center;
    background-size: contain;
}

.certif-about::before {
    content: "";
    width: 100%;
    height: 20%;
    background-color: #dfdfdf;
    position: absolute;
    left: 0;
    bottom: 0;
}

.certif-about .warp-mb {
    position: relative;
}

.certif-about .warp-mb::after {
    content: "";
    width: 84px;
    height: 93px;
    background: url(../images/zhang.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: -70px;
    bottom: -8px;
    z-index: 2;
}

.certif-about .certif-swiper {
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 768px) {
    .certif-about .warp-mb::after {
        left: 0px;
        width: 60px;
        height: 65px;
    }
}

/* certif-about */

/* chose-about */

.chose-about {
    background: url(../images/choose-bg.jpg) no-repeat center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.chose-about::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.chose-about .warp-mb {
    position: relative;
    z-index: 2;
}

.chose-about .top-title .h2,
.chose-about .top-title .text {
    color: #fff;
}

.chose-about .more {
    margin: 30px auto 0;
}

.provider-list {
    position: relative;
}

.provider-list::before {
    content: "";
    width: 90%;
    height: 220px;
    background: url(../images/bg_shape_03.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 150px;
    top: -10px;
}

.provider-list li {
    width: 25%;
    float: left;
    text-align: center;
    padding: 0 40px;
}

.provider-list li .img {
    display: block;
    width: 120px;
    position: relative;
    z-index: 2;
    margin: 0 auto 35px;
}

.provider-list li:nth-of-type(2n) {
    margin-top: 70px;
}

.provider-list li .text {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 1500px) {
    .provider-list::before {
        width: 92%;
        height: 220px;
        left: 130px;
        top: 0px;
    }

    .provider-list li .img {
        margin: 0 auto 15px;
    }
}

@media screen and (max-width: 1200px) {
    .provider-list::before {
        display: none;
    }

    .provider-list li:nth-of-type(2n) {
        margin-top: 0px;
    }

    .provider-list li {
        padding: 0 5px;
    }

    .provider-list li .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .chose-about::before {
        clip-path: none;
    }

    .provider-list li {
        width: 50%;
        margin-top: 20px !important;
    }

    .provider-list li .img {
        width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .provider-list li {
        width: 100%;
    }
}

/* provider-list */

/* review-box */
.review-box .review-swiper {
    overflow: hidden;
}

.review-box .swiper-slide {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
}

.review-box .swiper-slide .text {
    font-size: 14px;
    text-align: center;
    color: #555;
}

.review-box .swiper-slide .img {
    display: block;
    width: 100px;
    margin: 20px auto;
}

.review-box .swiper-slide h3 {
    font-size: 18px;
    text-transform: capitalize;
    color: #222;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .review-box .swiper-slide {
        padding: 20px 10px;
    }
}

/* review-box */

/* back-about */

.back-about .imgs {
    display: block;
}

.back-about .imgs img {
    display: block;
    width: 100%;
    height: auto;
}

.back-about .tit {
    font-size: 16px;
    color: #ff5500;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {
    .back-about .tit {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* back-about */

/* contact-box */
/*contact-top*/
.guoqi-list .h3 {
    text-align: center;
    margin-bottom: 30px;
}

.guoqi-list .gq-ul {
    display: flex;
    justify-content: space-between;
}

.guoqi-list li {
    width: 24%;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 30px;
    position: relative;
}

.guoqi-list li::before {
    content: "";
    width: 100%;
    height: auto;
    background-color: #f7f7f7;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: all 0.3s;
}

.guoqi-list li:hover::before {
    top: 59px;
}

.guoqi-list li .icon {
    width: 78px;
    height: 78px;
    display: block;
    border-radius: 50%;
    border: solid 3px #fff;
    margin: 0 auto 15px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.guoqi-list li .add {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.guoqi-list li .phone {
    color: #1a3895;
    display: block;
    margin-top: 10px;
    font-size: 16px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.guoqi-list li .phone:hover {
    color: #ff5500;
}

.guoqi-list li:hover .icon {
    border: solid 3px #ff5500;
}

@media screen and (max-width: 992px) {
    .guoqi-list .gq-ul {
        flex-wrap: wrap;
    }

    .guoqi-list li {
        width: 49%;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .btmbox-text::before {
        display: none;
    }

    .contact-btmbox .top-list {
        flex-wrap: wrap;
    }

    .contact-btmbox .top-list li {
        width: 50%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    .guoqi-list li {
        width: 100%;
    }

    .contact-btmbox .top-list li .tit {
        font-size: 14px;
    }

    .contact-btmbox .top-list li .text {
        font-size: 14px;
    }
}

.contact-box {
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: "";
    width: 460px;
    height: 460px;
    background: url(../images/testimonial-map.png) no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contact-box .contact-fl {
    width: 44.5%;
    float: left;
}

.contact-fl .bt {
    font-size: 28px;
    color: #111;
    display: block;
    text-transform: capitalize;
    line-height: 1.3;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: solid 2px #ddd;
}

.contact-fl .bt::before {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #fd5d14;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.contact-fl .add {
    font-size: 16px;
    line-height: 40px;
    color: #222;
    padding-left: 22px;
    background: url(../images/footer-add.png) no-repeat left center;
    background-size: 18px;
}

.contact-fl .whatapp a {
    font-size: 16px;
    display: block;
    line-height: 40px;
    color: #222;
    padding-left: 22px;
    background: url(../images/whatsapp.png) no-repeat left center;
    background-size: 16px;
}

.contact-fl .emil a {
    font-size: 16px;
    display: block;
    line-height: 40px;
    color: #222;
    padding-left: 22px;
    background: url(../images/emil.png) no-repeat left center;
    background-size: 16px;
}

.contact-fl .mapbox {
    margin-top: 15px;
}

.contact-box .contact-fr {
    width: 52%;
    float: right;
}

.contact-fr .msg-frombox .msg-tarea textarea {
    height: 150px;
    background-color: #f1f1f1;
    border: solid 1px #ddd;
}

.contact-fr .msg-frombox .from-clearfix li .wpcf7-form-control-wrap input {
    background-color: #f1f1f1;
    border: solid 1px #ddd;
}

.msg-frombox .tit {
    font-size: 24px;
    text-transform: capitalize;
    color: #111;
    display: block;
    line-height: 1.3;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: solid 2px #ddd;
    position: relative;
    padding-top: 0;
    margin-top: 0;
    font-weight: 600;
}

.msg-frombox .tit::before {
    content: "";
    width: 110px;
    height: 2px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.msg-frombox .from-clearfix {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.msg-frombox .from-clearfix li {
    width: 48%;
    position: relative;
    padding-bottom: 25px;
}

.msg-frombox .from-clearfix li p {
    position: relative;
    margin-bottom: 0;
}

.msg-frombox .from-clearfix li i.awb-form-icon {
    position: absolute;
    left: 10px;
    top: 0;
    line-height: 42px;
    z-index: 1;
}

.msg-frombox .from-clearfix li.msg-pro,
.msg-frombox .from-clearfix li.msg-tarea {
    width: 100%;
}

.msg-frombox .from-clearfix li.msg-tarea textarea {
    display: block;
    width: 100%;
}

.msg-frombox .from-clearfix li .wpcf7-form-control-wrap {
    display: block;
}

.msg-frombox .from-clearfix li .wpcf7-form-control-wrap input {
    display: block;
    border: none;
    font-size: 14px;
    padding-left: 40px;
    padding-right: 10px;
    color: #333;
    width: 100%;
    height: 42px;
    line-height: 42px;
    color: #333;
    font-size: 14px;
    background-color: #ddd;
    border-radius: 5px;
}

.msg-frombox li.msg-tarea {
    float: none;
    overflow: hidden;
}

.msg-frombox li.msg-tarea textarea {
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    color: #333;
    padding: 10px;
    background-color: #ddd;
}

.msg-frombox .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 100% !important;
    margin-top: 30px;
    line-height: 46px;
    border-radius: 0 !important;
    padding: 0;
    color: #fff !important;
    border: none;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px !important;
    background-color: #ff5500 !important;
    background: #ff5500 !important;
    box-shadow: 2px 5px 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.msg-frombox .wpcf7-form-control.wpcf7-submit:hover {
    border-radius: 80px !important;
}

@media screen and (max-width: 1500px) {
    .contact-box .contact-fl {
        width: 52%;
    }

    .contact-box .contact-fr {
        width: 46%;
    }
}

@media screen and (max-width: 1200px) {
    .contact-fl .bt {
        font-size: 24px;
    }
}

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

    .contact-box .contact-fl,
    .contact-box .contact-fr {
        width: 100%;
        float: none;
    }

    .contact-box .contact-fr {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .msg-frombox .from-clearfix li {
        width: 100%;
        float: none;
    }
}

/* contact-box */
/* crumbs */
.top-crumbs {
  padding-top: 260px;
  padding-bottom: 70px;
  background: url(../images/bared-bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.top-crumbs.case {
  position: absolute;
  left: 0;
  right: 0;
  top: 130px;
  background: transparent;
  padding-top: 0;
  z-index: 22;
}

.top-crumbs ol {
  display: flex;
}

.top-crumbs li {
  float: left;
  position: relative;
  line-height: 1;
}

.top-crumbs li+li {
  margin-left: 20px;
}

.top-crumbs li a,
.top-crumbs li span {
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.3;
}

.top-crumbs li span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.top-crumbs li a:hover {
  color: #ff5500;
}

.top-crumbs li+li::before {
  content: ">";
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: -15px;
  top: 2px;
}

/* === */
.top-crumbs.case .sreg0q1,
.top-crumbs.case .btm-xd {
  display: none;
}

.top-crumbs .btm-xd {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 22;
  overflow: hidden;
  width: auto;
  height: 69px;

}

.top-crumbs .btm-xd img {
  width: 101vw;
  height: 100% !important;    object-fit: cover;
}

.sreg0q1 {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  z-index: 5;
  /* 大于视频的 z-index */
  pointer-events: none;
  overflow: hidden;
}

.sreg0q1 .big,
.sreg0q1 .small {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  pointer-events: none;
  background-repeat: repeat;
  background-position: 0 0;
  transform: translateZ(0);
  /* 提高动画表现 */
  will-change: background-position;
}

.sreg0q1 .big {
  z-index: 3;
  background-size: 200px 200px;
  background-image: url(../images/falling-snow1.png);
  -webkit-animation: snow-sreg0q1 22s linear infinite;
  animation: snow-sreg0q1 22s linear infinite;
}

.sreg0q1 .small {
  z-index: 2;
  background-size: 200px 200px;
  background-image: url(../images/falling-snow2.png);
  -webkit-animation: snow-sreg0q1 32s linear infinite;
  animation: snow-sreg0q1 32s linear infinite;
}

@keyframes snow-sreg0q1 {
  0% {
    background-position-x: 0;
    background-position-y: 0;
  }

  50% {
    background-position-y: 400px;
  }

  100% {
    background-position-x: 400px;
    background-position-y: 800px;
  }
}

@-webkit-keyframes snow-sreg0q1 {
  0% {
    background-position-x: 0;
    background-position-y: 0;
  }

  50% {
    background-position-y: 400px;
  }

  100% {
    background-position-x: 400px;
    background-position-y: 800px;
  }
}

/* === */
@media screen and (max-width: 992px) {
  .top-crumbs {
    padding-top: 180px;
    padding-bottom: 50px;
  }


  .top-crumbs.case {
    top: 110px;
  }
}

@media screen and (max-width: 640px) {
  .top-crumbs {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .top-crumbs .btm-xd {
    bottom: -30px;
  }

  .top-crumbs li a,
  .top-crumbs li span {
    font-size: 14px;
  }

  .top-crumbs {
    padding-top: 150px;
    padding-bottom: 20px;
  }

}

/* crumbs */

/* index-footer */
.index-footer {
    background-color: #0e2954;
    padding-top: 50px;
    padding-bottom: 40px;
}

.index-footer .foot-box {
    display: flex;
    justify-content: space-between;
}

.index-footer .footer-f1 {
    width: 25%;
}

.index-footer .footer-f2 {
    width: 18%;
}

.index-footer .footer-f3 {
    width: 18%;
}

.index-footer .footer-f4 {
    width: 30%;
}

.index-footer .pto {
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: solid 1px #344662;
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    display: block;
}

.index-footer .pto::before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.footer-f1 .text {
    font-size: 14px;
    color: #e9e9e9;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-f1 .msg {
    overflow: hidden;
}

.footer-f2 li a,
.footer-f3 li a {
    font-size: 14px;
    color: #e9e9e9;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 40px;
}

.footer-f2 li a:hover,
.footer-f3 li a:hover,
.footer-f4 .icon-txt:hover {
    color: #ff6600;
}

.footer-f4 .text {
    font-size: 14px;
    color: #e9e9e9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-f4 .p1 {
    margin-bottom: 10px;
}

.footer-f4 .icon-txt,
.footer-f4 .h-add {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 2;
    padding-left: 26px;
    position: relative;
}

.footer-f4 .h-phone::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/whatsapp.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-f4 .h-email::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/emil.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-f4 .h-add::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/footer-add.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 5px;
}

.footer-f4 .more {
    max-width: 120px;
    border-radius: 4px;
}

.footer-f4 .more i {
    padding: 0 20px;
    line-height: 40px;
}

.footer-ul .wpcf7-form-control-wrap {
    display: block;
    position: relative;
}

.footer-ul .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    font-weight: normal;
    display: block;
    position: absolute;
    right: 2px;
    top: 0;
    line-height: 38px;
}

.footer-ul li {
    margin-bottom: 7px;
}

.footer-ul .wpcf7-form-control-wrap input {
    padding: 6px;
    line-height: 20px;
    border: 1px solid #344662;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    display: block;
    font-size: 14px;
    color: #fff;
    width: 100%;
    background-color: transparent;
}

.footer-ul .wpcf7-form-control-wrap textarea {
    padding: 6px;
    line-height: 20px;
    border: 1px solid #344662;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    background-color: transparent;
    display: block;
    width: 100%;
    height: 60px;
    font-size: 14px;
    color: #fff;
}

.footer-ul .wpcf7-form-control-wrap input::-webkit-input-placeholder,
.footer-ul .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
    color: #9f9f9f;
    /* 红色 */
    font-size: 14px;
    /* 字体大小 */
}

.footer-ul .wpcf7-form-control-wrap input::-moz-placeholder,
.footer-ul .wpcf7-form-control-wrap textarea::-moz-placeholder {
    color: #9f9f9f;
    /* 红色 */
    font-size: 14px;
    /* 字体大小 */
    opacity: 1;
    /* Firefox需要设置opacity为1来显示颜色 */
}

.footer-ul .wpcf7-form-control-wrap input::-ms-input-placeholder,
.footer-ul .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
    color: #9f9f9f;
    /* 红色 */
    font-size: 14px;
    /* 字体大小 */
}

.footer-ul .wpcf7-form-control-wrap input::-placeholder,
.footer-ul .wpcf7-form-control-wrap textarea::-placeholder {
    color: #9f9f9f;
    /* 红色 */
    font-size: 14px;
    /* 字体大小 */
}

.footer-ul .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 100%;
    font-size: 14px;
    border-radius: 5px;
    line-height: 34px;
    background-color: #ff5500;
    color: #fff;
    cursor: pointer;
}

.footer-box {
    background-color: #0e2954;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: solid 1px #103268;
}

.footer-box p {
    text-align: center;
    color: #fff;
}

.footer-box p a {
    color: #fff;
}

.msg .wpcf7-response-output {
    color: #fff;
    margin-top: 0 !important;
}

@media screen and (max-width: 992px) {
    .index-footer .foot-box {
        flex-wrap: wrap;
    }

    .index-footer .fote-item {
        width: 48%;
    }

    .index-footer .footer-f3,
    .index-footer .footer-f4 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 500px) {
    .index-footer {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .index-footer .fote-item {
        width: 100%;
    }

    .index-footer .footer-f2,
    .index-footer .footer-f3,
    .index-footer .footer-f4 {
        margin-top: 25px;
    }
}

/* footer-box */

/* index-news */

.index-news .news-swiper {
    overflow: hidden;
    padding-bottom: 10px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

.news-swiper .swiper-slide {
    display: block;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.news-swiper .swiper-slide .news-box {
    padding: 15px 10px;
}

.news-swiper .news-box .h3 {
    font-size: 18px;
    text-transform: capitalize;
    color: #222;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-swiper .news-box .text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.news-swiper .news-next,
.news-swiper .news-prev {
    background-color: #ff5500;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    z-index: 2;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    z-index: 2;
    color: #fff;
    transform: translateY(-50%);
}

.news-swiper .news-next {
    right: 0;
}

.news-swiper .news-prev {
    left: 0;
}

@media screen and (max-width: 1500px) {
    .news-swiper .news-next {
        right: 0px;
    }

    .news-swiper .news-prev {
        left: 0px;
    }
}

@media screen and (max-width: 768px) {
    .index-news .news-swiper {
        padding-left: 0;
        padding-right: 0;
    }

    .news-swiper .news-next {
        right: 0px;
    }

    .news-swiper .news-prev {
        left: 0px;
    }
}

/* index-news */

/* about-svertop1 */
.about-svertop1 {
    overflow: hidden;
}

.about-svertop1 .sver1-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sver1-box .sver1-fl {
    width: 45%;
    position: relative;
}

.sver1-fl .tit {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    padding: 5px 10px;
    line-height: 1.5;
    background-color: #ff5500;
    border-radius: 40px;
    margin-bottom: 15px;
}

.sver1-fl .h1 {
    font-size: 38px;
    color: #222;
    text-transform: capitalize;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.sver1-fl .h1 span {
    display: block;
}

.sver1-fl .txt {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sver1-fl .anniu-box {
    display: flex;
}

.sver1-fl .anniu-box .more+.more {
    margin-left: 15px;
}

.sver1-box .sver1-fr {
    width: 42%;
    position: relative;
}

.sver1-box .sver1-fr::before {
    content: "";
    width: 380px;
    height: 380px;
    background-color: #ff5500;
    position: absolute;
    right: -150px;
    border-radius: 50%;
    top: 45%;
}

.sver1-box .sver1-fr img {
    position: relative;
    animation: floatUpDown 3s infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

.sver1-btm {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}

.sver1-btm li {
    width: 31%;
    position: relative;
    overflow: hidden;
}

.sver1-btm li .sver1-text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.sver1-btm li .sver1-text .h3 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sver1-btm li .sver1-text .text {
    font-size: 14px;
    line-height: 1.6;
    color: #eee;
}

.sver1-btm li:hover .sver1-text {
    bottom: 0;
}

/* about-svertop1 */

/* about-sever2 */
.about-sever2 {
    background-color: #f6f4ef;
}

.about-sever2 .sever2-box {
    display: flex;
    justify-content: space-between;
}

.sever2-box li {
    text-align: center;
    padding: 0 5px;
}

.sever2-box .img {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.sever2-box .img img {
    border-radius: 50%;
}

.sever2-box .img::before {
    content: "";
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    position: absolute;
    border: solid 2px #ff5500;
    border-radius: 50%;
}

.sever2-box h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-top: 26px;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
}

.sever2-box h3::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #ff5500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
}

.sever2-box .text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* about-sever2 */

/* about-sever3 */
.about-sever3 {
    background: url(../images/sever2-bgimg.jpg) no-repeat center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-sever3::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.about-sever3 .top-title {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.about-sever3 .top-title .h2 {
    color: #fff;
    position: relative;
    text-align: center;
}

.about-sever3 .top-title .h2::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #ff5500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.about-sever3 .sever3-item {
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
}

.sever3-item li {
    width: 32%;
}

.sever3-item li .img {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.sever3-item li .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sever3-item li h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 10px;
}

.sever3-item li .text {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

/* about-sever3 */

/* about-sever4 */
.about-sever4 {
    position: relative;
    background-color: #f6f4ef;
}

.about-sever4::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fce9ce;
    background: linear-gradient(200deg, #ff5500, #fce9ce);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.about-sever4 .sever4-box {
    position: relative;
    background-color: #fff;
    display: flex;
    padding: 60px 25px;
    justify-content: space-between;
    align-items: center;
}

.about-sever4 .sever4-box::before {
    content: "";
    width: auto;
    height: auto;
    border: solid 2px #bfbfbf;
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    top: 25px;
}

.about-sever4 .sever4-box::after {
    content: "";
    width: 38px;
    height: auto;
    bottom: 50px;
    background: url(../images/dins-text-bg.jpg) repeat-y;
    position: absolute;
    top: 50px;
    right: 40px;
}

.sever4-box .text,
.sever4-box .img {
    position: relative;
    z-index: 3;
}

.sever4-box .text {
    width: 40%;
}

.sever4-box .text .h2 {
    font-size: 38px;
    text-transform: capitalize;
    color: #000;
    line-height: 1.2;
    margin-bottom: 35px;
    position: relative;
    font-weight: 900;
}

.sever4-box .text .h2::before {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.sever4-box .text .tit {
    font-size: 16px;
    line-height: 1.8;
    padding-right: 55px;
    color: #333;
}

.sever4-box .img {
    width: 50%;
}

.sever4-box .img img {
    animation: floatUpDown 3s infinite;
}

/* about-sever4 */

/* about-sever5 */
.about-sever5 {
    position: relative;
    z-index: 4;
    margin-top: -70px;
}

.about-sever5 .sever5-imgitem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sever5-imgitem li {
    width: 24%;
    margin-bottom: 20px;
}

.sever5-imgitem li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1500px) {
    .sver1-box .sver1-fl {
        width: 56%;
    }

    .sver1-fl .h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1200px) {
    .sver1-fl .h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .sver1-fl .txt {
        font-size: 16px;
    }

    .about-sever2 .sever2-box {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .sever2-box .img {
        width: 150px;
        height: 150px;
    }

    .sever2-box li {
        width: 30%;
    }

    .about-sever3::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        top: 0;
        left: 0;
        clip-path: none;
    }

    .sever4-box .text .h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 992px) {
    .sver1-fl .h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .sver1-fl .txt {
        font-size: 14px;
    }

    .sver1-btm {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .sver1-box .sver1-fl {
        width: 100%;
    }

    .sver1-box .sver1-fr {
        display: none;
    }

    .sver1-btm li {
        width: 48%;
        margin-bottom: 20px;
    }

    .sver1-btm li .sver1-text .h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .sver1-btm li .sver1-text .text {
        font-size: 12px;
    }

    .sever2-box li {
        width: 48%;
        margin-bottom: 20px;
    }

    .sever2-box .text {
        font-size: 14px;
    }

    .sever3-item li h3 {
        font-size: 18px;
    }

    .sever3-item li .text {
        font-size: 14px;
    }

    .sever4-box .img {
        display: none;
    }

    .sever4-box .text {
        width: 100%;
    }

    .about-sever5 {
        margin-top: 40px;
    }

    .about-sever4::before {
        opacity: 0.7;
    }

    .about-sever4 .sever4-box {
        padding: 40px 30px 40px 40px;
    }

    .sever4-box .text .h2 {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .sever4-box .text .h2::before {
        bottom: -10px;
    }

    .about-sever4 .sever4-box::after {
        content: "";
        width: 20px;
        height: auto;
        bottom: 40px;
        background-size: contain;
        top: 40px;
        right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .sever2-box .img {
        width: 100px;
        height: 100px;
    }

    .sever4-box .text .tit {
        font-size: 14px;
        text-align: justify;
    }

    .sever2-box h3 {
        font-size: 20px;
    }

    .about-sever3 .sever3-item {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .sever3-item li {
        width: 100%;
        margin-top: 30px;
    }

    .sever4-box .text .h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 580px) {
    .about-sever4 .sever4-box {
        padding: 30px;
    }

    .sever4-box .text .h2 {
        font-size: 22px;
    }

    .about-sever4 .sever4-box::before {
        left: 15px;
        right: 15px;
        bottom: 15px;
        top: 15px;
    }

    .sever4-box .text .tit {
        padding-right: 30px;
    }

    .about-sever5 {
        margin-top: 30px;
    }

    .sver1-btm li {
        width: 100%;
    }

    .sever2-box li {
        width: 100%;
    }

    .sever5-imgitem li {
        width: 48%;
    }

    .about-sever4 .sever4-box::after {
        width: 10px;
        bottom: 25px;
        background-size: contain;
        top: 25px;
        right: 30px;
    }
}

/* about-sever5 */

.workshop-tit {
    text-align: center;
    margin-bottom: 30px;
}

.workshop-tit .h2 {
    position: relative;
    font-size: 32px;
    text-transform: capitalize;
    line-height: 1.3;
    display: inline-block;
}

.workshop-tit .h2::after,
.workshop-tit .h2::before {
    content: "";
    width: 70px;
    height: 24px;
    background: url(../images/workshop-tit.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.workshop-tit .h2::after {
    left: -80px;
}

.workshop-tit .h2::before {
    right: -80px;
}

.workshop-tit .text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 8px;
}

/* about-workshop */

/* workshop-1 */
.workshop-1 .workshop1-item {
    display: flex;
    justify-content: space-between;
}

.workshop1-item li {
    width: 31%;
    position: relative;
    overflow: hidden;
}

.workshop1-item li img {
    display: block;
    width: 100%;
    height: auto;
}

.workshop1-item li .item-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
}

.workshop1-item li .item-box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    transition: all 0.3s;
    background-color: rgb(255, 107, 23, 0.8);
}

.workshop1-item li:hover .item-box::before {
    top: 0;
}

.workshop1-item li .item-box h3 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.workshop1-item li .item-box .txt {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* workshop-2 */
.workshop-2 {
    background: url(../images/workshop2-bg.jpg) no-repeat top center;
    background-size: cover;
    padding-top: 200px;
    position: relative;
      padding-bottom: 200px;
}



.workshop-2 .bt {
    font-size: 38px;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 10px;
}

.workshop-2 .tit {
    display: inline-block;
    color: #fff;
    background-color: #ff5500;
    padding: 0 20px;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.5;
}

/* workshop-2 */
/* workshop-3 */
.workshop-3 .workshop3-item {
    display: flex;
    justify-content: space-between;
}

.workshop3-item li {
    width: 24%;
}

.workshop3-item li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.workshop3-item li .tt {
    display: block;
    font-size: 20px;
    color: #ff5500;
    line-height: 1.3;
    text-align: center;
    margin-top: 15px;
}

@media screen and (max-width: 1200px) {
    .workshop-tit .h2 {
        font-size: 28px;
    }

    .workshop-2 .bt {
        font-size: 28px;
    }

    .workshop-2 .tit {
        font-size: 18px;
        margin-bottom: 80px;
    }

    .workshop1-item li .item-box h3 {
        font-size: 22px;
    }

    .workshop1-item li .item-box .txt {
        font-size: 14px;
    }

    .workshop2-list li .st {
        font-size: 14px;
    }

.workshop-2 {
    padding-top: 120px;
    position: relative;
      padding-bottom: 120px;
    }
}

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

    .workshop-tit .h2::after,
    .workshop-tit .h2::before {
        display: none;
    }

    .workshop1-item li .item-box h3 {
        font-size: 18px;
    }

    .workshop1-item li .item-box {
        padding: 15px;
    }

    .workshop3-item li .tt {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .workshop-1 .workshop1-item {
        flex-wrap: wrap;
    }

    .workshop1-item li {
        width: 48%;
        margin-bottom: 20px;
    }

    .workshop3-item li .tt {
        font-size: 16px;
    }
    .workshop-2 {
    padding-top: 80px;
      padding-bottom: 80px;
    }
}

@media screen and (max-width: 560px) {
    .workshop-2 .bt {
        font-size: 26px;
    }

    .workshop-2 .tit {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .workshop1-item li {
        width: 100%;
    }



    .workshop-3 .workshop3-item {
        flex-wrap: wrap;
    }

    .workshop3-item li {
        width: 48%;
        margin-bottom: 10px;
    }
}

/* workshop-3 */

/* product详情页 */
.product-header .product-hd-box {
    display: flex;
    justify-content: space-between;
}

.product-hd-box .product-img {
    width: 40%;
    overflow: hidden;
    line-height: 0;
}

.product-hd-box .product-img .product-slider {
    margin-bottom: 10px;
    position: relative;
}

.product-slider .product-next,
.product-slider .product-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 3;
    border-radius: 50%;
    cursor: pointer;
}

.product-slider .product-prev {
    left: 10px;
    background: rgba(0, 0, 0, 0.5) url(../images/left.png) no-repeat center center;
    background-size: 24px;
}

.product-slider .product-next {
    right: 10px;
    background: rgba(0, 0, 0, 0.5) url(../images/right.png) no-repeat center center;
    background-size: 24px;
}

.product-slider .product-next:hover {
    right: 10px;
    background: #ff5500 url(../images/right.png) no-repeat center center;
    background-size: 24px;
}

.product-slider .product-prev:hover {
    background: #ff5500 url(../images/left.png) no-repeat center center;
    background-size: 24px;
}

.product-img .product-slider .pro-bigimg {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-img .product-slider .pro-bigimg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.product-thumbs-slider .swiper-slide {
    position: relative;
    background-color: #000;
    cursor: pointer;
}

.product-thumbs-slider .swiper-slide img {
    opacity: 0.5;
}

.product-thumbs-slider .swiper-slide.swiper-slide-thumb-active img {
    opacity: 1;
}

.product-thumbs-slider .video-img::before {
    content: '';
    width: 60px;
    height: 60px;
    background: url(../images/pro-play.png) no-repeat center center;
    background-size: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-hd-box .product-info {
    width: 57%;
    overflow: hidden;
}

.product-info h1 {
    color: #000;
    font-size: 26px;
    line-height: 1.4;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: solid 3px rgba(0, 0, 0, 0.06);
    position: relative;
}

.product-info h1::before {
    content: "";
    height: 3px;
    background-color: #ff5500;
    width: 15%;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.product-info .pro-canshu {
    margin-bottom: 15px;
    background: #fafafa;
    margin-top: 15px;
}

.pro-canshu li {
    padding: 10px 16px;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}

.pro-canshu li+li {
    border-top: 1px solid #f1f1f1;
}

.product-info .pro-feature {
    display: flex;
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    flex-wrap: wrap;
}

.product-info .pro-feature li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}

.product-info .pro-feature li:nth-of-type(1) span {
    color: #00afff;
}

.product-info .pro-feature li:nth-of-type(2) span {
    color: #e73436;
}

.product-info .pro-feature li:nth-of-type(3) span {
    color: #4234f1;
}

.product-info .pro-feature li:nth-of-type(4) span {
    color: #ffcb00;
}

.product-info .pro-feature li img {
    margin-right: 3px;
    width: 26px;
    height: 26px;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    -ms-transition: color 0.3s;
}

.product-info .pro-feature li:hover img {
    -webkit-animation: swing 1s linear;
    -o-animation: swing 1s linear;
    animation: swing 1s linear;
}

.product-info .pro-feature li span {
    font-size: 15px;
}

.product-info .pro-feature li:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 0;
    height: 18px;
    border-left: 1px solid #dedede;
    content: "";
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

.product-btn {
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
    align-content: center;
}

.product-btn .more {
    margin: 4px 4px 0 4px;
    padding: 10px 10px 10px 40px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

.product-btn .more1 {
    background: #1e73be url(../images/xj-icon.png) no-repeat left 12px center;
    background-size: 22px;
}

.product-btn .more2 {
    background: #09c25f url(../images/whatsapp-icon.png) no-repeat left 12px center;
    background-size: 22px;
}

.product-btn .more3 {
    background: #c00d23 url(../images/email-icon.png) no-repeat left 12px center;
    background-size: 22px;
}

.product-btn .more:hover {
    background-color: #000;
}


@media screen and (max-width: 1200px) {
    .product-img .product-slider .pro-bigimg {
        padding-top: 100%;
    }

}

@media screen and (max-width: 992px) {
    .product-header .product-hd-box {
        flex-wrap: wrap;
    }

    .product-hd-box .product-img {
        width: 100%;
    }

    .product-hd-box .product-info {
        width: 100%;
        margin-top: 30px;
    }

    .product-info h1 {
        font-size: 24px;
    }

    .product-slider .video-box iframe {
        width: 100%;
        height: 600px;
    }

    .product-img .product-slider .pro-bigimg {
        padding-top: 80%;
    }
}

@media screen and (max-width: 680px) {
    .product-info h1 {
        font-size: 22px;
    }

    .product-slider .video-box iframe {
        width: 100%;
        height: 100%;
        max-height: 520px;
    }

    .product-info h1 {
        font-size: 24px;
        line-height: 1.3;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .product-info .text {
        font-size: 14px;
    }

    .product-info .pro-feature {
        padding: 16px 10px;
    }

    .product-info .pro-feature li {
        margin: 10px 0;
        width: 50%;
    }

    .product-info .pro-feature li:nth-of-type(2):after {
        display: none;
    }

    .product-btn {
        justify-content: center;
    }

    .pro-canshu li {
        padding: 8px 12px;
    }
}

@media screen and (max-width: 480px) {
    .product-info h1 {
        font-size: 20px;
    }

    .product-info .pro-feature {
        padding: 12px 5px;
    }

    .product-info .pro-feature li img {
        width: 20px;
        height: 20px;
        margin-right: 0;
    }

    .product-info .pro-feature li {
        margin: 5px 0;

    }

    .product-info .pro-feature li span {
        font-size: 14px;
    }
}

.prode-lc {
    background: url(../images/prode_lcbg1.jpg) no-repeat center top;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.prode-lc .warp-mb {
    position: relative;
}

.prode-lc .product-prev,
.prode-lc .product-next {
    display: none;
}

.prode-lc .zxyser-swiper {
    overflow: hidden;
    text-align: center;
}

.prode-lc .zxyser-swiper .swiper-slide .img {
    display: block;
    width: 50px;
    margin: auto;
    transition: all 0.5s;
}

.prode-lc .zxyser-swiper .swiper-slide .text {
    font-size: 14px;
    line-height: 18px;
    margin-top: 6px;
    font-family: "times", helvetica_neue, Helvetica, Arial, sans-serif !important;
    color: #fff;
    text-transform: capitalize;
}

.prode-lc .zxyser-swiper .swiper-slide.color-slide1 p {
    color: #fbb177;
}

.prode-lc .zxyser-swiper .swiper-slide.color-slide2 p {
    color: #27b9c7;
}

.prode-lc .zxyser-swiper .swiper-slide.color-slide3 p {
    color: #fd6a52;
}

.prode-bar {
    width: 100%;
    height: 44px;
    background: url(../images/prode_lcbg2.jpg) no-repeat;
    background-size: 100% 100%;
    margin-top: 15px;
    position: relative;
    overflow: hidden;

}

.prode-bar:after {
    content: "";
    width: 37px;
    height: 100%;
    background: url(../images/prode_lcbg4.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 66.3%;
}

.prode-bar p {
    width: 33.33%;
    float: left;
    font-size: 16px;
    color: #fff;
    line-height: 44px;
    font-family: homestorebold;
    padding-left: 40px;
    text-transform: capitalize;

}

.prode-bar p:nth-child(1) {
    background: url(../images/prode_lcbg5.png) no-repeat 6.3% center;
    background-size: auto 100%;
    animation: prode-lcbg1 3s linear infinite;
}

.prode-bar p:nth-child(2) {
    background: url(../images/prode_lcbg6.png) no-repeat 6.3% center;
    background-size: auto 100%;
    animation: prode-lcbg2 3s linear infinite;
}

.prode-bar p:nth-child(3) {
    background: url(../images/prode_lcbg7.png) no-repeat 6.3% center;
    background-size: auto 100%;
    animation: prode-lcbg3 3s linear infinite;
    position: relative;
}


@keyframes prode-lcbg1 {
    0% {
        background-size: auto 100%;
    }

    20% {
        background-size: 40%;
    }

    40% {
        background-size: 70%;
    }

    60% {
        background-size: 50%;
    }

    80% {
        background-size: 100%;
    }

    100% {
        background-size: 60%;
    }
}

@keyframes prode-lcbg2 {
    0% {
        background-size: auto 100%;
    }

    20% {
        background-size: 40%;
    }

    40% {
        background-size: 70%;
    }

    60% {
        background-size: 50%;
    }

    80% {
        background-size: 100%;
    }

    100% {
        background-size: 60%;
    }
}

@keyframes prode-lcbg3 {
    0% {
        background-size: auto 100%;
    }

    20% {
        background-size: 40%;
    }

    40% {
        background-size: 80%;
    }

    60% {
        background-size: 50%;
    }

    80% {
        background-size: 100%;
    }

    100% {
        background-size: 60%;
    }
}

@media screen and (max-width: 992px) {
    .prode-lc {

        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 30px;
    }

    .prode-lc .zxyser-swiper {
        margin-left: 15px;
        margin-right: 15px;
    }

    .prode-lc .product-prev,
    .prode-lc .product-next {
        display: block;
        width: 30px;
        height: 112px;
        position: absolute;
        top: 0;
        z-index: 3;
    }

    .prode-lc .product-prev {
        background: url(../images/pro-right-hover.png) no-repeat center;
        background-size: 24px;
        right: 0;
    }

    .prode-lc .product-next {
        background: url(../images/pro-left-hover.png) no-repeat center;
        background-size: 24px;
        left: 0;
    }
}

@media screen and (max-width: 768px) {
    .prode-bar {
        display: none;
    }
}



.page-section {
    padding-top: 40px;
    background: #f5f5f5;
    padding-bottom: 30px;
}

.page-section .product-tab-menu {
    border-bottom: 1px solid #eee;
    background: #eee;
    transition: opacity 0.3s ease;
}

.product-tab-menu.active {
    position: fixed;
    top: 72px;
    z-index: 99;
}

.product-tab-menu.active {
    width: 1400px;
}

.product-tab-menu li {
    position: relative;
    float: left;
    cursor: pointer;
}

.product-tab-menu li span {
    display: block;
    padding: 0 40px;
    font-size: 16px;
    line-height: 50px;
}

.product-tab-menu li.active span {
    background-color: #ff5500;
    color: #fff;
    font-weight: 700;
}

.page-section .product-tabbox {
    background: #fff;
    padding: 16px;
}

.product-tabbox .tabbox-text {
    display: none;
}

.product-tabbox .tabbox-text.active {
    display: block;
}

.product-tabbox .tabbox-text h2 {
    font-size: 24px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.product-tabbox .tabbox-text h3 {
    font-size: 18px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.product-tabbox .tabbox-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.product-tabbox .tabbox-text img {
    display: block;
    _width: auto !important;
    _height: auto !important;
    _max-width: 100% !important;
}

.product-tabbox .tabbox-text img {
    margin: 20px auto;
    display: block;
}

.product-tabbox .tabbox-text ul {
    padding-left: 15px;
    list-style: inherit;
}

.product-tabbox .tabbox-text li {
    list-style: inherit;
    font-size: 16px;
    line-height: 1.8;
}

@media screen and (max-width: 1500px) {
    .product-tab-menu.active {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .product-tab-menu.active {
        width: 980px;
    }
}

@media screen and (max-width: 992px) {
    .product-tab-menu.active {
        width: 750px;
        top: 52px;
    }
}

@media screen and (max-width: 768px) {
    .product-tab-menu.active {
        width: 100%;
        left: 0;
    }

    .product-tabbox .tabbox-text h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .product-tabbox .tabbox-text h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .product-tabbox .tabbox-text p {
        font-size: 14px;
    }

    .product-tab-menu li span {
        padding: 0 12px;
        font-size: 14px;
        line-height: 46px;
    }
}

@media screen and (max-width: 414px) {
    .page-section .product-tab-menu ul {
        display: flex;
        overflow: scroll;
        white-space: nowrap;
    }
}

/* 详情页表单 */
.product-from {
    overflow: hidden;
    background: url(../images/procontact-bg.jpg) no-repeat center;
    background-size: cover;
}

.product-from .from-text {
    width: 36%;
    float: left;
    background: url(../images/msg-left-user.png) no-repeat top 50px left;
    padding-top: 378px;
    background-size: 490px auto;
}

.from-text .zxy-left-text {
    background: url(../images/msg-form-bg.jpg) no-repeat;
    background-size: cover;
    width: calc(100% - 70px);
    padding: 35px 28px;
    border-radius: 20px;
}

.zxy-left-text strong {
    display: block;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    color: #ff8a2b;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.zxy-left-text li {
    font-size: 15px;
    color: #d2d2d2;
    line-height: 30px;
    padding-left: 22px;
    background: url("../images/msg-left-icon.png") left center no-repeat;
    background-size: 24px;
    margin-bottom: 15px;
}

.product-from .from-box {
    float: right;
    width: 64%;
    background: url(../images/msg-form-bg.jpg) no-repeat;
    background-size: cover;
    -webkit-border-radius: 50px;
    overflow: hidden;
    -moz-border-radius: 50px;
    border-radius: 20px;
    position: relative;
    padding: 35px 55px;
    overflow: hidden;
}

.product-from .from-box::before {
    content: "";
    width: 150px;
    height: 150px;
    background: url(../images/msg-right-yuan.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: -44px;
    top: 7px;
    z-index: 1;
}

.from-box h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.from-box .text {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.msg-from {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.msg-from li {
    width: 49%;
    margin-bottom: 20px;
        position: relative;
}
.wpcf7-not-valid-tip{
       font-size: 12px;
}
.msg-from .tsy {
    width: 100%;
    margin-top: 5px;
    text-transform: capitalize;
    font-size: 12px;
}
.product-from .from-box .msg-from .tsy {
    color:#fff;
}
.product-from .wpcf7 form.invalid .wpcf7-response-output{
	 color:#fff;
}
.msg-from li.bg-message {
    width: 100%;
}

.msg-from li.lis1,
.msg-from li.lis2,
.msg-from li.lis3,
.msg-from li.lis4 {
    width: 100%;
}
.product-from .from-box .tits{
        color: #fff;
}
.msg-from li .wpcf7-form-control-wrap {
    display: block;
}

.msg-from li .tits {
    display: block;
    line-height: 1.5;
    color: #444;
    font-size: 13px;
}

.msg-from li .tits i {
    color: red;
}

.msg-from li input,
.msg-from li textarea {
    display: block;
    width: 100%;
    background-color: #f7f7f7;
    color: #fff;
    font-size: 14px;
    padding: 0 10px;
}

.msg-from li input {
    height: 44px;
    line-height: 44px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
    color: #0b2b51;
}

.msg-from li textarea {
    height: 130px;
    line-height: 36px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
    color: #0b2b51;
}

.msg-from .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 100%;
    margin-top: 30px;
    line-height: 46px;
    border-radius: 60px;
    padding: 0;
    color: #fff;
    border: none;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 0;
    background-color: #ff5500;
    background: #ff5500;
    box-shadow: 2px 5px 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.msg-from .wpcf7-form-control.wpcf7-submit:hover {
    border-radius: 5px;
}

@media screen and (max-width: 1500px) {
    .product-from .from-text {
        padding-top: 398px;
        background-size: 450px auto;
    }

    .from-text .zxy-left-text {
        width: calc(100% - 50px);
        padding: 25px 20px;
    }

    .zxy-left-text li {
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .product-from .from-text {
        padding-top: 380px;
        background-size: 450px auto;
        width: 44%;
    }

    .from-text .zxy-left-text {
        width: calc(100% - 20px);
        padding: 25px 20px;
    }

    .zxy-left-text strong {
        font-size: 18px;
    }

    .product-from .from-box {
        width: 55%;
        padding: 35px 35px;
    }

    .msg-from li textarea {
        height: 120px;
    }
}

@media screen and (max-width: 992px) {
    .product-from .from-text {
        padding-top: 0;
        background: none;
        width: 100%;
    }

    .from-text .zxy-left-text {
        width: 100%;
        padding: 25px 20px;
        border-radius: 10px;
    }

    .product-from .from-box {
        width: 100%;
        margin-top: 40px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 768px) {
    .product-from .from-box {
        margin-top: 30px;
        padding: 25px 25px;
    }

    .from-box .text {
        font-size: 13px;
    }

    .from-box h3 {
        font-size: 18px;
    }
}

/* product详情页 */


/* product列表页 */

.case-select {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 30px;
}

.case-select select {
    border: 1px solid #000;
    background-clip: padding-box;
    background-color: #fff;
    color: #495057;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 280px;
    cursor: pointer;
}

.case-select select option {
    line-height: 38px;
}

.product-archive ul {
    margin-left: -1%;
}

.product-archive li {
    width: 32.33333333%;
    float: left;
    margin-left: 1%;
    margin-bottom: 24px;
    position: relative;
}

.product-archive li .imgs {
  display: block;
  position: relative;
  padding-top: 72%;
  overflow: hidden;
}

.product-archive li .imgs img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-archive li .sol-text {
    background-color: #fff;
    width: 92%;
    margin: -24px auto 0;
    display: block;
    text-align: center;
    position: relative;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
       padding: 10px;
}

.product-archive li .sol-text a {
    display: block;
    text-transform: capitalize;
    font-size: 17px;
    color: #333;
    line-height: 1.3;
     display: -webkit-box;  
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;  
  overflow: hidden; 
	height:44px;
}

.product-archive li:hover .sol-text {
    transform: translateY(24px);
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    color: #ff5500;
}



@media screen and (max-width: 640px) {
    .case-selects .case-select{
        width: 49%;
}
.case-select select{
          width: 100%; 
}
   .case-select select option{
       line-height: 30px;
    font-size: 12px;
   }

    .product-archive li {
        width: 49%;
    }

    .product-archive li .sol-text a {
        font-size: 16px;
			height:42px;
    }
    
}
@media screen and (max-width: 380px) {

    .product-archive li .sol-text a {
        font-size: 14px;
			height:36px;
    }
}
/*分页*/


.zxy-taxonomy {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 30px
}

.zxy-taxonomy .page-numbers {
    padding: 0 15px;
    width: auto;
    height: 30px;
    background-color: #333;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
}

.zxy-taxonomy .page-numbers:hover {
    background-color: #ff5500;
}

.zxy-taxonomy .page-numbers+.page-numbers {
    margin-left: 5px;
}

.zxy-taxonomy .page-numbers.current {
    background-color: #ff5500;
}



.zxy-pagination {
    margin-bottom: 40px;
    margin-top: 20px;
}

.zxy-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.zxy-pagination .nav-links .page-numbers {
    padding: 0 15px;
    width: auto;
    height: 30px;
    background-color: #333;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
}

.zxy-pagination .nav-links .page-numbers:hover {
    background-color: #ff5500;
}

.zxy-pagination .nav-links .page-numbers+.page-numbers {
    margin-left: 5px;
}

.zxy-pagination .nav-links .page-numbers.current {
    background-color: #ff5500;
}



/* zxy-mtlbox 首页摩天轮 */
.zxy-mtlbox {
    padding-left: 5%;
    padding-right: 5%;
}

.zxy-mtlbox.color0 {
    background-color: #2292e4;
}

.zxy-mtlbox.color1 {
    background-color: #233f93;
}

.zxy-mtlbox.color2 {
    background-color: #bf8648;
}

.zxy-mtlbox.color3 {
    background-color: #897433;
}

.zxy-mtlbox.color4 {
    background-color: #317cb5;
}

.zxy-mtlbox.color5 {
    background-color: #459862;
}

.zxy-mtlbox.color6 {
    background-color: #1085ba;
}

.zxy-mtlbox.color7 {
    background-color: #762e20;
}

.zxy-mtlbox .mtl-imgs {
    width: 50%;
    float: left;
    position: relative;
}

.mtl-imgs .imgs-item.active {
    display: block;
}

.mtl-imgs .imgs-item {
    display: none;
}

.mtl-imgs .text {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.mtl-imgs .text .h3 {
    font-size: 26px;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mtl-imgs .text .more {
    color: #fff;
    font-size: 14px;
    display: block;
    width: 120px;
    line-height: 28px;
    text-align: center;
    background-color: #ff7126;
    border-radius: 40px;
}

.zxy-mtlbox .mtl-text {
    width: 580px;
    float: right;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    margin-top: 100px;
}

.mtl-text .h3 {
    font-size: 26px;
    color: #00b4c5;
    text-transform: capitalize;
    line-height: 1.3;
}

.mtl-text .mtl-listbox {
    margin-top: 20px;
}

.mtl-text dl {
    overflow: hidden;
    margin-top: 15px;
}

.mtl-text dl dt {
    color: #00b4c5;
    font-size: 16px;
    line-height: 1.3;
    width: 70px;
    text-transform: capitalize;
    float: left;
    margin-top: 18px;
}

.mtl-text .tern {
    width: auto;
    width: 126px;
    height: 60px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.mtl-text .tern.active::before {
    content: "";
    width: auto;
    height: auto;
    border: solid 2px red;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
}

.mtl-text dl dd {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 70px);
    float: right;
    justify-content: flex-start;
}

.mtl-text dl .tern.cheng {
    background-color: #ff7126;
}

.mtl-text dl .tern.huang {
    background-color: #ffda3b;
}

.mtl-text dl .tern.lv {
    background-color: #34c0ff;
}

.mtl-text dl .tern.qing {
    background-color: #c2fba1;
}

.mtl-text dl .tern.lan {
    background-color: #1000dc;
}

.mtl-text dl .tern.qkl {
    background-color: #a84d3b;
}

@media screen and (max-width: 1500px) {
    .zxy-mtlbox {
        padding-left: 3%;
        padding-right: 3%;
    }

    .zxy-mtlbox .mtl-text {
        width: 518px;
        margin-top: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .zxy-mtlbox .mtl-text {
        width: 440px;
        margin-top: 50px;
    }

    .mtl-text .tern {
        width: 100px;
        height: 50px;
        background-color: #fff;
    }

    .mtl-imgs .text .h3,
    .mtl-text .h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 992px) {
    .zxy-mtlbox .mtl-imgs {
        width: 100%;
        float: none;
    }

    .zxy-mtlbox .mtl-text {
        float: none;
        width: 100%;
    }

    .zxy-mtlbox .mtl-text {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .zxy-mtlbox .mtl-text {
        margin-top: 30px;
    }

    .mtl-imgs .text .h3,
    .mtl-text .h3 {
        font-size: 16px;
    }

    .mtl-imgs .text {
        top: -10px;
    }

    .mtl-text .tern {
        width: 90px;
        height: 44px;
    }

    .mtl-text dl dt {
        font-size: 14px;
        margin-top: 9px;
    }

    .mtl-text dl dt {
        width: 60px;
    }

    .mtl-text dl dd {
        width: calc(100% - 60px);
    }
}

/* zxy-mtlbox */

/*产品分类顶部轮播二级分类*/
.product-categorytab {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-categorytab .catetab-swiper {
    overflow: hidden;
}

.product-categorytab .imgs {
    display: block;
}

.product-categorytab .imgs img {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.product-categorytab .imgs .bt {
    font-size: 13px;
    color: #222;
    display: block;
    text-align: center;
    line-height: 1.8;
    margin-top: 0px;
    text-transform: capitalize;
}









/* case Details*/
.case-top {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.case-top .bx-bl {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.case-top img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.case-top .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.case-top .case-top-text {
    position: relative;
    z-index: 2;
    padding-top: 25vh;
    padding-bottom: 50px;
}

.case-top-text h1 {
    font-size: 40px;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-transform: capitalize;
    max-width: 800px;
    margin-bottom: 10px;
}

.case-top-text .sp-title {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.case-top-text .sp-title::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 18px;
}

.case-top-text .text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    max-width: 1000px;
}

.case-top-text .case-canshu {
    max-width: 500px;
    border: solid 1px #fff;
    border-radius: 10px;
    margin-top: 20px;
}

.case-canshu dl {
    display: flex;
    justify-content: space-between;
}

.case-canshu dl dt {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 8px;
    text-align: left;
    width: 180px;
    border-right: solid 1px #fff;
}

.case-canshu dl dd {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    padding: 10px 8px;
    text-align: left;
    width: 320px;
}

.case-canshu dl:nth-of-type(2) {
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

@media screen and (max-width: 1500px) {
    .case-top-text h1 {
        font-size: 35px;
    }

    .case-top-text .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .case-top-text h1 {
        font-size: 30px;
        max-width: 600px;
    }

    .case-top-text .text {
        max-width: 800px;
    }
}

@media screen and (max-width: 992px) {
    .case-top {
        height: 85vh;
    }

    .case-top-text h1 {
        font-size: 28px;
    }

    .case-top-text .text {
        max-width: 800px;
        font-size: 14px;
    }

    .case-top-text .sp-title {
        font-size: 16px;
    }

    .case-top .case-top-text {
        padding-top: 17vh;
        padding-bottom: 20px;
    }

    .waves {
        height: 40px;
        min-height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .case-top-text h1 {
        font-size: 26px;
    }

    .case-top-text .sp-title {
        font-size: 14px;
    }

    .case-top-text .text {
        font-size: 13px;
        padding: 15px;
    }
}

@media screen and (max-width: 620px) {
    .case-canshu dl dt {
        font-size: 12px;
        width: 47%;
    }

    .case-canshu dl dd {
        font-size: 12px;
        width: 50%;
    }
}

@media screen and (max-width: 360px) {
    .case-top-text h1 {
        font-size: 18px;
    }

    .case-top .case-top-text {
        padding-bottom: 30px;
    }
}

/* case-content1 */
.case-tablebox h2 {
    font-weight: bold !important;

}

.case-tablebox iframe {
    width: 100%;
    height: 445px;
    max-width: 680px;

}

.case-tablebox iframe #player {
    padding-top: 60px
}



.case-tablebox .blockart-spacing {
    height: 20px !important;
}


.s-bt {
    font-size: 26px;
    color: #222;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-left: 26px;
    font-weight: 600;
}

.s-bt::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 20px;
    color: #222;
}

.case-list li {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-list li .text {
    padding-right: 20px;
}

.case-list li::before {
    content: "";
    background-color: #363636;
    width: calc(100% - 380px);
    height: auto;
    position: absolute;
    right: 0;
    bottom: -10px;
    top: -10px;
    border-radius: 15px;
}

.case-list li:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.case-list li:nth-of-type(2n) .text {
    padding-left: 20px;
}

.case-list li:nth-of-type(2n)::before {
    right: inherit;
    left: 0;
    background: #ff6d00;
    background: linear-gradient(to right, #ff6d00, #ee9f1e);
    background: -webkit-linear-gradient(right, #ff6d00, #ee9f1e);
    background: -o-linear-gradient(right, #ff6d00, #ee9f1e);
    background: -moz-linear-gradient(right, #ff6d00, #ee9f1e);
}

.case-list li .img {
    display: block;
    width: 460px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.case-list li .img img {
    width: 100%;
    height: auto;
    display: block;
}

.case-list li .text {
    width: calc(100% - 480px);
    font-size: 18px;
    color: #222;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .case-list li .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .s-bt {
        font-size: 24px;
    }

    .case-list li .text {
        font-size: 14px;
        width: calc(100% - 400px);
    }

    .case-list li .img {
        width: 380px;
    }

    .case-list li::before {
        width: calc(100% - 280px);
    }
}

@media screen and (max-width: 680px) {
    .s-bt {
        font-size: 20px;
    }

    .case-list li {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .case-list li .img {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }

    .case-list li .text {
        width: 100%;
    }

    .case-list li::before {
        width: 100%;
        bottom: 0;
        top: 0;
    }

    .case-list li .text {
        padding: 15px;
    }

    .case-tablebox iframe {
        height: 315px;

    }
}

/* case-contbox  */
.case-contbox {
    padding-top: 40px;
    position: relative;
}

.case-contbox::before {
    content: "";
    background-color: #fff3ea;
    width: 100%;
    height: 70%;
    position: absolute;
    left: 0;
    top: 0;
}

.case-contbox .warp-mb {
    position: relative;
    z-index: 2;
}

.case-contbox p {
    background-color: #fff;
    font-size: 18px;
    color: #222;
    line-height: 1.8;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.case-contbox .img {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.case-contbox .img img {
    display: block;
    width: 100%;
    height: auto;
}

.case-contbox .img .m {
    display: none;
}

@media screen and (max-width: 992px) {
    .case-contbox p {
        font-size: 16px;
        padding: 30px 20px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 768px) {
    .case-contbox p {
        font-size: 14px;
        padding: 20px 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 640px) {
    .case-contbox .img .m {
        display: block;
    }

    .case-contbox .img .pc {
        display: none;
    }
}

.case-contbox2 {
    background: url(../images/case-contbox2-bg.jpg) no-repeat top center;
    background-size: cover;
}

.case-contbox2 p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    padding-top: 50px;
}

@media screen and (max-width: 992px) {
    .case-contbox2 p {
        font-size: 16px;
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .case-contbox2 p {
        font-size: 14px;
        padding-top: 30px;
    }
}

/* case Details*/





/* right-faix */
.slide-faix {
    position: fixed;
    right: 0;
    top: 22%;
    z-index: 666666;
    background-color: #ff5500;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.slide-faix .item-list {
    width: 45px;
    height: 45px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slide-faix .item-list+.item-list {
    border-top: solid 1px #fff;
}

.slide-faix .item-list .icon {
    display: block;
}

.slide-faix .item-list .title {
    padding: 0 15px;
    height: 100%;
    font-weight: normal;
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: -200px;
    z-index: -1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff5500;
    color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-style: normal;
}

.slide-faix .item-list .title:after {
    content: " ";
    position: absolute;
    top: 50%;
    right: -4px;
    margin-top: -5px;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ff5500;
    color: #ff5500;
}

.slide-faix .item-list:hover .title {
    right: 48px;
    opacity: 1;
}

.slide-faix .item-list .bt {
    display: none;
}

.slide-faix .search-navs {
    display: none;
    position: absolute;
    right: 50px;
    bottom: 45px;
    width: 300px;
    z-index: 58;
    background-color: #1a3895;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
}

.slide-faix .search-navs.on {
    display: block;
}

.search-navs .search-field {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    line-height: 45px;
    height: 45px;
}

.search-navs .zs-close {
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 45px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    text-align: center;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    .slide-faix .search-navs {
        width: 100%;
        height: 45px;
        right: 0;
        bottom: 10px;
    }

    .slide-faix {
        right: 0;
        top: initial;
        left: 0;
        bottom: 0;
        display: flex;
    }

    .slide-faix .item-list {
        width: 20%;
        height: auto;
        padding: 10px;
    }

    .slide-faix .item-list .icon {
        display: block;
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }

    .slide-faix .item-list .title {
        display: none;
    }

    .slide-faix .item-list .bt {
        display: block;
        color: #fff;
        font-style: normal;
        text-align: center;
        margin-top: 5px;
        font-size: 14px;
    }

    .slide-faix .item-list+.item-list {
        border-top: none;
        border-left: solid 1px #2b479d;
    }
}

@media screen and (max-width: 500px) {
    .slide-faix .item-list .icon {
        width: 20px;
        height: 20px;
    }

    .slide-faix .item-list {
        padding: 5px 0;
    }

    .slide-faix .item-list .bt {
        font-size: 12px;
        line-height: 1;
        margin-top: 5px;
    }

    .slide-faix .item-list {
        padding: 7px 0;
    }
}

/* right-faix */




/*弹窗*/
.msg-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 66666;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    display: none;
}

.msg-box .clock {
    width: 30px;
    height: 30px;
    background: url(../images/ck-cuo.png) no-repeat center;
    background-size: 24px;
    position: absolute;
    right: 10px;
    top: 6px;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
    transform-origin: center;
    z-index: 6;
}

.msg-box .clock:hover {
    transform: rotate(360deg);
}

.msg-box .bt {
    font-size: 26px;
    text-transform: capitalize;
    display: block;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.msg-box .bt::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    bottom: 0;
}

#msg-boxbg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 66665;
}

@media screen and (max-width: 768px) {
    .msg-box {
        width: 98%;
    }
}



/* search-results */
.search-box .title {
    font-size: 28px;
    color: #333;
    text-transform: capitalize;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #ff5500;
    font-weight: 500;
}

.search-box ul {
    margin-left: -1%;
}

.search-box li {
    transition: all 0.3s;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    width: 24%;
    margin-left: 1%;
    float: left;
    margin-top: 30px;
}

.search-box li .img {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    display: block;
}

.search-box li .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.search-box li h3 {
    padding: 15px 60px 15px 15px;
    position: relative;
}

.search-box li h3::before {
    content: '';
    width: 3px;
    height: 30px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.search-box li h3 a {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.5;
    display: block;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.search-box li:hover h3 a {
    color: #ff5500;
}

@media screen and (max-width: 1200px) {
    .search-box li {
        width: 32.333333%;
    }
}

@media screen and (max-width: 768px) {
    .search-box li {
        width: 49%;
    }
}

@media screen and (max-width: 414px) {
    .search-box li {
        width: 99%;
        float: none;
    }
}

/* search-results */

/* fore-box  */
.fore-box .imgs {
    display: block;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

.fore-box .textdeah-box {
    position: relative;
    max-width: 800px !important;
    padding: 20px;
    background-color: #054124;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    z-index: 2;
}

.fore-box .textdeah-box .text {
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.5;
    font-size: 18px;
}

.fore-box .textdeah-box .text a {
    color: #ff5500;
}

.fore-box .textdeah-box::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 60px;
    background-color: #939393;
    position: absolute;
    left: 15%;
    top: -60px;
}

.fore-box .textdeah-box::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 60px;
    background-color: #939393;
    position: absolute;
    right: 15%;
    top: -60px;
}

.fore-box .textdeah-box .search {
    display: block;
    max-width: 400px !important;
    margin: 15px auto;
    position: relative;
}

.fore-box .textdeah-box .search::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/fdj-icon.png) no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.fore-box .textdeah-box .search .search-field {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-transform: capitalize;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    padding: 0 30px 0 10px;
    background-color: #02522b;
    border: none;
}

.fore-box .textdeah-box .search .search-field:focus {
    border: none !important;
    background-color: #02522b !important;
}

.fore-box .textdeah-box .search .search-field::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.fore-box .textdeah-box .search .search-field:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.fore-box .textdeah-box .search .search-field::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.fore-box .textdeah-box .search .search-field::-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

@media screen and (max-width: 768px) {
    .fore-box .textdeah-box {
        margin: 30px auto 0;
        padding: 15px 10px;
    }

    .fore-box .textdeah-box::after,
    .fore-box .textdeah-box::before {
        height: 30px;
        top: -30px;
    }

    .fore-box .textdeah-box .text {
        font-size: 14px;
    }
}

/* fore-box  */


/* sol单页 */
.strategy-top {
    position: relative;
}

.strategy-top::after {
    content: "";
    background-color: #ff8800;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.strategy-top-bg::before {
    content: "";
    width: 53%;
    height: 100%;
    background: url(../images/top-img.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.strategy-top-bg1::before {
    content: "";
    width: 53%;
    height: 100%;
    background: url(../images/top-img1.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.strategy-top-bg2::before {
    content: "";
    width: 53%;
    height: 100%;
    background: url(../images/top-img2.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.strategy-top-bg3::before {
    content: "";
    width: 53%;
    height: 100%;
    background: url(../images/top-img4.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.strategy-top .strategy-text {
    width: 52%;
    position: relative;
    z-index: 2;
    padding-top: 220px;
    padding-bottom: 220px;
    background-color: #ff8800;
}

.strategy-top .strategy-text::before {
    content: "";
    width: 193px;
    height: 100%;
    background: url(../images/top-imgbg.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: -193px;
    top: 0;
}

.strategy-text h1 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-shadow: -2px -2px 0 #502910, 2px -2px 0 #502910, -2px 2px 0 #502910,
        2px 2px 0 #502910;
    letter-spacing: 1px;
}

.strategy-text .txt {
    background-color: #ff6712;
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    max-width: 500px;
    position: relative;
    padding: 45px 30px;
    border-radius: 15px;
}

.strategy-text .txt p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.strategy-text .txt .more {
    position: absolute;
    right: 30px;
    bottom: -15px;
    font-size: 14px;
    color: #333;
    line-height: 40px;
    padding: 0 40px 0 10px;
    border-radius: 10px;
    font-weight: 600;
    background: #fff url(../images/left-btn.png) no-repeat right 10px center;
    background-size: 20px;
}

@media screen and (max-width: 1500px) {
    .strategy-top .strategy-text {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 1200px) {
    .strategy-top .strategy-text {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .strategy-text h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .strategy-text .txt {
        max-width: 400px;
        padding: 30px 20px;
    }

    .strategy-top .strategy-text::before {
        width: 140px;
        right: -140px;
    }
}

@media screen and (max-width: 992px) {
    .strategy-top .strategy-text {
        padding-top: 120px;
        padding-bottom: 120px;
        width: 60%;
    }

    .strategy-top .strategy-text::before {
        width: 120px;
        right: -120px;
        background-size: cover;
    }

    .strategy-text h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .strategy-text .txt p {
        font-size: 16px;
    }

    .strategy-text .txt .more {
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .strategy-text h1 {
        max-width: 600px;
        margin: 0 auto 20px;
    }

    .strategy-top .strategy-text::before {
        display: none;
    }

    .strategy-top::before {
        width: 100%;
    }

    .strategy-top::after {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .strategy-top .strategy-text {
        background-color: transparent;
        text-align: center;
        width: 100%;
    }

    .strategy-text .txt {
        margin: 0 auto;
        padding: 15px 20px 30px;
    }

    .strategy-text .txt .more {
        position: absolute;
        left: 50%;
        right: inherit;
        transform: translateX(-50%);
    }
}

/* strategy-content1 */
.strategy-content1 .xqy-h2 {
    font-size: 32px;
    color: #222;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.strategy-content1 .xqy-h2::before {
    content: "";
    width: 100px;
    height: 3px;
    background-color: #fe7316;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.strategy-content1 ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.strategy-content1 li {
    width: 49%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 30px;
}

.strategy-content1 .l1 {
    background-color: #f0f0f0;
    padding: 15px;
    position: relative;
    border: dashed 1px #fe7316;
    border-radius: 5px;
}

.strategy-content1 .l1::before {
    content: "";
    width: 130px;
    height: 130px;
    background-color: #fcdab0;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 0;
}

.strategy-content1 li i {
    position: absolute;
    left: 30px;
    top: 15px;
    /* 回退方案：对于不支持渐变的浏览器 */
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    background-color: #ff6712;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    font-style: normal;
}

.strategy-content1 li .img {
    width: 40%;
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

.strategy-content1 li h3 {
    width: 45%;
    font-size: 22px;
    text-transform: capitalize;
    line-height: 1.2;
    color: #1e1e1e;
}

@media screen and (max-width: 1500px) {
    .strategy-content1 .l1::before {
        width: 100px;
        height: 100px;
    }

    .strategy-content1 li i {
        left: 40px;
        top: 20px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .strategy-content1 li h3 {
        font-size: 20px;
    }

    .strategy-content1 .xqy-h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    .strategy-content1 .xqy-h2 {
        font-size: 24px;
    }

    .strategy-content1 .l1::before {
        width: 60px;
        height: 60px;
    }

    .strategy-content1 li i {
        left: 20px;
        top: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .strategy-content1 li h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .strategy-content1 .xqy-h2 {
        font-size: 22px;
    }

    .strategy-content1 li {
        margin-top: 20px;
    }

    .strategy-content1 li h3 {
        width: auto;
        position: relative;
        z-index: 2;
    }
}

@media screen and (max-width: 600px) {
    .strategy-content1 li {
        width: 100%;
    }
}

/* strategy-content1 */

/* strategy-content2 */
.strategy-content2 {
    background-color: #f7f7f7;
}

.strategy-content2 .strategy-contentbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strategy-contentbox .strategy-text {
    width: 45%;
}

.strategy-text .tit-icon {
    width: 200px;
    display: block;
    margin-bottom: 10px;
}

.strategy-text h3 {
    font-size: 38px;
    color: #222;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 15px;
}

.strategy-text .text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.strategy-contentbox .strategy-img {
    width: 48%;
}

@media screen and (max-width: 1200px) {
    .strategy-text h3 {
        font-size: 30px;
    }

    .strategy-text .tit-icon {
        width: 100px;
    }

    .strategy-text .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .strategy-text h3 {
        font-size: 26px;
    }

    .strategy-text .tit-icon {
        width: 80px;
    }

    .strategy-text .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .strategy-contentbox .strategy-text {
        width: 100%;
    }

    .strategy-contentbox .strategy-img {
        display: none;
    }
}

/* strategy-content2 */

/* strategy-content3 */
.strategy-content3 h2 {
    font-size: 38px;
    color: #111;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.strategy-content3 .text {
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    background-color: #ff6712;
    padding: 30px;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.strategy-content3 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.strategy-content3 li {
    width: 24%;
    margin-top: 20px;
}

.strategy-content3 li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.strategy-content3 li h3 {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.3;
    margin-top: 10px;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    .strategy-content3 h2 {
        font-size: 32px;
    }

    .strategy-content3 .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .strategy-content3 li h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .strategy-content3 h2 {
        font-size: 28px;
    }

    .strategy-content3 li {
        width: 31%;
    }

    .strategy-content3 .text {
        font-size: 14px;
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .strategy-content3 h2 {
        font-size: 24px;
    }

    .strategy-content3 li {
        width: 48%;
    }
}

@media screen and (max-width: 640px) {
    .strategy-content3 li h3 {
        font-size: 16px;
    }
}

/* strategy-content3 */

/* strategy-content4 */
.strategy-content4 {
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    background-color: #ff6712;
}

.strategy-content4 h2 {
    font-size: 38px;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.strategy-content4 .text {
    background-color: #fff;
    padding: 30px;
    color: #333;
    font-size: 18px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.strategy-content4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;
}

.strategy-content4 li {
    width: 29%;
    margin-top: 20px;
}

.strategy-content4 li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width: 1500px) {
    .strategy-content4 h2 {
        font-size: 32px;
    }

    .strategy-content4 .text {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .strategy-content4 h2 {
        font-size: 28px;
    }

    .strategy-content3 li {
        width: 31%;
    }

    .strategy-content4 li {
        width: 32%;
    }

    .strategy-content4 .text {
        font-size: 14px;
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .strategy-content4 h2 {
        font-size: 24px;
    }

    .strategy-content4 li {
        width: 48%;
    }
}

@media screen and (max-width: 640px) {
    .strategy-content4 .text {
        font-size: 12px;
        padding: 15px;
    }
}

/* strategy-content4 */

/* strategy-ship */
.strategy-ship {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strategy-ship .strategy-shiptxt {
    width: 48%;
}

.strategy-shiptxt h2 {
    font-size: 38px;
    color: #222;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 10px;
}

.strategy-shiptxt .text {
    color: #222;
    font-size: 18px;
    line-height: 1.6;
}

.strategy-ship .strategy-shipvip {
    width: 48%;
}

.strategy-shipvip video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width: 1200px) {
    .strategy-shiptxt h2 {
        font-size: 32px;
    }

    .strategy-shiptxt .text {
        font-size: 16px;
    }

    .about-items li span {
        font-size: 18px;
    }

    .about-items li img {
        width: 50px;
    }
}

@media screen and (max-width: 992px) {
    .aboutpg-box .about-text {
        padding-left: 20px;
    }

    .strategy-shiptxt h2 {
        font-size: 28px;
    }

    .strategy-shiptxt .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .strategy-ship {
        flex-wrap: wrap;
    }

    .strategy-shiptxt h2 {
        font-size: 24px;
    }

    .strategy-ship .strategy-shiptxt {
        width: 100%;
    }

    .strategy-ship .strategy-shipvip {
        width: 100%;
        margin-top: 20px;
    }
}

/* strategy-ship */

/* aboutpg-box  */
.aboutpg-box {
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    background-color: #ff6712;
}

.aboutpg-box .about-text {
    padding-right: 52%;
    position: relative;
    background-color: #fff;
    padding-left: 30px;
}

.about-text::before {
    content: "";
    width: 48%;
    height: 100%;
    background: url(../images/about-imgs.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.about-text h2 {
    font-size: 38px;
    color: #222;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-text h2 span {
    color: #ff6712;
}

.about-text p {
    color: #222;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-text .more {
    display: block;
    background: linear-gradient(to right, #fb9008, #ff6712);
    background: -webkit-linear-gradient(to right, #fb9008, #ff6712);
    background: -moz-linear-gradient(to right, #fb9008, #ff6712);
    background-color: #ff6712;
    max-width: 180px;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 40px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.about-items {
    display: flex;
    justify-content: space-between;
}

.about-items li {
    width: 24%;
    text-align: center;
}

.about-items li img {
    display: block;
    width: 60px;
    margin: 10px auto;
}

.about-items li span {
    font-size: 20px;
    color: #fe7916;
    display: block;
    text-transform: capitalize;
}

.about-items li span strong {
    display: block;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .about-items li span {
        font-size: 18px;
    }

    .about-items li img {
        width: 50px;
    }
}

@media screen and (max-width: 992px) {
    .aboutpg-box .about-text {
        padding-left: 20px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-items li span {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .aboutpg-box .about-text {
        padding-right: 0;
    }

    .about-text::before {
        display: none;
    }

    .about-items li {
        width: 48%;
    }

    .about-items {
        flex-wrap: wrap;
    }

    .about-items li span {
        font-size: 12px;
    }
}

/* aboutpg-box  */

/* strategy-content5 */
.strategy-content5 {
    background: url(../images/contents-bg.jpg) no-repeat top center;
    background-size: 1400px auto;
    overflow: hidden;
}

.about-btmbox h2 {
    font-size: 38px;
    color: #000;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-btmbox .text {
    color: #333;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

.about-btmbox img {
    display: block;
    width: 100%;
    height: a;
}

.btm-conter {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    background-color: #ff5500;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-radius: 10px;
}

.about-btmbox .a-whatapp {
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    background: url(../images/whatsapp-icon.png) no-repeat left 10px center;
    background-size: 20px;
    padding-left: 40px;
    padding-right: 15px;

}

.about-btmbox .a-email {
    background: url(../images/email-icon.png) no-repeat left 10px center;
    background-size: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    padding-left: 40px;
    padding-right: 15px;

}

.about-btmbox .a-whatapp:hover,
.about-btmbox .a-email:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .about-btmbox h2 {
        font-size: 32px;
    }

    .about-btmbox .text {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

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

    .about-btmbox h2 {
        font-size: 28px;
    }

    .about-btmbox .text {
        font-size: 14px;
    }
}

/* strategy-content5 */
/*sol单页*/

/* soltion-list */
.soltion-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #dcdcdc;
}

.soltion-list li .img {
    display: block;
    width: 25%;
}

.soltion-list li .img img {
    display: block;
    width: 100%;
    height: auto;
}

.soltion-list li .text {
    width: 73%;
}

.soltion-list li .text h3 a {
    font-size: 22px;
    text-transform: capitalize;
    color: #111;
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-bottom: 12px;
    position: relative;
}

.soltion-list li .text h3 a::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #ff5500;
    position: absolute;
    left: 0;
    bottom: 0;
}

.soltion-list li .text .txt {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

@media screen and (max-width: 1200px) {
    .soltion-list li .img {
        width: 40%;
    }

    .soltion-list li .text {
        width: 58%;
    }

    .soltion-list li .btn {
        max-width: 120px;
    }

    .soltion-list li .btn i {
        line-height: 40px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 992px) {
    .soltion-list li .img {
        width: 45%;
    }

    .soltion-list li .text {
        width: 53%;
    }

    .soltion-list li .text h3 a {
        font-size: 20px;
    }

    .soltion-list li .text .txt {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .soltion-list li {
        flex-direction: column;
    }

    .soltion-list li .img {
        width: 100%;
    }

    .soltion-list li .text {
        width: 100%;
        margin-top: 20px;
    }
}

/* soltion-list */

/*侧边栏活动*/


.img-swt {
    width: 120px !important;
    height: 120px !important;
    position: fixed;
    left: 2%;
    top: 30%;
    z-index: 666;
    cursor: pointer;
    animation: vertical-scroll 5s cubic-bezier(.5, 0, .5, 1) infinite
}

.img-swt br {
    display: none
}

.img-swt img {
    display: block;
    width: 100%;
    height: 100%
}

.img-swt .closes {
    font-style: normal;
    font-size: 16px;
    width: 20px;
    text-align: center;
    line-height: 17px;
    height: 20px;
    border-radius: 50%;
    border: solid 1px #9c0;
    color: #9c0 !important;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: all .3s
}

.img-swt .closes:hover {
    transform: rotate(360deg)
}

@keyframes vertical-scroll {
    0% {
        top: 30%
    }

    60% {
        top: 35%
    }

    100% {
        top: 30%
    }
}

@media screen and (max-width: 640px) {
    .img-swt {
        width: 80px !important;
        height: 80px !important;
        left: 10px;
        top: 30%
    }
}

/*侧边栏活动*/

/* loading 单页 */

.loading-banner {
    position: relative;
}

.loading-banner .img {
    display: block;
}

.loading-banner .img img {
    display: block;
    width: 100%;
    height: auto;
}

.loading-banner .loading-text {
    width: 100%;
    max-width: 800px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #ff5500;
    border-radius: 50px 0 0 0;
    padding: 30px;
}

.loading-banner .loading-text .tit {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    display: block;
    color: #fff;
}

.loading-banner .loading-text .clise {
    width: 200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 15px;
    margin-top: 40px;
    position: relative;
    margin-bottom: 15px;
}

.loading-banner .loading-text .clise::before {
    content: "";
    width: auto;
    height: 0;
    border: dashed 1px #fff;
    position: absolute;
    top: 7px;
    left: 5px;
    right: 5px;
}

.loading-banner .loading-text .clise i {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

.loading-banner .loading-text .clise i:last-child::before {
    content: "";
    width: auto;
    height: auto;
    position: absolute;
    left: -17.5px;
    right: -17.5px;
    top: -17.5px;
    bottom: -17.5px;
    border-radius: 50%;
    border: solid 1px #fff;
}

.loading-banner .loading-text strong {
    color: #fff;
    font-size: 50px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    position: absolute;
    line-height: 1.2;
    right: 100px;
    letter-spacing: 2px;
    top: -30px;
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .loading-banner .loading-text {
        max-width: 500px;
    }

    .loading-banner .loading-text .tit {
        font-size: 18px;
    }

    .loading-banner .loading-text strong {
        font-size: 40px;
        right: 30px;
        top: -25px;
    }

    .loading-banner .loading-text .clise {
        width: 150px;
        height: 10px;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .loading-banner .loading-text .clise::before {
        top: 5px;
        left: 3px;
        right: 3px;
    }

    .loading-banner .loading-text .clise i {
        width: 10px;
        height: 10px;
    }

    .loading-banner .loading-text .clise i:last-child::before {
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}

@media screen and (max-width: 520px) {
    .loading-banner .loading-text {
        background-color: rgba(255, 85, 0, 0.6);
    }

    .loading-banner .loading-text {
        max-width: 100%;
        border-radius: 0;
        padding: 30px 20px 20px;
    }

    .loading-banner .loading-text strong {
        font-size: 30px;
        right: 10px;
        top: -40px;
    }

    .loading-banner .loading-text .tit {
        font-size: 16px;
    }

    .loading-banner .loading-text .clise {
        width: 100px;
        height: 8px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .loading-banner .loading-text .clise::before {
        top: 4px;
    }

    .loading-banner .loading-text .clise i {
        width: 8px;
        height: 8px;
    }

    .loading-banner .loading-text .clise i:last-child::before {
        left: -5px;
        right: -5px;
        top: -5px;
        bottom: -5px;
    }
}



/* === */
.loading-about {
    background: url(../images/loading-aboutbg.jpg) no-repeat top center;
    background-size: cover;
}

.loading-about .loading-aboutbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.loading-aboutbox .aboutbox-text {
    width: 60%;
}

.aboutbox-text .ht {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.aboutbox-text .ht span {
    color: #ff5500;
}

.aboutbox-text .txt {
    font-size: 20px;
    line-height: 1.6;
    color: #222222;
    text-align: justify;
}


.loading-aboutbox .aboutbox-num {
    width: 30%;
}


.aboutbox-num .list li {
    width: 100%;
    text-align: left;
    position: relative;
    padding-right: 60px;
}

.aboutbox-num .list li::before {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aboutbox-num .list li.l1::before {
    background: url(../images/num-icon1.png) no-repeat center;
    background-size: contain;
}

.aboutbox-num .list li.l2::before {
    background: url(../images/num-icon2.png) no-repeat center;
    background-size: contain;
}

.aboutbox-num .list li.l3::before {
    background: url(../images/num-icon3.png) no-repeat center;
    background-size: contain;
}

.aboutbox-num .list li.l4::before {
    background: url(../images/num-icon4.png) no-repeat center;
    background-size: contain;
}


.aboutbox-num .list li+li {
    margin-top: 25px;
    padding-top: 25px;
    border-top: solid 1px #c3c3c3;
}

.aboutbox-num .list .numb {
    font-size: 45px;
    display: block;
    font-weight: bold;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #ff5500;
}

.aboutbox-num .list .numb::after {
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
    color: #ff5500;
}

.aboutbox-num .list li.l4 .numb::after {
    content: "m²+";
}

.aboutbox-num .list .pt {
    font-size: 15px;
    color: #222222;
    text-transform: capitalize;
    line-height: 1.5;
}

.aboutbox-num .list .pt br {
    display: none;
}

@media screen and (max-width: 1200px) {
    .loading-aboutbox .aboutbox-text {
        width: 55%;
    }

    .loading-aboutbox .aboutbox-num {
        width: 40%;
    }

    .aboutbox-text .ht {
        font-size: 32px;
    }

    .aboutbox-text .txt {
        font-size: 18px;
    }

    .aboutbox-num .list li+li {
        margin-top: 20px;
        padding-top: 20px;
    }

    .aboutbox-num .list .numb {
        font-size: 40px;
    }

    .aboutbox-num .list li::before {
        width: 50px;
        height: 50px;
    }

    .aboutbox-num .list .pt {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .loading-aboutbox .aboutbox-text {
        width: 100%;
    }

    .loading-aboutbox .aboutbox-num {
        width: 100%;
        margin-top: 30px;
    }

    .aboutbox-text .ht {
        font-size: 28px;
    }

    .aboutbox-text .txt {
        font-size: 16px;
    }

    .aboutbox-num .list .numb {
        font-size: 36px;
    }

    .aboutbox-num .list li+li {
        margin-top: 15px;
        padding-top: 15px;
    }
}

@media screen and (max-width: 520px) {
    .aboutbox-text .txt {
        font-size: 14px;
    }
}

/* == */

/*首页增加版块css*/

.access-box {
    width: 100%;
}

.scroller__inner {
    display: flex;
    gap: 1rem;
    padding-block: 1rem;
    flex-wrap: wrap;
}

.access-box[data-animated="true"] {
    overflow: hidden;
    /* mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
}

.access-box[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 100s) var(--_animation-direction, normal) linear infinite;
}

.access-box[data-duration="fast"] {
    --_animation-duration: 80s;
}

.access-box[data-duration="slow"] {
    --_animation-duration: 100s;
}

.access-box[data-direction="right"] {
    --_animation-direction: reverse;
}

.access-box[data-direction="left"] {
    --_animation-direction: normal;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.access-box .img {
    width: 300px;
    height: auto;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.access-box .img img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 992px) {
    .access-box .img {
        width: 200px;
    }

    .access-box[data-duration="fast"] {
        --_animation-duration: 50s;
    }

    .access-box[data-duration="slow"] {
        --_animation-duration: 50s;
    }
}

@media screen and (max-width: 768px) {
    .access-box .img {
        width: 120px;
    }

    .access-box[data-duration="fast"] {
        --_animation-duration: 30s;
    }

    .access-box[data-duration="slow"] {
        --_animation-duration: 30s;
    }
}

/* index-access */

/*首页增加版块css*/

/* loading-track */
.loading-track .loading-trackbox {
    position: relative;
    padding: 50px 5% 0;
}

.loading-track .loading-trackbox::before {
    content: "";
    width: 100%;
    background-color: #fff;
    height: auto;
    position: absolute;
    border-radius: 20px 20px 0 0;
    left: 0;
    top: 0;
    bottom: -200px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1), -5px -5px 5px 0px rgba(0, 0, 0, 0.1);
}

.loading-track .loading-trackbox .bt {
    position: relative;
    z-index: 2;
    font-size: 50px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.loading-track .loading-trackbox ul {
    position: relative;
    z-index: 2;
}

.loading-track .loading-trackbox li {
    position: relative;
    font-size: 20px;
    text-transform: capitalize;
    color: #222;
    line-height: 50px;
    padding-left: 15px;
}

.loading-track .loading-trackbox li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff5500;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.loading-track .img {
    display: block;
    position: relative;
}

.loading-track .img img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 66;
}

@media screen and (max-width: 1200px) {
    .loading-track .loading-trackbox .bt {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .loading-track .loading-trackbox li {
        font-size: 18px;
        line-height: 40px;
    }

    .loading-track .loading-trackbox::before {
        bottom: -100px;
    }
}

@media screen and (max-width: 992px) {
    .loading-track .loading-trackbox .bt {
        font-size: 30px;
    }

    .loading-track .loading-trackbox li {
        font-size: 16px;
    }

    .loading-track .loading-trackbox::before {
        bottom: -80px;
    }

    .loading-track .img {
        margin-top: -30px;
    }
}

@media screen and (max-width: 768px) {
    .loading-track .loading-trackbox {
        padding: 30px 30px 0;
    }
}

@media screen and (max-width: 640px) {
    .loading-track .loading-trackbox::before {
        bottom: -30px;
    }
}

@media screen and (max-width: 400px) {
    .loading-track .img {
        margin-top: -10px;
    }
}

/* loading-track */

/* loading-mach */
.loading-mach {
    padding: 20px 0 20px 50px;
    border-left: solid 1px #ff5500;
    background: url(../images/loading-logobg.jpg) no-repeat left 100px center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.loading-mach .h2 {
    font-size: 50px;
    text-transform: capitalize;
    color: #222;
    line-height: 1.2;
}

.loading-farm {
    position: relative;
    background: url(../images/loading-xdbg.jpg) no-repeat center;
}

.loading-farm::before {
    content: "";
    width: 98%;
    height: 30%;
    background-image: linear-gradient(90deg,
            #ff5b51 0,
            #ffa10c 100%);
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 30px 0 0 0;
}

.loading-farm .warp-mb {
    position: relative;
    z-index: 2;
}

.loading-farm .loading-farmbox {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1440px) {
    .loading-farm::before {
        width: 100%;
        border-radius: 0;
    }

    .loading-mach .h2 {
        font-size: 43px;
    }
}

@media screen and (max-width: 1200px) {
    .loading-mach .h2 {
        font-size: 38px;
    }

    .loading-mach {
        padding: 15px 0 15px 30px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .loading-farm .loading-farmbox {
        padding: 30px;

    }
}

@media screen and (max-width: 992px) {
    .loading-mach .h2 {
        font-size: 30px;
    }

    .loading-mach {
        background-size: 400px auto;
    }
}

@media screen and (max-width: 768px) {
    .loading-mach .h2 {
        font-size: 26px;
    }

    .loading-mach {
        background-size: 300px auto;
    }
}

@media screen and (max-width: 480px) {
    .loading-mach .h2 {
        font-size: 22px;
    }

    .loading-mach {
        background-size: 200px auto;
        margin-top: 0;
    }

    .loading-farm .loading-farmbox {
        padding: 30px 15px;
    }
}

/* loading-mach */


/* loading 单页 */

/* 2024 page  */
.mechanical-title {
    position: relative;
    padding-top: 20px;
}

.mechanical-title::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/mechanical-icon1.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.mechanical-title.mechanical-title1::before {
    background: url(../images/mechanical-icon2.png) no-repeat;
    background-size: contain;
}

.mechanical-title.mechanical-title2::before {
    background: url(../images/mechanical-icon3.png) no-repeat;
    background-size: contain;
}

.mechanical-title.mechanical-title3::before {
    background: url(../images/mechanical-icon4.png) no-repeat;
    background-size: contain;
}

.mechanical-title.mechanical-title4::before {
    background: url(../images/mechanical-icon5.png) no-repeat;
    background-size: contain;
}
.mechanical-title.mechanical-title5::before {
    background: url(../images/mechanical-icon6.png) no-repeat;
    background-size: contain;
}
.mechanical-title .h2 {
    position: relative;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-size: 36px;
    line-height: 1.2;
}

.mechanical-title .h2::before {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #faa143;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}

.dinis-mechanical {
    position: relative;
}

.dinis-mechanical img,
.mechanical-img img {
    display: block;
    width: 100%;
    height: auto;
}

.dinis-mechanical .bx-blt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
}

.wavest {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.mechanical-one1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
}

.mechanical-one1 li {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 610px;
    justify-content: space-between;
}

.mechanical-one1 li:nth-of-type(2) {
    flex-direction: column-reverse
}

.mechanical-one1 li .img {
    width: 100%;
    height: 300px;
    background-color: #ffe7cc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mechanical-one1 li h3 {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42210b;
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
}


.mechanical-one2 {
    background-color: #f6f6f6;
}

.mechanical-one2 .mechanical-title {
    padding-top: 40px;
}

.mechanical-one2 .mechanical-pro {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mechanical-one2 .mechanical-pro li {
    width: 24%;
    margin-bottom: 15px;
}

.mechanical-one2 .mechanical-pro li .img {
    display: block;
    position: relative;
    overflow: hidden;
}


.mechanical-one2 .mechanical-pro li .img::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(33, 38, 49, 0.8);
    transform-origin: top;
    -moz-transform: perspective(15em) rotateX(-20deg);
    -o-transform: perspective(15em) rotateX(-20deg);
    -ms-transform: perspective(15em) rotateX(-20deg);
    -webkit-transform: perspective(15em) rotateX(-20deg);
    transform: perspective(15em) rotateX(-20deg);
    -moz-transition: all 500ms ease-out 0s;
    -webkit-transition: all 500ms ease-out 0s;
    -ms-transition: all 500ms ease-out 0s;
    -o-transition: all 500ms ease-out 0s;
    transition: all 500ms ease-out 0s;
    opacity: 0;
    content: '';
}

.mechanical-one2 .mechanical-pro li:hover .img::before {
    -moz-transform: perspective(0em) rotateX(0deg);
    -o-transform: perspective(0em) rotateX(0deg);
    -ms-transform: perspective(0em) rotateX(0deg);
    -webkit-transform: perspective(0em) rotateX(0deg);
    transform: perspective(0em) rotateX(0deg);
    opacity: 1;
}

.mechanical-one2 .mechanical-pro li .img img {
    display: block;
    width: 100%;
    height: auto;
}

.mechanical-one2 .mechanical-pro li h3 a {
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.3;
    color: #42210b;
    display: block;
    margin-top: 10px;
}

.mechanical-one3 {
    background-color: #ff7003;
    background-image: linear-gradient(#ff7003 0, #fb8f09 100%);
}

.mechanical-one3 .mechanical-title,
.mechanical-one5 .mechanical-title {
    padding-top: 40px;
}

.mechanical-one3 .mechanical-title .h2,
.mechanical-one5 .mechanical-title .h2 {
    color: #fff;
}

.mechanical-one3 .mechanical-title .h2::before,
.mechanical-one5 .mechanical-title .h2::before {
    background-color: #fff;
}

.mechanical-one3 ul {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mechanical-one3 li {
    width: 24%;
}
.mechanical-one3 li br{
        display: none;
}
.mechanical-one3 li img {
    display: block;
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.mechanical-one3 li h3 {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.3;
    margin-top: 10px;
    text-align: center;
    color: #fff;
}

.mechanical-one4 {
    background-color: #f6f6f6;
}

.mechanical-one4 .p1s {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.3;
    color: #ff7508;
    text-align: center;
    font-weight: 600;
}

.mechanical-one4 .p2s {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.3;
    color: #42210b;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.mechanical-one4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mechanical-one4 li {
    width: 23%;
    margin-top: 10px;
}

.mechanical-one4 img {
    display: block;
    width: 100%;
    height: auto;
}

.mechanical-one4 .mechanical-title {
    padding-top: 40px;
}

.mechanical-one5 {
    background-color: #ff7003;
    background-image: linear-gradient(#ff7003 0, #fb8f09 100%);
}

.mechanical-one5 .one5-ul1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
}

.mechanical-one5 .one5-ul1 li {
    width: 32%;
    text-align: center;
}

.mechanical-one5 .one5-ul1 li h3 {
    font-size: 24px;
    text-transform: capitalize;
    color: #fd8006;
    line-height: 1.3;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 20px;
    background-color: #fff;
    border-radius: 80px;
}

.mechanical-one5 .one5-ul1 li p {
    color: #fff;
}

.mechanical-one5 .one5-ul2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
}

.mechanical-one5 .one5-ul2 li {
    width: 24%;
    text-align: center;
}

.mechanical-one5 .one5-ul2 li img {
    display: block;
    width: 100%;
    height: auto;
}

.mechanical-one6.mechanical-one5 {
    background-color: #fff;
    background-image: linear-gradient(#fff 0, #fff 100%);
    margin-top: 0;
}

.mechanical-one6.mechanical-one5 .mechanical-title {
    padding-top: 0px;
}

.mechanical-one6.mechanical-one5 .mechanical-title .h2 {
    color: #42210b;
}

.mechanical-one6.mechanical-one5 .mechanical-title .h2::before {
    background-color: #42210b;
}

.mechanical-one6.mechanical-one5 .one5-ul1 li h3 {
    color: #fff;
    background-color: #ff7508;
}



.mechanical-one6.mechanical-one5 .one5-ul1 li p {
    color: #42210b;
}

.mechanical-one7 .imgs img {
    display: block;
    width: 100%;
    height: auto;
}

.mechanical-one8 {
    background: url(../images/mechanical-action-img.jpg) no-repeat center;
    background-size: 100% auto;
}

.mechanical-one8 .text {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    background-color: #ff7003;
    background-image: linear-gradient(#ff7003 0, #fb8f09 100%);
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px;
    text-align: center;
}

.mechanical-one8 .text h3 {
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.mechanical-one8 .text p {
    color: #fff;
}

.mechanical-one9 {
    background-color: #ff7103;
    position: relative;
}

.mechanical-one9 .bx-blt {
    position: absolute;
    left: 0;
    width: 100%;
    top: -120px;
}

.mechanical-one9 strong {
    text-align: center;
    display: block;
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.mechanical-one9 p {
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.mechanical-one9 p a {
    color: #fff;
    font-size: 16px;
}
.text-tile {
    text-align: center;
}

.text-tile strong {
    display: inline-block;
    padding: 5px 20px;
    background-color: #ff6f03;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 10px;
}
@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1200px) {
    .mechanical-title .h2 {
        font-size: 32px;
    }

    .wavest {
        position: relative;
        width: 100%;
        height: 10vh;
        margin-bottom: -7px;
        /*Fix for safari gap*/
        min-height: 50px;
        max-height: 100px;
    }

    .mechanical-one9 .bx-blt {
        top: -80px;
    }
}

@media screen and (max-width: 992px) {
    .mechanical-one1 li {
        height: 450px;
    }

    .mechanical-one1 li .img {
        height: 220px;
    }

    .mechanical-one1 li .img img {
        width: 100px;
    }

    .mechanical-one1 li h3 {
        height: 200px;
    }

    .mechanical-one1 li h3 {
        font-size: 20px;
    }

    .mechanical-one2 .mechanical-pro li {
        width: 49%;
    }

    .mechanical-one5 .one5-ul1 li {
        width: 100%;
        margin-bottom: 20px;
    }

    .mechanical-one5 .one5-ul2 li {
        width: 48%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .mechanical-title .h2 {
        font-size: 28px;
    }

    .wavest {
        min-height: 25px;
        max-height: 50px;
    }

    .mechanical-one9 .bx-blt {
        top: -40px;
    }

    .mechanical-one3 li {
        width: 48%;
        margin-bottom: 15px;
    }

    .mechanical-one8 .text p br {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .mechanical-one1 li {
        height: 310px;
    }

    .mechanical-one1 li .img {
        height: 150px;
    }

    .mechanical-one1 li h3 {
        height: 150px;
    }

    .mechanical-one1 li .img img {
        width: 60px;
    }
}

@media screen and (max-width: 500px) {
    .mechanical-one1 li {
        width: 100%;
        height: auto;
    }

    .mechanical-one1 li:nth-of-type(2) {
        flex-direction: column;
    }

    .mechanical-one1 li h3 {
        height: auto;
        padding: 20px;
    }

    .mechanical-one1 li .img {
        height: auto;
        padding: 20px 10px;
    }

    .mechanical-one2 .mechanical-pro li {
        width: 100%;
    }

    .mechanical-one3 li h3 {
        font-size: 15px;
    }

    .mechanical-one4 li {
        width: 48%;
    }

    .mechanical-one4 .p1s,
    .mechanical-one4 .p2s {
        font-size: 14px;
    }
}

@media screen and (max-width: 380px) {
    .mechanical-title .h2 {
        font-size: 25px;
    }

    .wavest {
        min-height: 15px;
        max-height: 30px;
    }

    .mechanical-one9 .bx-blt { 
        top: -20px;
    }
}

/* 2024 page  */

 
/*case 分页*/

.zxy-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.zxy-pagination li .page-numbers {
    padding: 0 15px;
    width: auto;
    height: 30px;
    display: block;
    background-color: #333;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
}

.zxy-pagination li .page-numbers:hover {
    background-color: #ff5500;
}

.zxy-pagination li+li {
    margin-left: 5px;
}

.zxy-pagination li .page-numbers.current {
    background-color: #ff5500;
}

/*case 分页*/







/* ferris-wheels-for-sale  */
.ferris-wheels-box {
  position: relative;
}

.ferris-wheels-box .imgs img {
  width: 100%;
  height: auto;
  display: block;
}

.ferris-wheels-box .img-box {
  position: relative;
  background-color: #f5f5f7;
}

.ferris-wheels-box .img-box::before {
  content: "";
  width: 100%;
  height: auto;
  background: url(../images/ferris-wheels-for-sale-bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 20%;
}

.ferris-wheels-box .img-box video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}

.ferris-wheels-box .more {
  padding: 13px;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  display: block;
  font-size: 18px;
  color: #fff;
  background-color: #f83600;
  position: relative;
  z-index: 5;
  margin-top: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 260px;
  transition: all 0.3s;
}

.ferris-wheels-box .more:hover {
  background-color: #ff7d37;
  border-radius: 80px;
}
.ferris-wheels-box .img-btnbg{
	background-color: #f5f5f7;
}
.ferris-pro {
  background-color: #f83600;
  background-image: linear-gradient(-90deg, #f83600 0, #ff7d37 100%);
}

.ferris-pro .top-title h2 {
  color: #fff;
}

.ferris-pro ul {
  margin-left: -1%;
}

.ferris-pro li {
  width: 32.3333333333%;
  float: left;
  margin-top: 30px;
  margin-left: 1%;
}

.ferris-pro li .img {
  display: block;
}

.ferris-pro li .img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.ferris-pro li h3 a {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  line-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.ferris-wheels-box .btm-conter a {
  font-size: 26px;
}

@media screen and (max-width: 992px) {
  .ferris-pro li {
    width: 49%;
    margin-top: 20px;
  }

  .ferris-wheels-box .btm-conter a {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .ferris-pro li h3 a {
    font-size: 16px;
    line-height: 40px;
  }

  .ferris-wheels-box .btm-conter a {
    font-size: 18px;
  }

  .ferris-wheels-box .img-box .more {
    padding: 10px;
    font-size: 16px;

  }

}

@media screen and (max-width: 480px) {
  .ferris-pro li h3 a {
    font-size: 14px;
    line-height: 30px;
  }
}
/* ferris-wheels-for-sale  */

.img-swt {
    width: 120px !important;
    height: 120px !important;
    position: fixed;
    left: 2%;
    top: 30%;
    z-index: 666666666666;
    cursor: pointer;
    animation: vertical-scroll 5s cubic-bezier(.5,0,.5,1) infinite
}

.img-swt br {
    display: none
}

.img-swt img {
    display: block;
    width: 100%;
    height: 100%
}

.img-swt .closes {
    font-style: normal;
    font-size: 16px;
    width: 20px;
    text-align: center;
    line-height: 17px;
    height: 20px;
    border-radius: 50%;
    border: solid 1px #9c0;
    color: #9c0 !important;
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
    transition: all .3s
}

.img-swt .closes:hover {
    transform: rotate(360deg)
}

@keyframes vertical-scroll {
    0% {
        top: 30%
    }

    60% {
        top: 35%
    }

    100% {
        top: 30%
    }
}

@media screen and (max-width: 640px) {
    .img-swt {
        width:80px!important;
        height: 80px!important;
        left: 10px;
        top: 30%
    }
}
