.question-wrapper {
    width: 750px;
    height: 530px;
    border: 3px solid #524e4d;
    color: #524e4d;
    background: #f1edea;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.question-wrapper dd,
.question-wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.question-wrapper .question-item {
    padding: 0 10px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 750px;
    height: 530px;
}
.question-wrapper .question-item dl {
    padding-top: 70px;
    height: 460px;
    position: relative;
}
.question-no {
    width: 104px;
    height: 72px;
    display: inline-block;
    overflow: hidden;
    text-indent: -200%;
}
.question-1 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q1_2.png');
}
.question-2 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q2_2.png');
}
.question-3 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q3_2.png');
}
.question-4 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q4_2.png');
}
.question-5 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q5_2.png');
}
.question-6 .question-no {
    background: no-repeat url('/images/tk/stylecheck/q6_2.png');
}
.question-text {
    margin-top: 10px;
    font-size: 35px;
}
.question-answer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 30px 0;
    padding: 0;
    position: absolute;
    bottom: 50px;
}
.btn-result{
    cursor: pointer;
}
.question-answer li {
    width: calc(100% / 2);
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    height: 124px;
    overflow: hidden;
}
.question-answer li .mouse-over {
    display: none;
}
.question-answer li:hover .mouse-over {
    display: inline-block;
}
.fade-enter-active {
    transition: all 1.5s ease;
}
.fade-leave-active {
    transition: all .5s ease;
}
.fade-enter,
.fade-leave-to {
    opacity: 0;
}
.question-wrapper li:empty {
    display: none;
}