﻿.flex-box {
  display: flex;
}

@media screen and (max-width: 768px) {
  .flex-box {
    display: block;
  }
}

/* 2行截断 */
.clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

/* 超出隐藏 */

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-prefix {
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  display: flex;
  align-items: center;
}
.title-prefix::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../imgs/title-prefix.png');
  background-size: cover;
  margin-right: 12px;
}
.title-text {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.title-text::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 22px;
  background: url('../imgs/text.png');
  background-size: cover;
  margin-right: 9px;
}
.title-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.title-section::before {
  content: '';
  display: block;
  width: 20px;
  margin-right: 10px;
  height: 21px;
  background: url('../imgs/left_icon.png');
}
.title-section::after {
  content: '';
  display: block;
  flex: 1;
  height: 10px;
  margin-left: 20px;
  background-position: right;
  background: url('../imgs/line_icon.png');
  background-repeat: round;
}
.section-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    padding: 15px 0;
    font-size: 18px;
    line-height: 24px;
}
.section-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccdbec;
  margin-right: 15px;
}
.section-item .section-item-title {
  flex: 1;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-item .section-item-title:hover {
  color: #2b65a5;
}
.section-item .section-item-time {
  flex-shrink: 0;
  margin-left: 20px;
  color: #999999;
}
@media screen and (max-width: 768px) {
  .section-item .section-item-time {
    margin-left: 50px;
  }
}
