@font-face {
    font-family: "montserrat";
    font-weight: 300;
    src: url(../font/montserrat-v14-latin-300.woff2);
}

@font-face {
    font-family: "montserrat";
    font-weight: 500;
    src: url(../font/montserrat-v14-latin-500.woff2);
}

@font-face {
    font-family: "montserrat";
    font-weight: 700;
    src: url(../font/montserrat-v14-latin-700.woff2);
}


*,
html,
body {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    font-weight: 300;
    font-family: "Montserrat", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", "STSong", "SimSun", Arial, sans-serif;
}

html,
body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul,
ol,
dl,
li,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a {
    text-decoration: none;
}

input,
a,
img,
select {
    outline: none;
}

input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

select {
    background: transparent;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

/*清除浮动*/
.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.innerWrap {
    width: 80%;
    margin: 0 auto;
}
.innerWrap img {
    width: 100%;
    margin: 0 auto;
}
/*  */
.moTit {
    margin-bottom: 22px;
}

.moTit .moTit_en {
    font-style: inherit;
    font-size: 58px;
    line-height: 1;
    color: #44a54e;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: block;
}

.moTit_en span {
    color: #44a54e;
    font-weight: 500;
    font-size: 54px;
    line-height: 1;
    display: block;
}

.moTit_cn {
    display: block;
    font-size: 42px;
    line-height: 1.4;
    color: #44a54e;
    font-weight: 400;
}


.moTit p {
    font-size: 17px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.moTit.white em,
.moTit.white span,
.moTit.white h1,
.moTit.white p {
    color: #fff;
}

.moTit.center {
    text-align: center;
}

/*  */
.ysMore {
    margin-top: 89px;
    position: relative;
    padding-left: 38px;
    display: inline-block;
    z-index: 2;
}

.ysMore .more {
    display: inline-block;
    transition: cubic-bezier(0.215, .61, .355, 1) .45s;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
}

.ysMore:before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(31, 54, 143, 0.3);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -24px;
    z-index: -1;
    transition: cubic-bezier(0.215, .61, .355, 1) .45s;
}

@keyframes more1 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(.7);
    }
}

@keyframes more2 {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.ysMore:after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: #44a54e;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -1px;
    transition: cubic-bezier(0.215, .61, .355, 1) .45s;
}

.ysMore:hover:before {
    width: 118%;
    border-radius: 30px;
}

.ysMore:hover .more {
    color: #fff;
}

.ysMore:hover:after {
    background: #fff;
}

.ysMore.white .more {
    color: #fff;
}

.ysMore.white:before {
    background: rgba(255, 255, 255, .3);
}

.ysMore.white:after {
    background: #fff;
}

