.message {
    width: 110px;
    height: 124px;
    border: 4px solid #fff;
    background: #1890ff;
    border-radius: 20px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    z-index: 7777;
    transform: scale(0.7);
}

.message img {
    margin-top: 30px;
    display: inline-block;
}

.message div {
    margin-top: 16px;
}

.mc {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: .4;
    z-index: 8888;
}

.dialog {
    display: none;
    width: 600px;
     
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -350px;
    margin-left: -300px;
    z-index: 9999;
    font-size: 14px;
    color: #363670;
    transition: transform 0.3s ease;
}

@media (max-height: 700px) {
    .dialog {
        transform: scale(0.7);
        /* 放大1.5倍 */
    }

    .message {
        transform: scale(0.7);
        /* 放大1.5倍 */
    }
}

.dialog .title {
    height: 50px;
    background: #3f73f8;
    color: #fff;
    padding-left: 20px;
    line-height: 50px;
    border-radius: 8px 8px 0 0;
}

.toops {
    display: none;
    width: 400px;
    height: 250px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -125px;
    margin-left: -200px;
    z-index: 8889;
    font-size: 14px;
    color: #363670;
}

.toops .title {
    height: 50px;
    background: #3f73f8;
    color: #fff;
    padding-left: 20px;
    line-height: 50px;
    border-radius: 8px 8px 0 0;
}

.toops .content8 {
    height: 200px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;

}

.toops .content8 p {
    text-indent: 24px
}

.toops .cencle {
    width: 90px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 5px;
    background: #1890ff;
    color: #fff;
    margin: 0 auto;
    margin-top: 40px;
    cursor: pointer;
}

.dialog .content8 {
   
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.dialog .item {
    font-weight: bold;
    font-size: 16px;
    margin-top: 16px;
}

.dialog .item span {
    color: #ff001f;
    margin-right: 5px;
}

.dialog .item input,
textarea {
    width: 100%;
    height: 32px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    padding-left: 12px;
    transition: border-color 0.2s cubic-bezier(.645, .045, .355, 1);
}

.dialog .item textarea {
    height: 200px;
    padding-top: 10px;
    font-family: 'Microsoft YaHei', sans-serif;

}

.dialog .item input:focus {
    border-color: #409EFF;
}

.dialog .item textarea:focus {
    border-color: #409EFF;
}

.dialog .item input::-webkit-input-placeholder {
    color: #c0c4cc;
}

.dialog .item textarea::-webkit-textarea-placeholder {
    color: #c0c4cc;
}

.dialog .item input:-moz-placeholder {
    color: #c0c4cc;
}

.dialog .item textarea:-moz-placeholder {
    color: #c0c4cc;
}

.dialog .item input:-ms-input-placeholder {
    color: #c0c4cc;
}

.dialog .item textarea:-ms-input-placeholder {
    color: #c0c4cc;
}

textarea::placeholder {
    color: #c0c4cc;
    /* 红色 */
    font-size: 14px;
    font-family: 'Microsoft YaHei', sans-serif;
}

.footer_btn {
    display: flex;
    justify-content: flex-end;
    
}

.footer_btn div {
    width: 90px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 5px;
    cursor: pointer;
}

.footer_btn .cencle {
    border: 1px solid #999999;
    box-sizing: border-box;
}

.footer_btn .submit {
    background: #1890ff;
    color: #fff;
    margin-left: 10px;
}

.fileBox {
    width: 100px;
    height: 100px;
    position: relative;
}

.fileBox input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.fileBox button {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #fbfdff;
    color: #8c939d;
    border: 1px dashed #c0ccda;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.fileArr {
    display: flex;
    align-items: center;
}

.array-item {
    width: 80px;
    height: 80px;
    margin-left: 10px;
    background-color: #fbfdff;
    position: relative;

}

.array-item span {
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-block;
    width: 16px;
    height: 15px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    text-align: center;
    line-height: 14px;
    color: #fff;

}

.array-item img {
    width: 100%;
}
.smallBtn {
    color: #8c939d;
    font-size: 12px;
}

