@charset "UTF-8";
.omit,
.omit-1 {
  white-space: nowrap;
  /* 规定文本是否折行 */
  overflow: hidden;
  /* 规定超出内容宽度的元素隐藏 */
  text-overflow: ellipsis;
  /* 规定超出的内容文本省略号显示，通常跟上面的属性连用，因为没有上面的属性不会触发超出规定的内容 */ }

.omit-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.omit-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

.flex {
  display: flex; }

.flex-bw {
  display: flex;
  justify-content: space-between; }

.flex-ct {
  display: flex;
  align-items: center; }

.flex-ct-ct {
  display: flex;
  justify-content: center;
  align-items: center; }

.flex-bw-ct {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.flex-column {
  display: flex;
  flex-direction: column; }
.notice_overFlow{
  display: flex;
  align-items: center;
}
.notice-container_overFlow {
  width: 300px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  position: relative;
  padding: 0 0 0 15px;
  font-size: 13px;
}

.notice-list_overFlow {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  width: 100%;
}

.notice-item_overFlow {
  height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  color: #333;
}
.notice-item_overFlow a{
  font-size: 15px;
  color: #333;
}
/* 手机端显示 */
@media screen and (max-width: 800px) {
  .notice_overFlow{
    display: none;
  }
}

/*# sourceMappingURL=comm.css.map */
