﻿@charset "utf-8";
@font-face {
    font-family: 'Encode Sans'; /* 自定义一个字体名称 */
    src: url('../font/Encode Sans/ENCODESANS-REGULAR.ttf') format('woff2'),
         url('../font/Encode Sans/ENCODESANS-BOLD.ttf') format('woff'),
         url('../font/Encode Sans Black/ENCODESANS-BLACK.ttf') format('woff'),
         url('../font/Encode Sans ExtraLight/ENCODESANS-EXTRALIGHT.ttf') format('woff'),
         url('../font/Encode Sans SemiBold/ENCODESANS-SEMIBOLD.ttf') format('woff'),
         url('../font/Encode Sans SemiLight/ENCODESANS-SEMILIGHT.ttf') format('woff'),
         url('../font/Encode Sans Light/ENCODESANS-LIGHT.ttf') format('woff'),
         url('../font/Encode Sans Thin/ENCODESANS-THIN.ttf') format('woff'),
         url('../font/arial unicode ms.otf') format('woff'), /* 优先使用woff2格式 */
         url('../font/arial unicode ms bold.otf') format('woff'); /* 备选woff格式 */
    font-weight: normal;
    font-style: normal;
}
html,
body {
    font-weight: 400;
    font-family: "Encode Sans,Arial, Helvetica, sans-serif";
}

/*hide scroll*/
::-webkit-scrollbar-track-piece {
    position: fixed;
    right: 0;
    background-color: #ddd;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: #f4990c;
    background-clip: padding-box;
    min-height: 0.5208333333333334vw;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background: #f4990c;
}

::-webkit-scrollbar-button {
    width: 3px;
    height: 3px;
}

.flex {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.box_con {
    box-sizing: border-box;
    max-width: 1140px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* 滤镜-图片变纯黑 */
.img-black {
    filter: brightness(0);
}

/* 滤镜-图片变纯白 */
.img-white {
    filter: brightness(0) invert(1);
}
.mySwiper .swiper-slide img{width:100%;height:100%;}
/* header */
header {
    position: static;
    z-index: 9;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
    padding-top: 40px;
}

header .logo {
    width: 200px;
    height: 60px;
    line-height: 60px;
}

header .logo a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.head_con {
    justify-content: space-between;
    align-items: center;
}

.head_right {
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 200px);
}

.head_nav .head_nav_items {
    justify-content: flex-end;
}

.head_nav .head_nav_item {
    position: relative;
}

.head_nav .head_nav_item>a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 60px;
    padding: 0 15px;
    box-sizing: border-box;
    color: #000;
    position: relative;
    transition: all 0.5s;
    text-transform: uppercase;
    z-index: 2;
}

.head_nav .head_nav_item.active>a,
.head_nav .head_nav_item:hover>a {
    color: #f4990c;
    font-weight: bold;
    border-bottom: 2px solid #f4990c;
    box-sizing: border-box;
}

