@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-width: 1360px;
  min-height: 100%;
  font-family: "PingFang SC", "XHW-pzh", "Lantinghei SC", "Helvetica Neue",
    Helvetica, Arial, "Microsoft YaHei", "微软雅黑", STHeitiSC-Light, simsun,
    "宋体", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif;
}

li {
  list-style: none;
}

a {
  color: #fff;
  outline: 0;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #fff !important;
}
img {
  border: 0;
}

img {
  width: 100%;
  vertical-align: top;
}

.content{
    width: 100%;
}

.column-content{
  width: 1200px;
  margin: 0 auto;
}

.column-title{
  width: 100%;
  height: 123px;
}

.column-title img{
  width: 90%;
}


.align-center{
  display: flex;
  align-items: center;
}

.justify-center{
  display: flex;
  justify-content: center;
}

.center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column{
  display: flex;
  flex-direction: column;
}

.space-between{
  display: flex;
  justify-content: space-between;
}
.flex-start{
  display: flex;
  justify-content: flex-start;
}

.flex-end{
  display: flex;
  justify-content: flex-end;
}

.summary-clamp-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制为两行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 显示省略号 */
}


