﻿.list-container {
    max-width: 1000px;
    margin: 0 auto;
    padding:20px;
    background-color:#ffffff;
}

.top-container {
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    justify-content: space-between;
    position: sticky;
    background-color: #609bff;
    top: 0;
}
.type-name {
    flex:1;
    color:#ffffff;
    font-size: 36px;
    line-height:100px;
    font-weight: 600;
    font-family: "dingding-Regular";
}
.option-group {
    height:100px;
    box-sizing:border-box;
    padding:35px 0;
    width:180px;
    display: flex;
    justify-content: space-between;
}
    .option-group > div {
        line-height: 30px;
        width: 80px;
        text-align: center;
        border-radius: 5px;
        background-color: #ff7c5e;
        color: #ffffff;
    }

.question-item {
    background-color: #f3f9ff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #365b7d;
    display: flex;
    justify-content: space-between;
}
    .question-item:hover {
        background-color: #c4e1ff;
    }
.question-title {
    flex:1;
    line-height:2rem;
}
.answer-text {
    width:80px;
    text-align:center;
    color:#ff6a00;
}
    .answer-text:hover {
        font-weight: 600;
        color: #ee3a02;
    }
.be-pointer {
    cursor: pointer;
}

.answer-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.answer-value {
    display: flex;
    align-items: center;
    min-height: 200px;
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.6rem;
    background-color: #ffffff;
    border: 1px solid #6a6a6a;
    border-radius: 10px;
    padding: 10px;
    margin: 300px auto 0 auto;
}

.cancal-btn {
    margin: 20px auto 10px auto;
    background-color: #ffffff;
    width: 4rem;
    border-radius: 10px;
    text-align: center;
    line-height: 2rem;
    color: red;
}