* {
  margin: 0;
  padding: 0;}
a {
  text-decoration: none;
}
li{
list-style:none;
}

@media print {
.list-header,.list-content-nav,.footer{
display: none;
}
}

/* .text-over-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
} */
.text-over-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 限制为三行 */
  -webkit-box-orient: vertical;
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 超出部分用省略号表示 */
  white-space: normal; /* 允许换行 */
  line-height: 1.5em; /* 根据实际行高调整 */
  max-height: 4.5em; /* 行数 * 行高 */
  position: relative;}
/* 基础样式 */
.text-over-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制为三行 */
  -webkit-box-orient: vertical;
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 超出部分用省略号表示 */
  white-space: normal; /* 允许换行 */
  line-height: 1.5em; /* 根据实际行高调整 */
  max-height: 3em; /* 行数 * 行高 */
  position: relative;}

/* IE 兼容 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .text-over-2 {
    display: block;
    line-height: 1.5em; /* 根据实际行高调整 */
    max-height: 3em; /* 行数 * 行高 */
    overflow: hidden;
    position: relative;}
  .text-over-3 {
    display: block;
    line-height: 1.5em; /* 根据实际行高调整 */
    max-height: 4.5em; /* 行数 * 行高 */
    overflow: hidden;
    position: relative;}
}
/* 底部 */
.footer {
  width: 100%;
  min-width: 1200px;
  background: #c11316;
  margin-top: 83px;}
.footer-center {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;}
.footer-copyright {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: normal;
  line-height: 32px;
  text-align: right;
  color: #ffffff;}

.footer-copyright a{
color:#fff;
}
/* 列表头部 */
.list-header {
  width: 100%;
  min-width: 1200px;
  height: 240px;
  box-sizing: border-box;
  border-bottom: 8px solid #d9b368;
  background: url(../../images/listbg.png) no-repeat center 40px, #c11316;}
.list-header-center {
  width: 1200px;
  margin: 0 auto;
  height: 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;}
/* 列表导航 */
.list-content {
  width: 1200px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;}
.list-content-nav {
  width: 233px;
  padding: 37px 0;
  height: 930px;
  box-sizing: border-box;
  border-right: 1px solid #d8d8d8;}

.list-nav-item {
  width: 232px;
  height: 76px;
  display: inline-block;
  font-family: PingFang SC;
  font-size: 22px;
  text-align: center;
  line-height: 76px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.65);}
.list-nav-active {
  background: #b81010;
  color: #f6f6f6;
  position: relative;}
.list-nav-item:hover {
  background: #b81010;
  color: #f6f6f6;
  position: relative;}
.list-nav-item:hover::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  display: block;
  width: 5px;
  height: 76px;
  background: #f97a09;}
.list-nav-active::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  display: block;
  width: 5px;
  height: 76px;
  background: #f97a09;}
.list-content-right {
  width: 886px;}
.list-content-title {
  display: flex;
  height: 50px;
  margin-bottom: 26px;
  background: url(../../images/listnavbg.png) no-repeat 0 30px;}
.list-title-left {
  font-family: Source Han Serif CN;
  font-size: 36px;
  font-weight: 900;
  color: #f97a09;}
.list-title-right {
  font-family: Source Han Serif CN;
  font-size: 36px;
  font-weight: 900;
  color: #b81010;}