.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container::before,
.container::after {
  display: none !important;
}

.flex {
  display: flex;
}
.flex-box {
  display: flex;
  align-items: center;
}
.flex-none {
  flex: none;
}
.flex-grow-1 {
  flex: 1;
  overflow: hidden;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-between {
  justify-content: space-between;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reserve {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reserve {
  flex-direction: row-reverse;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-end {
  justify-content: flex-end;
}
.no-break {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* header */
.header {
  position: relative;
  padding-bottom: 4.42vw;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-bg img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.header-content {
  z-index: 2;
  position: relative;
  padding-top: 3.9vw;
}
.header .logo {
  width: 36vw;
	height: auto;
}
.header .logo img {
  width: 100%;
	height: auto;
}
.header .title {
  width: 70vw;
	height: auto;
  margin: 5.46vw auto 3.72vw auto;
}
.header .title img {
  width: 100%;
	height: auto;
}
.header .theme-text {
  display: inline-block;
  font-size: 4.5vw;
  color: #fff;
  font-weight: bold;
  line-height: 8vw;
  padding: 0 4.68vw;
  background: url('../img/bg-line.png') no-repeat 0 0;
  background-size: 100% 100%;
}


/* common-title */
.common-title {
  width: 228px;
	height: 42px;
  background: url('../img/bg-1.png') no-repeat 0 0;
  background-size: 100% 100%;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 42px;
}


/* common-more */
.common-more {
  display: block;
  width: 200px;
	height: 50px;
	border-radius: 25px;
	border: solid 1px #eee;
  font-size: 18px;
  color: #dadada;
  line-height: 50px;
  text-align: center;
  transition: all 0.5s ease-in;
}
.common-more:hover {
  color: #028084;
  border-color: #028084;
  box-shadow:  5px 5px 15px rgba(51, 51, 51, 0.2),-5px -5px 15px rgba(153, 153, 153, 0.2);
  transform: scale(1.03);
}


/* common-swiper-tab */
.common-swiper-tab {
  position: relative;
}
.common-swiper-tab .nav-tab-prev,
.common-swiper-tab .nav-tab-next {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  margin-top: 0;
  width: 34px;
	height: 34px;
}
.common-swiper-tab .nav-tab-prev::after,
.common-swiper-tab .nav-tab-next::after {
  content: '';
}
.common-swiper-tab .nav-tab-prev {
  background: url('../icon/icon-left.png') no-repeat 0 0;
  background-size: cover;
}
.common-swiper-tab .nav-tab-next {
  background: url('../icon/icon-right.png') no-repeat 0 0;
  background-size: cover;
}
.common-swiper-tab .nav-tab-more {
  display: block;
  position: relative;
  width: 30px;
	height: 30px;
  background: url('../icon/icon-more.png') no-repeat 0 0;
  background-size: cover;
  margin: 0 15px;
}
.common-swiper-tab .nav-tab-more::after {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  background: url('../icon/icon-more-active.png') no-repeat 0 0;
  background-size: 100% 100%;
  transition: height 0.5s ease;
}
.common-swiper-tab .nav-tab-more:hover::after {
  height: 100%;
  top: 0;
  bottom: auto;
}


/* common-pos */
.common-pos {
  border-bottom: 1px #e1e1e1 solid;
  padding: 25px 0;
}
.common-pos-icon {
  width: 25px;
	height: 23px;
}
.common-pos-icon img {
  width: 100%;
	height: 100%;
}
.common-pos .cur {
  font-size: 16px;
  color: #666;
  padding-left: 7px;
}
.common-pos .cur-list a {
  position: relative;
  padding: 0 5px;
}
.common-pos .cur-list a::after {
  position: absolute;
  content: '>';
  font-size: 16px;
  color: #666;
}
.common-pos .cur-list a:last-child {
  color: #999;
}
.common-pos .cur-list a:last-child::after {
  content: '';
}


/* common-news-list */
.common-news-list .item {
  height: 50px;
  border-bottom: 1px #ededed dashed;
}
.common-news-list .item-title {
  position: relative;
  font-size: 18px;
  color: #333;
  padding: 0 21px;
}
.common-news-list .item-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 6px;
  height: 6px;
  background-color: #c2cdd7;
  border-radius: 50%;
}
.common-news-list .item-time {
  font-size: 18px;
  color: #999;
}
.common-news-list .item:hover .item-title {
  color: #f85c19;
}


/* common-pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
}
.common-pagination__item {
  display: inline-block;
  height: 37px;
  padding: 0 20px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 37px;
  cursor: pointer;
}
.common-pagination__item:hover {
  color: #d30b15;
}
.common-pagination__cur {
  color: #fff;
  background-color: #d30b15;
}
.common-pagination__cur:hover {
  color: #fff;
}
.common-pagination__next {
  margin-left: 5px;
}
.common-pagination-list {
  display: inline-block;
}
.pagination-ellipsis-prev,
.pagination-ellipsis-next {
  margin-right: 5px;
}
.common-pagination-form__input {
  width: 53px;
  height: 37px;
  border: 1px #e8e8e8 solid;
  margin: 0 4px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.common-pagination-form__button {
  height: 37px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  font-size: 14px;
}


/* footer */
.footer {
  background-color: #f3f3f3;
  border-top: 6px #d90107 solid;
  padding: 30px 15px 44px 15px;
  box-sizing: border-box;
}
.footer-info {
  margin-bottom: 15px;
}
.footer-info span {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 22px;
}
.footer-link-item {
  display: block;
  width: 80px;
  height: auto;
  margin-right: 15px;
}
.footer-l {
  margin-bottom: 30px;
}
.footer-logo-1 {
  width: 180px;
  height: auto;
}
.footer-link-item img {
  width: 100%;
  height: auto;
}
.footer-logo-1 img {
  width: 100%;
  height: auto;
}
.footer-logo-2 {
  width: 42px;
  height: 51px;
  margin: 20px auto 0 auto;
}
.footer-r {
  width: 105px;
	height: 113px;
  margin-left: 5vw;
}
.footer-logo-2 img,
.footer-r img {
  width: 100%;
  height: 100%;
}

@media (min-width: 280px) {
  .common-pagination {
    margin-top: 18px;
  }
  .common-pagination__item {
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
  }
}
@media (min-width: 576px) {
  .header .logo {
    width: 16.6vw;
  }
  .header .title {
    width: 64.8vw;
    height: auto;
    margin: 5.46vw auto 1.72vw auto;
  }
  .header .theme-text {
    font-size: 2.5vw;
    line-height: 4.68vw;
  }
  .common-title {
    width: 300px;
	  height: 58px;
    font-size: 24px;
    line-height: 58px;
  }
  .common-pagination__item {
    height: 37px;
    padding: 0 20px;
    line-height: 37px;
  }

  .footer {
    padding: 50px 0 44px 0;
  }
}
@media (min-width: 768px) {
  .common-title {
    width: 328px;
	  height: 69px;
    font-size: 30px;
    line-height: 69px;
  }

  .common-swiper-tab .nav-tab-prev,
  .common-swiper-tab .nav-tab-next {
    width: 40px;
	  height: 40px;
  }
  .common-swiper-tab .nav-tab-more {
    width: 36px;
	  height: 36px;
  }

  .common-news-list {
    margin-top: 33px;
  }
  .common-news-list .item {
    border-bottom: none;
  }
  .common-news-list .item:nth-child(5n) {
    border-bottom: 1px #ededed solid;
    padding-bottom: 25px;
  }
  .common-news-list .item:nth-child(5n+1) {
    margin-top: 25px;
  }

  .footer-info {
    margin-bottom: 20px;
  }
  .footer-info span {
    font-size: 13px;
    line-height: 22px;
  }
  .footer-link-item {
    width: auto;
    height: 2.5vw;
  }
  .footer-link-item img {
    width: auto;
    height: 100%;
  }
  .footer-logo-1 {
    width: auto;
    height: 6.35vw;
  }
  .footer-logo-1 img {
    width: auto;
    height: 100%;
  }
  .footer-logo-2 {
    width: 3vw;
    height: 3.5vw;
  }
  .footer-r {
    width: 10.1vw;
	  height: 10.8vw;
    margin-left: 3vw;
  }
}
@media (min-width: 992px) {
  .common-more {
    width: 252px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    font-size: 20px;
  }
  .common-pagination__item {
    display: inline-block !important;
  }
  
  .footer-info {
    margin-bottom: 35px;
  }
  .footer-info span {
    font-size: 14px;
    line-height: 30px;
  }
  .footer-link-item {
    height: 2.3vw;
  }
  .footer-r {
    margin-left: 5vw;
  }
}
@media (min-width: 1200px) {
  .common-pagination {
    margin-top: 78px;
  }
  .common-pagination-form,
  .common-pagination__count {
    display: inline-block !important;
  }

  .footer-info {
    margin-bottom: 55px;
  }
  .footer-info span {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .footer-link-item {
    height: 1.7vw;
  }
}