@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.t {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.t2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*!autoprefixer:off*/
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.t3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /*!autoprefixer:off*/
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.t5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /*!autoprefixer:off*/
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

img {
  display: block;
  height: auto;
}

.img {
  display: block;
}

.img img {
  display: block;
  width: 100%;
  height: 100%;
}

.header {
  background: #fff;
  padding: 94px 0 0;
  border-bottom: 2px solid #EEEEEE;
}

.header .logo a {
  display: block;
}

.header .logo a img {
  width: 173px;
  height: 41px;
}

.header .nav ul .active a {
  font-weight: bold;
  color: #D51C1C;
}

.header .nav ul .active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #D51C1C;
}

.header .nav ul li:not(:last-child) {
  margin-right: 52px;
}

.header .nav ul li a {
  font-size: 18px;
  color: #333;
  padding: 0 23px 21px;
  display: block;
  position: relative;
}

.header .nav ul li a:hover {
  font-weight: bold;
  color: #D51C1C;
}

.header .nav ul li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #D51C1C;
}

.public-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E5E5E5;
}

.public-title span {
  padding: 0 6px 19px;
  font-size: 20px;
  color: #D51C1C;
}

.public-title strong {
  font-size: 20px;
  color: #D51C1C;
  font-weight: bold;
  position: relative;
  padding: 0 6px 19px;
}

.public-title strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #D51C1C;
}

.public-title a {
  font-size: 14px;
  color: #999;
}

.public-title a:hover {
  color: #D51C1C;
}

.main .row .left {
  width: 586px;
}

.main .row .right {
  width: 586px;
}

.main .row-1 {
  margin-top: 43px;
}

.main .row-1 .left .news .img {
  width: 280px;
  height: 250px;
  position: relative;
}

.main .row-1 .left .news .img .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .row-1 .left .news .img .info > div {
  width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .row-1 .left .news .img .info > div .title {
  font-size: 14px;
  color: #fff;
  width: 84%;
}

.main .row-1 .left .news .img .info > div span {
  font-size: 12px;
  color: #888;
}

.main .row-1 .right .top-news {
  margin-top: 24px;
}

.main .row-1 .right .top-news a {
  font-size: 18px;
  color: #333;
  width: 84%;
  font-weight: bold;
}

.main .row-1 .right .top-news a:hover {
  color: #D51C1C;
}

.main .row-1 .right .top-news span {
  font-size: 16px;
  color: #888;
}

.main .row-1 .right .news ul li {
  margin-top: 19px;
}

.main .row-1 .right .news ul li a {
  font-size: 16px;
  color: #333;
  width: 80%;
  position: relative;
  padding-left: 20px;
}

.main .row-1 .right .news ul li a:hover {
  color: #D51C1C;
}

.main .row-1 .right .news ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DCDCDC;
}

.main .row-1 .right .news ul li span {
  font-size: 16px;
  color: #888;
}

.main .row-2 {
  margin-top: 34px;
}

.main .row-2 .news {
  margin-top: 24px;
}

.main .row-2 .news ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.main .row-2 .news ul li {
  width: 280px;
}

.main .row-2 .news ul li:not(:last-child) {
  margin-right: 27px;
}

.main .row-2 .news ul li .img {
  width: 100%;
  height: 160px;
  position: relative;
}

