/* -----------留言板------------ */
.message-box {
    width: 5.625rem;
    height: 100%;
    background: #f2f2f2;
    margin-top: .5rem;
    border-radius: 6px;
}

.message-wrapper {
    padding: .75rem .625rem;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px 1px #653632;
    border-radius: 6px;
}

.message-wrapper p {
    margin-bottom: 0 !important;
}

.message-wrapper .quote-title {
    font-size: .325rem;
    font-weight: bold;
    margin-bottom: .375rem !important;
    /* color:#e50000; */
}

.message-wrapper input,
.message-wrapper textarea {
    background: #fff;
    width: 100%;
    margin-bottom: .2rem;
    padding: 0 4px;
    color: #666;
    font-size: .2rem;
    border: none;
    border: 1px solid #f2f2f2;
    box-sizing: border-box;
}

.message-wrapper input {
    height: .45rem;
}
.message-wrapper textarea {
    margin-top: 0;
}
.message-wrapper input::-webkit-input-placeholder {
    color: #666;
}
.message-wrapper textarea::-webkit-input-placeholder {
    color: #666;
}
.fix {
    position: fixed;
    right: 5%;
    /* right: 0; */
    top: 10%;
    height: auto;
}

.submit {
    width: 1rem;
    height: .375rem;
    display: block;
    background: #fff;
    margin-top: .2rem;
    border-radius: 6px;
    color: #000;
    text-align: center;
    line-height: .375rem;
    font-family: 'Calibri';
    font-weight: bold;
    font-size: .2rem;
}

/* 响应式 */
@media(max-width:1024px) {
    .message-box {
        display: none;
    }
}