body {
    background: #FBFBFB;
}

.banner-g {
    background: #060B24 url(../images/help-center/banner.jpg) no-repeat center center;
}

.banner-g .banner-content-g {
    align-items: center;
}

.banner-g .search-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 48px;
    width: 600px;
}

.banner-g .input-g {
    width: 0;
    flex-grow: 1;
    border-radius: 4px 0 0 4px;
    border-right: 0;
    height: 100%;
}

.banner-g .yzm-icon-search {
    font-size: 24px;
    margin-right: 8px;
}

.banner-g .button-g {
    height: 100%;
    width: 100px;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    min-width: inherit;
}

.main-module .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin: 64px 0;
}

.main-module .card {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 40px;
    border: 1px solid #DDDDDD;
    transition: .3s;
}

.main-module .card:hover {
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .1);
}

.main-module .card .title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.main-module .card .rows {
    margin-top: 24px;
}

.main-module .card .row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    justify-content: space-between;
    line-height: 24px;
    cursor: pointer;
}

.main-module .card .row + .row {
    border-top: 1px solid #DDDDDD;
}

.main-module .card .row:hover .left {
    color: #386BF3;
}

.main-module .card .right {
    color: #999999;
}

.main-module .card .yzm-icon-arrow-right {
    color: #333333;
    margin-left: 4px;
}