input[type='file'] {
    width: 0;
    height: 0;
    opacity: 0;
}

.imgbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.upimg {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.showimg {
    cursor: pointer;
}

.updiv {
    min-width: 100px;
    min-height: 100px;
    text-align: center;
    border: 1px solid #dfdfdf;
    position: relative;
    margin: 0 5px;
}

.updiv span {
    display: inline-block;
    line-height: 100px;
}

.updiv .uploadDel {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.switch-button {
    display: none;
    /*隐藏表单元素*/
}

.switch-button + label {
    /*+选择器选择紧跟“+”左边选择器的第一个元素*/
    display: inline-block;
    position: relative;
    transition: all .3s;
    width: 50px;
    height: 25px;
    border: 1px solid #999;
    border-radius: 15px;
    background-color: #ccc;
}

.switch-button:checked + label {
    /*选中表单后的样式，:checked表示checkbox被选中后的状态*/
    background-color: #1ab394;
}

.switch-button + label::before {
    /*使用伪元素生成一个按钮*/
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    position: absolute;
    border-radius: 20px;
    left: 2px;
    top: 2px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    transition: all .3s;
}

.switch-button:checked + label::before {
    /*checkbox选中时按钮的样式*/
    left: 26px;
    transition: all .2s linear;
}

#uploadUrlInp {
    display: none;
}

.imageMask {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.imageMask img {
    width: 60vw;
}

.upvdo,
.upado {
    width: 150px;
    height: 100px;
}

.qitem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.qitem input[type='text']:focus {
    border-color: #ccc !important;
}

.qitem input[type='text'] {
    width: 90%;
    outline: 0;
    -webkit-appearance: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    box-sizing: border-box;
    height: 38px;
    line-height: 1.3;
    line-height: 38px \9;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    border-radius: 2px;
}

.qitem img {
    width: 50px;
    height: 50px;
}

.qitem .qitemicon,
.qitem .del {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.mt10 {
    margin-top: 10px !important;
}

.text-success {
    color: #3c763d !important;
}

.qusItemTitle{
    font-size: 18px;
    font-weight: 600;
}

.questionCard{
    margin-top: 30px;
}

.qusItemOptBox{
    margin-top: 10px;
}

.optItem{
    margin: 5px 0;
}

.optItem .showimg{
    height: 50px;
}