@charset "utf-8";
/* ====================公共样式========================= */

/* 头部 */
.header-wrapper {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    box-shadow: -2px 0px 3px 1px rgb(0 0 0 / 12%);
    color: #333;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.header-wrapper.on {
    background-color: rgb(255, 255, 255);
    box-shadow: -2px 0px 3px 1px rgb(0 0 0 / 12%);
    color: #333;
}

/*.header-container {*/
/*    width: 90%;*/
/*    margin: 0 auto;*/
/*}*/

.header-container .logo {}

.header-container .logo h1 {
    padding: 15px 0;
    font-size: 0;
    position: relative;
    /* filter: drop-shadow(100vw 0px 0 white);
    -webkit-filter: drop-shadow(100vw 0px 0 white);
    right: 100vw; */
}

.header-wrapper.on .header-container .logo h1 {
    /* right: 0;
    filter: none;
    -webkit-filter: none; */
}

.header-container .logo h1 a {
    font-size: 0;
}

.header-container .logo h1 a img {
    width: auto;
    height: 54px;
}


.header-container .nav_item {}

.header-container .nav_item>ul {}

.header-container .nav_item>ul>li {
    float: left;
    position: relative;
    margin: 0 0 0 0.7rem;
}

.header-container .nav_item>ul>li:first-child {
    margin-left: 0;
}

.header-container .nav_item>ul>li>a {
    display: inline-block;
    font-size: 18px;
    line-height: 52px;
    font-family: "hr";
    text-transform: uppercase;
}

.header-container .nav_item>ul>li>a:before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.header-wrapper.on .header-container .nav_item>ul>li>a:before {
    background-color: #079d49;
}

.header-wrapper.on .header-container .nav_item>ul>li:hover>a,
.header-wrapper.on .header-container .nav_item>ul>li.active>a {
    color: #079d49;
}

.header-container .nav_item>ul>li:hover>a:before,
.header-container .nav_item>ul>li.active>a:before {
    width: 100%;
}

.header-container .nav_item .sub_menu {
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    margin-left: -100px;
    /* transform: translatex(-50%); */
    background: #fff;
    min-width: 640px;
    min-height: 360px;
    border-bottom: 2px solid #079d49;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    z-index: -1;
}

.header-container .nav_item .sub_menu.sub_menu2 {
    margin-left: -200px;
}

.header-container .nav_item .sub_menu.sub_menu3 {
    margin-left: -292px;
}

.header-container .nav_item .sub_menu.sub_menu4 {
    margin-left: -380px;
}

.header-container .nav_item>ul>li:hover .sub_menu {
    opacity: 1;
    visibility: inherit;
    z-index: 9;
    top: 100%;
}

.header-container .nav_item>ul>li:nth-child(6) .sub_menu,
.header-container .nav_item>ul>li:nth-child(7) .sub_menu {
    left: auto;
    right: 0;
    margin-right: -160px;
    margin-left: auto;
}

.header-container .nav_item .sub_menu ul {
    padding: 0.2rem 0.3rem;
    background: #079d49;
    width: 40%;
}

.header-container .nav_item .sub_menu ul li {
    width: 200px;
}

.header-container .nav_item .sub_menu ul li a {
    display: block;
    width: 100%;
    height: 45px;
    color: #fff;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    border-bottom: #079d49 1px solid;
    padding: 0 5px;
}

.header-container .nav_item .sub_menu ul li:hover a {
    background-color: white;
    color: #666;
}

.header-container .nav_item .sub_menu .sub_menu_fr {
    background: #fff;
    padding: 0.25rem;
    width: 60%;
}

.header-container .nav_item .sub_menu .sub_menu_fr .pic {}

.header-container .nav_item .sub_menu .sub_menu_fr img {}

.header-container .nav_item .sub_menu .sub_menu_fr .info {}

.header-container .nav_item .sub_menu .sub_menu_fr .info .tit {
    display: block;
    text-transform: uppercase;
    margin: 0.2rem 0 0.15rem;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #444;
    font-family: "hr";
}

