body {
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.head {
    width: 100%;
    height: 60px;
    box-shadow: 0px 5px 10px 3px #00000008;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* 确保头部元素在其他内容之上 */
    background-color: white; /* 你可以根据需要设置背景颜色 */
   
} 

.toast {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 100px;
    font-size: 14px;
}

.detailBox{
    max-width: 1000px;
    width: 100%;
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
}

.headBox {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.headBoxLogo {
    height: 30px;
}

.headBoxButton {
    height: 36px;
    width: 110px;
    background-color: #1192FE;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer; 
    transition: background-color 0.3s, transform 0.3s; /* 动画效果 */
    font-size: 16px;
}

.headBoxButton:active {
    background-color: #45a049; /* 点击时的背景颜色 */
    transform: scale(0.98); /* 点击时的缩放效果 */
}

.titleOne {
    color: #262626;
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    margin-top: 150px;
    margin-bottom: 10px;
}

.titleTwo {
    margin: 5px;
    font-size: 16px;
    color: #7f7f7f;
    width: 100%;
    max-width: 1000px;
}
.questionList{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.questionListItem {
    height: 100px;
    max-width: 1000px;
    width: 100%;
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-color: #d5dfff;
    display: inline-block;
    text-align: left;
    cursor: pointer; 
    font-size: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #262626;
    border-radius: 4px;
    justify-content: space-between;
    text-decoration:none;
}

.questionListItemImg {
    width: 12px;
    margin-right: 10px;
}
.questionListItemTitle {
    margin-left: 10px;
}

.detailBoxItem{
    width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 60px;
}

.detailBoxImg{
    width: 45%;
}

.detailBoxRight{
    margin-left: 15px;
}

.titleStep{
    width: 80px;
    height: 30px;
    background-color: #7f7f7f;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
}

.detailBoxTitle{
    font-size: 20px;
    font-weight: bold;
    color: #1192FE;
}
.detailBoxDes{
    color: #262626;
    font-size: 18px;
    line-height: 30px;
}

@media (max-width: 500px) {
    .detailBoxItem{
        width: 100%;
        display: flex;
        margin-top: 10px;
        margin-bottom: 60px;
        flex-direction: column-reverse;
    }

    .detailBoxImg{
        width: 100%;
    }
}