/* 顶部导航 */
.header-wrap {
    width: 100%;
    height: 1.25rem;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all .365s;
    background: #fff;
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
    /* overflow: hidden; */
}

.headerHide {
    height: 0;
    overflow: hidden;
}

.headerBg {
    background: rgba(255, 255, 255, 1);
}

.indexHeaderBg {
    background: rgba(255, 255, 255, 1);
}

.header-box {
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 1.1rem;
    flex-shrink: 0;
}

.header-logo img {
    height: 100%;
    width: auto;
}

.header-nav-box {
    height: 100%;
    padding-top: 0.25rem;
}

/*  */
.header-top-box {
    display: flex;
    align-items: center;
}

.header-search-box {
    display: flex;
    align-items: center;
    background: #E0DFDF;
    height: .38rem;
    margin-right: .4rem;
}

.header-input {
    width: 3rem;
    height: 100%;
    padding: 0 .15rem;
    border-right: 0.01rem solid #007130;
}

.header-input input {
    width: 100%;
    height: 100%;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333;
    background: transparent;
}

.header-select {
    width: 1.5rem;
    height: 100%;
}

.header-search-icon {
    width: 0.39rem;
    height: 100%;
    background: #007130;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search-icon img {
    width: 0.19rem;
}

.header-top-a {
    font-size: 0.15rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #555555;
    margin-right: 0.24rem;
}

.header-login {
    margin-left: .16rem;
    width: 1.03rem;
    height: 0.24rem;
    background: #006835;
    border-radius: 0.03rem;

    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.24rem;
    text-align: center;
    cursor: pointer;
}

/*  */
.header-nav {
    height: calc(1.25rem - .63rem);
    display: flex;
    justify-content: space-between;
    padding-top: .18rem;
}

.header-menu {
    height: 100%;
    display: flex;
    padding: 0 .3rem;
}

.header-menu-a {
    height: 100%;
    /* transition: all .365s; */

    font-size: 0.2rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    
}
.header-menu:first-child{
    padding-left: 0;
}
.header-menu:last-of-type{
    padding-right: 0;
}
.header-menu:hover .header-menu-a {
    color: #007130;
}

.header-menu .active,
.header-nav-active {
    color: #007130;
    position: relative;
}

/* .header-nav-active::after {
    content: '';
    width: 0.7rem;
    height: 0.02rem;
    background: #10C8DE;
    border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all .365s;
} */

/* .header-first:hover::after {
    width: 100%;
} */

.header-first:hover .header-level-box {
    height: auto;
    /* display: block; */
    opacity: 1;
    top: 1.25rem;
    transition: all .365s;
}

.header-level-box {
    width: 100%;
    position: absolute;
    height: 0;
    opacity: 0;
    overflow: hidden;
    top: 1rem;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1);
    transition: all .365s;
    background: #F3F2F2;

    display: flex;
    justify-content: center;
}

.header-level {
    transition: all .2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.23rem 0.35rem;
}

.header-level img {
    width: auto;
    height: .21rem;
}

.header-nav-icon2 {
    display: none;
}

.header-level p {
    font-size: 0.17rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #777777;
    margin-top: .11rem;
}

.header-level:hover .header-nav-icon1 {
    display: none;
}

.header-level:hover .header-nav-icon2 {
    display: block;
}

.header-level:hover p {
    color: #007130;
}

/**/

.login-box {
    width: 100%;
    background: #fff;
    padding: .75rem 2rem;
}

.login {
    display: flex;
    margin-bottom: .2rem;
}

.login-text {
    font-size: 0.18rem;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #006B31;
    flex-shrink: 0;
    width: 1rem;
    line-height: .33rem;
}

.login-input {
    flex: 1;
    display: flex;
    align-items: center;
}

.login-input input {
    width: 100%;
    height: 0.31rem;
    border: 0.01rem solid #BCBCBC;
    padding: 0 .25rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333;
}

.login-textarea {
    flex: 1;
}

.login-textarea textarea {
    width: 100%;
    height: 1.39rem;
    border: 0.01rem solid #BCBCBC;
    padding: 0.15rem .25rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333;

}

