.container{
    width:80%;
    margin:0 auto;
}
/* 头部 */
.header{
    position: fixed;
    top:50px;
    left:10%;
    width:80%;
    height:90px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 2vw;
    z-index: 999;
    transition: all 0.4s ease;
}
.logo{
    height:50px;
}
.logo img{
    width:auto;
    height:100%;
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:3vw;
    height:100%;
}
.nav_one{
    position: relative;
    height:100%;
}
.nav_one_link{
    font-size: 16px;
    color:#383838;
    line-height: 90px;
}
.nav_two_box{
    display:none;
    position: absolute;
    top:100%;
    left:50%;
    width:max-content;
    height:auto;
    transform: translateX(-50%);
    background: #fff;
    border-radius:0 0 8px 8px;
    padding:20px;
    z-index: 999;
    border-top:2px solid #00593B;
    text-align: center;
}
.nav_one:hover .nav_two_box{
    display:block;
}
.nav_two{
    height:40px;
}
.nav_two_link{
    height:40px;
    line-height: 40px;
    font-size: 14px;
    color:#383838;
}

/* 鼠标滚动 */
.header.scroll{
    top:0;
    left:0;
    width:100%;
    border-radius: 0;
    padding:0 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 2px 10px 0px rgba(100, 100, 100, 0.1);
}

/* 底部 */
.footer {
    background-color: #00593B;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img{
    width:auto;
    height:2.8vw;
    filter: brightness(0) invert(1);
}
.footer-info a {
    font-size: 12px;
    color:#fff;
    line-height: 2;
    opacity: 0.8;
}
.footer-info a:hover{
    color:rgba(255,255,255,0.8);
}