.ysMore.sm:before {
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.ysMore.sm:hover:before {
    width: 118%;
    border-radius: 30px;
}

/* 动画效果 */
.wgt-fade-animate {
    transform: scale(0.6) translateY(50px);
    opacity: 0;
}

.appear {
    -webkit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        transform: scale(0.6) translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes opacity_show {
    0% {
        transform: scale(0.6);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes opacity_show {
    0% {
        transform: scale(0.6);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        transform: scale(1);
        transform: translateY(0);
        opacity: 1;
    }
}

/*==========================================
    header
============================================================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(235, 236, 240, 0.18);
    text-align: right;
    z-index: 999;
    transition: all 0.28s;
}

.headLogo {
    float: left;
    margin: 16px 0 0 48px;
}

.headLogo img {
    width: 253px;
}

.headLogo_img2 {
    display: none;
}

.headNav {
    display: inline-block;
    min-width: 48%;
}

.headNav>ul {
    height: 100%;
    padding: 5vh 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    height: 84px;
    white-space: nowrap;
    padding: 0;
    -ms-flex-flow: row;
    flex-flow: row;
    overflow: hidden;
}

.headNav>ul>li {
    height: 100%;
    padding: 0 34px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    font-size: .95vw;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.headNav>ul>li:last-child {
    padding-right: 14px;
}

.headNav>ul>li>a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    position: relative;
}

.headNav>ul>li.other>a span {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 20px;
    margin-left: -4px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
}

.headNav>ul>li.other span::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    border: 1px solid #fff;
    -webkit-animation-duration: 1.5s;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-name: pulsing;
    animation-name: pulsing;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: cubic-bezier(.23, 1, .32, 1);
    animation-timing-function: cubic-bezier(.23, 1, .32, 1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@keyframes pulsing {
    0% {
        opacity: 1;
        transform: scale(0.5)
    }

    100% {
        opacity: 0;
        transform: scale(1.1)
    }
}

/* .headNav>ul>li.other{
    min-width: 238px;
} */
.headNav>ul>li.other>a {
    display: block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.28);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 12px 32px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    line-height: 1.4em;
    font-weight: 400;
    text-align: center;
    white-space: normal;
    z-index: 15;
    -webkit-transition: all 1s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all 1s cubic-bezier(.23, 1, .32, 1);
    transition: all 1s cubic-bezier(.23, 1, .32, 1);
    color: #fff;
    font-size: 15px;
}

.headIco {
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    height: 84px;
    line-height: 84px;
    padding: 0 2vw;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 600;
    text-transform: uppercase;
    border-left: 1px solid rgba(235, 236, 240, 0.18);
    -webkit-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

.headFlex {
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

.headIco_svg {
    outline: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    -webkit-transition: all 1s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all 1s cubic-bezier(.23, 1, .32, 1);
    transition: all 1s cubic-bezier(.23, 1, .32, 1);
}

.headIco_svg svg {
    width: 26px;
    height: 26px;
    fill: #bbbdc7;
    stroke: #9fa2b0;
    stroke-width: 10;
    margin-top: 31px;
    -webkit-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

.headIco span {
    line-height: 88px;
    opacity: 0;
    font-weight: 500;
    padding-left: 0;
    display: block;
    max-width: 0;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    -o-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

@media(min-width:1024px) {
    .headIco:hover {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background-color: #f4f4f7;
    }

    .headIco:hover span {
        opacity: 1;
        max-width: 200px;
        padding-left: 1em;
    }
}


.headLang {
    width: 84px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    float: right;
    border-left: 1px solid rgba(235, 236, 240, 0.18);
}

.headLang a {
    display: block;
    color: #b6b8c2;
    font-size: 17px;
    text-transform: uppercase;
}

.headLang:hover {
    background: #f4f4f7;
}

header.bg2,
header.bg1,
header.bg {
    background: #fff;
    border-bottom: 1px solid #ebecf0;
}

header.bg2 .headIco,
header.bg2 .headLang,
header.bg1 .headIco,
header.bg1 .headLang,
header.bg .headIco,
header.bg .headLang {
    border-left: 1px solid #ebecf0;
}

header.bg2 .headLogo_img1,
header.bg1 .headLogo_img1,
header.bg .headLogo_img1 {
    display: none;
}

header.bg2 .headLogo_img2,
header.bg1 .headLogo_img2,
header.bg .headLogo_img2 {
    display: block;
}

header.bg2 .headNav>ul>li.other>a,
header.bg1 .headNav>ul>li.other>a,
header.bg .headNav>ul>li.other>a {
    background: #44a54e;
    color: #fff;
}

header.bg2 .headNav li a,
header.bg1 .headNav li a,
header.bg .headNav li a {
    color: #44a54e;
}

.subNav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    padding: 40px 5% 40px 10%;
    background: #ffffff;
    white-space: initial;
    box-shadow: 1px 1px 3px #eee;
}

.subNav_box {
    display: flex;
    align-items: flex-start;
}

.subNav_tit {
    text-align: left;
    width: 328px;
    border-right: 1px solid #eee;
    min-height: 168px;
}

.subNav_tit span {
    display: block;
    font-weight: 500;
    font-size: 24px;
}

.subNav_tit p {
    color: #787878;
    font-weight: 300;
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 1px;
    padding-bottom: 6px;
}

.subNav_list {
    padding-left: 68px;
    width: calc(100% - 328px);
    text-align: left;
}

.subNav a {
    position: relative;
    display: inline-block;
    width: calc(25% - 30px);
    margin: 0 15px 24px;
    text-align: center;
}

.subNav_img {
    position: relative;
    width: 100%;
    padding-top: 40%;
    /* height: 146px; */
    border-radius: 2px;
    overflow: hidden;
}

.subNav_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.48s;
}

.subNav a:hover .subNav_img img {
    transform: scale(1.1);
}

.headNav_li.pro .subNav a {
    margin: 0 10px 24px;

}

.headNav_li.pro .subNav_img {
    background: #f7f8fa;
}

.headNav_li.pro .subNav img {
    transform: scale(0.6);
    object-fit: contain;
}

.headNav_li.pro .subNav a:hover .subNav_img img {
    transform: scale(0.7);
}

.subNav_list p {
    display: inline-block;
    position: relative;
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 1px;
    padding-bottom: 6px;
    font-weight: 400;
}

.subNav_list p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #44a54e;
    transform: scale(0);
    transition: all 0.48s;
}

.subNav_list p.hover,
.subNav_list p:hover {
    font-weight: 600;
}

.subNav_list p.hover::after,
.subNav_list p:hover::after {
    transform: scale(1);
}

/* mobile */
.header_menu {
    display: none;
    float: right;
    padding: 20px 20px 10px;
    cursor: pointer;
}

.header_menu span {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 7px;
    background: #000;
    transition: all 0.48s;
}

.header_menu.on .header_menu_span1 {
    transform: rotate(45deg) translate(9px, 9px);

}

.header_menu.on .header_menu_span2 {
    opacity: 0;

}

.header_menu.on .header_menu_span3 {
    transform: rotate(-45deg) translate(3px, -4px);

}


.headBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 899;
    background: #fff;
    padding: 68px 0 0;
    overflow: hidden;
}

.headBox_div {
    height: 100%;
    overflow: auto;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.haedTwo_div {
    display: none;
    background: #f8f8f8;
}

.haedTwo_div ul {
    position: relative;
    padding: 12px;
}

.haedTwo_div a {
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.headBox_ul {
    position: relative;
    background: #fff;
    padding: 34px 28px 0;
}

.headBox_ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
}

.headBox li {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.headBox li.none svg {
    display: none;
}

.headBox.open {
    left: 0;
}

.headBox ul a {
    color: #787878;
    display: block;
    line-height: 3;
    padding: 6px 0;
    font-size: 16px;
    border-bottom: 1px solid #eae8e4;
}

.headBox .headBox_ul>li>a {
    padding: 18px 0;
}

.headBox ul li:last-child a {
    border-bottom: 0;
}

.headBox ul a img {
    display: none;
    width: 15px;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.headBox .headBox_other a {
    padding: 8px 0;
    font-size: 20px
}

.headBox ul a svg {
    width: 12px;
    height: 12px;
    float: right;
    margin-top: 14px;
    margin-right: 6px;
    transition: all 0.48s;
}

.headBox_ul li.click>a svg {
    transform: rotate(90deg);
    margin-top: 8px;

}

.headBox ul a path {
    fill: #666;
}

/*==========================================
    footer
============================================================================================ */
.footLogo {
    text-align: center;
    margin: 58px 0;
}

.footLogo img {
    width: 258px;
}

.footNav {
    padding: 68px 1% 89px;
}

.footNav ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.footNav h2 {
    font-size: 18px;
    margin-bottom: 21px;
    font-weight: 500;
}

.footNav a {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footBtm {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #bfbfbf;
}

.footItem {
    text-align: left;
    flex: 0 0 24%;
}

.footItem:first-child {
    margin-left: 0;
}

.footItem:last-child {
    margin-left: auto;
    text-align: right;
}

.footCopy li a,
.footCopy>div,
.footCopy {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.footBtm_tit {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    font-smooth: always;
    font-style: normal;
    color: #262626;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.375;
    margin-bottom: 12px;
}

.footIco ul {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.footIco li {
    margin: 0;
    margin-right: 30px;
}

.footIco a>img {
    width: 24px;
}

.footIco a {
    position: relative;
}

.footIco a div {
    display: none;
    position: absolute;
    left: -45px;
    bottom: 28px;
    width: 108px;
    border: 3px solid #f7f7f7;
    padding: 2px;
    background: #fff;
}

.footIco a div img {
    width: 100%;
}

.footIco #social-icon--facebook {
    width: 8px;
}

.footIco a:hover div {
    display: block;
}

/*==========================================
    index
============================================================================================ */
/* banner */
.banner {
    width: 100%;
    height: calc(100vh - 20px);
}

.banner .swiper-container,
.banner .swiper-slide,
.banner .banImg {
    position: relative;
    height: 100%;
}

.banner .banImg::before {
    /* display: none !important; */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.38;

}


.banner .banImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    opacity: 1;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    border: 0;
    background: transparent;
    width: 48px;
}

.banner .swiper-button-next img,
.banner .swiper-button-prev img {
    width: 100%;
}

.banner .swiper-button-prev {
    left: 38px;
}

.banner .swiper-button-next {
    right: 38px;
}

.banTxt {
    /* display: none !important; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
}

.banTxt_name {
    color: #44a54e;
    color: #fff;
    font-size: 66px;
    line-height: 1.2;
    letter-spacing: 4px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-58px);
    transition: all 1s 0.28s;
}

.banTxt_cn {
    font-size: 68px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s 0.18s;
}

.banTxt_cn span {
    font-weight: 600;
    font-size: 68px;
    color: #fff;
    color: #44a54e;
}

.banTxt_en {
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    letter-spacing: 5px;
    line-height: 1;
    font-weight: 400;
    opacity: 0;
    transform: translateY(58px);
    transition: all 1s 0.38s;
}

.swiper-slide-active .banTxt_name,
.swiper-slide-active .banTxt_cn,
.swiper-slide-active .banTxt_en {
    opacity: 1;
    transform: translateY(0);
}

.banner .swiper-pagination {
    opacity: 0;
}

.banner .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
    bottom: 68px;
}

/* 0 */
.ysTop {
    position: relative;
    z-index: 11;
}

.ysSer {
    position: absolute;
    top: -45px;
    width: 100%;
}

.ysSer_form {
    width: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ysSer_form::before {
    content: " or ";
    position: absolute;
    top: 50%;
    left: 50%;
    color: #353535;
    font-size: 13px;
    transform: translate(-50%, -50%);
}

.ysSer_form>div {
    width: 50%;
    padding: 24px 28px;
}

.ysSer_form select,
.ysSer_form input {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    font-size: 13px;
}

.ysSer_search,
.ysSer_input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ysSer_input::before {
    content: " or ";
    position: absolute;
    top: 50%;
    left: 50%;
    color: #353535;
    font-size: 13px;
    transform: translate(-50%, -50%);
}

.ysSer_input select,
.ysSer_input input {
    width: 47%;
    background: #f2f2f2;
}

.ysSer_search input:first-child {
    border: 1px solid #f2f2f2;
    width: 80%;
}

.ysSer_search input:last-child {
    width: 18%;
    background: #44a54e;
    color: #ffffff;
}

/* 1 */
.ysPro {
    background: #f2f2f2;
    padding: 68px 0 108px;
}

.ysPro_list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.ysPro_a {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 328px;
    padding: 48px 38px;
    background: #ffffff;
    border-left: 2px solid #f2f2f2;
}

.ysPro_a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #44a54e;
    transition: all 0.68s;
}

.ysPro_a.show:before,
.ysPro_a:hover:before {
    width: 100%;
}

.ysPro_a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    background: #ececec;
    transition: all 0.68s;
}

.ysPro_a:hover:after {
    height: 100%;
}

.ysPro_a .ysMore {
    position: absolute;
    bottom: 0;
    left: 38px;
    opacity: 0;
    transition: all 0.48s;
}

.ysPro_a.show .ysMore,
.ysPro_a:hover .ysMore {
    bottom: 34px;
    opacity: 1;
}

.ysPro_a span {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    line-height: 1.4;
}

.ysPro_a p {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-top: 6px;
	color: #666;
	margin-top:12px;
    min-height: 68px; 
}
.ysPro_a img{
    width: 124px;
    margin-top: 38px;
}
.ysPro_a svg {
    width: 54px;
    height: 54px;
    margin-top: 38px;
}

.ysPro_a .ysPro_ico_2 {
    width: 82px;
    height: 82px;
    margin-top: 34px;
}

.ysPro_a .ysPro_ico_5 {
    width: 51px;
    height: 51px;
}

.ysPro_a svg path:not(.ysPro_color) {
    fill: #bebebe;
}

.ysPro_a.show p,
.ysPro_a:hover p {
    color: #44a54e;
}

.ysPro_a.show svg path:not(.ysPro_color),
.ysPro_a:hover svg path:not(.ysPro_color) {
    fill: #44a54e;
}

.ysPro_box {
    height: 352px;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.ysPro_box_swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.ysPro_box_swiper:first-child {
    position: relative;
}

.ysPro_box_swiper.show {
    z-index: 99;
    opacity: 1;
}

.ysPro_item {
    background: #fff;
    padding: 28px 28px;
    margin-bottom: 18px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.ysPro_item2 {
    background: #fff;
    padding: 28px 28px;
    margin-bottom: 18px;
    align-items: stretch;
    justify-content: space-between;
}
.ysPro_img {
    width: 48%;
    height: auto;
    padding: 0px;
}
.ysPro_img2 {
    width: 100%;
    height: auto;
    padding: 0px;
}
.ysPro_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ysPro_item2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ysPro_item2 p {
	text-align:center;
	font-weight:bold;
	font-size:24px;
	color:#44a54e;
	line-height:80px;
}
.ysPro_txt {
    width: 48%;
    display: flex;
    align-items: center;

}

.ysPro_txt>div {
    display: inline-block;
    text-align: left;
}

.ysPro_txt span {
    position: relative;
    color: #44a54e;
    font-size: 36px;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
    padding-bottom: 10px;
}

.ysPro_txt span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 3px;
    background: #44a54e;
}

.ysPro_txt li p {
    letter-spacing: 0.5px;
    line-height: 3;
    color: #666;
}

.ysPro_box_swiper .swiper-button-next,
.ysPro_box_swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    background: transparent;
    border: 1px solid #ccc;
    text-align: center;
    outline: none;
}

.ysPro_box_swiper .swiper-button-next img,
.ysPro_box_swiper .swiper-button-prev img {
    width: 24%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.ysPro_box_swiper .swiper-button-prev {
    left: -80px;
}

.ysPro_box_swiper .swiper-button-next {

    right: -80px;
}

/* 2 */
.ysAb {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 138px 0 158px;
}

.ysAb .innerWrap {
    position: relative;
}

.ysAb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #44a54e;
    opacity: 0.85;
}

.ysAb .ysTit p,
.ysAb .ysTit p span {
    line-height: 1.4;
    font-size: 46px;
    font-weight: 400;
}

.ysAb_txt {
    position: relative;
    max-width: 68%;
}

.ysAb_p span {
    color: #fff;
    font-size: 23px;
    line-height: 1.8;
    margin-bottom: 10px;
    display: block;
    font-weight: 400;
}

.ysAb_p p {
    opacity: 0.89;
    color: #fff;
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ysNum {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-width: 189px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.ysNum_div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.ysNum_div>div {
    width: 100%;
}

.ysNum_div span {
    color: #fff;
    display: block;
    font-size: 51px;
    font-weight: 500;
    line-height: 1;
}

.ysNum_div p {
    color: #fff;
    font-size: 16px;
}

.ysNum_i {
    position: relative;
    margin-top: 10px;
    opacity: 0.68;
    display: inline-block;
}

.ysNum_i i {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    border-radius: 10px;
    background: #fff;
}

.ysNum_i::after,
.ysNum_i::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 58px;
    margin-top: 1px;
    height: 1px;
    background: #fff;
}

.ysNum_i::before {
    left: -68px;
}

.ysNum_i::after {
    right: -68px;
}

.ysAb_more {
    display: none;
}

/* 3 */
.ysNews {
    background: #f2f2f2;
    padding: 108px 0;
}

.ysNews_box {
    overflow: hidden;
    margin-top: 58px;
}

.ysNews_a {
    display: block;
    float: left;
    width: 31.33%;
    margin: 0 1%;
}

.moNewImg {
    position: relative;
    padding-top: 58%;
    overflow: hidden;
}

.moNewImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s;
}

.moNewTxt {
    background: #fff;
    padding: 30px 40px 45px;
    min-height: 248px;
}

.moNewTime {
    font-size: 14px;
    display: block;
    margin-bottom: 24px;
    color: #44a54e;
}

.moNewTit {
    font-size: 22px;
    color: #202020;
    line-height: 1.6;
    font-weight: 500;
    overflow: hidden;
    height: 66px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.moNewP p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ysNews_a:hover .moNewImg img {
    transform: scale(1.1);
}

.ysNews_a:hover .moNewTit {
    color: #44a54e;
}


/* 4 */
.ysGd {
    height: 468px;
    position: relative;
    background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.ysGd .innerWrap {
    position: relative;
}

.ysGd::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.38;
}

.ysGd .innerWrap {
    position: relative;
    z-index: 11;

}

.ysGd_txt {
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.ysGd_svg {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 21px;
}

.ysGd_svg path {
    fill: #fff;
}

.ysGd_ico {
    margin-top: 48px;
}

.ysGd_ico img {
    width: 58px;
    margin-right: 28px;
    opacity: 0.89;
}

.ysGd_more {
    position: absolute;
    top: 50%;
    right: 0;

}

.ysGd_more a {
    margin-top: -30px;
    width: 54px;
    display: block;
    height: 54px;
    border: 1px solid #fff;
}

.ysGd_more svg {
    width: 100%;
    height: 100%;
    transform: scale(0.38);
}

.ysGd_more svg path {
    fill: #fff;
}

/* 5 */
/*==========================================
    common
============================================================================================ */
/* 内页banner */
.banInner {
    position: relative;
    width: 100%;
    height: 480px;
}

.banInner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.18;
}

.banInner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banInner_btn {
    display: none;
    position: absolute;
    left: 50%;
    margin-left: -17px;
    bottom: 28px;
    z-index: 99;
}

.banInner_btn svg {
    width: 34px;
    height: 34px;
}

.banInner_btn svg path {
    fill: #fff;
}

.banInner_txt {
    display: none;
    z-index: 99;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
}

.banInner_txt i {
    color: #fff;
    font-size: 16px;
    display: block;
    line-height: 1.4;
    margin-bottom: 6px;
    font-weight: 300;
    text-transform: capitalize;
    font-style: inherit;
}

.banInner_txt span {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    display: block;
    color: #fff;
}

.banInner_txt p {
    color: #fff;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 15px;
}

/*page*/
.page {
    clear: both;
    margin: 28px auto 0;
    text-align: center;
}

.page ul li {
    display: inline-block;
    border: 1px solid #d7d7d7;
    padding: 6px 18px;
}

.page ul li.active {
    background: #44a54e;
    border-color: #44a54e;
}

.page ul li.active a {
    color: #fff;
}

.page ul li a {
    color: #666666;
    line-height: 1;
}

.page ul li:hover {
    background: #031f48;
    cursor: pointer;
}

.page ul li:hover a {
    color: #fff;
}

@media (max-width: 480px) {
    .page ul li {
        padding: 5px 10px;
    }
}

/*==========================================
    about
============================================================================================ */
/* 1 */
.abAbout {
    padding: 108px 0;
    background: url(../images/bg8.jpg) no-repeat center fixed;
    background-size: cover;
}

.abAbout_box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.abAbout_txt {
    width: calc(100% - 568px);
}

.abAbout_p p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 28px;
}

.abAbout_p p:last-child {
    margin-bottom: 0;
}

.abAbout_num {
    min-height: 468px;
    width: 438px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.abAbout_num div {
    position: relative;
    padding: 14px 12px;
    border-bottom: 1px dashed rgba(32, 55, 143, 0.18);
}

.abAbout_num span {
    color: #44a54e;
    font-weight: 700;
    font-size: 58px;
    line-height: 1;
    letter-spacing: -1px;
}

.abAbout_num i {
    background: #44a54e;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    font-style: inherit;
    position: relative;
    bottom: 6px;
    margin-left: 6px;
}

.abAbout_num p {
    margin-top: 10px;
}

.abAbout_num img {
    position: absolute;
    top: 28px;
    right: 18px;
    width: 68px;
}

.abAbout_num div:last-child i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
}

/* 2 */
.abCul {
    position: relative;
    padding: 138px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.abCul_box {
    margin-top: 58px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.abCul_div {
    cursor: default;
    position: relative;
    width: 22%;
    background: rgba(76, 76, 76, 0.48);
    padding: 58px 40px;
    text-align: center;
    z-index: 11;
}

.abCul_div::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #44a54e;
    transition: all 0.48s;
}

.abCul_div:hover:before {
    height: 100%;
}

.abCul_ico {
    margin-bottom: 89px;
    transition: all 0.48s;
}


.abCul_ico img {
    position: relative;
    top: 0;
    max-width: 89px;
    transition: all 0.48s;
}


.abCul_txt {
    position: relative;
    top: 0;
    transition: all 0.48s;
}

.abCul_txt span {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 400;
}

.abCul_txt p {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 1px;
}

.abCul_txt i {
    display: block;
    width: 38px;
    height: 2px;
    background: #fff;
    margin: 24px auto;
}

.abCul_p {
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    padding: 0 38px 54px;
    text-align: center;
    transition: all 0.48s;
}

.abCul_p p {
    color: #fff;
    line-height: 1.6;
    letter-spacing: 1px;
    opacity: 0.89;
}

.abCul_bg {
    padding: 89px 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.abCul_bg div {
    margin-bottom: 40px;
}

.abCul_bg div:last-child {
    margin: 20px;
}

.abCul_bg span {
    font-size: 18px;
    color: #fff;
}

.abCul_bg em {
    width: 40px;
    height: 1px;
    background: #fff;
    display: block;
    margin: 0 auto;
    margin-top: 5px;
}

.abCul_bg p {
    margin-top: 25px;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 1px;
}

@media(min-width:1024px) {
    .abCul_div:hover .abCul_ico img {
        transform: scale(0.89);
    }

    .abCul_div:hover .abCul_txt {
        top: -68px;
    }

    .abCul_div:hover .abCul_p {
        opacity: 1;
        bottom: 0;
    }

}

/* 3 */
.abHor {
    padding: 108px 0 89px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    border-bottom: 1px solid #eee;
}

.abHor_img {
    background: #f8f8f8;
    padding: 18px;
    border: 1px solid #eee;
}

.abHor_img img {
    max-width: 100%;
}

.abHor p {
    opacity: 0;
    text-align: center;
    margin-top: 14px;
    font-size: 17px;
}

.abHor .swiper-container {
    padding: 28px 0;
}

.swiper-slide-next p {
    opacity: 1;
}

/* 4 */
.fuwu {
    padding: 108px 0 489px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    border-bottom: 1px solid #eee;
}
.fl {
    float: left;
}
.ten_ul {
    width: 30%;
    margin: 20px 18px 0;
    background: #60b368;
}

.ten_title {
    height: 190px;
    text-align: center;
    font-weight: 600;
    background: url(../images/xwbt1.png) no-repeat bottom;
}
.ten_title h2 {
    line-height: 100px;
    font-size: 26px;
    font-weight: bold;
	background:#44a54e;
	color:#fff;
}
.ten_title2 {
    height: 190px;
    text-align: center;
    font-weight: 600;
    background: url(../images/xwbt2.png) no-repeat bottom;
}
.ten_title2 h2 {
    line-height: 100px;
    font-size: 26px;
    font-weight: bold;
	background:#44a54e;
	color:#fff;
}
.ten_title3 {
    height: 190px;
    text-align: center;
    font-weight: 600;
    background: url(../images/xwbt3.png) no-repeat bottom;
}
.ten_title3 h2 {
    line-height: 100px;
    font-size: 26px;
    font-weight: bold;
	background:#44a54e;
	color:#fff;
}
.ten_ul ul {
    padding: 30px;
}

.ten_ul li {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    box-sizing: border-box;
	color:#fff;
}

.ten_ul li:before {
    content: "*";
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    position: absolute;
    left: 0px;
    top: 11px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
}

/*==========================================
    product
============================================================================================ */
/* 1 */
.proChooses {
    margin-top: 85px;
}

.proChooses .ysPro_a {
    min-height: auto;
    padding: 28px;
    border-width: 1px;
}

.proChooses .ysPro_a::before {
    top: auto;
    bottom: 0;
}

/* 2 */
.product {
    padding: 78px 0;
    background: #f7f7f7;
}

.proFirst {
	text-align:center;
}

.proFirst_tit {
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.proFirst_tit i {
    color: #44a54e;
    font-size: 16px;
    display: block;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 300;
    text-transform: uppercase;
    font-style: inherit;
}

.proFirst_tit span {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.proFirst_tit p {
    color: #787878;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 15px;
}
/* ny_zb */
.ny_zb{width:20%;overflow:hidden;border-left:1px solid #dddddd;border-right:1px solid #dddddd;border-bottom:1px solid #dddddd;font-family:"微软雅黑";margin:10px auto 0 auto; float:left; background:#ffffff;}
.ny_zbbt{background-color:#44a54e;height:60px;line-height:60px;overflow:hidden;border-top:2px solid #34933e;}
.ny_zbbt span{padding-left:20px;font-size:20px;color:#fff;line-height:60px;}
.ny_zblb1{padding:8px 10px 20px 0px;}

.ny_zblb1 li{line-height:63px;font-size:16px;color:#333;float:left;width:100%;}
.ny_zblb1 li a{display:block;padding-left:20px;text-decoration:none;color:#333;background:url(../images/jia.png) no-repeat right; font-size:16px;}
.ny_zblb1 li a.cur{color:#44a54e;font-weight:bold;background:url(../images/jian.png) no-repeat right;text-decoration:none;}

.ny_zblb1 li ul{display:none;color:#666;padding:0px 0 10px 20px;}
.ny_zblb1 li ul li{float:none;background-image:none;height:44px;line-height:44px;margin-top:0px;font-size:16px;}
.ny_zblb1 li ul li a{display:block;background:url(../images/05.gif) no-repeat left;}
.ny_zblb1 li ul a:hover{color:#44a54e;}

/* 3 */
.proBox {
    margin-left: -1%;
    margin-right: -1%;
    overflow: hidden;
}
.proBoxlist {
/*    margin-left: -1%;
    margin-right: -1%;*/
	width:78%;
	padding-left:1%;
    overflow: hidden;
}
.proBox a {
    width: 98%;
    margin: 1%;
    float: left;
    padding: 28px;
    background: #fff;
    transition: all 0.48s;
    position: relative;
    top: 0;
}
.proBoxlist a {
    width: 45%;
    margin: 1%;
    float: left;
    padding: 18px;
    background: #fff;
    transition: all 0.48s;
    position: relative;
    top: 0;
}
.proBox a:hover {
    top: -10px;
    box-shadow: 0 0 10px 1px #eee;
}

.proBox .ysPro_img {
    width: 54%;
}

.proBox .ysPro_txt {
    width: 42%;
}

.proTxt span {
    position: relative;
    color: #44a54e;
    font-size: 22px;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
    padding-bottom: 10px;
}

.proTxt span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 3px;
    background: #44a54e;
}

.proDet {
    margin-top: 24px;
    background: #fff;
    padding: 20px 68px 108px;
}

.proDet_tit {
    position: relative;
    margin: 28px 0 0;
}

.proDet_mark {
    position: absolute;
    top: -128px;
}

.proDet_tit span {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    padding-left: 32px;
}

.proDet_tit span::before {
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/productTit_icon.png) no-repeat center;
}

.proDet_body {
    padding: 14px 0;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #eee;
    padding-left: 32px;
}

.proDet_body img {
    max-width: 100%;
    margin: 14px 0;
}

.proDet_body p {
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 10px;
}

.proDet_body h4 {
    font-size: 20px;
    margin-top: 25px;
    color: #e61410;
    font-weight: 500;
}

/*  */
.proDet_ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 68px;
}

.proDet_ul li {
    position: relative;
    width: 100%;
    text-align: center;
}

.proDet_ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background: #eee;
}

.proDet_ul li:first-child::before {
    content: none;
}

.proDet_ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #44a54e;
    transform: scale(0);
    transition: all 0.48s;
}

.proDet_ul li:hover::after,
.proDet_ul li.hover::after {
    transform: scale(1);
}

.proDet_ul a {
    font-size: 19px;
    font-weight: 400;
    display: block;
    line-height: 4;
}

.proDet_ul li:hover a,
.proDet_ul li.hover a {
    color: #44a54e;
}

/*==========================================
    case
============================================================================================ */
.case {
    padding: 108px 0;
    background: #f2f2f2;
}

.caseBox {
    overflow: hidden;
    margin-left: -1%;
    margin-right: -1%;
}

.caseA {
    position: relative;
    width: 31.33%;
    float: left;
    margin: 1%;
}

.caseImg {
    position: relative;
    padding-top: 67%;
}

.caseImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caseA .info {
    width: 100%;
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
    transition: all .5s;
}

.caseA .info h3 {
    font-size: 18px;
    margin-bottom: 7px;
    transition: all .5s;
}

.caseA .info h3 span {
    display: inline-block;
    width: 70%;
    font-size: 20px;
    font-weight: 400;
}

.caseA .info .yan {
    display: inline-block;
    width: 18px;
    height: 24px;
    float: right;
    transition: all .6s;
    background: url(../images/yan.png) no-repeat top center;
    background-size: 100% auto;
}

.caseA .info p {
    position: relative;
    z-index: 1;
}

.caseA .info p:before {
    content: "";
    display: block;
    transition: all 1s;
    width: 20px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #666666;
}

.caseA:hover .info {
    background: #44a54e;
    color: #fff;
}

.caseA:hover h3 span,
.caseA:hover h3 {
    color: #fff;
}

.caseA:hover .yan {
    background-position-y: -24px;
}

.caseA:hover p:before {
    width: 100%;
    background: #fff;
}

.caseA:hover .text {
    display: inline-block;
    background: #44a54e;
    position: relative;
    color: #fff;
    padding-right: 10px;
}

/*==========================================
    news
============================================================================================ */
.news {
    padding: 108px 0;
    background: #f2f2f2;
}

.news .ysNews_a {
    margin-bottom: 34px;
}

@media(max-width:1280px) {
    .moNewTxt {
        padding: 30px 30px 38px;
    }
}

@media(max-width:1024px) {
    .news {
        padding: 89px 0;
    }

    .moNewTit {
        font-size: 17px;
        font-weight: bold;
        height: 54px;
    }
}

@media(max-width:768px) {
    .moInner {
        width: 100%;
        padding: 0 24px;
    }

    .news {
        padding: 68px 0;
    }

    .ysNews_a {
        float: none;
        width: 100%;
        margin: 0 0 24px;
    }

    .ysNews_box {
        margin-bottom: 10px;
    }

    .moNewTit {
        height: auto;
    }


}

@media(max-width:486px) {
    .news {
        padding: 48px 0;
    }

    .moNewImg {
        padding-top: 50%;
    }

    .moNewTxt {
        padding: 24px 24px 28px;
    }

    .moNewTit {
        font-size: 16px;
    }

    .moNewTime {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .moNewP p {
        line-height: 1.8;
        font-size: 13px;
    }

    .news .ysNews_a {
        margin-bottom: 14px;
    }
}

/*==========================================
    join
============================================================================================ */
/* 1 */
.joinTop {
    padding: 89px 0;

}

.joinTop_tit {
    text-align: center;
    margin-bottom: 58px;
}

.joinTop_tit span {
    font-size: 22px;
    line-height: 2;
    font-weight: 400;
}

.joinTop_tit p {
    font-size: 28px;
    font-weight: 500;
}

.joinTop_img {
    position: relative;
    padding-top: 28%;
    min-height: 289px;
}

.joinTop_img>img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 18% center;
    height: 100%;
    width: 100%;
}

.joinTop_txt {
    position: absolute;
    width: 180px;
    text-align: center;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.joinTop_txt span {
    display: block;
    text-align: center;
    font-weight: 400;
}

.joinTop_txt i {
    color: red;
    font-weight: 500;
    font-style: inherit;
    line-height: 2;
}

.joinTop_txt img {
    width: 86%;
    margin: 10px auto;
    padding: 4px;
    background: #fff;
}

.joinTop_txt p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.joinTop_for {
    margin-top: 38px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;

}

.joinFor_div {
    position: relative;
    width: 23%;
    padding-top: 28%;
}

.joinFor_div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joinFor_p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: #e6eef8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joinFor_p p {
    font-weight: 500;
    font-size: 20px;
}

/* 2 */
.joinWeb_tit {
    text-align: center;
}

.joinWeb_tit p {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: "PingFang SC";
}

.joinWeb_tit form {
    width: 90%;
    max-width: 689px;
    margin: 40px auto 0;
}

.joinWeb_tit input {
    line-height: 58px;
    height: 58px;
}

.joinWeb_txt {
    width: calc(100% - 160px);
    padding: 0 14px;
}

.joinWeb_btn {
    width: 160px;
    background: #44a54e;
    color: #fff;
    font-size: 15px;
}

.joinWeb {
    background: #f2f2f2;
    padding: 89px 0 108px;
}

/* 3 */
.recJob {
    padding: 68px 0;
}


.recJob_box {
    position: relative;
    overflow: visible;
}

.recJob_box .recJob_item {
    background: #fff;
    margin-right: 12px;
    cursor: pointer;
    padding: 40px 40px 50px 40px;
    outline: none;
}

.recJob_box .recJob_name {
    font-size: 18px;
    line-height: 24px;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.recJob_box .recJob_p {
    height: 198px;
    margin-bottom: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.recJob_box .recJob_p p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.recJob_box .recJob_p strong {
    margin-right: 8px;
}

.recJob_btn {
    display: block;
    -moz-border-radius: 18px;
    border-radius: 18px;
    width: 130px;
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 36px;
    border: 1px solid #dedede;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.recJob_btn:hover {
    background: #44a54e;
    border-color: #44a54e;
    color: #fff;
    -webkit-transform: translateX(-6px);
    -moz-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
}

.switch_unit {
    padding: 0 50px 0;
}

.switch_unit .item {
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #d7d7d7;
    font-size: 14px;
    color: #333;
    padding: 10px 10px;
    margin: 0px 7px;
    display: block;
    text-align: center;
}

.switch_unit .item:hover,
.switch_unit .item.act {
    background-color: #cc0000;
    color: #fff;
}

.switch_unit .slick-arrow {
    width: 46px;
    height: 46px;
    display: block;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 50%;
    margin-top: -16px;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.switch_unit .slick-prev {
    left: 0;
    background-image: url(images/prev2.png);
}

.switch_unit .slick-next {
    right: 0;
    background-image: url(images/next2.png);
}

.switch_unit .slick-arrow:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.switch_unit .itemA {
    display: block;
    margin: 0 20px;
}

.switch_unit .img {
    overflow: hidden;
    position: relative;
    display: block;
    height: 100%;
    margin: 0 auto 8px;
    text-align: center;
}

.switch_unit .img img {
    width: 100%;
}

.switch_unit .img>span {
    display: block;
    height: 100%;
    width: 100%;
}

.switch_unit.slick-slider {
    position: relative;
    display: block;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.switch_unit .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.switch_unit .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    margin: 0 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
    outline: none;
    z-index: 10;
}

.switch_unit .slick-dots {
    margin: 40px 0 0;
    height: 12px;
    text-align: center;
}

.switch_unit .slick-dots li.slick-active {
    background: #025eb0;
}

.switch_unit .slick-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
}

.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 11;
}

.popItem {
    width: 800px;
    height: 600px;
    padding: 0 40px;
    border-radius: 6px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -300px;
    font-size: 14px;
    line-height: 30px;
    color: #666;
    display: none;
}

.popItem .popCls {
    position: absolute;
    right: -36px;
    top: -36px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.popItem .popCls img {
    display: block;
    width: 100%;
}

.popItem .popTit {
    padding-top: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.popItem .popTit span {
    display: inline-block;
    color: #333;
    font-size: 30px;
    line-height: 40px;
    text-indent: 9px;
}

.popItem .contents {
    padding: 24px 9px;
    border-bottom: 1px solid #e5e5e5;
    height: 440px;
}

.popItem .contents p {
    margin-bottom: 5px;
}

.popItem .contents strong {
    font-weight: 400;
}

.popBg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .recJob {
        padding: 48px 0 0;
    }

    .switch_unit.slick-slider {
        margin-top: 12px;
    }


}

@media (max-width: 768px) {
    .recJob_box .recJob_item {
        padding: 38px;
    }

    .recJob {
        padding-top: 21px;
    }
}

@media (max-width: 480px) {
    .recJob {
        padding: 0;
    }

    .switch_unit {
        padding: 0 10px;
    }


    .switch_unit .slick-arrow {
        width: 36px;
        height: 36px;
    }

    .recJob_box .recJob_item {
        padding: 28px 28px 38px;
    }

    .recJob_box .recJob_name {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .recJob_box .recJob_p {
        margin-bottom: 54px;
    }

    .recJob_btn {
        width: 120px;
        font-size: 12px;
        line-height: 30px;
    }

    .popItem .contents p {
        font-size: 13px;
    }
}

/* 弹窗 */
@media (max-width: 1024px) {
    .popItem {
        width: 80%;
        height: 66%;
        min-height: 420px;
        left: 10%;
        top: 14%;
        margin: 0;
    }

    .popItem .contents {
        height: 76%;
    }

    .popItem .popTit span {
        font-size: 28px;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .popItem .popTit {
        padding-bottom: 10px;
    }

    .popItem .popTit span {
        font-size: 24px;
    }

    .popItem .popCls {
        width: 24px;
        top: -30px;
        right: -30px;
    }

    /* 滚动条 */
    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 6px;
        height: 86px;
    }
}

@media (max-width: 680px) {
    .popItem {
        padding: 0 32px;
    }

    .popItem .popTit span {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .popItem {
        width: 90%;
        left: 5%;
        padding: 0 20px;
        line-height: 24px;
        font-size: 13px;
    }

    .popItem .popTit {
        padding: 28px 0 6px;
    }

    .popItem .popTit span {
        font-size: 18px;
        font-weight: bold;
    }

    .popItem .contents {
        padding: 16px 8px;
    }

    .popItem .popCls {
        width: 20px;
        top: -28px;
        right: -8px;
    }

    /* 滚动条 */
    .mCSB_inside>.mCSB_container {
        margin-right: 16px;
    }
}

/*==========================================
    contact
============================================================================================ */
.mainWidth {
    max-width: 1200px;
    margin: 0 auto;
}

.mainTit {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.mainTit i {
    font-size: 128px;
    font-weight: bold;
    color: #8fbf3a;
    opacity: 0.05;
    font-style: normal;
    text-transform: uppercase;
}

.mainTit_div {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.mainTit_div b {
    font-size: 44px;
    color: #404040;
    line-height: 48px;
    position: relative;
}

.mainTit_div b::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #44a54e;
    border-radius: 50%;
    right: -10px;
    bottom: 4px;
}

.mainTit_div span {
    font-size: 15px;
    color: #666;
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.contact {
    width: 100%;
    overflow: hidden;
}

.conMess {
    padding: 89px 0 0;
    background: url(images/conBg.jpg) center;
}

.conMess_ico {
    text-align: center;
    margin: 66px 0 0;
    position: relative;
    z-index: 99;
}

.conMess_ico>div {
    display: inline-block;
    position: relative;
}

.conMess_ico>div::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -188px;
    width: 200px;
    height: 1px;
    background: #44a54e;
}

.conMess_ico>div::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -188px;
    width: 200px;
    height: 1px;
    background: #44a54e;
}

.conMess_ico a {
    cursor: pointer;
    display: inline-block;
    width: 38px;
    height: 38px;
    margin: 0 12px;
    padding: 6px;
    position: relative;
    border: 1px solid #44a54e;
}


.conMess_ico a>img {
    width: 100%;
}

.conMess_icoEwm {
    display: none;
    position: absolute;
    top: 38px;
    left: -40px;
    width: 108px;
    z-index: 99999;
    background: #fff;
    padding: 3px;
    box-shadow: 0 0 10px 1px #eee;
}

.conMess_icoEwm img {
    width: 100%;
}

.conMess_box {
    position: relative;
    top: 82px;
    z-index: 10;
    overflow: hidden;
    background: #fff;
    padding: 46px 0;
    box-shadow: 0 0 28px 8px rgba(153, 153, 153, 0.21);
}
.conMess_box ul{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.conMess_box li {
    float: left;
    width: 33.33%;
    padding: 26px 40px;
    border-right: 1px solid #eee;
	min-height:150px;
}

.conMess_box li:nth-child(3n) {
    border: 0;
}

.conMess_box li p {
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 28px;
    line-height: 2;
    font-size: 15px;
}
.conMess_box li.other
{
    padding-top: 15px
}
.conMess_box li.other p img{
    width: 100%;
    max-width: 108px;
}
.conMess_box li.other span
{
    max-width: 108px;
    text-align: center;
    margin-top: 6px;

}
.conMess_box li span {
    display: block;
    color: #666;
    line-height: 1;
    font-size: 14px;
}

.conMap {
    position: relative;
}

.conMap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.8)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

#allmap {
    height: 560px;
    width: 100%;
    margin: 0 auto;
}

.BMap_cpyCtrl,
.anchorBL {
    display: none;
}

.BMap_mask {
    position: relative;
    z-index: 12;
}
    .slideNav {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99;
        transition: right 1s;

    }

    .slideNav_cls {
        cursor: pointer;
    background: #fff;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.48s;
    z-index: 9;
    margin-top: 289px;
    position: relative;
    }

    .slideNav_cls:hover {
        transform: scale(1.1);
    }

    .slideNav_cls svg {
        width: 34px;
        height: 34px;
    }

    .slideNav_cls path {
        fill: #44a54e;
    }

    .slideNav ul {
        position: absolute;
    bottom: -8px;
    right: -8px;
    background: #fff;
    box-shadow: 0 0 6px 1px rgb(153 153 153 / 10%);
    padding: 24px 0 24px 32px;
    width: 289px;
    border-bottom-right-radius: 24px;
    transition: all 0.48s;

    }

    .slideNav li {
        position: relative;
        cursor: pointer;
    }

    .slideNav a {
        display: flex;
        align-items: flex-start;
        color: #999;
        position: relative;
        z-index: 2;
        margin-bottom: 18px;

    }

    .slideNav i {
        width: 30px;
        height: 30px;
        display: inline-block;
        background: #eee;
        border-radius: 50%;
        position: relative;
        margin-right: 14px;
    }

    .slideNav li svg {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slideNav li path {
        fill: #999;
    }

    .slideNav p {
        color: #999;
        letter-spacing: .5px;
        font-size: 14px;
        padding-top: 5px;

    }

    .slideNav li:first-child p {
        font-size: 18px;
        /* text-decoration: underline; */

    }

    .slideNav p img {
        width: 108px;
        display: block;
    }

    .slideNav.shou .slideNav_cls {
        box-shadow: 0 0 6px 1px rgb(153 153 153 / 10%);
    }

    .slideNav.shou ul {
        display: none;
    }
    @media(max-width:1025px)
    {
        .slideNav
        {
            display: none;
        }
    }

@media (max-width: 1440px) {
    .innerWrap {
        width: 90%;
    }
}

@media (max-width: 1280px) {
    .conMess_box {
        padding: 40px 0;
        top: 90px;
    }

    .conMess_box li p {
        min-height: 128px;
        line-height: 1.6;
        padding-left: 45px;
    }

    .conMess_box li span {
        margin-bottom: 6px;
    }


    .conMess_box li {
        padding: 24px 32px 10px;
    }



    .conMess_ico {
        margin: 42px 0 0;
    }

    #allmap {
        height: 500px;
    }

}

@media (max-width: 1024px) {
    .conMess_box {
        padding: 10px 32px 20px;
    }

    .conMess_box li {
        width: 50%;
        border: 0;
        border-bottom: 1px solid #eee !important;
        padding: 28px 14px;
    }
    .conMess_box li.other p span,
    .conMess_box li.other p img{
        max-width: 80px;
    }
    .conMess_box li.other p span
    {
        font-size: 12px;
    }
    .conMess_box li p {
        min-height: 10px;
    }

    #allmap {
        height: 420px;
    }

}

@media (max-width: 900px) {
    .conMess {
        padding: 48px 0 0;
    }

    .conMess_ico>div::before {
        width: 168px;
        left: -156px;
    }

    .conMess_ico>div::after {
        width: 168px;
        right: -156px;

    }

    .conMess_box li {
        padding: 28px 14px 14px;
    }

    .conMess_box li p {
        min-height: 68px;
    }
}

@media (max-width: 680px) {
    .conMess {
        padding: 32px 0 0;
    }

    .conMess_ico {
        width: 90%;
        margin: 0 auto;
    }

    .conMess_ico>div::before {
        width: 120px;
        left: -109px;
    }

    .conMess_ico>div::after {
        width: 120px;
        right: -109px;
    }

    .conMess_ico a {
        width: 36px;
        height: 36px;
        margin: 0 10px;
    }

    .conMess_box {
        top: 60px;
    }

    .conMess_box li {
        width: 100%;
        float: none;
        padding: 24px 16px 16px;
    }

    .conMess_box li p {
        min-height: 10px;
        background-size: 24px;
    }

    #allmap {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .conMess_ico {
        width: 80%;
        margin: 32px auto 0;
    }

    .conMess_ico a {
        width: 32px;
        height: 32px;
        margin: 0 5px;
        padding: 5px 6px;
    }

    .conMess_ico>div::before,
    .conMess_ico>div::after {
        top: 15px;
    }

    .conMess_ico>div::before {
        width: 80px;
        left: -75px;
    }

    .conMess_ico>div::after {
        width: 88px;
        right: -82px;
    }

    .conMess_box {
        top: 40px;
        padding: 10px 16px 20px;
    }

    .conMess_box li {
        padding: 20px 14px 10px;
    }

    .conMess_box li p {
        background-size: 22px;
        padding-left: 36px;
    }

    #allmap {
        height: 300px;
    }
}

/* 2 */
.conInline {
    padding: 68px 0;
    background: #f5f5f5;
    text-align: center;
    margin: 0;
}

.conInline h1 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: "PingFang SC";
    color: #44a54e;
}

.conInline_form form {
    overflow: hidden;
    max-width: 1200px;
    margin: 38px auto 0;
}

.conInline_form form>div {
    float: left;
    width: 49%;
    margin-right: 2%;
    text-align: left;
    margin-bottom: 14px;
}

.conInline_form div:nth-child(2n) {
    margin-right: 0;
}

.conInline_form .conInline_txt {
    width: 100%;
}

.conInline_form .conInline_btn {
    text-align: center;
    float: none;
    width: 100%;
}

.conInline_btn a {
    display: inline-block;
    padding: 12px 60px;
    margin: 24px 10px 0;
    background: #fff;
}

.conInline_btn a:last-child {
    background: #44a54e;
    color: #fff;
}

.conInline_form div label {
    color: #7b7b7b;
    margin: 0 0 8px 6px;
    display: block;
}

.conInline_form input {
    width: 100%;
    border: 0;
    line-height: 48px;
    height: 48px;
    background: #fff;
    padding-left: 12px;
    font-size: 13px;
    color: #333;
}

.conInline_form textarea {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 10px 0 0 10px;
    color: #333;
    height: 200px;
}

@media screen and (max-width: 1200px) {
    .conInline_form form {
        width: 88%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 768px) {
    .conInline_form form>div {
        width: 100%;
        margin-right: 0;
        margin: 10px;
    }

    .conInline_form .c-button-basic__label {
        padding: 7px 40px;
        font-size: 15px;
    }

    .conInline_form .c-outline-box__btn {
        margin: 15px 3px 0;
    }

    .conInline h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 486px) {
    .conInline {
        padding: 48px 0;
    }

    .conInline_form input {
        line-height: 42px;
        height: 42px;
    }

    .conInline_form div label {
        font-size: 13px;
    }

    .conInline_form textarea {
        height: 128px;
    }

    .conInline_btn a {
        padding: 10px 48px;
        margin: 12px 10px 0;
    }

    .conInline h1 {
        font-size: 28px;
    }
}