.searchProblem {
    position: relative;
}

.searchBox {
    display: flex;
    align-items: center;
    width: 397px;
    height: 41px;
    padding: 0 14px;
    background: #FFFFFF;
    border: 1px solid #DCDFE6;
    margin-top: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-sizing: border-box;
}

.searchBox img {
    vertical-align: middle;
}

.searchBox input {
    width: calc(100% - 20px);
    padding: 0 15px;
    font-size: 16px;
    box-sizing: border-box;
}

.problemList {
    width: 330px;
    max-height: 288px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 #f3f4f9;
    position: absolute;
    left: 50px;
    z-index: 2;
    overflow-y: scroll;
}

.problemList li {
    font-size: 14px;
    padding: 8px 5px 8px 17px;
    cursor: pointer;
}

.problemList li:last-child {
    padding-bottom: 15px;
}

.FAQ {
    width: 1200px;
    margin: 60px auto;
}

.FAQ li {
    margin-bottom: 50px;
}

.question {
    display: flex;
    margin-bottom: 28px;
}

.question span:first-child {
    width: 100px;
    height: 38px;
    line-height: 38px;
    background: url(../../img/service/question.png) center center no-repeat;
    background-size: cover;
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
    padding-left: 30px;
}

.question span:last-child {
    width: calc(100% - 115px);
    font-size: 20px;
    color: #282828;
    font-weight: bold;
    margin-left: 15px;
    text-align: justify;
}

.answer {
    display: flex;
}

.answer span:first-child {
    width: 100px;
    height: 38px;
    line-height: 38px;
    background: url(../../img/service/answer.png) center center no-repeat;
    background-size: cover;
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
    padding-left: 33px;
}

.answer>div {
    width: calc(100% - 115px);
    /* min-height: 100px; */
    border: 1px solid #1459F4;
    box-shadow: 2px 2px 13px 0px rgba(5, 76, 156, 0.23);
    padding: 28px 20px;
    font-size: 14px;
    color: #282828;
    line-height: 24px;
    text-align: justify;
    box-sizing: border-box;
    position: relative;
    margin-left: 15px;
}

.answer>div::before {
    content: '';
    display: block;
    width: 35px;
    height: 6px;
    background: #1459F4;
    position: absolute;
    left: -10px;
    top: -6px;
}

.answer>div::after {
    content: '';
    display: block;
    width: 35px;
    height: 6px;
    background: #1459F4;
    position: absolute;
    left: -10px;
    bottom: -6px;
}

.answer>div i {
    position: absolute;
    height: 6px;
    background: #1459F4;
}

.answer>div i:nth-of-type(1) {
    width: 806px;
    top: -6px;
    left: 138px;
}

.answer>div i:nth-of-type(2) {
    width: 35px;
    right: -10px;
    top: -6px;
}

.answer>div i:nth-of-type(3) {
    width: 35px;
    right: -10px;
    bottom: -6px;
}