p {
    background: transparent !important;
}

.centerBox {
    width: 1200px;
    margin: 0 auto;
}


/* header  */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.nav {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 150px;
    min-width: 1200px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(3, 102, 65,0.95);
}

.nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    /* border-bottom: #fff 1px solid; */
}
.nav .nav-left {
    height: 66px;
}

.nav .nav-left .logo {
    /* 整图 */
    /* position: absolute;
    z-index: 2;
    display: inline-block;
    height: 60px; */
    display: block;
    height: 66px;
}

.nav .nav-left .logo img {
    height: 100%;
    object-fit: contain;
}

.nav .nav-left .logo .logo_right div {
    margin: 8px 0;
    color: #fff;
}
.nav .nav-top .nav-top-right{
    display: flex;
}
.nav .nav-top .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 6px 10px;
    margin: 0px 0 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
}

.nav .nav-top .nav-link.weixin {
    padding: 0px;
    background-color: #039250;
}
.nav .nav-top .nav-link.weixin img{
    width: 20px;
    height: 20px;
}
.nav .nav-top .nav-link.sousuo {
    padding: 6px;
}
.nav .nav-top .nav-link.sousuo img {
    width: 15px;
    height: 15px;
    margin-left: -20px;
    margin-right: 6px;
}
.nav .nav-top .nav-link a {
    color: rgba(255, 255, 255, 0.8);
}

.icon-sousuo:before {
    font-size: 16px;
}
.nav .nav-code {
    display: none;
    position: absolute;
    top: 88px;
    z-index: 999;
    width: 150px;
    height: 150px;
    margin-left: -65px;
    padding-left: 5px;
    padding-top: 5px;
    background-color: #fff;
    border-radius: 10px;
}
.nav .nav-top-right .nav-link .nav-code img{
    width: 140px;
    height: 140px;
}
.nav .nav-top .nav-link.weixin:hover .nav-code{
    display: block;
}
.nav .nav-bottom {
    display: flex;
    justify-content: space-between;
    height: 43px;
    width: 100%;
    box-sizing: border-box;
}

.nav .nav-line{
    position: absolute;
    bottom: 44px;
    left: calc(50% - 700px);
    height: 1px;
    width: 1400px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50.2%, rgba(255, 255, 255, 0) 100%);
}
.nav .nav_item {
    cursor: pointer;
    position: relative;
    z-index: 99;
    width: 200px;
    height: 100%;
    line-height: 43px;
    text-align: center;
}

.nav_item_box {
    white-space: nowrap;
    color: rgba(255, 255, 255, 1);
}

.nav .nav_item_box a {
    display: block;
    width: 100%;
    white-space: nowrap;
    color: rgba(255, 255, 255, 1);
}

.nav .nav_item.active {
    background-color: #039250;
}

.nav .nav_item:hover {
    background-color: #039250;
}

.nav .nav_item:hover .subNav {
    display: block;
    animation: rotate 0.5s linear;
    transform: translateX(-50%) rotateY(0deg);
}

.nav .nav_item .subNav {
    position: absolute;
    left: 50%;
    top: 43px;
    display: none;
    width: 200px;
    transform: translateX(-50%) rotateY(-90deg);
    background-color: rgba(4, 103, 66,0.9);
    /* background: linear-gradient(rgba(4, 103, 66, 0) 0%, rgba(4, 103, 66, 0.3) 50%, rgba(4, 103, 66, 0.5) 100%); */
    z-index: 9;
}

.nav .nav_item .subNav dd {
    display: flex;
    justify-content: center;
    margin-left: 0;
}

.nav .nav_item .subNav dd a {
    display: block;
    width: 100%;
    line-height: 40px;
    color: rgba(255, 255, 255, 1);
}

.nav .nav_item .subNav dd:hover {
    background-color: #039250;
}
@keyframes rotate {
    0% {
        transform: translateX(-50%) rotateY(-90deg);
    }
    55% {
        transform: translateX(-50%) rotateY(30deg);

    }
    70% {
        transform: translateX(-50%) rotateY(0deg);

    }
    85% {
        transform: translateX(-50%) rotateY(-20deg);

    }
    100% {
        transform: translateX(-50%) rotateY(0deg);

    }
}