/*  */
.login-input p {
    flex-shrink: 0;
    width: 1.26rem;
    height: 0.31rem;
    background: #55B74A;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.31rem;
    margin-left: .1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-input p span{
    font-size: .18rem;
}
.login-bt {
    width: 100%;
    height: 0.41rem;
    background: #006B31;
    font-size: 0.19rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: .41rem;
    margin-top: .42rem;
    cursor: pointer;
}
.login-bt1{
    margin-top: .15rem;
    font-size: 0.19rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #006B31;
    background: #fff;
    border: 0.01rem solid #006B31;
}
.login-p-box {
    margin-top: .3rem;
    display: flex;
    justify-content: flex-end;
}

.login-p {
    font-size: 0.15rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #006B31;
    margin-left: .25rem;

}

/*  */
.login-checkbox-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login-checkbox {
    display: flex;
    align-items: center;
}

.login-checkbox:last-of-type {
    margin-right: 0;
}

.login-checkbox p {
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #444444;
    margin-left: .07rem;
}

.login-checkbox input {
    width: .16rem;
    height: .16rem;
}

.login-checkbox-other {
    display: flex;
    align-items: center;
}

.login-checkbox-other p {
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #444444;
}

.login-checkbox-other input {
    width: 1rem;
    border-bottom: 0.01rem solid #BCBCBC;
    margin-left: .07rem;
    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #444444;
}

.login-checkbox-wrap {
    margin-bottom: 0.25rem;
}

.login-checkbox-wrap .login-text {
    width: 100%;
    margin-bottom: 0.1rem;
}

.navigation-wrap {
    display: none;
}
.header-mobile{
  display: none;  
}
@media only screen and (max-width: 1024px) {
    .header-wrap {
        display: none;
    }
    .header-mobile-wrap {
        display: block;
    }
    .index-about-p span{
        font-size: 0.26rem !important;
    }
    .header-mobile {
        height: 0.9rem;
        width: 100%;
        padding: 0 0.35rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0rem 0.04rem 0.1rem 0.02rem rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        background-color: #fff;
    }
    .header-logo-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .header-logo-mobile-img {
        /*width: 3.52rem;*/
        height: 0.8rem;
    }
    .header-logo-mobile-p {
        /*margin-top: 0.1rem;*/
        /*font-size: 0.32rem;*/
        /*font-weight: 400;*/
        /*color: #006B31;*/
        /*display: none;*/
        height: 40px;
    }
    .header-nav-mobile1 {
        width: 0.46rem;
        height: auto;
        /* height: 0.42rem; */
    }
    .header-nav-mobile2 {
        width: 0.38rem;
        height: 0.38rem;
        display: none;
    }
    .navigation-wrap {
        width: 100vw;
        height: calc(100vh - 0.9rem);
        overflow-y: auto;
        position: fixed;
        top: 0.9rem;
        right: 0;
        z-index: 9998;
        /* transition: right .365s; */
        display: none;
        overflow: hidden;
    }
    .navigation-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: all .365s;
    }
    .navigation-box {
        width: 75vw;
        height: 100%;
        position: absolute;
        z-index: 2;
        right: -75vw;
        top: 0;
        background: #fff;
        box-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.16);
        transition: right .365s;
    }
    .navigation {
        height: calc(100% - 1rem);
        overflow: auto;
    }
    .navigation-list {}
    .navigation-item {
        padding: 0 0.25rem 0 0.44rem;
        height: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #333333;
        border-bottom: 0.01rem solid #E5E5E5;
        font-size: 0.28rem;
    }
    .navigation-item a{
        color: #333333;
    }
    .navigation-item-active .navigation-item-p {
        background: #fff;
        font-weight: bold;
    }
    .navigation-item-p {
        font-size: 0.28rem;
        font-weight: 400;
    }
    .navigation-item-icon {
        width: 0.18rem;
        height: 0.32rem;
        transition: all .365s;
    }
    .navigation-level {
        display: none;
        background: #F7F7F7;
    }
    .navigation-level-item {
        height: 0.8rem;
        padding: 0 0.25rem 0 0.71rem;
        display: flex;
        align-items: center;
      
        border-bottom: 0.01rem solid #E5E5E5;
    }
    .navigation-level-item p{
          font-size: 0.28rem;
        font-weight: 400;
        color: #333333;
    }
    .navigation-level-active {
        font-weight: bold;
    }
    .about-idea-item {
        overflow: hidden;
    }
    .popup-box{
        width: 90% !important;
    }
    .login-box{
        padding: 1rem 0.8rem;
    }
    .login-text{
        font-size: .24rem;
    }
    .login-input input{
        height: 0.41rem;
        font-size: 0.24rem;
    }
    .login-input p{
        height: 0.41rem;
    }
    .login-bt{
        height: 0.51rem;
        font-size: 0.24rem;
        line-height: .51rem;
    }
    .header-top-a{
        margin-left: 2.4rem;
        font-size: 0.28rem;
        
    }
}