
/* container */
.container-self{
    width: 1400px;
    margin: 0 auto;
}
/* banner */
.banner-wrapper {
    width: 100%;
}

.banner-wrapper img {
    width: 100%;
}

/* crumbs */
.crumbs-wrapper {
    height: 50px;
    box-shadow: 0px 1px 8px 0px rgba(208, 208, 208, 0.35);
    display: flex;
    align-items: center;
}

.crumbs {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #999999;
}

.crumbs>span {
    display: flex;
    align-items: center;
}
.crumbs>span:nth-child(2) {
    margin-left: 10px;
}

.m-t{
    margin-top: 30px;
}
.m-t-60{
    margin-top: 60px;
}
.title-wrapper{
    text-align: center;
}
.title-wrapper h2{
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}

.title-wrapper h3{
    font-size: 16px;
    color: #999999;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-wrapper h3::before{
    display: block;
    content: '';
    width: 50px;
	height: 2px;
    background-color: #c10000;
    margin-right: 15px;
}
.title-wrapper h3::after{
    display: block;
    content: '';
    width: 50px;
	height: 2px;
    background-color: #c10000;
    margin-left: 15px;
}

@media(max-width:1400px){
    .container-self{
        width: 98%;
    }
}
