li {
    list-style: none;
}

.header {
    width: 100%;
    height: 108px;
    background: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0px 70px;
    box-sizing: border-box;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .menu {
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.header .menu:hover {
    transform: scale(1.3);
}

.header .search {
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.header .search:hover {
    transform: scale(1.3);
}

.header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .logo .title {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    font-family: 'Source Han Serif';
}

.header_hide {
    display: none;

}

.header_show {
    display: block;
}

.shop_icon {
    display: flex;
    align-items: center;
}

.shop_icon>div:nth-child(1) {
    position: relative;
}

.shop_icon>div:nth-child(1) img:nth-child(2) {
    display: none;
    position: absolute;
    bottom: -178px;
    left: -45px;
}

.shop_icon>div:nth-child(1):hover img:nth-child(2) {
    display: block;

}

.shop_icon div:nth-child(2) img {
    margin-left: 20px;
}

.menu_box {
    color: #fff;
    font-size: 16px;
    transition: all 0.5s linear;
    width: 100%;
    height: 100%;
    margin-left: 13vw;
    margin-right: 5vw;
}

.menu_box .title {
    font-size: 24px;
    margin-top: 20%;
    text-align: center;

}

.menu_box .close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: none;
}

.menu_box>ul {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.menu_box>ul>li {
    text-align: center;
    cursor: pointer;
    padding: 0 30px;
    box-sizing: border-box;
}

.menu_box>ul>li a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    height: 100%;
    line-height: 108px;

}

.header_bottom {
    background: #fff !important;
    border: none;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
}

.header_bottom>.menu_box>ul li {
    position: relative;

}

.header_bottom>.menu_box>ul>li:hover .second_nav {
    opacity: 1;
    height: auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.header_bottom>.menu_box>ul>li:hover .second_nav li {
    display: block;
}

.header_bottom .menu_box>ul li .second_nav {
    position: absolute;
    left: 0;
    top: 108px;
    width: 100%;
    background: rgba(234, 212, 181, 0.9);
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    opacity: 0;
    height: 0;
}

.header_bottom .menu_box>ul li .second_nav a {
    color: #222;
    font-size: 16px;
    line-height: 40px;


}

.header_bottom .menu_box>ul li .second_nav li {
    height: 40px;
    display: none;
}

.header_bottom .menu_box>ul li a {
    color: #333333;
}

.header_bottom .menu_box .active {
    background: url(../images/navActive.png) no-repeat;
    background-size: cover;
    background-position: center;

}

.header_bottom .menu_box>ul>li:hover>a {
    color: #fff;
}

.header_bottom .menu_box>ul>li:hover {
    background: url(../images/navActive.png) no-repeat;
    background-size: cover;
    background-position: center;

}

.header_bottom .menu_box .active a {
    color: #fff;
}

.banners {
    margin-top: 108px;
    width: 100%;
    height: 480px;
}

.banners .banner_box {
    width: 100%;
    height: 100%;
}

.banners img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav {
    width: 100%;
    height: 70px;
    background: #a90000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    box-sizing: border-box;
}

.nav ul {
    display: flex;
    align-items: center;
}

.nav ul li {
    width: 110px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav ul .active {
    position: relative;

}

.nav ul .active::after {
    position: absolute;
    bottom: -28px;
    left: 19px;
    content: '';
    width: 70px;
    height: 4px;
    background: #fff;

}

.nav ul li a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.nav ul li:last-child {
    border: none;
}

.nav .location {
    display: flex;
    align-items: center;
}

.nav .location img {
    width: 20px;
    height: 24px;
}

.nav .location>div {
    display: flex;
    align-items: center;
}

.nav .location>div div {
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.nav .location>div a {
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;

}

.culture_content .title {
    margin-left: 120px;
    margin-top: 60px;

}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    height: 800px;
}

.culture_content .left {
    width: 60%;
    height: 100%;
}

.culture_content .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture_content .right {
    width: 40%;
    background: url(../images/culture_bg.png) no-repeat;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
}

.culture_content .right p {
    writing-mode: vertical-rl;
    color: #333;
    font-size: 16px;
    display: inline-block;
    text-align: left;
    line-height: 1.6vw;
}

.culture_content .right .desc {
    margin-right: 40px;
    display: flex;
}









.footer {
    width: 100%;
    height: 100%;
    background: url('../images/footer_bg.png') #ead4b5 no-repeat;
    color: #555454;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
    box-sizing: border-box;

}

.footer>a {
    margin: 0 auto;

}

.footer .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 120px 20px 120px;
    box-sizing: border-box;
}

.footer .top .left {
    color: #555454;
    font-size: 14px;
}

.footer .top .right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.footer .top .left>div {
    margin-bottom: 20px;
}

.footer .center {
    display: flex;
    width: 50%;
    align-items: flex-start;
    margin-left: 6%;

}

.footer .center ul {
    width: 20%;
}

.footer .center ul li {
    height: 40px;

}

.footer .center ul li a {
    color: #666666;
    font-size: 14px;
}

.footer .center ul li:nth-child(1) a {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.footer>.top .right div span {
    font-size: 16px;
    color: #333;
}

.footer .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 60px;
    box-sizing: border-box;
    color: #666;
    font-size: 14px;
    border-top: 1px solid rgba(175, 126, 58, 0.21)
}

.footer .bottom a {
    color: #fff;
}


.footer .top .right img {
    width: 106px;
    height: 106px;
}

@media screen and (max-width:1600px) {
    .culture_content .right {
        width: 50%;
    }
}

@media screen and (max-width:800px) {
    .culture_content .title {
        margin-left: 20px;
        margin-top: 20px;
        width: 70%;
    }
    .culture_content .left{
        width:100%;
    }
    .culture_content .right{
        width:100%;
        margin-top:20px;
        padding-right:20px;
    }
    .culture_content .right img{
height:25%;
    }
    .culture_content .right .desc{
        margin-right: 10px;
    }
    .culture_content .right p{
        line-height: 18px;
        font-size: 12px;
    }
    .content{
        height:auto;
    }
    .content:nth-child(2){
        margin-top:20px !important;
    }
    .culture_content .right{
        padding-right: 0px;
    }
   
}