:root {
  --w: 1200px;
  --red-1: #8f0000;
  --red-2: #970000;
  --gold: #f6d37a;
  --text: #222;
  --muted: #8f8f8f;
  --line: #e6e6e6;
  --bg: #f2f2f2;
  --module-border: #d9d9d9;
  --module-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font: 14px/1.6 "Microsoft YaHei", "PingFang SC", Arial, Helvetica, sans-serif;
  color: var(--text);
  /* background: var(--bg); */
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  /* color: var(--red-2) */
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

h1,
h2,
h3,
p {
  margin: 0
}

.inner {
  width: var(--w);
  margin: 0 auto;
}

.outer {
  width: 100%;
}

.gray {
  background: #eeeeee;
}

.page {
  /* min-height: 100% */
}

.hero {
  height: 357px;
  background: #b30000 url("/images/special/header.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: var(--w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.slogan {
  display: block;
  max-width: 900px;
  width: 80%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav {
  height: 54px;
  background: #7e0000 url("/images/special/nav-bg.png") center/cover no-repeat;
  padding: 0;
}

.nav-list {
  width: var(--w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-list li {
  position: relative;
  width: 220px;
  flex: 0 0 220px;
  text-align: center;
}

.nav-list li+li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, .38);
}

.nav-list li:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, .38);
}

.nav-list li:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, .38);
}

.nav-list a {
  display: block;
  height: 54px;
  line-height: 54px;
  padding: 0;
  color: #f3f0e9;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 15px;
}

.nav-list li.active a {
  background: linear-gradient(180deg, #f2c56e 0%, #e9b14e 100%);
  color: #3b1300;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .10);
}

.nav-list li.active+li:before {
  width: 0;
} 

.content-wrap {
  /* width:var(--w); */
  margin: 0 auto;
  padding: 20px 0 0px;
}

.module {
  background: #fff;
  /* border:1px solid var(--module-border);
  box-shadow:var(--module-shadow); */
  margin-bottom: 14px;
  border-radius: 2px;
}

.module-plain {
  padding-bottom: 8px
}

.module-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0 12px;
  margin: 0;
}

.module-title__line {
  flex: 1 1 auto;
  height: 1px;
  background: #d9d8d6;
}

.module-title__cap {
  width: 5px;
  height: 5px;
  background: #d9d8d6;
}

.module-title__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 6px;
  margin: 0 12px;
}

.module-title__img {
  display: block;
  height: 34px;
  width: auto;
}

.module-title__text {
  display: none;
  font-size: 28px;
  font-weight: 700;
  color: #b15a00;
  letter-spacing: 6px;
}

.module-title__img:not([src]),
.module-title__img[src=""] {
  display: none;
}

.module-title__img:not([src]) + .module-title__text,
.module-title__img[src=""] + .module-title__text {
  display: inline-block;
}

.cards {
  display: flex;
  gap: 16px;
  padding: 0 18px 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.card {
  flex: 0 0 calc((100% - 32px) / 2);
  max-width: calc((100% - 32px) / 2);
  display: flex;
  gap: 12px;
  padding: 10px;
}

.thumb {
  width: 239px;
  height: 179px;
  position: relative;
  overflow: hidden;
  flex: 0 0 239px;
}

.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-body h3 {
  margin-bottom: 6px;
  margin-top: -6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
}

.card-body {
  position: relative;
}

.meta {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 28px;
  height: 112px;
  /* 最多显示四行 */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.meta-link {
  display: block;
  color: inherit;
}

.more {
  font-size: 16px;
  color: var(--red-2);
  position: relative;
  z-index: 1;
}

/* “详细”显示在 meta 最后一行末尾 */
.card-body .more {
  display: none;
  float: right;
  margin-top: -28px;
  padding-left: 10px;
  line-height: 28px;
  background: #fff;
}

.card-body.show-more .more {
  display: block;
}
.news-list {
  padding: 10px 18px 16px;
  display: flex;
  gap: 34px;
}

.news-list ul {
  flex: 1;
}
.news-list ul:first-child {
  padding-left: 10px;
}


.news-list li {
  padding: 4px 0;
}

.news-list li:last-child {
  border-bottom: 0
}

.news-list a {
  display: block;
  padding-left: 10px;
  position: relative;
  color: #333;
  font-size: 16px;
}

.news-list a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
}

.essay-grid {
  display: flex;
  gap: 36px;
  padding: 0 18px 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.essay-col {
  flex: 0 0 calc((100% - 36px) / 2);
  max-width: calc((100% - 36px) / 2);
}

.essay-grid > .essay-col:only-child {
  flex: 0 0 100%;
  max-width: 100%;
  column-count: 2;
  column-gap: 36px;
}

.essay {
  padding: 10px 0 12px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.essay:last-child {
  border-bottom: 0
}

.essay h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  /* 超出一行显示省略号 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.essay p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 28px;
  height: 84px;
  /* 最多显示三行 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.essay-summary-link {
  display: block;
  color: inherit;
}

/* “详细”显示在 p 最后一行末尾 */
.essay .more {
  display: none;
  float: right;
  margin-top: -28px;
  padding-left: 10px;
  line-height: 28px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.essay.show-more .more {
  display: block;
}

.site-footer {
  margin-top: 18px;
  color: #cfcfcf;
  background: #424244;
}

.site-footer .footer-links {
  width: 100%;
  height: 80px;
  line-height: 80px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: #e2e2e2;
  background: #424244;
  border-bottom: 1px solid #555557;
}

.site-footer .footer-links .sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, .55);
}

.site-footer .footer-links a {
  color: #e2e2e2
}

.site-footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer p {
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
}

.site-footer p.record {
  padding-bottom: 14px;
  color: rgba(255, 255, 255, .55);
}

@media (max-width: 1040px) {
  :root {
    --w: 94vw
  }

  .module-title__line {
    display: none
  }

  .cards {
    flex-direction: column
  }

  .news-list {
    flex-direction: column;
    gap: 10px
  }

  .essay-grid {
    flex-direction: column;
    gap: 10px
  }

  .essay-grid > .essay-col:only-child {
    column-count: 1;
    column-gap: 10px;
  }

  .nav-list {
    justify-content: space-around
  }

  .nav-list a {
    padding: 8px 10px
  }
}


/* 列表页样式 */
.sx-list-info{
  width: 1200px !important;
  margin: 0 auto !important;
}
.sx-list-wrap li .summary{
  height:auto !important;
}
.sx-list-wrap li .sx-list-img{
  flex: 0 0 240px !important;
}
.sx-list-wrap li .sx-list-imgtxt{
  flex: auto !important;
}
.sx-list-wrap li{
  gap: 30px;
}
.sx-nav{
  font-size: 16px !important;
}
.sx-nav span{
  height: 10px !important;
}















