﻿body, html {
    margin: 0;
    height: 100%;
}
.container {
    display: grid;
    grid-template-rows: auto 1fr auto; /* 头部自动高度，中间自适应，底部自动高度 */
    height: 100%;
}
.header, .footer {

    padding: 10px;
    text-align: center;
}
.header {
    border-bottom: solid 3px #db2777;
    height:40px;
    line-height:40px;
}
.footer {
    background: #f1f1f1;
    font-size:16px;
}
    .content {
        overflow-y: auto; /* 如果内容超出，允许垂直滚动 */
    }
.search-box {
    border-radius: 30px;
    border: solid 1px #db2777;
    overflow: hidden;
}
.search-box ul{
    width:100%;
    float:left;
    display:inline;
}
.searchbox-li1
{
    width:12%;
    float:left;
    display:inline;
}
.searchbox-li2 {
    width: 88%;
    float: left;
    display: inline;
}
.btnPublish {
    font-size: 16px;
    color: #db2777;
    font-weight:500;
}
.footer a {
    color: #db2777;
}
