* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    width: 100%;
}
.container {
    margin: auto;
}
.banner-wrap {
    background: url(../img/specialS-banner.png) no-repeat;
    height: 210px;
    background-size: auto 100%;
    background-position: center;
}
.banner-wrap .container {
    display: flex;
    height: 100%;
    align-items: center;
}
.banner-wrap .tl-1 {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    user-select: none;
}
.borderd-title {
    height: 40px;
    margin-top: 30px;
    border-bottom: 1px solid #aaa;
    display: flex;
    align-items: center;
    user-select: none;
}
.borderd-title span {
    padding: 6px 16px;
    background: #649F76;
    color: #fff;
    display: inline-block;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
}
.borderd-title img {
    height: 100%;
}
.flex-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.flex-wrap > .item {
    width: calc(33.33% - 14px);
    background: #F1F2F3;
    display: flex;
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    transition: 0.2s ease-in-out;
}
.flex-wrap > .item .icon {
    height: 30px;
    width: 26px;
    background-color: #649F76;
    background: url(../img/rc-icon.png) no-repeat;
    background-position: 0 0 ;
    background-size: 100% auto;
    margin-right: 10px;
    transition: 0.2s ease-in-out;
}
.flex-wrap > .item:hover {
    background: #649F76;
    transition: 0.2s ease-in-out;
    color: #fff;
}
.flex-wrap > .item:hover .icon {
    background-position: 0 -30px;
    transition: 0.2s ease-in-out;
}