.head_nav .head_nav_item .head_nav_item_show {
    position: absolute;
    top: 50px;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 10px 10px;
    display: none;
    width: 200px;
    right: 0;
    /* overflow: hidden; */
    z-index: 2;
    padding: 10px 0;
    box-shadow: 0 10px 10px rgba(2, 5, 33, 0.08);
}
.head_nav .head_nav_item .head_nav_item_show .train_items{width: 100%;position: relative;}
.head_nav .head_nav_item .head_nav_item_show .train_items a {display: flex;justify-content: space-between;align-items: center;}
.head_nav .head_nav_item .head_nav_item_show .train_items a span{width: 6px;height: 6px;display: block;border-top: 1px solid #000;border-right: 1px solid #000;transform: rotate(45deg);}
.head_nav .head_nav_item .head_nav_item_show .train_items .train_item{position: absolute;left: 100%;top: 0;z-index: 2;width: 100%;background: #fff;display: none;box-shadow: 0 10px 10px rgba(2, 5, 33, 0.08);}
.head_nav .head_nav_item .head_nav_item_show .train_items:hover .train_item{display: block;}
.head_nav .head_nav_item .head_nav_item_show a {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #333;
    padding: 10px;
}
.head_nav .head_nav_item:hover .head_nav_item_show {
    display: block;
}

.head_nav .head_nav_item .head_nav_item_show a:hover {
    color: #f4990c;
}


.head_search {
    height: 60px;
    line-height: 60px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-left: 25px;
}

.head_search::before,
.head_search::after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: #000;
}

.head_search span {
    cursor: pointer;
    display: block;
    padding: 0 25px;
}

.head_search .search_bd {
    width: 200px;
    position: absolute;
    top: 60px;
    height: 0;
    right: 0;
    background: rgba(2, 5, 33, 0.1);
    overflow: hidden;
    transition: all 0.5s;
}

.search_form {
    display: flex;
    flex: 1;
}

.search_form input {
    height: 40px;
    line-height: 40px;
    border: none;
    background: none;
    padding-left: 10px;
    box-sizing: border-box;
    font-size: 14px;
    width: calc(100% - 50px);
    color: #000;
}

.search_form button {
    border: none;
    width: 50px;
    height: 40px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4990c;
}

.head_search.active .search_bd {
    height: 40px;
    transition: all 0.5s;
}

.head_lang {
    position: relative;
    margin-left: 30px;
}

.head_lang span {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.head_lang span::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid black;
    margin-left: 15px;
}

.lang_nav {
    position: absolute;
    background: #fff;
    box-shadow: 0 10px 10px rgba(2, 5, 33, 0.08);
    width: 120%;
    right: 0;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.5s;
}

.lang_nav a {
    display: block;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 5px 0;
}
.lang_nav a:hover{
    color: #f4990c;
}
.head_lang:hover .lang_nav {
    height: auto;
    padding: 10px 0;
    transition: all 0.5s;
}

.fixed header {
    transition: all 0.5s;
    position: fixed;
    background: #fff;
    box-shadow: 0 5px 15px rgba(2, 5, 33, 0.1);
    padding-top: 0;
}

.fixed header .logo a,
.fixed header .head_nav .head_nav_item>a {
    filter: brightness(1);
}

/* end header */

/* footer */
footer {
    background: #000;
    padding-top: 60px;
}
.foot_left,
.foot_right{width:50%;}
.foot_img{margin: 0 auto;max-width:300px;}

.foot_top {
    justify-content: space-between;
    align-items: center;
    padding: 75px 0 35px;
}
.foot_nav{width:50%;}
.foot_tit{font-size:20px;color:#fff;font-weight:bold;}
.foot_nav a{display:block;font-size:14px;color:#fff;line-height:30px;}
/*.foot_top .foot_nav a {*/
/*    display: inline-flex;*/
/*    font-size: 18px;*/
/*    color: #fff;*/
/*    margin-right: 35px;*/
/*}*/
/*.foot_top .foot_nav a:last-child{*/
/*    margin-right: 0;*/
/*}*/
/*.foot_top .foot_link a {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.3);*/
/*    margin-left: 5px;*/
/*}*/

/*.myFootLogo {*/
/*    padding: 40px 0;*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.3);*/
/*}*/

/*.myFootLogo .swiper-slide {*/
/*    border: 1px solid rgba(255, 255, 255, 0.3);*/
/*    height: 70px;*/
/*    box-sizing: border-box;*/
/*}*/
/*.myFootLogo .swiper-slide a{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.myFootLogo .swiper-slide img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*}*/

.foot_btm {
    padding: 20px 0;
    font-size: 14px;
    color: #fff;
    background:#8d9290;
}

.foot_btm a {
    color: #fff;
}
.gotops {
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 15%;
    opacity: 0;
    background: #f4990c;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}
.gotops.toshow{
    opacity: 1;
}
/* end footer */

/* home */
/* 公共样式 */
.main_box {
    overflow: hidden;
    padding: 0 0 60px;
    box-sizing: border-box;
}

.main_title .tit {
    line-height: 160px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.box_title{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    background: #f4990c;
    color: #fff;
    line-height: 90px;
}
.box_title2{
    background: #678815;
}
/* box1 */
.box1 {
    /*justify-content: space-between;*/
    padding: 40px 0;
}
.box1 .box_item {
    width: calc(100% / 3 - 30px);
    margin-right: 45px;
    text-align: center;
}
.box1 .box_item .item_tit{
    font-size: 24px;
    line-height: 60px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
}
.box1 .box_item .item_img{
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.box1 .box_item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.box1 .box_item:nth-child(1) .item_tit,
.box1 .box_item:nth-child(1) .item_img{
    background: #f4990c;
}
.box1 .box_item:nth-child(2) .item_tit,
.box1 .box_item:nth-child(2) .item_img{
    background: #678815;
}
.box1 .box_item:nth-child(3n) .item_tit,
.box1 .box_item:nth-child(3n) .item_img{
    background: #8d9190;
}
.box1 .box_item:nth-child(4) .item_tit,
.box1 .box_item:nth-child(4) .item_img{
    background: #8d9190;
}
.box1 .box_item:nth-child(5) .item_tit,
.box1 .box_item:nth-child(5) .item_img{
    background: #f4990c;
}
.box1 .box_item:nth-child(3n){
    margin-right: 0;
}
.box1 .box_item:hover .item_img img{
    transform: scale(1.1);
    transition: all 0.5s;
}
.box1s{
    align-items: center;
    border-top: 1px solid #e6e6e6;
}
.box1s .box_item .item_tit{
    background: #393d40 !important;
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}
.box1s .box_item .item_img{
    background: #e6e6e6 !important;
    height: 160px;
}
.box1s .box_item .tit{
    text-align: left;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
.box1s .box_item .txt{
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.box2{
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}
.box2 .box_img{
    width: 45%;
}
.box2 .box_tct{
    width: 50%;
}
.box2 .box_tct .tit{
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.box2 .box_tct .txt{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    text-align: justify;
}

.news{
    padding-top: 90px;
}
.myNews,
.myBlog {
    position: relative;
}
.myNews .swiper-slide,
.myBlog .swiper-slide{
    padding: 50px 30px 30px;
    box-sizing: border-box;
    background: #f8f8f8;
}
.myBlog .swiper-slide{
    padding: 90px 30px 30px;
}
.swiper-pagination-news,
.swiper-pagination-blog{
    text-align: center;
    margin-top: 20px;
}
.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #cbcbcb;
    border-radius: 0;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: #f4990c;
}
.box3{
    justify-content: space-between;
}
.box3 .box_item{
    width: calc(100%);
    text-align: center;
}
.box3 .box_item .item_tit{
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000;
    transition: all 0.5s;
}
.box3 .box_item:hover .item_tit{
    color: #f4990c;
    transition: all 0.5s;
}
.box3 .box_item .item_day{
    font-size: 14px;
    line-height: 30px;
    color: #666;
    margin: 10px 0;
}
.box3 .box_item .item_desc{
    font-size: 14px;
    line-height: 24px;
    color: #000;
    height: 72px;
}
.box3 .box_item .item_btn{
    width: 140px;
    line-height: 40px;
    border: 1px solid #999;
    font-size: 14px;
    color: #999;
    margin: 25px auto 0;
    position: relative;
    overflow: hidden;
}
.box3 .box_item .item_btn::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #f4990c;
    transform: scale(0);
    transition: all 0.5s;
    border-radius: 50%;
}
.box3 .box_item:hover .item_btn{
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.box3 .box_item:hover .item_btn::after{
    transform: scale(1.2 , 3);
    transition: all 0.5s;
}
.box3 .box_item:nth-child(3n){
    margin-right: 0;
}
.box3 .box_item .item_img{
    display: block;
    width: 100%;
    height: 80px;
    background: #f4990c;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.box4 .box_item .item_img{
    height: 120px;
}
.box4 .box_item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box3 .box_item a{
    display: block;
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 30px;
    box-sizing: border-box;
}
.box5{
    position: relative;
    margin-bottom: 30px;
}
.box5 .box_item{
    width: calc(100% / 2);
    padding: 40px 0;
    box-sizing: border-box;
}
.box5 .box_item .item_img{
    width: 144px;
    height: 144px;
    border-radius: 50%;
    overflow: hidden;
}
.box5 .box_item .item_con{
    width: calc(100% - 144px);
    padding-left: 20px;
    box-sizing: border-box;
}
.box5 .box_item .item_tit{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}
.box5 .box_item .item_txt{
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.box5 .box_item:nth-child(odd){
    padding-right: 60px;
}
.box5 .box_item:nth-child(even){
    padding-left: 60px;
}
.box5::before,
.box5::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.box5::after{
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.box6{
    padding: 60px 0;
}
.box6 .box_img{
    width: 50%;
}
.box6 .box_tct{
    width: 47%;
}

/* 内页样式 */
.bar .crumb{
    justify-content: flex-end;
    padding: 40px 0;
}
.bar .crumb a{
    padding: 0 5px;
}
.bar .bar_tit{
    height: 250px;
    line-height: 250px;
    text-align: center;
    font-size: 46px;
    font-weight: bold;
    color: #fff;
}

.introduce{
    padding: 60px 0 0;
}
.introduce .tit{
    font-size: 32px;
    font-weight: bold;
    color: #f4990c;
    text-align: center;
}
.introduce2 .tit{
    color: #678815;
}
.introduce .editor{
    margin: 0 auto;
}
.editor{
    text-align: justify;
}
.product .item{
    width: calc(100% / 4 - 25px);
    margin-right: 33px;
    margin-top: 33px;
}
.product .item:nth-child(4n){
    margin-right: 0;
}
.product .item .item_img{width: 260px;height: 260px;overflow: hidden;}
.product .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.product .item:hover .item_img img{transform: scale(1.1);transition: all 0.5s;}
.product .item .item_tit{
    font-size: 16px;
    line-height: 40px;
    background: #f4990c;
    color: #fff;
    margin: 20px 0 0;
    text-align: center;
}
.product .item .item_con{
    text-align: center;
    margin-top: 20px;
}
.product .item .item_con .item_txt{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 10px;
}
.product .item .item_con .item_tst{
    font-size: 14px;
    line-height: 24px;
    color: #666;
    height: 72px;
}
.product2 .item .item_tit{
    background: #678815;
}
.box_list .item{
    width: calc(100% / 5 - 8px);
    margin-right: 10px;
    margin-top: 20px;
    height: 160px;
    overflow: hidden;
}
.box_list .item:nth-child(5n){
    margin-right: 0;
}
.box_list2 .item{
    width: calc(100% / 4 - 15px);
    margin-right: 20px;
    margin-top: 20px;
    height: 260px;
    overflow: hidden;
}
.box_list2 .item:nth-child(4n){
    margin-right: 0;
}

.bar_items{
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.bar_items .item{
    width: calc(100% / 4 - 25px);
    margin:20px 0 20px 20px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(2, 5, 33, 0.07);
    padding: 18px;
    box-sizing: border-box;

}
.bar_items .item:nth-child(4n){
    margin-right: 0;
}
.bar_items .item .item_img{
    text-align: center;
    margin: 20px auto;
}
.bar_items .item .item_txt{
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: justify;
}
.expo .item{
    width: calc(100% / 2 - 20px);
    margin-right: 40px;
    padding: 20px;
    box-sizing: border-box;
    background: #f8f8f8;
    margin-top: 40px;
    align-items: center;
}
.expo .item:nth-child(2n){
    margin-right: 0;
}
.expo .item .item_img{
    width: 140px;
    height: 100px;
    overflow: hidden;
}
.expo .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expo .item .item_con{
    width: calc(100% - 140px);
    padding-left: 20px;
    box-sizing: border-box;
}
.expo .item .item_con .item_tit{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0 0 5px;
}
.expo .item .item_con .item_txt{
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: 100%;
}
.expo .item .item_con .item_txt span{
    margin-right: 10px;
}
.box_title3{
    padding: 0 0 30px;
    box-sizing: border-box;
    line-height: 60px;
}
.box_title3 span{
    display: inline-flex;
    align-items: center;
    width: 94.8%;
    background: #fff;
    margin-left: 2.6%;
    color: #678815;
    padding: 0 30px;
    box-sizing: border-box;
    font-size: 26px;
}
.box_title3 span img{
    margin-right: 10px;
}
.about_items{
    padding-top: 40px;
}
.about_items .item{
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    margin-top: 30px;
}
.about_items .item:nth-child(3n){
    margin-right: 0;
}
.about_items .item .item_img{
    width: 100%;
    height: 188px;
    overflow: hidden;
}
.about_items .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_items .item .item_con{
    text-align: center;
}
.about_items .item .item_con .item_tit{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 20px 0 10px;
}
.about_items .item .item_con .item_txt{
    font-size: 16px;
    line-height: 28px;
    color: #000;
}
.about_con{
    justify-content: space-between;
    padding-top: 60px;
}
.about_con .about_item{
    width: 47%;
}
.about_con .about_item a{
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.about_con .about_item img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.about_con .about_item .about_tit{
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 20px;
    left: 0;
    right: 0;
}

.service_tit{
    padding-top: 60px;
    padding-bottom: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}
.service_tit span img{
    margin-right: 15px;
    display: block;
}
.service_item{
    justify-content: space-between;
}
.service_item .item{
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    
}
.service_item .item:nth-child(3n){
    margin-right: 0;
}
.service_item .item .item_tit{
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    padding-left: 20px;
    border-left: 3px solid #f4990c;
    margin: 30px 0;
}
.service_item .item .item_con{
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}
.service_item .item .item_con select{
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.service_items .item{
    width: calc(100% / 4 - 25px);
    margin-right: 33px;
    margin-top: 33px;
}
.service_items .item:nth-child(4n){
    margin-right: 0;
}
.service_items .item .item_img{
    width: 100%;
    height: 340px;
    overflow: hidden;
}
.service_items .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service_items .item .item_tit{
    padding-top: 15px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #000;
}
.service_bd{
    padding-top: 60px;
}
.service_bd .tit{
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    border-left: 3px solid #f4990c;
    padding-left: 15px;
    box-sizing: border-box;
    margin: 30px 0;
}
.bd_item{
    justify-content: space-between;
    margin-bottom: 20px;
}
.bd_item .item{
    width: 48%
}

.bd_item2 .item{
    width: 100%;
}
.bd_item .item .item_tit{
    font-size: 18px;
    color: #000;
    line-height: 30px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}
.bd_item .item .item_tit font{
    color: #f40e0e;
    display: block;
    margin-left: 5px;
}
.bd_item .item .item_con{
    font-size: 16px;
    line-height: 30px;
    color: #000;
    display: flex;
    flex-wrap: wrap;
}
.bd_item .item .item_con input{
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding-left: 10px;
    box-sizing: border-box;
}
.bd_item .item .item_con label{
    width: 50%;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 40px;
}
.bd_item .item .item_con label input{
    width: 14px;
    height: 14px;
    margin-right: 10px;
}
.bd_item .item .item_con textarea{
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.bd_btn button{
    display: block;
    width: 360px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #f4990c;
    margin: 30px auto 0;
}
.about_title{
    font-size: 32px;
    font-weight: bold;
    color: #000;
    padding-left: 30px;
    border-left: 4px solid #f4990c;
    box-sizing: border-box;
    line-height: 1;
    margin-bottom: 30px;
}
.history_tit{
    background: #f4990c;
}
.history_tit span{
    font-size: 18px;
    padding: 0 15px;
    
    color: #000;
    line-height: 50px;
    cursor: pointer;
}
.history_tit span.active{
    background: #e8e8e8;
}
.history_con{
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    padding: 25px;
}
.history_con .history_item{
    align-items: center;
    display: none;
}
.history_con .history_item.active{
    display: flex;
}
.history_con .history_item .item_img{
    width: 220px;
}
.history_con .history_item .item_img img{
    display: block;
}
.history_con .history_item .item_txt{
    width: calc(100% - 220px);
    border-left: 1px solid #e5e5e5;
    box-sizing: border-box;
    padding-left: 20px;
    text-align: justify;
}
.Myhistory{
    overflow: hidden;
}
.Myhistory .swiper-slide{
    border: 1px solid #f4990c;
    box-sizing: border-box;
    height: 212px;
    overflow: hidden;
}
.swiper-pagination-history{
    text-align: center;
}

.expo2 .item .item_img{
    width: 180px;
    height: auto;
}
.expo2 .item .item_con{
    width: calc(100% - 180px);
}
.expo .item .item_con .item_txt{
    display: inline-flex;
    align-items: center;
}
.expo .item .item_con .item_txt span{
    width: 17px;
    height: 16px;
    display: block;
}
.expo .item .item_con .item_txt span img{
    display: block;
}
.expo2 .item .item_con .item_tst{
    margin-bottom: 20px;
}
.contact_con{
    padding-top: 60px;
    justify-content: space-between;
}
.contact_con .contact_item{
    width: 48%;
}
.contact_con .contact_item .item_img{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.contact_con .contact_item .item{
    margin-bottom: 30px;
}
.contact_con .contact_item .item:last-child{
    margin-bottom: 0;
}
.contact_con .contact_item .item .item_img{
    width: 100px;
    align-items: flex-start;
}
.contact_con .contact_item .item .item_con{
    width: calc(100% - 100px);
    padding-left: 20px;
    box-sizing: border-box;
}
.contact_con .contact_item .item .item_con .item_tit{
    font-size: 22px;
    color: #000;
    font-weight: bold;
    line-height: 1;
}
.contact_con .contact_item .item .item_con .item_txt{
    font-size: 20px;
    color: #666;
    margin:10px 0 20px;
}
.contact_bd{
    justify-content: space-between;
    padding-top: 60px;
}
.contact_bd .contact_bd_item{
    width: 49%;
}
.contact_bd .contact_bd_item .item{
    background: #f8f8f8;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 40px;
}
.contact_bd .contact_bd_item .item:last-child{
    margin-bottom: 0;
}
.contact_bd .contact_bd_item .item .item_tit{
    font-size: 20px;
    color: #000;
    font-weight: bold;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.contact_bd .contact_bd_item .item .item_txt{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 20px;
    font-weight: bold;
    color: #f4990c;
}
.contact_bd .contact_bd_item .item .item_txt a{
    color: #f4990c;
}
.contact_bd_item .item_bd .item{
    background: none;
    margin-bottom: 10px;
    padding: 0;
}
.contact_bd_item .item_bd .item .item_tit{
    font-weight: normal;
    margin-bottom: 10px;
    justify-content: flex-start;
}
.contact_bd_item .item_bd .item:first-child .item_tit{
    justify-content: space-between;
}
.contact_bd_item .item_bd .item .item_tit span{
    font-size: 14px;
    color: #000;
    opacity: 0.6;
}
.contact_bd_item .item_bd .item .item_tit font{
    color: #f40e0e;
}
.contact_bd_item .item_bd .item .item_con input{
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    color: #333;
    height: 40px;
    border: 1px solid #e5e5e5;
    padding-left: 10px;
    box-sizing: border-box;
}
.contact_bd_item .item_bd .item .item_con textarea{
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    color: #333;
    border: 1px solid #e5e5e5;
    padding-left: 10px;
    box-sizing: border-box;
}
.contact_bd_item .item_bd .item .item_tst{
    margin: 20px 0;
}
.contact_bd_item .item_bd .item .item_btm{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.contact_bd_item .item_bd .item .item_btm label{
    display: inline-flex;
    align-items: center;
}
.contact_bd_item .item_bd .item .item_btm input{
    border: 1px solid #e5e5e5;
    width: 14px;
    height: 14px;
    margin-right: 10px;
}
.contact_bd_item .item_bd .item .item_btm button{
    width: 120px;
    line-height: 40px;
    background: #f4990c;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.news_item .item{
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    margin-top: 30px;
    background: #f4990c;
}
.news_item .item a{
    display: block;
    background: rgba(0, 0, 0, .75);
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
}
.news_item .item:nth-child(3n){
    margin-right: 0;
}
.news_item .item .item_tit{
    font-size: 20px;
    color: #fff;
}
.news_item .item .item_day{
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}
.news_item .item .item_desc{
    font-size: 16px;
    color: #fff;
    text-align: justify;
}

.page{
    justify-content: center;
    padding-top: 60px;
}
.page a{
    padding: 5px 15px;
    border: 1px solid #e5e5e5;
    margin: 0 5px;
}
.news_titles{
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}
.news_titles .tit{
    font-size: 26px;
    color: #000;
    font-weight: bold;
}
.news_titles .txt{
    font-size: 16px;
    color: #999;
    padding-top: 10px;
}
.news_titles .txt span{
    margin: 0 10px;
}

.pages{
    border-top: 1px solid #e5e5e5;
    justify-content: space-between;
    padding: 60px 0 0;
    margin-top: 60px;
}
.pages a{
    width: 35%;
    display: block;
    font-size: 18px;
    color: #000;
}
.pages a:nth-child(2){
    width: 20%;
    text-align: center;
}
.pages a:last-child{
    text-align: right;
}
a:hover{
    color: #f4990c;
}

.faq .faq_item{border: 1px solid #f4990c;margin: 20px auto;border-radius: 4px;}
.faq .faq_item .item_tit{background: #eee;font-size: 20px;color: #444;font-weight: bold;padding: 10px 20px;box-sizing: border-box;cursor: pointer;display: inline-flex;align-items: flex-start;width: 100%;}
.faq .faq_item .item_tit span{width: 20px;height: 20px;position: relative;margin-right: 10px;margin-top: 5px;}
.faq .faq_item .item_tit span::before,
.faq .faq_item .item_tit span::after{content: "";display: block;width: 16px;height: 3px;background: #000;margin: 2px;position: absolute;top: 50%;left: 0;right: 0;margin-top: -1.5px;}
.faq .faq_item .item_tit span::after{transform: rotate(90deg);}
.faq .faq_item .editor{height: 0;overflow: hidden;transition: all 0.5s;}
.faq .faq_item.active .editor{padding: 20px;box-sizing: border-box;height: auto;transition: all 0.5s;}
.faq .faq_item.active .item_tit span::after{display: none;}

.shop_items{padding: 60px 0;}
.shop_items,
.shop_items .shop_item .list_item{justify-content: space-between;}
.shop_items .shop_item{width: 49%;}

.shop_items .shop_item .list_item .item{width: 48%;text-align: center;margin-bottom: 80px;}
.shop_items .shop_item .list_item .item .item_tit{font-size: 20px;color: #000;font-weight: bold;line-height: 45px;border-bottom: 2px solid #dadada;}
.shop_items .shop_item .list_item .item .item_img{width: 100%;height: auto;margin: 20px auto 0;}
.shop_items .shop_item .list_item .item .item_txt{font-size: 15px;color: #000;font-weight: bold;}
.shop_items .shop_item .list_item .item .item_txt span{display: block;font-weight: normal;}
.shop_items .shop_item .shop_bd{background: #dadada;width: 100%;height: 100%;padding: 40px;box-sizing: border-box;}
.shop_items .shop_item .shop_bd .tit{text-align: center;font-size: 24px;}
.shop_items .shop_item .shop_bd .shop_form{width: 300px;margin: 0 auto;}
.shop_items .shop_item .shop_bd .shop_form label{line-height: 30px;font-size: 14px;font-weight: bold;}
.shop_items .shop_item .shop_bd .shop_form input,
.shop_items .shop_item .shop_bd .shop_form select{width: 100%;height: 40px;line-height: 40px;background: #fff;padding: 10px;box-sizing: border-box;margin-bottom: 20px;}
.shop_items .shop_item .shop_bd .shop_form .txt{font-size: 18px;text-align: center;line-height: 36px;}
.shop_items .shop_item .shop_bd .shop_form button{width: 100%;line-height: 40px;background: #f4990c;font-size: 16px;color: #fff;}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 24px;
    color: #8d9290;
}



