.uppercase {
  text-transform: uppercase;
  /* 定义仅有大写字母。 */
}

.capitalize {
  text-transform: capitalize;
  /* 文本中的每个单词以大写字母开头。 */
}

.lowercase {
  text-transform: lowercase;
  /* 定义无大写字母，仅有小写字母。 */
}

.content-big {
  width: 1300px;
  margin: 0 auto;
}

.content-small {
  width: 1500px;
  margin: 0 auto;
}
.content-bigSpecail {
  width: 1474px;
  margin: 0 auto;
}
.content-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-between {
  display: flex;
  justify-content: space-between;
}
/* 一行超出省略号 */
.hiden-1 {
  white-space: nowrap;
  /*2. 超出的部分隐藏*/
  overflow: hidden;
  /*3. 文字用省略号替代超出的部分*/
  text-overflow: ellipsis;
}
.hiden-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.title-just {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
}

.first-name:first-letter {
  color: #1847a0;
}
.text-shadow_title h2 {
  text-shadow: 3px -5px 3px #1847a0;
}
.h80 {
  height: 80px;
  clear: both;
}
.h60 {
  height: 60px;
  clear: both;
}
