.header {
  height: 118px;
  background: #c0210e;
}

.header__main {
  margin: 0 auto;
  width: 1200px;
  height: 64px;
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: 147px;
  margin-top: 16px;
}

.header__logo img {
  width: 100%;
}

.header__info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.header__info ul {
  margin-left: 48px;
  display: flex;
  align-items: center;
  list-style: none;
}

.header__info ul li {
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.7);
}

.header__info ul li+li {
  margin-left: 16px;
  position: relative;
}

.header__info ul li+li::before {
  content: '|';
  position: absolute;
  top: -1px;
  left: -8px;
  cursor: default;
}

.header__info ul li a {
  display: block;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.header__nav {
  background: #db241e;
  height: 54px;
}

.header__nav ul {
  margin: 0 auto;
  width: 1200px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

.header__nav ul li {
  flex: 1;
  text-align: center;
  margin: 0;
  height: 100%;
}

.header__nav ul li a {
  position: relative;
  padding-top: 10px;
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  outline: none;
}

.header__nav ul li a.active::after {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  content: ' ';
  width: 24px;
  height: 2px;
  background: #fff;
}

.box {
  background: #fff;
  padding: 0 24px;
  padding-top: 20px;
  padding-bottom: 36px;
}

.box+.box {
  margin-top: 24px;
}

.box.box-header {
  position: relative;
}

.box.box-header::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: ' ';
  width: 100%;
  height: 4px;
  background: #db241e;
}

.box .box-header__title {
  font-weight: 600;
  font-size: 24px;
  color: #262626;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 198, 207, 0.4);
}

.main {
  flex: 1;
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 1200px;
}

.main .left-news,
.main .right-news {
  align-self: flex-start;
}

.main .left-news {
  margin-right: 24px;
  width: 792px;
}

.main .left-news .main-list .main-item {
  padding: 20px 0 24px;
  border-bottom: 1px solid rgba(196, 198, 207, 0.3);
}

.main .left-news .main-list .main-item__title {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #111111;
}

.main .left-news .main-list .main-item__picture {
  margin-top: 12px;
  width: 100%;
}

.main .left-news .main-list .main-item__picture img {
  width: 240px;
  height: 135px;
}

.main-item__picture img[data-img=''],
.main-item__picture img:not([data-img]) {
  display: none;
}

.main .left-news .main-list .main-item__date {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

.main .right-news {
  width: 384px;
}

.main .right-news .section-list {
  margin-top: 20px;
}

.main .right-news .section-list .main-item__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.main .right-news .section-list ul {
  padding-left: 14px;
  list-style-type: square;
}

.main .right-news .section-list ul li {
  cursor: pointer;
  margin-top: 20px;
  list-style-type: square;
}

.main .right-news .section-list ul+li {
  margin-top: 28px;
}

.main .right-news .section-list .section-item__picture {
  width: 336px;
  height: 160px;
  position: relative;
}

.main .right-news .section-list .section-item__picture img {
  width: 100%;
  height: 100%;
}

.main .right-news .section-list .section-item__picture__title {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(3, 3, 3, 0.6) 100%);
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
}

.footer {
  height: 166px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer__info__line {
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.footer ul {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin: 0;
  position: relative;
}

.footer ul li+li::before {
  position: absolute;
  content: ' ';
  top: 4px;
  left: -12.5px;
  width: 1px;
  height: 12px;
  background: #d8d8d8;
}

.footer ul li a {
  display: block;
  text-decoration: none;
  color: #262626;
  font-size: 12px;
}

.footer ul li a:hover {
  color: #262626;
  text-decoration: none;
}

body {
  padding: 0;
  margin: 0;
}


/* //// */
/* 新闻详情css */
.detail-title {
  text-align: center;
}

.detail-title h1 {
  font-weight: 500;
  font-size: 30px;
  color: #262626;
  margin-top: 20px;
}

.doc-detail {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  padding: 20px 0;
}

.doc-detail span {
  padding: 0 20px;
}

.main-content .docHtml {
  padding: 24px;
  font-weight: 400;
  font-size: 18px;
  color: #262626;
  line-height: 32px;
}

.main-content .docHtml img {
  width: 100%;
  height: auto;
}

.curpage-p {
  width: 1200px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 14px;
  color: rgba(17, 17, 17, .5);
  text-align: left;
  padding-top: 18px;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}