* {
  box-sizing: border-box;
}
.page-event{
  background-image: url(event_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.page-event .containner{
  background-color: transparent;
}
.event-search{
  margin-top: 35px;
  margin-bottom: 25px;
  width: 100%;
  height: 120px;
  background-image: url(event_sear_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding:  15px 15px 15px 30%;

}
.event-search .search-box{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.3);
} 
.search-box .search-input{
  width: 84%;
  height: 100%;
  border: 0px;
  background-image: linear-gradient(to bottom ,#fff,#eff7ff);
  font-size: 20px;
  padding: 25px;
  color: #4b8ae3;
}
.search-box .search-btn{
  width: 16%;
  border: 0px;
  height: 100%;
  background-image: linear-gradient(to bottom ,#3088ee,#0661ce,#3088ee);
  color: #fff;
  font-size: 20px;

}
.search-box .search-btn img{
  margin-right: 10px;
  vertical-align: text-bottom;
  width: 25px;
  height: 25px;
}
.event-tab{
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-tab li{
  width: 208px;
  height: 58px;
  background-image: url(event_tab_nor.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  line-height: 58px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.event-tab li.active{
  background-image: url(event_tab_sel.png);
}
.event-tab li a{
  display: block;
  width: 100%;
  height: 100%;
  
}
.list-card{
  width: 100%;
  padding: 20px;
  background-image: url(event_list_frame.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.5;


}
.list-card .card-type{
  display: inline-block;
  border: 1px solid #3ba2f8;
  padding: 2px;
  margin-bottom: 15px;

}
.list-card .card-type span{
  padding: 5px 35px;
  background-color: #3ba2f8;
  color: #fff;
}
.list-card .card-title{
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;

}
.list-card .card-text{

  margin-bottom: 20px;
  color: #999999;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical; 
  -webkit-line-clamp:2;
}
.list-card .card-bottom{
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #1e75df;
}
.card-bottom .info-item{
  display: flex;
  align-items: center;

}
.info-item img{
  margin-right: 10px;
}
.bottom-more{
  cursor: pointer;
}
.bottom-more img{
  vertical-align: text-top;
}

/* 分页 */
/* .page-event .page-list{
  text-align: center;
} */

/* 移动端 */
@media screen and (max-width: 1200px) {
  .event-search{
    height: 60px;
    padding: 1rem 1rem 1rem 30%;
  }
  .event-search .search-box{
    padding: 0.5rem;
  }
  .search-box .search-input{
    padding: 1rem;
    font-size: 1.6rem;
    width: 70%;
  }
  .search-box .search-btn{
    width: 30%;
    font-size: 1.6rem;
  }
  .search-box .search-btn img{
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .event-tab{
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .event-tab li{
    width: 45%;
    height: 4rem;
    line-height: 40px;
    margin-bottom: 1rem;
  }
  .list-card .card-bottom{
    flex-wrap: wrap;
  }
  .bottom-info{
    width: 100%;
  }
  .bottom-more{
    width: 100%;
    text-align: right;
  }
  .list-card .card-type,
  .list-card .card-text{
    margin-bottom: 1rem;
  }
}

/* 长者模式 */
.useOldFixed .search-box .search-input{
  width: 80%;
}
.useOldFixed .search-box .search-btn{
  width: 20%;
}
.useOldFixed .event-tab{
  flex-wrap: wrap;
  justify-content: flex-start;
}
.useOldFixed .event-tab li{
  width: calc((100% - 61px) / 3 );
  margin-right: 30px;
  margin-bottom: 15px;
}
.useOldFixed .event-tab li:nth-of-type(3n){
  margin-right: 0;
}