.header-container .nav_item .sub_menu .sub_menu_fr .info .txt {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

.header-container .other {
    padding-left: 0.4rem;
}

.header-container .other .search {}

.header-container .other .search i {
    display: inline-block;
    /* padding-right: 0.2rem; */
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.header-wrapper.on .header-container .other .search i {
    color: #000;
    border-color: #000;
}

/*顶部移动端导航*/
#c-header .c-nav2 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    line-height: 50px;
    background: #fff;
    overflow-y: auto;
    transition: all 0.5s;
    text-align: left;
}

#c-header .c-nav2>li:last-child {
    border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
    padding: 0 20px;
    border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
    #c-header .c-nav2 li {
        padding: 0 4%;
    }
}

#c-header .c-nav2 li .c-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-header .c-nav2 li a {
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
}

#c-header .c-nav2 li i {
    font-size: 20px;
    color: #333;
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on>a {
    color: #006fb8;
}

#c-header .c-nav2 li ul {
    display: none;
}

.c-open #c-header .c-nav2 {
    height: calc(100vh - 60px);
}

/*顶部导航开关*/
#c-header .c-switch {
    display: none;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

@media (max-width: 991px) {
    #c-header .c-switch {
        display: block;
    }
}

#c-header .c-switch i {
    position: relative;
    display: block;
    height: 2px;
    background: #000000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
    top: 0;
}

#c-header .c-switch i:nth-child(3) {
    bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
    margin: 6px 0;
}

#c-header.on .c-switch i {
    background: #333;
}

body.c-open #c-header .c-switch i:nth-child(2) {
    opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
    bottom: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* 底部 */
.footer-container {
    background-color: #434343;
}

.foot_t {}

.foot_t .foot_nav {
    padding: 25px 0;
    border-bottom: 1px solid #5f5f5f;
}

.foot_t .foot_nav li {}

.foot_t .foot_nav li a {
    color: #fff;
    margin: 0 15px;
    font-size: 16px;
}

.foot_b {}

.foot_b .b1 {
    width: 30%;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

.foot_b .b2 {
    width: 40%;

}

.foot_b .b2 ul {}

.foot_b .b2 ul li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.foot_b .b3 {
    color: #fff;
}

.foot_b .b3 img {}

.foot_b .b3 p {
    text-align: center;
    margin-top: 15px;
}

.footer_copy {
    padding: 0.15rem 0;
    font-size: 16px;
    line-height: 1.6;
    color: white;
    text-align: center;
    background-color: #434343;
    border-top: 1px solid #5f5f5f;
}

.footer_copy a {
    display: inline-block;
    font-size: 16px;
    color: white;
    margin-left: 5px;
}

.footer_copy a:hover {
    color: #079d49;
}

/* 中间 共用部分 */



/* ind_banner */
.ind_banner .swiper-pagination-bullet {
    background-color: white;
    opacity: 1;
}

.ind_banner .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
    pointer-events: none;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ind_banner .swiper-slide img {
    width: 100%;
}

.ind_banner .swiper-slide video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 50%;
    -ms-transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

/* ind_tit */
.ind_tit {
    position: relative;
    padding-bottom: 15px;
}

.ind_tit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #079d49;
}

.ind_tit h3 {
    font-size: 0.38rem;
    color: #2c2c2c;
    display: inline-block;
    margin-right: .12rem;
    font-family: 'hb';
}

.ind_tit p {
    font-size: 18px;
    color: #404040;
    line-height: 1.3;
    margin: 0.2rem auto 0;
    display: inline-block;
    max-width: 100%;
    font-family: 'hm';
}

/* 首页more */
.ind_more {
    font-size: 16px;
    color: #079d49;
    width: 165px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #079d49;
    /* padding: 0.15rem 0.7rem; */
    font-family: 'hm';
    border-radius: 45px;
}

.ind_more i {
    font-size: 32px;
    margin-left: 0.2rem;
}

.ind_more:hover {
    background-color: #079d49;
    color: #fff;
}

/* swiper-page01 */
.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #079d49;
    width: 30px;
    height: 8px;
    border-radius: 4px;
}

