@charset "utf-8";
@font-face {
  font-family: 'HELVETICANEUELTPRO-THEX';
  src: url('../fonts/HELVETICANEUELTPRO-THEX.OTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'GOTHAM-BLACK';
  src: url('../fonts/GOTHAM-BLACK.OTF');
  font-weight: normal;
  font-style: normal;
}
html,
body {
  /*font: 12px Arial, "微软雅黑";*/
  color: #929292;
  width: 100%;
  background: #fff;
}

.c-w {
  margin: 0 auto;
  max-width: 1200px;
}

.line-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.wh-100 {
  width: 100%;
  height: 100%;
}

.min-h {
  min-height: calc(100vh - 7.875rem);
}

.show-m {
  display: none !important;
}

.hide-m {
  display: block !important;
}

.color-white {
  color: #fff !important;
}

/* 标题 */
.c-title {
  padding-top: 5.625rem;
  padding-bottom: 2.75rem;
  margin: 0 auto;
  text-align: center;
}
.c-title.tl {
  text-align: left;
}
.c-title .tit {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
  color: #444;
}
.c-title .subtit {
  min-width: 18.75rem;
  color: rgba(151, 151, 151, 0.884);
  font-size: 0.875rem;
  margin: 0 auto;
  position: relative;
}

.c-title.tl .subtit {
  margin: 0;
}

/* 选项卡 */
.c-tab {
  padding-bottom: 0rem;
  margin-bottom: 3.4375rem;
}
.c-tab a {
  border: none;
  font-size: 0.875rem;
  padding: 0.625rem 1.75rem;
  margin-right: 0.25rem;
  border: 1px #efefef solid;
  color: #a9a9a9;
  background-color: #fff;
  transition: 0.3s;
  transform-origin: top;
  display: inline-block;
}
.c-tab a.active,
.c-tab a:hover {
  color: #fff;
  transition: 0.3s;
  transform-origin: bottom;
  border: 1px solid;
}
/* 选项卡 */


@media (min-width: 992px) {
  html,
  body {
    font-size: 14px;
  }
}
@media (min-width: 1366px) {
  html,
  body {
    font-size: 16px;
  }
}
@media (max-width: 1366px) {
  
}
@media (max-width: 1080px) {
  html,
  body {
    font-size: 12px;
  }
  /* 标题 */
  .c-title {
    padding-top: 3.5rem;
  }
  /* 标题 */
}




/* 新闻 */

.w {
	width: 1400px;
	margin: 0 auto;
}

@media screen and (max-width: 1500px) {
	.w {
		width: 1200px;
	}
}

@media screen and (max-width: 1250px) {
	.w {
		padding-left: 15px !important;
		padding-right: 15px !important;
		width: auto;
	}
}

@media screen and (max-width: 900px) {
	.w {
		padding: 0 15px;
	}
}

/* 列表页banner */
.list-banner {
	width: 100%;
	height: 220px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


/* 新闻列表页 */
#news-list-container .news-list .news-item {
	height: 250px;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 20px;
	position: relative;
	display: flex;
}

#news-list-container .news-list .news-item a {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
	left: 0;
	top: 0;
}

#news-list-container .news-list .news-item .item-img {
	width: 300px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	transition: 0.4s;
}

#news-list-container .news-list .news-item .item-content {
	width: calc(100% - 300px);
	padding: 15px 30px;
}

#news-list-container .news-list .news-item .item-content .new-tit {
	font-size: 1.8rem;
	color: #bdbbbb;
}

#news-list-container .news-list .news-item .item-content .new-subtit {
	font-size: 1.3rem;
	color: #444;
	padding: 0.5rem 0 1.5rem;
}

#news-list-container .news-list .news-item .item-content .new-text {
	font-size: 1rem;
	line-height: 1.5rem;
}

#news-list-container .news-list .news-item:hover .item-img {
	background-size: 110%;
}

@media screen and (max-width: 1250px) {
	#news-list-container .c-w {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

@media screen and (max-width: 1080px) {
	#news-list-container .news-list .news-item {
		height: 200px;
		padding: 20px 10px;
	}

	#news-list-container .news-list .news-item .item-img {
		width: 250px;
		height: 160px;
	}

	#news-list-container .news-list .news-item .item-content {
		width: calc(100% - 200px);
	}
}

@media screen and (max-width: 600px) {
	#news-list-container .news-list .news-item {
		height: 150px;
		padding: 15px 5px;
	}

	#news-list-container .news-list .news-item .item-img {
		width: 150px;
		height: 120px;
	}

	#news-list-container .news-list .news-item .item-content {
		width: calc(100% - 150px);
		padding: 10px 15px 0;
	}

	#news-list-container .news-list .news-item .item-content .new-tit {
		font-size: 16px;
	}

	#news-list-container .news-list .news-item .item-content .new-subtit {
		padding: 5px 0;
	}
}

/* 页码 */
#pagination .pagination {
	display: flex !important;
	justify-content: center !important;
	margin: 80px auto 100px;
}

#pagination .pagination span {
	display: inline-block;
	line-height: 36px;
	cursor: default;
	color: #a9a9a9;
	width: 36px;
	height: 36px;
	text-align: center;
	margin: 0 !important;
}

#pagination .pagination a {
	display: inline-block;
	line-height: 36px;
	cursor: pointer;
	color: white;
	width: 36px;
	height: 36px;
	text-align: center;
	margin: 0 5px !important;
	border-radius: 2px;
}

@media (max-width: 720px) {
	#pagination .pagination {
		margin: 40px auto 60px;
	}

	#pagination .pagination span {
		line-height: 25px;
		color: #a9a9a9;
		width: 25px;
		height: 25px;
	}

	#pagination .pagination a {
		line-height: 25px;
		width: 25px;
		height: 25px;
		margin: 0 2px !important;
		border-radius: 2px;
	}
}

.block {
	display: block;
}

.none {
	display: none;
}
