
/* 隐藏滚动条样式 */

.wrapper{
    width: 1200px;
    min-width: 1200px;
}
/* 头部公共样式 */
/* .active{
    color:#E8D7AB!important
} */
 .nav-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
 }
.nav-link img{
    transition: all .3s;
    cursor: pointer;
}
.nav-link a:hover{
    color: #6000ff !important;
    opacity: .7;
}

/* 底部样式 */
.footer{
    border-top: 6px solid #000;
    /* background: #000100; */
    color: #000;
    height: 300px;
    padding: 60px 0;

}
.footer .footer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer h3{
    font-size: 3rem;
    color: #000;
    margin-bottom: 30px;
}
.footer .follow-us {
    display: flex;
    gap: 60px;
}
.follow-us .follow-item{
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer .follow-us a{
    background-color: #e8d7ab!important;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    padding: 4px;
    box-sizing: border-box;
}
.footer .follow-us a:not(:last-child){
    margin-right: 8px;
}
.footer .follow-us img{
    width: 30px;
    transition: all .3s;
}
.footer .follow-us a:hover img{
    transform: scale(1.2);
}
.footer p{
    text-align: center;
    padding-top: 30px;
}
.top{
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: none;
    z-index: 9
}
.top img{
    width: 50px;
}
.show{
    display: block;
}
