.wrap {
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.brand {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    line-height: 50px;
    display: flex;
    align-items: center;
}

.banner {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.banner img {
    display: block;
    width: 100%;
}

.brand span {
    margin:0 3px;
}

.brand span,
.brand a {
    font-size: 14px;
}

.con .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #366dc6;
    font-size: 24px;
    font-weight: bold;
}

.con .list {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 35px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.con .list li a {
    font-size: 0;
    line-height: 50px;
}

.con .list li a span {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    width: 80%;
    padding-left: 25px;
    position: relative;
}

.con .list li a span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-3px);
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 6px;
}

.con .list li a em {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    font-style: normal;
    font-size: 16px;
    color: #999;
}

.con .list li .tabs a {
    width: 280px;
    height: 45px;
    line-height: 43px;
    text-align: center;
	margin-top: 10px;
    margin-left: 20px;
    font-size: 18px;
    display: inline-block;
    vertical-align: top;
    color: #b2b2b2;
    border: 1px solid #b2b2b2;
}
.con .list li .tabs{
    display: none;
}
.con .list li .tabs a.on {
    color: #366dc6;
    border: 1px solid #366dc6;
}
.con .list li:hover .tabs{
    display: block;
}
@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;
    }

}