﻿/* 招聘岗位列表 */
.question-wrap{
    width: 100%;
    height: auto;
    background-color: #FCF9FC;
}
.question-box{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
}
.question-list{
    margin-top: 50px;
}
.question-item{
    margin-top: 10px;
    width: 100%;
    height: auto;
    padding: 0 35px;
    background-color: white;
}
.question-item .question-title{    cursor: pointer;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.questionText-itle{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.questionIcon{
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    background: url(../image/questionDetail/questionIcon.png) no-repeat;
    background-size: 100% 100%;
}
.questionName{
    color: #666666;
    font-size: 18px;
}
.questionContent{
    display: none;
    border-top: 1px solid #FCF9FC;
    padding: 30px 0 56px 44px;
}
.questionContent p{
    color: #666666;
    font-size: 14px;
    line-height: 36px;
}
.open{
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../image/questionDetail/open.png) no-repeat;
    background-size: 100% 100%;
}
.close{
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../image/questionDetail/close.png) no-repeat;
    background-size: 100% 100%;
}