/* *************************************************************** */
/* 栏目标题 */
/* *************************************************************** */
.hlx-column-title {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.hlx-column-title-bg {
  max-width: 550px;
  width: 100%;
}

.hlx-column-title-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;

  color: #ffffff;
  font-size: 42px;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .hlx-column-title-text {
    font-size: 24px;
    padding-bottom: 6px;
  }
}

/* *************************************************************** */
/* 双层 box */
/* *************************************************************** */

.hlx-double-box {
  position: relative;
  padding: 0 20px;
}

/* 第一层 渐变背景 */
.hlx-double-box-bg {
  position: absolute;
  left: 0;
  top: 40px;

  width: 100%;
  height: 100%;

  background: linear-gradient(180deg, #f0c676 0%, #f87851 100%);
  border-radius: 10px;

  transform: translateY(-20px);
}

/* 第二层 白色打底 */
.hlx-double-box-content {
  position: relative;
  background: #ffffff;
  border-radius: 10px;

  padding: 20px;
}

/* *************************************************************** */
/* 列表 */
/* *************************************************************** */
.hlx-list-item {
  display: flex;
  align-items: center;

  display: -ms-flexbox;
  -ms-flex-align: center;

  font-size: 24px;
  color: #333333;

  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(161, 152, 108, 0.5);
}

@media screen and (max-width: 768px) {
  .hlx-list-item {
    font-size: 20px;
  }
}

.hlx-list-item::before {
  content: "";
  display: block;
  width: 12.8px;
  height: 12.8px;
  background: #fa534c;
  border-radius: 50%;

  margin-right: 16px;

  flex-shrink: 0;
  -ms-flex-shrink: 0;
}

.hlx-list-item-text {
  width: 0;
  flex: 1;
  -ms-flex: 1;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hlx-list-item.small-item {
  border-bottom-width: 0px;
  padding: 10px 10px 10px 0;
  font-size: 22px;
}

/* *************************************************************** */
/* 平分布局 */
/* *************************************************************** */

.split-layout {
  display: -ms-flexbox;
  display: flex;
}

.split-layout .ie-gap {
  width: 20px;
}

.split-layout-item {
  width: 0;
  flex: 1;
  -ms-flex: 1;
}

@media screen and (max-width: 768px) {
  .split-layout {
    flex-direction: column;
  }

  .split-layout .ie-gap {
    width: 0;
    height: 20px;
  }

  .split-layout-item {
    width: 100%;
  }
}

/* *************************************************************** */
/* 图片标题 */
/* *************************************************************** */

.image-title {
  display: flex;
  align-items: center;
  justify-content: center;

  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.image-title img {
  max-width: 100%;
}
