::-webkit-input-placeholder { /* WebKit browsers */
    color: #e0e0e0;
    font-size: 14px;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #e0e0e0;
    font-size: 14px;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #e0e0e0;
    font-size: 14px;
}
.form-title {
    font-size: 16px;
    color: #333333;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 24px;
}
.question-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.question-box .question-title {
    width: 40%;
    padding-right: 24px;
    font-size: 14px;
    color: #444444;
    margin-bottom: 0;
    text-align: right;
    line-height: 48px;
    box-sizing: border-box;
}

.question-box .question-option {
    width: 60%;
    font-size: 14px;
    color: #666666;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.question-box .question-option.w100 {
    width: 100%;
}

.question-box .question-option >li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}

.question-box.w100 >li {
    width: 100%;
}

.question-box .question-option >li:hover {
    /*background-color: #e6e7e7;*/
}

.question-box .magic-radio + label:before,
.question-box .magic-checkbox + label:before {
    top: 3px;
}

.question-box .magic-radio + label:after {
    top: 9px;
    left: 6px;
}

.question-box .magic-checkbox + label:after {
    top: 5px;
}

.question-option .public-input {
    width: 280px;
    height: 46px;
    line-height: 46px;
    color: #333333;
}
.question-option .public-textarea {
    width: 280px;
    min-height: 180px;
}

.question-box .user-img {
    width: 100px;
    height: 100px;
    background-color: #e6e6e6;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: block;
    margin: 0 auto 12px;
}

.question-box .user-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #0090ff;
    margin-bottom: 12px;
    width: 100%;
}

.question-box .user-title .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 22px;
    background-color: #0090ff;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
    margin-left: 6px;
}

.question-box .user-time {
    font-size: 14px;
    color: #666666;
}

.radio-wrapper {
    width: 100%;
    cursor: pointer;
}

.radio-wrapper input {
    display: none;
}

.radio-wrapper label {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: justify;
}

.radio-wrapper label.active:after {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 10;
    content: '';
    background: url("../img/checked-01.png") no-repeat;
    background-size: 100% 100%;
}

.radio-wrapper label.active {
    border-color: #3776ff;
}

.form-handled .public-btn {
    border-color: var(--theme-color);
    width: 160px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 12px;
}
.preview-list .img-wrap {
    width: 208px;
    height: 132px;
}

.preview-list .img-wrap .del-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.preview-list .img-wrap .del-btn:hover {
    color: red;
}
