﻿/* 公用 */
/* a标签 */
body {
    margin: 0 auto;
    overflow-x: hidden;
    max-width: 1920px;
    min-width: 1280px;
}

.banner .phoneimg {
    display: none;
}

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

.clearfix {
    *zoom: 1;
}

.ff_12 {
    font-size: 12px;
    font-weight: bold;
}

.ff_16 {
    font-size: 16px;
    font-weight: bold;
}

.ff_18 {
    font-size: 18px;
    font-weight: bold;
}

.ff_20 {
    font-size: 20px;
    font-weight: bold;
}

.ff_22 {
    font-size: 22px;
    font-weight: bold;
}

.ff_24 {
    font-size: 24px;
    font-weight: bold;
}

.ff_26 {
    font-size: 26px;
    font-weight: bold;
}

.ff_28 {
    font-size: 28px;
    font-weight: bold;
}

.ff_30 {
    font-size: 30px;
    font-weight: bold;
}

.ff_32 {
    font-size: 32px;
    font-weight: bold;
}

.ff_34 {
    font-size: 34px;
    font-weight: bold;
}

.ff_36 {
    font-size: 36px;
    font-weight: bold;
}

.ff_38 {
    font-size: 38px;
    font-weight: bold;
}

.ff_40 {
    font-size: 40px;
    font-weight: bold;
}

a {
    color: #666;
    text-decoration: none;
    outline: none;
}
a:hover{
    color: #2e752f;
}

/* 弹窗 */

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 10;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
    background: white;
    border: 50px solid #fff;
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    margin: 0 auto;
    top:30px;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(../images/out1.png) center no-repeat;
    background-size: 40px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: -40px;
    right: -40px;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    background: #fff url(../images/out2.png) center no-repeat;
    background-size: 40px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.khz {
    width: 100%;
    height: 110px;
}

.banner1 {
    position: relative;
}

.banner1 .bg_img {
    width: 100%;
    height: 640px;
}

