.wrap {
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container{
    width: 1200px;
    margin: 0 auto;
}
.brand{
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    line-height: 60px;
    display: flex;
    align-items: center;
}
.banner{
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}
.banner img{
    display: block;
    width: 100%;
}
.brand span{
    margin-right: 5px;
}
.brand span,.brand a{
    font-size: 18px;
}
.con .title{
    width: 100%;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-bottom-width: 0;
    font-size: 20px;
}
.con .list{
    width: 100%;
    padding: 20px 10px 0;
    margin-bottom: 70px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}
.con .list li{
    width: calc(20% - 30px);
    margin: 0 15px 20px;
    height: 50px;
    border-radius: 50px;
    float: left;
    text-align: center;
    box-shadow:  0 0 10px rgb(220, 215, 215);
    overflow: hidden;
}
.con .list li a{
    display: block;
    width: 100%;
    line-height: 50px;
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .con .brand {
        width: 100%;
        height: 30px;
        line-height: 30px;
        padding-left: 10px;
    }
    .banner{
        padding: 0 10px;
        margin-bottom: 10px;
    }
    .brand span, .brand a {
        font-size: 14px;
    }
    .con .title{
        width: auto;
        height: 45px;
        line-height: 45px;
        margin: 0 10px;
        text-align: center;
        border: 1px solid #e5e5e5;
        border-bottom-width: 0;
        font-size: 16px;
    }
    .con .list{
        width: auto;
        margin: 0 10px 20px;
    }
    .con .list li{
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }
    .con .list li a{
        font-size: 14px;
    }
}