.interactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1000px;
    width: 60%;
    margin-top: 80px;
}
form{
    width: 100%;
}
.msgBox{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.msgBox>div{
    display: flex;
    width: 100%;
}
.msgBox>div>input{
    flex: 1;
    height: 50px;
    margin-top: 30px;
    margin-right: 30px;
    border-radius:5px;
    border: solid 1px #155099;
}
.msgBox textarea{
    width: 100%;
    height: 84px;
	border-radius: 5px;
    border: solid 1px #155099;
    resize: none;
}
.msgBox button{
    width: 148px;
	height: 50px;
	background:#19b9df;
    /* font-family: FZLTZHUNHK--GBK1-0; */
	font-size: 27px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 5px;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    /* box-shadow: 1px 1px 5px 5px ;  */
    margin-top: 30px;
}
.msgBox button:hover {
    box-shadow: 0px 0px 3px 2px gray;
}
.interactive>ul{
    width: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    flex-direction: column-reverse;
    margin-top: 30px;
    height: 347px;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}
.interactive>ul>li{
    width: 100%;
    display: flex;
    margin-top: 90px;
    cursor: default;
}
.interactive>ul>li>img{
    border-radius: 100%;
    width: 173px;
	height: 173px;
    background-color: #707070;
    float: left;
}
.msgDetail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px;
    float: left;
    flex: 1;
}
.msgTitle {
    flex: 1;
    display: flex;
    align-items: center;
}
.orgName{
    /* font-family: FZLTXHK; */
	font-size: 36px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #164680;
}
.leaveTime {
    /* font-family: FZLTXHK; */
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
    color: #707070;
    margin-left: 40px;
}
.msgContent{
    /* flex: 1; */
    display: flex;
    align-items: center;
    /* font-family: FZLTXHK; */
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
    color: #707070;
    margin-top: 20px;
}
.replyBox {
    /* flex: 2; */
    display: flex;
    flex-direction: column;
    background-color: #e5e5e5;
    border: solid 1px #a0a0a0;
    margin-top: 16px;
    padding: 10px;
    position: relative;
}
.replyBox::before{
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: -10px;
    left: 25px;
    background-color: #e5e5e5;
    border-width: 1px;
    border-style: solid;
    border-color: #a0a0a0 #a0a0a0 transparent transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(-45deg);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    transition: ease 0.3s;
}
.replyTime{
    /* font-family: FZLTXHK; */
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #707070;
}
.replyName{
    /* font-family: FZLTXHK; */
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
    color: #164680;
    margin-left: 50px;
}
.replyContent{
    /* font-family: FZLTXHK; */
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
    color: #707070;
    margin-top: 17px;
}
.seeMore{
    /* font-family: FZLTXHK; */
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #fe5400;
    text-align: center;
    margin-top: 50px;
    cursor: pointer;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    /* background: rgba(255,255,255,0.2) */
}