.main .row-2 .news ul li .img .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .row-2 .news ul li .img .info > div {
  width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .row-2 .news ul li .img .info > div .title {
  font-size: 14px;
  color: #fff;
  width: 84%;
}

.main .row-2 .news ul li .img .info > div span {
  font-size: 12px;
  color: #888;
}

.main .row-3 {
  margin-top: 39px;
}

.main .row-3 .left .pb3 {
  padding-bottom: 30px;
  border-bottom: 1px solid #EEEEEE;
}

.main .row-3 .left .panel {
  margin-top: 19px;
}

.main .row-3 .left .panel .news1 {
  width: 220px;
}

.main .row-3 .left .panel .news1 .img {
  width: 100%;
  height: 160px;
}

.main .row-3 .left .panel .news1 .des {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.main .row-3 .left .panel .news1 .des a {
  font-size: 16px;
  color: #333;
  width: 82%;
}

.main .row-3 .left .panel .news1 .des a:hover {
  color: #D51C1C;
}

.main .row-3 .left .panel .news1 .des span {
  font-size: 14px;
  color: #888;
}

.main .row-3 .left .panel .news2 {
  width: 348px;
  margin-top: 5px;
}

.main .row-3 .left .panel .news2 ul li:not(:first-child) {
  margin-top: 20px;
}

.main .row-3 .left .panel .news2 ul li a {
  font-size: 16px;
  color: #333;
  width: 82%;
}

.main .row-3 .left .panel .news2 ul li a:hover {
  color: #D51C1C;
}

.main .row-3 .left .panel .news2 ul li span {
  font-size: 16px;
  color: #888;
}

.main .row-3 .right .news ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}

.main .row-3 .right .news ul li a {
  position: relative;
  font-size: 16px;
  color: #333;
  width: 80%;
  padding: 2px 0 2px 55px;
}

.main .row-3 .right .news ul li a:hover {
  color: #D51C1C;
}

.main .row-3 .right .news ul li a::before {
  content: "攻略";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #D51C1C;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 14px;
  color: #D51C1C;
}

.main .row-3 .right .news ul li span {
  font-size: 16px;
  color: #888;
}

.main .row-3 .right .bot-news {
  margin-top: 22px;
}

.main .row-3 .right .bot-news ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .row-3 .right .bot-news ul::after {
  content: "";
  width: 190px;
}

.main .row-3 .right .bot-news ul li {
  width: 190px;
}

.main .row-3 .right .bot-news ul li .img {
  width: 100%;
  height: 110px;
}

.main .row-3 .right .bot-news ul li .des {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.main .row-3 .right .bot-news ul li .des a {
  font-size: 16px;
  color: #333;
  width: 76%;
}

.main .row-3 .right .bot-news ul li .des a:hover {
  color: #D51C1C;
}

.main .row-3 .right .bot-news ul li .des span {
  font-size: 14px;
  color: #888;
}

.main .link {
  margin-top: 21px;
}

.main .link p {
  line-height: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}

.main .link p a {
  font-size: 12px;
  color: #999;
  margin-right: 16px;
}

.main .link p a:hover {
  color: #D51C1C;
}

.footer {
  background: #fff;
  margin-top: 72px;
  padding: 50px 0 68px;
  border-top: 2px solid #EEEEEE;
}

.footer p {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}

.bread-nav {
  margin: 22px 0 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.bread-nav .breadCrumbs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bread-nav .breadCrumbs li {
  font-size: 14px;
  color: #222831;
  display: inline;
}

.bread-nav .breadCrumbs li img {
  width: 19px;
  height: 19px;
}

.bread-nav .breadCrumbs li a {
  font-size: 14px;
  color: #222831;
}

.bread-nav .breadCrumbs li a:hover {
  color: #D51C1C;
}

.content .left {
  width: 800px;
}

.content .left .news ul li {
  margin-top: 37px;
  padding-bottom: 27px;
  border-bottom: 2px solid #EEEEEE;
}

.content .left .news ul li a {
  font-size: 18px;
  color: #888;
  font-weight: bold;
  width: 78%;
  position: relative;
  padding-left: 72px;
}

.content .left .news ul li a::before {
  content: "攻略";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #BFBFBF;
  border-radius: 13px;
  padding: 2px 7px;
  font-size: 16px;
  color: #fff;
}

.content .left .news ul li a:hover {
  color: #D51C1C;
}

.content .left .news ul li span {
  font-size: 16px;
  color: #333;
}

.content .left .detail {
  margin-top: 54px;
  padding-left: 22px;
}

.content .left .detail .art-head {
  padding-bottom: 17px;
  border-bottom: 1px solid #E5E5E5;
}

.content .left .detail .art-head h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.content .left .detail .art-head p {
  font-size: 16px;
  color: #333;
  margin-top: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content .left .detail .art-cont p {
  margin-top: 30px;
  font-size: 18px;
  color: #333;
  line-height: 36px;
}

.content .left .detail .art-cont p img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.content .left .detail .his-news {
  margin-top: 92px;
}

.content .left .detail .his-news ul li {
  margin-top: 30px;
}

.content .left .detail .his-news ul li a {
  font-size: 18px;
  color: #333;
  width: 78%;
  position: relative;
  padding-left: 72px;
}

.content .left .detail .his-news ul li a::before {
  content: "攻略";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #BFBFBF;
  border-radius: 13px;
  padding: 2px 7px;
  font-size: 16px;
  color: #fff;
}

.content .left .detail .his-news ul li a:hover {
  color: #D51C1C;
}

.content .left .detail .his-news ul li span {
  font-size: 16px;
  color: #333;
}

.content .right {
  width: 330px;
  margin-top: 32px;
}

.content .right .top-news {
  margin-top: 21px;
}

.content .right .top-news .img {
  width: 100%;
  height: 160px;
}

.content .right .top-news .des {
  margin-top: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .right .top-news .des a {
  font-size: 16px;
  color: #333;
  width: 80%;
}

.content .right .top-news .des a:hover {
  color: #D51C1C;
}

.content .right .top-news .des span {
  font-size: 14px;
  color: #888;
}

.content .right .news {
  margin-top: 37px;
}

.content .right .news ul li:not(:first-child) {
  margin-top: 20px;
}

.content .right .news ul li a {
  font-size: 16px;
  color: #333;
  width: 80%;
}

.content .right .news ul li a:hover {
  color: #D51C1C;
}

.content .right .news ul li span {
  font-size: 16px;
  color: #888;
}

/* 分页 */
.pagination {
  text-align: center;
  margin-top: 48px;
}

.pagination .thisclass {
  color: #000;
  font-weight: bold;
  border: none;
}

.pagination .thisclass span {
  color: #000;
  font-weight: bold;
}

.pagination li {
  display: inline-block;
  margin: 0 9px;
  font-size: 20px;
  padding: 10px 14px;
  border: 1px solid #555555;
}

.pagination li .page-link {
  cursor: pointer;
}

.pagination li span {
  color: #333;
  display: inline-block;
}

.pagination li a {
  color: #333;
  display: inline-block;
}
