@charset "UTF-8";
/**
 * 通用详情
 * date: 2024-12-13
 * author: jyxuan;
 */
.detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 20px 0;
}
.detail-title {
  color: #000;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
}
.detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  height: 32px;
  background-color: #eef3f9;
}
.detail-info-item {
  height: 20px;
  color: #666;
  line-height: 20px;
}
.detail-info-item + .detail-info-item {
  margin-left: 30px;
}
.detail-font {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.detail-font-text {
  color: #666;
}
.detail-font-item {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.detail-font-item.active {
  color: #fff;
  font-weight: bold;
  background-color: #0558b8;
}
.detail-font-item + .detail-font-item {
  margin-left: 5px;
}
.detail-con {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 0;
}