.banner1 .obox {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.banner1 .text {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -49px;
}

.banner1 .text .d_text {
    color: #fff;
}

.banner1 .text .c_text {
    color: #fff;
    margin-top: 20px;
}

.banner2 {
    display: none;
}

/* 弹窗动画 */

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

/* 面包屑导航 */
.mbxdh {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #eeeeee;
}

.mbxdh .obox {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbxdh .obox .left {
    height: 100%;
}

.mbxdh .obox .left .ul1 {
    height: 100%;
    display: flex;
}

.mbxdh .obox .left .ul1 li {
    height: 100%;
    margin-right: 90px;
    display: flex;
    position: relative;
}

.mbxdh .obox .left .ul1 li::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #2e752f;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.mbxdh .obox .left .ul1 li:hover::before {
    width: 100%;
}

.mbxdh .obox .left .ul1 li.act::before {
    width: 100%;
}

.mbxdh .obox .left .ul1 li a {
    height: 100%;
    color: #666;
    display: flex;
    align-items: center;
}

.mbxdh .obox .left .ul1 li:hover a {
    color: #2e752f;
}

.mbxdh .obox .left .ul1 li.act a {
    color: #2e752f;
}

.mbxdh .obox .left .ul1 li:last-child {
    margin-right: 0;
}

.mbxdh .obox .right {
    height: 100%;
}

.mbxdh .obox .right .ul2 {
    height: 100%;
    display: flex;

}

.mbxdh .obox .right .ul2 li {
    height: 100%;
    display: flex;
    align-items: center;
}

.mbxdh .obox .right .ul2 li:nth-child(2n) {
    margin: 0 10px;
}

.mbxdh .obox .right .ul2 li a {
    height: 100%;
    color: #666;
    display: flex;
    align-items: center;
}

.mbxdh .obox .right .ul2 li.act a {
    color: #2e752f;
}

.mbxdh .obox .right .ul2 li a:hover {
    color: #2e752f;
}

/* 分页 */
/* .phone_ckgd{
    display: none;
} */
.fy {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fy .sxyy {
    display: flex;
    align-items: center;
}

.fy .sxyy .img {
    width: 16px;
    height: 13px;
    position: relative;
}

.fy .sxyy .img img {
    position: absolute;
    top: 0;
    left: 0;
}

.fy .sxyy .img img:last-child {
    opacity: 0;
}

.fy .sxyy:hover .img img:last-child {
    opacity: 1;
}

.fy .sxyy:hover .img img:first-child {
    opacity: 0;
}

.fy .sxyy .text {
    color: #333;
    font-weight: bold;
}

.fy .sxyy:hover .text {
    color: #2e752f;
}

.fy .syy .img {
    margin-right: 15px;
}

.fy .xyy .img {
    margin-left: 15px;
}

.fy .ul1 {
    display: flex;
}

.fy .ul1 li {
    width: 45px;
    height: 45px;
    margin-right: 20px;
}

.fy .ul1 li:last-child {
    margin-right: 0;
}

.fy .ul1 li:nth-last-child(2) {
    margin-left: 10px;
}

.fy .ul1 li input {
    width: 100%;
    height: 100%;
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    color: #333333;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-align: center;
}

.fy .ul1 li a {
    width: 100%;
    height: 100%;
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fy .ul1 li a:hover {
    color: #2e752f;
    border: 1px solid #2e752f;
}

.fy .ul1 li.act a {
    border: 1px solid #2e752f;
    background-color: #2e752f;
    color: #fff;
}


.more {
    width: 172px;
    height: 45px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e752f;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    z-index: 6;
}

.more:hover {
    background-color: #00a658;
    transform: translateY(-5px);
}

.more .m_text {
    color: #fff;
    margin-right: 10px;
}

.more1 {
    width: 153px;
    height: 45px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e752f;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    z-index: 6;
}

.more1:hover {
    background-color: #00a658;
    transform: translateY(-5px);
}

.more1 .m_text {
    color: #fff;
    margin-right: 10px;
}

.more2 {
    width: 153px;
    height: 45px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    z-index: 6;
}

.more2:hover {
    background-color: #2e752f;
    transform: translateY(-5px);
}

.more2 .m_text {
    color: #fff;
    margin-right: 10px;
}

/* 关于我们页面公共title */
.about_title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about_title .text {
    color: #333;
}

.about_title .line {
    width: 30px;
    height: 2px;
    background-color: #2e752f;
    margin-top: 20px;
}

/* 公共按钮样式结束 */
@media (max-width: 1680px) {}

@media (max-width: 1440px) {}

@media (max-width: 1366px) {}

@media (max-width: 1280px) {}

@media (max-width: 1030px) {
    body {
        min-width: 100px;
    }

    .ibox {
        max-width: 1030px;
        min-width: 100px;
        width: 90%;
        margin: 0 auto;
    }

    .wow {
        opacity: 1;
    }

    .khz {
        width: 100%;
        height: 80px;
    }

}
@media (max-height:800px){
.z_tanchuang .tbox .modal{width: 70%;}

}
@media (max-height: 700px){
.z_tanchuang .tbox .modal{width: 60%;}
}
@media (max-width: 960px) {
    .wow {
        opacity: 1;
    }

    .khz {
        width: 100%;
        height: 50px;
    }

    .mbxdh {
        height: 40px;
    }

    .mbxdh .obox .left .ul1 li {
        margin-right: 20px;
    }

    .mbxdh .obox .right {
        display: none;
    }

    .fy {
        /* display: block; */
    }

    .more1 {
        width: 140px;
        height: 40px;
        padding: 0 20px;
    }

    .more2 {
        width: 140px;
        height: 40px;
        padding: 0 20px;
    }

    /* .phone_ckgd{
    display: block;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2e752f;
    color: #fff;
    border-radius: 7px;
    margin: 0 auto;
} */
    .banner1 {
        display: none;
    }

    .banner2 {
        display: block;
        position: relative;
    }

    .banner2 .bg_img {
        height: 100%;
    }
    .banner2 .bg_img img{
        max-width: 100%;
    }

    .banner2 .obox {
        position: absolute;
        top: 50%;
        left: 7%;
        transform: translateY(-50%);
    }

    .banner2 .obox .d_text,
    .banner2 .obox .c_text {
        color: #fff;
    }

    .banner2 .obox .c_text {
        margin-top: 20px;
    }

    .z_tanchuang .tbox .modal .out {
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #fff url(../images/out1.png) center no-repeat;
        background-size: 40px;
        color: #000;
        font-size: 30px;
        text-align: center;
        border-radius: 50%;
        top: -55px;
        right: 0px;
        cursor: pointer;
    }

    .z_tanchuang .tbox .modal {
        background: white;
        padding: 0;
        display: block;
        border-radius: 5px;
        position: relative;
        width: 90%;
        max-width: 1200px;
        max-height: 90%;
        margin: 0 auto;
    }

    .fy .ul1 li {
        width: 30px;
        height: 30px;
        margin-right: 7px;
    }

    .fy .ul1 li:nth-last-child(2) {
        margin-left: 0;
    }

    .fy .syy .img {
        margin-right: 7px;
    }

    .fy .xyy .img {
        margin-left: 7px;
    }
}