.main-box {
  padding: 110px 60px 0;
  background-color: #f5f5f5;
}
.main-container {
  padding: 20px 40px;
  background-color: #fff;
}
.main-tab {
  display: flex;
  list-style: none;
}
.main-tab li{
  padding: 4px 20px;
  cursor: pointer;
}
.main-tab a{
  text-decoration: none;
  color: #000;
}
.main-tab li:hover a{
  color: #f09c00;
}
.active-tab {
  color: #fff;
  background-color: #f09c00;
  border-radius: 20px 0 20px 0;
  font-weight: bold;
}
/* news开始 */
.news-item {
  display: flex;
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}
.news-item img{
	width: 100%;
	height: 100%;
	transition: transform 0.8s ease-in-out;
}
.news-item:hover img{
	transform: scale(1.1);
	transition: transform 0.8s ease-in-out;
}
.news-item:hover .news-title, .news-item:hover .news-detail {
  transition: all 0.2s;
	color: #f09c00;
}
.news-left {
	width: 25%;
	margin-right: 3%;
	overflow: hidden;
}
.news-right {
  width: 75%;
}
.news-title {
	color: #333;
	font-size: 22px;
	font-weight: 500;
	margin-top: 20px;
}
.news-time {
	color: #999;
	font-size: 13px;
	margin: 6px 0 12px;
}
.news-intro {
	color: #444;
	font-size: 14px;
}
.flex-center {
	display: flex;
	justify-content: center;
}
.items-center {
	align-items: center;
}
.my-40 {
	margin-top: 40px;
	margin-bottom: 40px;
}
.pagination-item {
	border: 1px solid #D2D3D4;
	padding: 4px 8px;
	border-radius: 4px;
	margin-right: 6px;
  cursor: pointer;
}
.pagination-item:last-of-type {
	margin-right: 0;
}
.active-page {
	background-color: #f09c00;
	color: #fff;
	border: none;
}
.pagination-item:hover {
  background-color: #f09c00;
  color: #fff;
  transition: all 0.2s;
}
.news-detail {
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}
/* news结束 */

@media (max-width: 1200px) {
  .news-left {
    width: 30%;
  }
  .news-right {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .main-box {
    padding: 90px 20px 0;
  }
  .news-left {
    width: 40%;
  }
  .news-right {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .main-box {
    padding: 70px 0 0;
  }
  .news-item {
    flex-wrap: wrap;
  }
  .news-left, .news-right {
    width: 100%;
  }
}