* {
  box-sizing: border-box;
  margin: 0;
}
body {
  min-width: 1300px;
}
.information {
  width: 100%;
  padding: 38px 0 52px 0;
  background-color: #212735;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.information .title {
  font-size: 36px;
  font-weight: bold;
  color: #FFF;
  line-height: 36px;
}
.information .title span {
  color: #FFA145;
}
.information .content {
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
}
.information .content .item {
  width: 256px;
  height: 77px;
  padding: 20px 15px 0 15px;
  margin: 6px 2px 0 2px;
  background-color: #333948;
  cursor: pointer;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.information .content .item .text {
  width: 100%;
  height: 40px;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  display:-webkit-box; 
  overflow:hidden; 
  text-overflow:ellipsis;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2; 
}
.information .content .item:hover .text {
  color: #212735;
}
.information .content .item:nth-child(1) {
  background-color: #2a303d;
}
.information .content .item:nth-child(3) {
  background-color: #2a303d;
}
.information .content .item:nth-child(5) {
  background-color: #2a303d;
}
.information .content .item:nth-child(6) {
  background-color: #2a303d;
}
.information .content .item:nth-child(8) {
  background-color: #2a303d;
}
.information .content .item:nth-child(10) {
  background-color: #2a303d;
}
.information .content .item:hover {
  background-color: #ffa145;
}
.bread-crumbs {
  width: 100%;
  padding: 0 0 24px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 14px;
}
.bread-crumbs a {
	color: rgba(255,255,255,0.8);
}
.bread-crumbs a:hover {
  text-decoration: underline;
}