.msg-block {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    cursor: pointer;
}

.msg-block .msg-type {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.msg-block .msg-type-question {
    background-image: url("/static/web/images/template3/question-ico.png");
}

.msg-block .msg-type-answer {
    background-image: url("/static/web/images/template3/answer-ico.png");
}

.msg-block .msg-ask {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.msg-block .msg-answer {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: rgba(153, 153, 153, 1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.msg-border {
    width: 100%;
    border-top: 1px dotted rgba(202, 202, 202, 1);
}

.msg-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 30px;
}

.msg-wrapper .inp-block {
    display: flex;
    align-items: center;
    width: 450px;
    height: 60px;
    margin-top: 20px;
}

.msg-wrapper .inp-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 60px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    white-space: pre-wrap;
}

.msg-wrapper .inp-block .inp {
    width: 290px;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid rgba(203, 204, 205, 1);
}

.msg-wrapper .inp-block .inp input, .msg-wrapper .inp-block .inp select {
    width: 100%;
    height: 100%;
    line-height: 100%;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    outline: none;
    border: none;
}

.msg-wrapper .must {
    display: flex;
    width: 10px;
    height: 11px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("/static/web/images/template1/must.png");
}

.msg-wrapper .verify {
    width: 100px;
    height: 36px;
    margin-left: 10px;
}

.msg-wrapper .verify-set {
    margin-left: 10px;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    text-decoration: underline;
    cursor: pointer;
}

.msg-wrapper .verify img {
    width: 100%;
    height: 100%;
}

.msg-wrapper .text-block {
    display: flex;
    width: 900px;
    margin-top: 20px;
}

.msg-wrapper .text-block .text-body {
    width: 740px;
    height: 110px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(203, 204, 205, 1);
}

.msg-wrapper .text-block .text-body textarea {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    outline: none;
    resize: none;
    border: none;
}

.msg-wrapper .must-block {
    display: flex;
    align-items: center;
    height: 100%;
}

.msg-wrapper .btn-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 120px;
    border-bottom: 1px solid rgba(226, 226, 226, 1);
}

.msg-wrapper .btn-wrapper .btn {
    width: 146px;
    height: 40px;
    font-size: 16px;
    border: none;
}

.msg-wrapper .btn-wrapper .btn-sub {
    color: rgba(255, 255, 255, 1);
    background: rgba(139, 44, 40, 1);
}

.msg-wrapper .btn-wrapper .btn-reset {
    color: rgba(102, 102, 102, 1);
    background: rgba(223, 224, 225, 1);
}

.msg-wrapper .notice {
    width: 100%;
}

.msg-wrapper .notice .notice-title {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    font-weight: bold;
    padding: 20px;
    box-sizing: border-box;
}

.msg-wrapper .notice .notice-title:after {
    content: '';
    width: 6px;
    height: 20px;
    background: rgba(147, 102, 71, 1);
    position: absolute;
    left: 20px;
}

.msg-wrapper .notice .notice-item {
    margin: 10px 0;
    font-size: 16px;
    color: rgba(153, 153, 153, 1);
}

