@charset "UTF-8";
/* 定义flex布局 */
/* 定义flex布局 是横向还是纵向布局 */
/*定义flex 超出换行*/
.notice-color {
  background-color: #fafbfc;
}

.notice {
  width: var(--n);
  padding-bottom: 40px;
}
.notice .notice-center {
  width: 1200px;
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notice .notice-center .notice-center-title {
  padding-left: 25px;
  border-left: 4px solid #00a09f;
  line-height: 32px;
  font-size: 20px;
}

.notice-lists-color {
  background-color: #fff !important;
}

.notice-lists {
  width: var(--n);
}
.notice-lists .notice-lists-item {
  width: 1160px;
  margin: 0 auto;
  padding: 20px 25px;
  padding-bottom: 0;
  background-color: #fafbfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.notice-lists .notice-lists-item .notice-lists-item-title {
  width: 33.33%;
  font-size: 14px;
  color: #00a09f;
  overflow: hidden; /*隐藏多出部分文字*/
  text-overflow: ellipsis; /*用省略号代替多出部分文字*/
  display: -webkit-box; /* 显示多行文本容器 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /*显示行数*/
  margin-bottom: 30px;
}

.new {
  width: var(--n);
  padding-bottom: 60px;
}
.new .new-center {
  width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}
.new .new-center .new-center-title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
}
.new .new-center .new-center-title::after {
  content: "";
  position: absolute;
  width: 148px;
  height: 8px;
  background-color: #00a09f;
  bottom: 3px;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.new .new-center .new-center-lists {
  width: 1160px;
  height: 585px;
  border: 1px solid #eeeeee;
  padding: 0 20px;
}
.new .new-center .new-center-lists .new-lists {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid #eeeeee;
}
.new .new-center .new-center-lists .new-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  margin-top: 30px;
}