/* 新能源 - 预留空白 */
.energy-blank {
  height: 80px;
}
/* 新能源 - 跑马灯 */
.energy-marquee {
  height: 540px;
  background-image: url("../../imgs/solution/energy/banner.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.energy-marquee h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 35px;
}
.energy-marquee h3 {
  font-size: 24px;
}
/* 新能源 - 架构 */
.energy-arch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 新能源 - 设计 */
.energy-design {
  background-color: #f6fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 新能源 - 界面 */
.energy-case {
  background-color: #f6fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 新能源 - 价值 */
.energy-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 新能源 - 案例列表 */
.energy-list {
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.energy-list-title {
  height: 140px;
  width: 1280px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  align-items: center;
}
.energy-list-item {
  background-color: #fff;
  border-radius: 4px;
  width: 1280px;
  height: 450px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.item-image {
  width: 640px;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.item-image img {
  width: 540px;
  height: 340px;
}
.item-content {
  width: 640px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.item-content label {
  margin: 50px 50px 30px 0px;
  font-size: 22px;
  font-weight: bold;
}
.item-content pre {
  margin: 0px 50px 0px 0px;
  height: 220px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
  color: gray;
}
.item-content button {
  border: none;
  width: 130px;
  height: 45px;
  background-color: #0c7df2;
  cursor: pointer;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
}
.item-content button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.customexample {
  background-color: #f3f3f3;
  padding: 40px 360px 40px 360px;
}
.customexample ul {
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
.customexample ul li {
  width: 31%;
  cursor: pointer;
  margin-right: 40px;
}
.customexample ul li:last-child {
  width: 31%;
  cursor: pointer;
  margin-right: 0px;
}
.customexample ul li .customexample-img {
  width: 100%;
  height: 200px;
}
.customexample ul li .customexample-img img {
  width: 100%;
  height: 100%;
}
.customexample-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.customexample-title .info {
  font-size: 16px;
  color: #000000;
  max-width: 72%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
}

.customexample-title .time {
  color: grey;
}
.customexample-infos {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  /* 将对象作为弹性伸缩盒子模型显示 */
  display: -webkit-box;
  /* 限制在一个块元素显示的文本的行数 */
  /* -webkit-line-clamp 其实是一个不规范属性，使用了WebKit的CSS扩展属性，该方法适用于WebKit浏览器及移动端；*/
  -webkit-line-clamp: 3;
  /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-box-orient: vertical;
}