/* 手机导航栏 */

.nav .phone_nav_hide {
    display: none;
    width: 50vw;
    position: absolute;
    right: 0;
    top: 60px;
    float: left;
    z-index: 9999;
}
.mobile-inner-nav {
    background: #046742;
    width: 100%;
    max-height: 85vh;
    position: absolute;
    left: 0px;
    padding-top: 10px;
    padding-bottom: 25px;
    overflow-y: scroll;
}

.mobile-inner-nav ul a {
    display: inline-block;
    line-height: 45px;
    text-decoration: none;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav li {
    position: relative;
    padding: 0 20px;
}

.mobile-inner-nav li a {
    text-indent: 15px;
}


/* 图标 */

.mobile-inner-nav li strong {
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 45px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.strong_active {
    transform: rotate(45deg);
}

.mobile-inner-nav ul a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}
.content .title img {
    height: auto !important;
}
@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile_subNav {
    display: none;
    padding-left: 10px;
}

.mobile-inner-nav dd a {
    height: 35px;
    line-height: 35px;
    border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
}
.phone-weixin{
    display: block;
    height: 36px;
    margin: 8px 20px;
    line-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-indent: 15px;
    background: #529475;
    color: rgba(255, 255, 255, 0.8);
}
.phone-weixin img{
    width: 18px;
    height: 18px;
    margin-right: 15px;
}
.mobile_search {
    clear: both;
    position: relative;
    height: 36px;
    margin: 10px 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
}

.mobile_search input.notxt {
    width: 80%;
    margin-left: 13px;
    background-color: #046742;
    border: none;
    height: 36px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile_search input.notxt1 {
    width: 55px;
    background-color: #046742;
    background: url(../images/fr_right.png) no-repeat center center;
    border: none;
    height: 36px;
    line-height: 36px;
    float: left;
}

.mobile,
.mobile .top_nav {
    display: block;
}

.mobile .top_nav {
    text-align: center;
    float: right;
    padding: 5px 10px;
}

.logo2 {
    width: calc(338% / 6.45);
    float: right;
}

.phone_nav_hide .top_nav {
    width: 100%;
    float: right;
    padding: 5px 20px;
    text-align: center;
}

.top_nav a {
    position: relative;
    display: block;
    width: 100%;
    height: 32px;
    margin: 5px 0;
    margin-right: 20px;
    line-height: 32px;
    border-radius: 16px;
    vertical-align: top;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.phone_nav_hide input.notxt1 {
    position: absolute;
    border: none;
    right: 0;
    font-size: 18px;
    color: #fff;
}


/* 手机搜索 */

.nav-link_input {
    background-color: #751714;
    border: 1px solid #751714;
    width: 150px;
    height: 100%;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 20px 0 10px 20px;
    color: #ddd;
}

@media screen and (max-width: 1150px) {
    .centerBox {
        display: block !important;
        min-width: 0 !important;
        width: 95% !important;
    }
    .nav {
        position: static;
        height: 60px;
        padding: 0 20px;
        min-width: 0;
        overflow: hidden;
    }
    .nav .centerBox{
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .nav .nav-line{
        display: none;
    }
    .nav .nav-top{
        width: 80%;
        padding: 10px 0;
        border: 0;
    }
    .nav .nav-left {
        height: 40px;
        width: 100%;
        padding: 0;
        border: 0;
    }
    .nav .nav-left .logo img {
        height: 40px;
        object-fit: contain;
    }
    .nav .nav-top .nav-link{
        display: none;
    }
    .nav .nav-bottom{
        display: none;
    }
    .nav .phone_nav_right {
        display: block;
        width: 30px;
        height: 30px;
        background-image: url("../images/nav_phone.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .phone_nav_right_active {
        height: 20px !important;
        width: 20px !important;
        background-image: url(../images/X.png) !important;
    }
}


/* banner */

.banner {
    width: 100%;
    height: calc(100vh - 110px);
    background-color: #1a0130;
    position: relative;
    overflow: hidden;
    min-width: 1200px;
}

.banner .JQ-slide-content {
    width: 100%;
    height: calc(100vh - 110px);
    position: relative;
    overflow: hidden;
}

.banner .JQ-slide-content li {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
}

.banner .JQ-slide-content li:first-child {
    z-index: 1;
    opacity: 1;
}
.JQ-slide-nav {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 20px;
    width: 100%;
    height: 20px;
}

.JQ-slide-nav li {
    width: 9px;
    height: 9px;
    background-color: rgba(255, 255, 255, 0.5);
    /* border: 1px solid rgba(255, 255, 255, 1); */
    border-radius: 5px;
    cursor: pointer;
    z-index: 99;
    margin: auto 10px;
}

.JQ-slide-nav li.on {
    width: 9px;
    height: 9px;
    background-color: rgba(255, 255, 255, 1);
    /* border: 1px solid rgba(255, 255, 255, 1); */
    border-radius: 5px;
}

/* 适配 */

@media screen and (max-width: 780px) {
    .banner {
        min-width: 0 !important;
        height: 40vw;
        margin-top: 60px;
    }
    .banner>.JQ-slide-content {
        width: 100%;
        height: 40vw;
        position: relative;
    }
}


/* 二级banner */

.secbanner {
    height: 500px;
    background-size: cover;
}


/* 左导航切换 */

.tabLeft {
    width: 27%;
    transform: translateY(-70px);
}

.tabLeft .sectitle{
    width: 100%;
    line-height: 70px;
    color: #fff;
    text-align: center;
    background: rgba(0, 99, 53, 0.9);
}
.tabLeft ul {
    padding: 5px 8px;
    box-sizing: border-box;
    background: rgba(210, 181, 104, 0.15);
    overflow: hidden;
}
.tabLeft .secline{
    width: 100%;
    margin: 5px 0;
    border-top: 1px solid rgba(210, 181, 104, 0.21);
}
.tabLeft .leftsidebar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.tabLeft .leftsidebar .sec-icon-white{
    display: none;
}
.tabLeft li:hover .leftsidebar,
.tabLeft .leftsidebar.active{
    color: #fff;
    border-radius: 7px;
    background: rgba(0, 99, 53, 0.65);
}
.tabLeft li:hover .leftsidebar .sec-icon-grey,
.tabLeft .leftsidebar.active .sec-icon-grey{
    display: none;
}
.tabLeft li:hover .leftsidebar .sec-icon-white,
.tabLeft .leftsidebar.active .sec-icon-white{
    display: inline-block;
}
.tabLeft .leftsidebar img{
    width: 20px;
    height: 15px;
}
.tabLeft .sec-tabbg{
    width: 100%;
    text-align: center;
    transform: translateY(20%);
}
.tabLeft .sec-tabbg img{
    width: 80%;
    height: auto;
    object-fit: contain;
    opacity: 0.3;
}
/* 二级页面内容 */
.sec{
    width: 100%;
    height: fit-content;
    background-color: #fff;
}
.sec .container {
    display: flex;
    height: auto;
    min-height: calc(100vh - 580px);
    margin: 0 auto;
    padding-bottom: 50px;
}

.sec .container .sec_content {
    width: 90%;
    margin-top: 15px;
    margin-left: 20px;
}
.content {
    width: 100%;
}
@media only screen and (max-width: 1200px) {
    .sec .container {
        min-height: 35vh;
    }
}

/* 二级页面右边的标题 */

.content .title {
    position: relative;
    width: 100%;
    border-bottom: rgb(184, 183, 183, 0.6) 1px solid;
    padding-bottom: 43px;
}

.content .title p {
    position: absolute;
    bottom: -2px;
    display: inline-block;
    width: auto;
    height: 35px;
    font-weight: bold;
    color: #000;
    border-bottom: rgba(210, 181, 104, 1) 3px solid;
}

/* 面包屑导航 */

.breadcrumb {
    display: flex;
    line-height: 43px;
    float: right;
}

.breadcrumb li {
    color: rgba(135, 136, 136, 1);
    white-space: nowrap;
}
.breadcrumb li a {
    cursor: text;
    color: rgba(135, 136, 136, 1);
}
.breadcrumb li a.active{
    color: #006335;
}

.breadcrumb li::before {
    color: rgba(135, 136, 136, 0.8);
    content: "/";
}

.breadcrumb li:nth-child(1):before {
    content: "";
}

@media screen and (max-width: 780px) {
    .breadcrumb {
        margin-right: 2.5%;
    }
}

.content .text {
    padding-top: 30px;
}
.content .text img{
    object-fit: contain;
}


@media only screen and (min-width: 780px) {
    /* 固定1200 */
    .container {
        width: 1200px;
    }
}

@media only screen and (max-width: 780px) {
    .secbanner {
        height: 32vw;
        margin-top: 60px;
    }
    /* 面包屑导航 */
    .breadcrumb {
        right: 0;
    }
    .container {
        width: 95vw;
        min-height: calc(100vh - 560px) !important;
    }
    .tabLeft {
        display: none;
    }
}
/* 列表页码索引 */

.content .index {
    width: 100%;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
}

.content .index li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0 6px;
    background-color: #fff;
    border: #b6b6b4 1px solid;
    border-radius: 50%;
}

.content .index li a {
    display: block;
    width: 50%;
    height: 50%;
    line-height: 15px;
    text-align: center;
    color: #6a6a6a;
}

.content .index li a img {
    object-fit: scale-down;
}

.content .index li.active {
    border: 0;
    background-color: #D2B568;
}

.content .index li.active a {
    color: #fff;
}


@media only screen and (max-width: 500px) {
    /* 列表页码索引 */
    .content .index li {
        width: 25px;
        height: 25px;
        margin: 0 2px;
    }
}


/* footer */

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 280px;
    min-width: 1200px;
    padding-top: 40px;
    padding-bottom: 20px;
    background: url(../images/footer/bg.png) no-repeat center 100%;
    background-size: 100% 100%;
}
.footer .footer-box {
    display: flex;
    width: 100%;
}

.footer .footer-box div {
    margin: 8px 0px;
    color: rgba(255, 255, 255, .8);
}

.footer .footer-box.footer-top {
    justify-content: space-between;
    min-height: 178px;
}
.footer .footer-box .footer-title{
    margin: 10px 0 20px 0;
    color: #fff;
}
.footer .footer-left{
    width: 45%;
}
.footer .footer-left .footer-leftbox{
    display: flex;
    flex-wrap: wrap;
}
.footer .footer-left .footer-leftcon{
    display: block;
    padding: 8px 10px;
    margin: 5px 15px 5px 0;
    color: rgba(255, 255, 255, .8);
    border: rgba(255, 255, 255, .8) 1px solid;
    border-radius: 15px;
}
.footer .footer-middle{
    width: 30%;
}
.footer .footer-midbox{
    overflow: hidden;
}
.footer .footer-middle .footer-phone{
    margin-left: 30px;
}
.footer .footer-middle .footer-midcon{
    margin: 5px 0;
    padding: 10px 0px;
}
.footer .footer-right{
    width: 12%;
    text-align: right;
}
.footer .footer-right img{
    width: 120px;
    height: 120px;
}
.footer .footer-right div{
    display: inline-block;
    width: 120px;
    margin-top: 15px;
    text-align: center;
}
.footer .footer-box.footer-bottom {
    padding-top: 13px;
    line-height: 1.5;
    border-top: rgba(210, 181, 104, 0.4) 1px solid;
}
@media screen and (max-width: 780px) {
    .footer {
        min-width: 0;
        height: fit-content;
        padding-bottom: 30px;
    }
    .footer .footer-box.footer-top {
        display: block;
        text-align: center;
    }
    .footer .footer-left{
        width: 80%;
        margin: 0 auto !important;
    }
    .footer .footer-middle{
        width: 100%;
        margin: 30px 0 !important;
    }
    .footer .footer-right{
        width: 120px;
        margin: 0 auto 15px !important;
        text-align: center;
    }
}