.helpBanner{
    width: 100%;
    height: 400px;
    background-image: url('../assets/help/img_bg_bazx.png');
    background-size: 100% 100%;
    position: relative;
    margin-top: 64px;
}
.bannerTopBox {
    position: absolute;
    top: 22.5%;
    left: 33%;
    width: 30%;
    text-align: center;
}
.bannerTopBox .titleName {
    font-weight: 500;
    font-size: 40px;
    color: #222222;
    
}
.inputBox{
    background: #FFFFFF;
    box-shadow: 0px 3px 16px 1px rgba(132,112,255,0.06);
    border-radius: 10px 10px 10px 10px;
    padding: 0px 0 0px 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    position: relative;
}
.searchIcon {
    display: inline-block;
    width: 18px;
    height: 18px;
}
.nameInputBox {
    outline: none;
    border: none;
    margin-left: 14px;
    padding: 10px 0;
    width: 90%;
    font-size: 18px;
}
input::placeholder {
    color: #B3B8CB;
    font-size: 18px;
}
.searchHotBox {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.searchHotBox span {
    font-size: 14px;
    color: #444444;
}
.searchKeyBox{
    display: flex;
    align-items: center;
}
.keyItem{
    margin-left: 20px;
    font-size: 14px;
    color: #444444;
    cursor: pointer;
}
.mainBox {
    padding-top: 80px;
    padding-bottom: 116px;
}
.threeProjectBox{
    display: flex;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}
.projectItem {
    width: 33%;
    height: 320px;
    background-image: url('../assets/help/img_bg_sheji.png');
    background-size: 100% 100%;
    /* aspect-ratio: 400/320; */
    margin-right: 40px;
    display: flex;
    box-sizing: border-box;
    padding: 32px 0 0 30px;
}
.projectItem.current {
    transform: scale(1.1);
}
.projectItem:last-child {
    margin-right: 0;
}
.yewu {
    background-image: url('../assets/help/img_bg_yewu.png');
}
.guangchu {
    background-image: url('../assets/help/img_bg_gcc.png');
}
.projectItem .typeIcon {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 16px;
}
.projectItem .rightIcon {
    display: inline-block;
    width: 7px;
    height: 12px;
    vertical-align: middle;
    margin-left: 16px;
    position: relative;
    top: 9px;
}
.projectItem span {
    font-size: 22px;
    color: #222222;
}

.searchListPart {
    position: absolute;
    left: 0%;
    top: 110%;
    background: rgba(255, 255, 255);
    height: 250px;
    border-radius: 5px 5px 5px 5px;
    overflow-y: auto;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    z-index: 99;
    text-align: left;
}
.articleListName {
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 18px;
}
.noData {
    text-align: center;
    color: #999;
    position: relative;
    top: 50%;
}