.swiper-next01.swiper-button-next,
.swiper-prev01.swiper-button-prev {
    position: absolute;
    width: 0.42rem;
    height: 0.92rem;
    top: 50%;
    transform: translatey(-50%);
    z-index: 3;
    background-color: rgba(0, 0, 0, .4);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.swiper-next01.swiper-button-next:hover,
.swiper-prev01.swiper-button-prev:hover {
    background-color: rgb(183, 27, 44, .8);
}

.swiper-prev01.swiper-button-prev {
    right: auto;
    left: 0;
}

.swiper:hover .swiper-prev01.swiper-button-prev {
    left: 0.3rem;
}

.swiper-next01.swiper-button-next {
    left: auto;
    right: 0;
}

.swiper:hover .swiper-next01.swiper-button-next {
    right: 0.3rem;
}

.swiper:hover .swiper-next01.swiper-button-next,
.swiper:hover .swiper-prev01.swiper-button-prev {
    opacity: 1;
}

.swiper-next01.swiper-button-next:after,
.swiper-prev01.swiper-button-prev:after {
    color: white;
    font-size: 0.36rem;
}

/* com_tit */
.com_tit {
    position: relative;
}

.com_tit:before {
    position: relative;
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    margin-bottom: 0.1rem;
    background-color: #079d49;
}

.com_tit h3 {
    font-size: 0.42rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0.4rem;
    font-family: "hr";
}

/* 分页 */
.com-page {
    padding-top: 0.4rem;
}

.com-page a,
.com-page span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    color: #4d5a66;
    border: 1px solid #d1d1d1;
    margin: 0 5px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.com-page a.page-num-current,
.com-page a:hover {
    background-color: #079d49;
    border-color: #079d49;
    color: white;
}

.com-page a i {
    font-size: 22px;
    vertical-align: middle;
    line-height: 1;
}

/* sortnav */
.sortnav {
    position: relative;
    top: -35px;
}

.sortnav ul {
    box-shadow: 0 10px 25px -4px rgb(183, 27, 44, .18);
}

.sortnav ul li {
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.sortnav ul li a {
    display: block;
    position: relative;
    height: 100%;
    text-align: center;
    height: 70px;
    line-height: 70px;
    background: #fff;
    color: #2e2d3c;
    font-size: 18px;
    font-family: "hr";
    /* font-weight: 700; */
}

.sortnav ul li a::after {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 30%;
    background: #ccc;
    right: 0;
    top: 35%;
}

.sortnav ul li:last-child a::after {
    display: none;
}

.sortnav ul li.active a,
.sortnav ul li:hover a {
    color: white;
    background-color: #079d49;
}

/* com_ban */
.com_ban {
    position: relative;
}

.com_ban img {
    width: 100%;
}

.com_ban .pos {
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0.6rem;
    left: 0;
}

.com_ban .pos h3 {
    color: #fff;
    text-shadow: 0px 0px 15px rgb(0 0 0 / 40%);
    font-size: 42px;
    margin: 0px 0px 15px;
}

.com_ban .pos section {
    position: relative;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    /* border-top: 1px rgba(255,255,255,.4) solid; */
    padding: 0 0px 0px 2px;
    text-transform: uppercase;
}

/* .com_ban .pos section:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    position: absolute;
    top: -2px;
    left: 0;
} */
.com_ban .pos section i {
    line-height: 30px;
    margin-right: 5px;
}

.com_ban .pos section a {
    color: white;
}

/* 右侧客服 s */
.online_r {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 9;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.online_r ul {}

.online_r ul li {
    position: relative;
    box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
    cursor: pointer;
    height: 55px;
    line-height: 55px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 5px;
    opacity: 1;
}

.online_r ul li.hide {
    display: block;
    opacity: 0;
}

.online_r ul li i {
    display: block;
    font-size: 12px;
    width: 55px;
    font-size: 24px;
    color: white;
    background-color: #99999d;
    text-align: center;
}

.online_r ul li:hover i {
    background-color: #079d49;
}

.online_r ul li span {
    position: absolute;
    background: #079d49;
    border-radius: 3px;
    height: auto;
    min-height: 100%;
    right: 95px;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    padding: 0 15px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.online_r ul li:hover span {
    opacity: 1;
    right: 0.6rem;
    visibility: visible;
}

.online_r ul li span .pic {
    padding: 15px 0;
}

.online_r ul li span .pic img {
    width: 100px;
    max-width: none;
}

.online_r ul li span:before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #079d49;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}

.online_r ul li.back_top {
    box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
    background: #079d49;
}

/* 右侧客服 e */

/* 公共留言 s */
.com_form {
    margin-top: 0.6rem;
}

.com_form h3 {
    display: block;
    width: 100%;
    font-size: 0.24rem;
    line-height: 1;
    color: white;
    font-weight: 700;
    background-color: #079d49;
    padding: 0.2rem 0.3rem;
    margin-bottom: 0.25rem;
}

.com_form form {
    width: 98%;
    margin: 0 1%;
}

.com_form ul {}

.com_form ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.15rem;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-left: 3px solid #f09420;
}

.com_form ul li.li {
    width: 100%;
    margin-right: 0;
}

.com_form ul li:nth-child(2n) {
    margin-right: 0;
}

.com_form ul li:last-child {
    border: none;
}

.com_form ul li input {
    line-height: 0.48rem;
    height: 0.48rem;
    padding-left: 0.24rem;
    width: 100%;
    font-size: 16px;
}

.com_form ul li i {
    position: absolute;
    top: 0;
    line-height: 0.6rem;
    right: 15px;
    color: #079d49;
    font-style: normal;
}

.com_form ul li textarea {
    width: 100%;
    height: 2rem;
    padding: 0.2rem 0.28rem;
    border: none;
    font-size: 16px;
}

.com_form ul li .btn {
    width: 100%;
    background: #079d49;
    /* line-height: 0.6rem; */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.com_form ul li .btn:hover {
    background-color: #f09420;
}

/* 公共留言 e */

/* tc_search s */
.tc_search {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    pointer-events: none;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tc_search.act {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    display: block;
    pointer-events: auto;
}

.tc_search form {
    width: 9.6rem;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 2px solid #eee;
    height: 0.7rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.tc_search input {
    width: 80%;
    height: 0.7rem;
    font-size: 0.34rem;
    color: #c1c1c1;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: none;
}

.tc_search input::placeholder {
    color: #c1c1c1;
}

.tc_search button {
    max-width: 20%;
    height: 0.7rem;
    border: 0;
    line-height: 0.7rem;
    color: #c1c1c1;
    cursor: pointer;
    text-transform: uppercase;
    float: right;
    font-size: 0.48rem;
    background-color: transparent;
}

.tc_search .search_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}

/* tc_search e */
/* -------------------------pc端--------------------------- */
@media all and (max-width:1700px) {

    /* 1600 × (900/1024/1200) */
    .header-container .nav_item>ul>li {
        margin-left: 0.5rem;
    }

}


@media all and (max-width:1599px) {

    /* 1440 × (900/1050) */
    .header-container .nav_item>ul>li>a {
        font-size: 16px;
    }

    .foot_item2 .fl ul>li {
        margin-right: 0.4rem;
    }
}

@media all and (max-width:1439px) {

    /* 1360 × (768) */
    .foot_item2 .fl ul>li {
        margin-right: 0.2rem;
    }
}

@media all and (max-width:1359px) {
    /* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {

    /* 1152 × (864) */
    .header-container {
        width: 96%;
    }

    .header-container .nav_item>ul>li {
        margin-left: 0.35rem;
    }

    .header-container .nav_item>ul>li>a {
        font-size: 15px;
    }

    .foot_item2 .fr {
        display: none;
    }

    .sortnav ul li a {
        font-size: 16px;
    }
}

@media all and (max-width:1151px) {
    /* 1024 × (600/768) */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */
    .pc {
        display: none;
    }

    .mb {
        display: block;
    }

    .pd-60 {
        padding: 1rem 0 0.8rem;
    }

    .online_r {
        display: none;
    }



    .header-container {
        width: 92%;
    }

    .header-container .nav_item {
        display: none;
    }

    .header-container .logo h1 {
        padding: 12px 0;
    }

    .header-container .logo h1 a img {
        height: 36px;
    }

    .header-container .other .search i {
        margin-right: 0.4rem;
    }

    .ind_tit p {
        font-size: 16px;
    }

    .ind_tit p {
        margin-top: 0.3rem;
    }

    .swiper-next01.swiper-button-next,
    .swiper-prev01.swiper-button-prev {
        width: 0.6rem;
        height: 1.3rem;
    }

    .footer-container .w16 {
        flex-wrap: wrap;
    }

    .foot_item1 .foot_txt {
        margin-top: 0.6rem;
    }

    .foot_item1,
    .foot_item2,
    .foot_item2 .fl,
    .foot_item2 ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .foot_item1 .foot_logo img {
        height: 40px;
    }

    .foot_item2 {
        margin-top: 0.6rem;
    }

    .foot_item2 ul {
        justify-content: flex-start;
    }

    .foot_item2 .fl>ul>li>a {
        font-size: 20px;
        margin-bottom: 0.3rem;
    }

    .foot_item2 .fl>ul>li {
        width: 50%;
        margin-right: 0;
    }

    .foot_item3 {
        width: 100%;
        margin-top: 0.4rem;
    }

    .foot_item3 ul li:first-child {
        margin-left: 0;
    }

    .com_ban {
        height: 42vh;
    }

    .com_ban img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .com_ban .pos {
        /* text-align: center; */
        bottom: 1%;
        -webkit-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        transform: translatey(-50%);
    }

    .com_ban .pos h3 {
        font-size: 0.44rem;
        margin-bottom: 0;
        font-weight: normal;
        text-shadow: none;
    }

    .sortnav {
        display: none;
    }

    .com_tit h3 {
        margin-bottom: 0.5rem;
    }

    .com_tit:before {
        width: 0.5rem;
        margin-bottom: 0.18rem;
    }

    .com-page {
        padding-top: 0.6rem;
    }

    .com_form {
        margin-top: 0.8rem;
    }

    .com_form h3 {
        font-size: 0.32rem;
        padding: 0.3rem 4%;
        margin-bottom: 0.4rem;
    }

    .com_form ul li input {
        font-size: 14px;
    }

    .com_form ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }

    .com_form ul li input {
        height: 0.7rem;
        line-height: 0.7rem;
    }

    .com_form ul li .btn {
        font-size: 16px;
        line-height: 0.6rem;
        height: 0.7rem;
    }

    .com_form ul li textarea {
        height: 3rem;
    }

    .ind_banner .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media all and (max-width:768px) {
    .foot_item1 .foot_txt ul li i {
        font-size: 20px;
        width: 30px;
    }

    .footer_copy {
        padding: 0.4rem 0;
    }

    .footer_copy,
    .footer_copy a {
        font-size: 14px;
    }
}

@media all and (max-width:640px) {

    /* 移动终端以上 360 适配 */
    .tc_search form {
        width: 92%;
        max-width: 92%;
        padding: 0 0.2rem;
        margin-bottom: 1px;
        height: 0.8rem;
    }

    .tc_search input {
        font-size: 0.32rem;
        height: 0.8rem;
    }

    .ind_tit h3 {
        font-size: 0.48rem;
    }

    .ind_tit p {
        font-size: 15px;
    }

    .com-page a,
    .com-page span {
        width: 38px;
        height: 38px;
        line-height: 36px;
        font-size: 14px;
        margin: 0 3px;
    }

    .com_ban .pos section {
        font-size: 14px;
        line-height: 22px;
    }
}

@media all and (max-width:480px) {

    .foot_item2 .fl>ul>li>a {
        font-size: 18px;
    }

    .foot_item2 ul>li>ul>li>a {
        font-size: 13px;
    }

    .foot_item1 .foot_txt ul li {
        font-size: 13px;
        line-height: 20px;
    }

    .footer_copy,
    .footer_copy a {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}

/* com_page */
.com-page {
    padding-top: 0.4rem;
    font-size: 0;
}

.com-page a,
.com-page span {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(222, 222, 222);
    font-size: 14px;
    color: #333;
    background: #fff;
    margin: 0 0.05rem;
    transition: all .3s;
}

.com-page a.page-num-current,
.com-page a:hover {
    background-color: #079d49;
    border-color: #079d49;
    color: white;
    line-height: 48px;
}

.com-page a i {
    font-size: 22px;
    vertical-align: middle;
    line-height: 1;
}


/* com_ban */
.com_ban {
    position: relative;
    height: 4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 84px;
}

.com_ban::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .15);
    /* opacity: 0; */
    z-index: 1;
    mix-blend-mode: multiply;
}

.com_ban::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(16, 154, 36, .28);
    opacity: 0;
    z-index: 2;
    mix-blend-mode: multiply;
}

.com_ban .ban_txt {
    position: absolute;
    top: 50%;
    left: 0;
    color: #ffffff;
    width: 100%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
    z-index: 3;
}

.com_ban .ban_txt h3 {
    font-size: 0.4rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
}

.com_ban .ban_txt p {
    font-size: 16px;
    margin-top: 12px;
}


/* loca */
.loca {
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
}

.loca_pro {
    background-color: #ededed;
}

.loca .fr a,
.loca .fr i {
    font-size: 16px;
    color: #666;
}

.loca .fr i {
    margin: 0 0.04rem;
}

.loca .fr img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: baseline;
}

.loca .fr a:hover {
    color: #079d49;
}

.loca .fl {}

.loca .fl ul {
    overflow: hidden;
}

.loca .fl ul li {
    float: left;
    margin-right: 0.6rem;
}

.loca .fl ul li:last-child {
    margin-right: 0;
}

.loca .fl ul li a {
    display: block;
    position: relative;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loca .fl ul li a::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    background-color: #079d49;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    bottom: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loca .fl ul li.active a,
.loca .fl ul li:hover a {
    color: #079d49;
}

.loca .fl ul li.active a::after,
.loca .fl ul li:hover a::after {
    width: 100%;
}


/* ny_tit */
.ny_tit {
    text-align: center;
    margin-bottom: 0.5rem;
}

.ny_tit.tal {
    text-align: left;
}

.ny_tit h3 {
    font-size: 0.38rem;
    color: #333;
    font-weight: 700;
    /* font-family: 'montserrat-bold'; */
}

.ny_tit span {
    display: block;
    width: 100px;
    height: 3px;
    margin: 0 auto;
    background: #079d49;
    margin-top: 18px;
}

/* sort_nav*/
.sort_nav_view {}

.main_fl {
    width: 22%;
    float: left;
}

.main_fr {
    width: 75%;
    float: right;
}

.sort_nav_view .item {
    margin-bottom: 0.4rem;
}

.sort_nav_view .item .tit {
    position: relative;
    font-size: 0.28rem;
    color: #333;
    padding-bottom: 15px;
    font-weight: 700;
    /* font-family: 'montserrat-bold'; */
}

.sort_nav_view .item .tit::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #079d49;
}

.sort_nav_ul {}

.sort_nav_ul li {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    padding: 0.2rem 0;
}

.sort_nav_ul li a {
    position: relative;
    font-size: 16px;
    color: #333;
    display: block;
    line-height: 28px;
}

.sort_nav_ul li.active a {
    color: #079d49;
}

.sort_nav_ul li i {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
    color: #079d49;
    display: none;
}

.sort_nav_ul li:hover i,
.sort_nav_ul li.active i,
.sort_nav_ul li:hover i {
    display: block;
}

.sort_nav_fl {}

.sort_nav_fl li {
    margin-top: 20px;
    width: 100%;
    display: inline-block;
    color: #666;
}

.sort_nav_fl li a {}

.sort_nav_fl li .img {
    width: 35%;
}

.sort_nav_fl li p {
    width: 60%;
    font-size: 15px;
    color: #666;
    line-height: 24px;
}

.sort_nav_fl li:hover p {
    color: #079d49;
}

/* fanye */
.fanye dt {
    width: 50%;
    float: left;
    font-size: 14px;
    line-height: 1.3;
    ;
    color: #079d49;
}

.fanye {
    border-bottom: 1px dashed #ddd;
    margin-top: 0.8rem;
    padding-bottom: 0.4rem;
}

.fanye dt a {
    color: #666;
    flex: 1;
}

.fanye dt:nth-child(2) {
    text-align: right;
}

.fanye dt a:hover {
    color: #079d49;
}

/* ny_form */
.ny_form {
    margin-top: 0.8rem;
}

.input_control {
    position: relative;
    width: 32%;
    float: left;
    margin-right: 2%;
    background: #f2f5f8;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 54px;
}

.input_control:nth-child(3) {
    margin-right: 0;
}

.form_input {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    height: 54px;
    line-height: 54px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    font-size: 14px;
    color: #666;
    width: 95%;
    background: #f2f5f8;
}

.input_control label {
    color: red;
    position: absolute;
    left: 20px;
    line-height: 54px;
}

.form_input::-moz-placeholder,
.form_text::-moz-placeholder {
    color: #666;
}

.form_text {
    height: 100px;
    background: #f2f5f8;
    position: absolute;
    left: 30px;
    top: 15px;
    width: 95%;
    font-size: 14px;
    color: #666;
    line-height: 25px;
    border: none;
}

.input_control2 {
    width: 100%;
    margin: 16px 0 25px;
    height: 130px;
}

.ny_form p {
    font-size: 14px;
    color: #666;
    display: block;
    float: left;
    line-height: 1.3;
}

.ny_form .submit {
    border-radius: 4px;
    background: #079d49;
    font-size: 0.18rem;
    color: #fff;
    cursor: pointer;
    margin-top: 0.25rem;
    padding: 0.2rem 0.8rem;
}