body,
    html {
        background: #222222;
    }

    @font-face {
        font-family: 'Source Han Serif';
        src: url('../font/SourceHanSerifCN-Light-5.otf');

    }

    .header {
        width: 100%;
        height: 140px;
        background: rgba(0, 0, 0, 0);
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 70px;
        box-sizing: border-box;
        z-index: 10;
    }

    .header .menu {
        cursor: pointer;
        transition: all 0.5s ease-in-out;
        margin-left: 30px;

    }

    .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 .right {
        display: flex;
        align-items: center;
    }

    .news {
        width: 80%;
        margin: 0 auto;
        padding-top: 26px;
        box-sizing: border-box;
    }

    .news>.title {
        color: #e1a957;
        font-size: 60px;
        margin-bottom: 100px;
        text-align: center;
    }

    .news .news_list {
        display: flex;
        flex-wrap: wrap;
    }

    .news .news_list .news_item {
        width: 46.5%;
        border-top: 1px solid #999999;
        padding: 25px 0 50px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .news .news_list .news_item:nth-child(2n) {
        margin-left: 7%;
    }

    .news .news_list .news_item .top {
        font-size: 18px;
        color: #fff;
        margin-bottom: 25px;

    }

    .news .news_list .news_item .img_box {
        width: 100%;
        height: 24vw;
        overflow: hidden;
    }

    .news .news_list .news_item .img_box img {
        width: 100%;
        object-fit: cover;
    }

    .news .news_list .news_item .title {
        font-size: 30px;
        color: #fff;
        margin-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        display: box;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 50px;
        height: 110px;
    }

    .news .news_list .news_item .time {
        font-size: 18px;
        color: #999;

    }



    .footer {
    width: 100%;
    height: 480px;
    background: url("../images/footer_bg.png");
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    box-sizing: border-box;
    position: relative;
}

.footer .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .top div {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}

.footer .top div a {
    color: #fff;
}

.footer .top>div:nth-child(2) {
    margin-top: 20px;
}

.footer .top>div:nth-child(3) {
    margin-bottom: 30px;
}

.footer .bottom {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .bottom .item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    margin: 0 50px;
}

.footer .bottom .item span {
    font-size: 30px;
    color: #e1a957;
}

.footer .bottom .item div {
    display: flex;
    align-items: center;
    color: #fff;
    margin-left: 10px;
}

.footer .bottom .item a {
    display: inline-block;
    display: flex;
    align-items: center;
    color: #fff;
    margin-left: 10px;
}

.footer .bottom .item a {
    cursor: pointer;
}

.footer .bottom .line {
    width: 1px;
    height: 30px;
    background: rgba(250, 250, 250, 0.3);
}
.footer .top .code_box{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.footer .top .code_box>div{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: auto 10px ;
}
.footer .top .code_box>div:hover .code_item{
    opacity: 1;
   
}
.footer .top .code_box>div .code_item{
    opacity: 0;
    position: absolute;
    top:-150px;
}