@charset "utf-8";
* {
    box-sizing: border-box;
}

.msgboard-box {
    width: 1200px;
    margin: 20px auto;
    text-align: center;
}

.msgboard-box .f1, .msgboard-box .f2, .msgboard-box .f3 {
    display: flex;
    margin: 5px 15px;
    width: 830px;
}

.msgboard-box .f1 span {
    margin-right: 15px;
}

.msgboard-box .f1 {
    align-items: center;
}

.msgboard-box .f2 {
    position: relative;
}

.msgboard-box .f2 .login-link {
    position: absolute;
    top: 35%;
    left: 290px;
    display: none;
}

.msgboard-box .f3 {
    justify-content: flex-end;
    align-items: center;
}

.msgboard-box button {
    background-color: #EA3E30;
    color: white;
    border: 0;
    padding: 5px 10px;
    width: 100px;
    cursor: pointer;
}

.note-wall {
    background: url("../img/bg.webp");
    max-width: 1200px;
    height: 625px;
    padding: 5px 15px;
    position: relative;
}

.note-wall .items-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.note-box {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 12px;
    margin: 20px 10px;
    background-color: rgb(143, 196, 44);
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    overflow: hidden;
    cursor: pointer;
    word-break: break-all;
    filter: drop-shadow(3px 3px 5px rgba(99, 99, 99, 7));
}

.note-wall .btn-change {
    width: 60px;
    height: 25px;
    position: absolute;
    top: 40px;
    left: 660px;


}

.note-wall .btn-change a {
    color: rgba(66, 66, 66, .8);
    padding: 3px 5px;
    border: 1px solid #999;
    border-radius: 15px;
}

.btn-change a:hover {
    color: rgba(66, 66, 66, 1);
}


/*移动页面css*/
.msgboard-box-m {
    width: 100%;
    background-color:#DDD;
    padding:5px;
}
.card-list{display:flex;flex-direction:column;}
.card-list .card-m{
    display:flex;
    width:100%;
    height: 60px;
    color:#333;
    font-size:0.85rem;
    background-color: #FDFDFD;
    margin:1px;
}
.card-list .card-m .c1{
    min-width: 65px;
    display:flex;
    align-items:center;
    justify-content: center;
    color:white;
    padding:2px 5px;
    background-image:linear-gradient(to right,#C01E22,#F14658);
}
.card-list .card-m .c2{
    padding:3px 15px;
    display:flex;
    align-items: center;
    flex-grow:1;
}
.msgboard-box-m .form-m{
    display: flex;
    background-color:white;
    flex-direction:column;
}
.msgboard-box-m .f1, .msgboard-box-m .f2, .msgboard-box-m .f3 {
    display: flex;
    margin: 5px 10px;
    box-sizing:border-box;
}
.msgboard-box-m .f1{
    flex-direction:column;
}
.msgboard-box-m .f1 span{
    margin-top:5px;
}
.msgboard-box-m .f1 input{
    border-radius:8px;
    border:1px solid #999;
    padding:8px 5px;
    width:280px;
}
.msgboard-box-m .f1 input:focus,
.msgboard-box-m .f2 textarea:focus{
    border:1px solid #F14658;
    box-shadow:0 0 8px 2px rgba(241,70,88,.5);
}
.msgboard-box-m .f2 {
    position: relative;
}
 .msgboard-box-m .f2 textarea{
     width:100%;
 }
.msgboard-box-m .f2 .login-link {
    position: absolute;
    top: 39%;
    left: 50px;
    display: none;
}
.msgboard-box-m .f4{
    display:flex;
    justify-content: center;
    margin:15px 25px;
}
.msgboard-box-m .f4 button{
    width:280px;
    background-color: #EA3E30;
    color: white;
    border: 0;
    padding: 5px 10px;
    cursor: pointer;
}
.msgboard-box-m .btn-change{
    display: flex;
    align-items: center;
    margin-top:5px;
}
.msgboard-box-m .btn-change a{
    width:100%;
    height: 35px;
    color: white;
    text-align:center;
    background-color: #EA3E30;
    padding: 5px 10px;
}