body {
  position: relative;
}
.header {
  height: 619px;
  padding-top: 49px;
  background: url(../images/title-bg.jpg) center/cover;
  margin-bottom: 95px;
}
.header-logo {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 95px;
  text-align: left;
}
.header-logo .logo {
  width: 277px;
}
.header-title {
  display: block;
  width: 1139px;
  margin: 0 auto;
}
.container {
  padding-bottom: 65px;
  background: url('../images/bg.jpg') no-repeat;
  background-size: cover;
  background-position: center 45px;
}
.section  {
  width: 1200px;
  margin: 0 auto 90px;
  line-height: 30px;
}
.section.central .section-title {
  margin-bottom: 35px;
}
.section h3 {
  width: 980px;
  margin: 0 auto 60px;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #df0000;
}
.section h3:hover {
  text-decoration: underline;
}
.section-title {
  position: relative;
  height: 150px;
  background-size: 100%;
  margin-bottom: 46px;
  background-position: center center;
  background-repeat: no-repeat;
}
.section-title .more-btn {
  position: absolute;
  right: 0;
  top: 53px;
  font-size: 16px;
  color: #c20000;
}
.section-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.central-news li {
  width: calc(50% - 9px);
  height: 172px;
  margin-bottom: 18px;
  padding: 11px 24px;
  background: #fff7f0;
}
.central-news .title {
  font-size: 22px;
  font-weight: bold;
  color: #3f1808;
  line-height: 56px;
  border-bottom: 1px solid #ebdbcc;
  margin-bottom: 16px;
}
.central-news p {
  font-size: 14px;
  line-height: 26px;
  color: #333332;
}
.central-news li:hover {
  background: #df0000;
}
.central-news li:hover .title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.central-news li:hover p {
  color: #fff;
}
.section .swiper-container {
  width: 550px;
  height: 360px;
  margin-left: 0;
  box-shadow: 6px 6px 0 0 #ee4146;
}
.section .swiper-container img {
  width: 100%;
  height: 100%;
}
.swiper-slide .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  padding-left: 9px;
  padding-right: 110px;
  font-size: 17px;
  line-height: 40px;
  background: rgba(0, 0, 0, .40);
  color: #fff;
}
.section .section-content .swiper-pagination {
  position: absolute;
  right: 5px;
  left: auto;
  bottom: 5px;
  width: 100px;
}
.section .section-content .swiper-pagination-bullet{
  background: #fff;
  transform: scale(0.9);
}
.section .section-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
}
.section .swiper-button-prev.swiper-button-white, 
.section .swiper-button-next.swiper-button-white {
  width: 29px;
  height: 41px;
  background-size: 12px 24px;
  background-position: center center;
  background-color: rgba(0, 0, 0, .50);
  opacity: 0.7;
  left: 0;
}
.section .swiper-button-next.swiper-button-white {
  left: auto;
  right: 0;
}
.section .swiper-button-prev.swiper-button-white:hover, 
.section .swiper-button-next.swiper-button-white:hover {
  opacity: 1;
}
.news-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 623px;
  height: 360px;
}
.news-list li {
  position: relative;
  height: 56px;
  font-size: 17px;
  color: #222;
  line-height: 56px;
  border: 1px solid #ee4146;
  padding-left: 36px;
  cursor: pointer;
}
.news-list li::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 13px;
  left: 16px;
  top: 50%;
  margin-top: -6px;
  background: #ee4146;
}
.news-list li:hover {
  color: #ee4146;
}
.thought-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 48px 40px 38px;
  background: #f5f0ec;
}
.thought-list li {
  width: 500px;
  line-height: 22px;
  padding-left: 18px;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}
.thought-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: #e80000;
}
.thought-list li p {
  color: #1c1c1c;
}
.thought-list li:hover p {
  color: #e80000;
}

.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  background: #be2b30;
}
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
  white-space: nowrap;
}
.fix-two-lines {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}