.header-box {
    background: #04498e;
}

.banner {
    position: relative;
    margin-top: 1.35rem;
}

.banner .img-box {
    position: relative;
    z-index: 0;
}

.banner .tit-box {
    position: absolute;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
}

.banner .tit-box .en_tit,
.banner .tit-box h1 {
    color: #100f14;
    font-size: .45rem;
    font-family: 'Source_Han_Sans_SC_Bold';
    text-transform: capitalize;
}

.banner .tit-box h1 {
    font-size: .65rem;
}

/* 导航 */
.menu {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #4b4b4b;
    padding-bottom: .4rem;
    flex-wrap: wrap;
}

.menu a {
    display: block;
    font-size: .2rem;
    color: #bebebe;
    margin-right: .25rem;
}

.menu a.active,
.menu a:hover {
    color: #4b4b4b;
}

/* 产品列表 */
.list-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.list-box .item {
    width: calc(100% / 4 - .3rem);
    margin-bottom: .4rem;
    margin-right: .4rem;
}

.list-box .item:nth-child(4n) {
    margin-right: 0px;
}

.list-box .item .img {
    overflow: hidden;
    border-radius: .1rem;
}

.list-box .item .tit {
    text-align: center;
    margin-top: .25rem;
}

.list-box .item .tit a {
    font-size: 16px;
}

/* （2k以上） */
@media only screen and (min-width:1441px) {}

/*（2k） */
@media only screen and (max-width:1440px) {
    .menu a {
        font-size: 20px;
    }
}

/*（2k） */
@media only screen and (max-width:1439px) {
    .menu a {
        font-size: 18px;
    }
}

/*（2k） */
@media only screen and (max-width:1279px) {}

/*（包含1080） */
@media only screen and (max-width:1200px) {
    .banner .tit-box {
        width: 90%;
    }

    .menu {
        flex-wrap: wrap;
    }

    .menu a {
        font-size: 18px;
    }

    .list-box .item {
        width: calc(100% / 3 - .2rem);
        margin-bottom: .4rem;
        margin-right: .3rem;
    }

    .list-box .item:nth-child(3n) {
        margin-right: 0px;
    }

    .list-box .item:nth-child(4n) {
        margin-right: .3rem;
    }
}

/*（2010年到2016年间的笔记本和屏幕）*/
@media only screen and (max-width:960px) {

    .banner .tit-box .en_tit,
    .banner .tit-box h1 {
        font-size: 26px;
    }

    .menu {
        width: 95%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .menu a {
        margin-right: 15px;
        margin-bottom: 5px;
    }

    .list-box {
        width: 95%;
    }

    .list-box .item .tit a {
        font-size: 14px;
    }
}

/*（或者760px与480px） */
@media only screen and (max-width:760px) {

    .banner {
        margin-top: 70px;
    }

    .list-box .item .tit a {
        font-size: 12px;
    }

    .banner .tit-box {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .banner .tit-box .en_tit,
    .banner .tit-box h1 {
        font-size: 18px;
    }
    .menu a{
        font-size: 16px;
    }

    .list-box .item {
        width: calc(100% / 2 - .3rem);
        margin-bottom: .4rem;
        margin-right: .3rem;
    }

    .list-box .item:nth-child(2n) {
        margin-right: 0px;
    }
    .list-box .item:nth-child(3n) {
        margin-right: .3rem;
    }

    .list-box .item:nth-child(4n) {
        margin-right: 0;
    }
}