 /* 样式重置 */
 * {
     padding: 0;
     margin: 0;
     /* background-color: #eef6f8; */
 }

 ul,
 ol {
     list-style: none;
 }

 a {
     text-decoration: none;
     color: #333;
 }

 /* css开始 */
 html {
     font-size: 16px;
 }

 #box {
     width: 100%;
 }

 .list-box {
     width: 100%;
     background-color: #fff;
 }

 .meeting-list {
     width: 100%;
     padding: 10px;
     box-sizing: border-box;
 }

 .meeting-item {
     background-color: #fff;
     border: 1px solid #ccb8b8;
     box-sizing: border-box;
     font-size: 13px;
    margin-top: 15px;
 }

 .meeting-item>a {
     display: flex;
     justify-content: space-between;
     width: 100%;
     padding: 10px;
     box-sizing: border-box;
 }

 .meeting-item a .meeting-item-img {
     width: 96px;
 }

 .meeting-item a .meeting-item-img img {
     width: 100%;
     max-height: 54.5px;
     min-height: 53.5px;
 }

 .meeting-item a .meeting-item-info {
     width: 70%;
 }
 .meeting-item>div{
    display: flex;
    justify-content: space-between;
    padding: 7px 14px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    font-size: 16px;
 }
 .meeting-item>div>span{
    color: #e0872c;
    padding: 5px 10px;
    font-weight: 700;
 }
 
 .meeting-item>div>a{
    background-color: #6da6f9;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
 }

 .meeting-item a .meeting-item-info h4 {
     overflow: hidden;
     text-overflow: ellipsis;
     /* 超出部分省略号 */
     word-break: break-all;
     /* break-all(允许在单词内换行。) */
     display: -webkit-box;
     /* 对象作为伸缩盒子模型显示 */
     -webkit-box-orient: vertical;
     /* 设置或检索伸缩盒对象的子元素的排列方式 */
     -webkit-line-clamp: 2;
     /* 显示的行数 */
     max-height: 80rpx;
     /* 设置最大高度，根据行高，要几行乘以几倍 */
     margin-bottom: 7px;
 }

 .meeting-item a .meeting-item-info p {
     font-size: 10px;
 }

 .meeting-item a .meeting-item-info p:nth-child(n+1) {
     margin-top: 1px;
 }

 .list-box-title {
     width: 100%;
     /* background-color: #fff; */
     padding: 12px 10px 5px;
     box-sizing: border-box;
     text-align: center;
     color: #904f38;
 }


 /* 搜索框部分 */
 .list-box-search{
    padding: 15px 25px;
    box-sizing: border-box;
 }
 .list-box-search form{
    width: 100%;
    position: relative;
 }
 .list-box-search form input{
    width: 100%;
    border: 1px solid #c1c1c1;
    height: 40px;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 80px 0 10px;
 }
 .list-box-search form button{
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #6da6f9;
    color: #fff;
    border: none;
    height: 30px;
    width: 60px;
    border-radius: 5px;
 }

