.home-container {
  background-color: #ffffff;

  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;

  padding: 20px 20px;

  --dev-line: 0px;
}

.home-row {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
}

.home-1 {
  width: 0;
  -ms-flex: 1;
  flex: 1;
  border: var(--dev-line) solid red;
}

.home-1-news {
  margin-left: 50px;
  width: 50%;
}

.pin-to-top-news-title {
  color: #ff0000;
  font-size: 25px;
  text-align: center;
}

.home-container .title-line {
  border-bottom: #296dc0 1px solid;
}

/* ************************************************************************************************************************************* */

/* "概况" 中领导信息 */
.leader-info {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.leader-avatar {
  width: 0;
  -ms-flex: 1.2;
  flex: 1.2;
  padding-top: 10px;
}

.leader-avatar img {
  width: 100%;
  -ms-object-fit: cover;
  object-fit: cover;
  min-height: 220px;
}

.overview-list {
  padding-top: 10px;
  width: 0;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.overview-list a {
  display: block;
  margin-top: 10px;
  color: #fff;
  background: #ff5b00;
  text-align: center;
  line-height: 30px;
  height: 30px;
  font-size: 16px;
  padding: 0 5px 0 5px;
}

.home-1-gap {
  width: 20px;
}

/* !!!!!!!!! 响应式 !!!!!!!!! */
@media screen and (max-width: 768px) {
  .home-row {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .home-1 {
    width: 100%;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .home-1-gap {
    height: 20px;
  }

  .home-1-news {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }
}
/* *************************************************************************************************************************************  */
/* slick.js 首页轮播图 */
.hlx-home-swiper {
  height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hlx-home-swiper .swipe {
  height: 100%;
  width: 100%;
}

.hlx-home-swiper .slick-item {
  height: 100%;
  height: 400px;
  position: relative;
  display: block;
}

.hlx-home-swiper .slick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 控制箭头：上 下  */
.arrow-left,
.arrow-right {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}

.arrow-left {
  left: 12px;
}

.arrow-right {
  right: 12px;
}

/* 对 slick.js dot 的重写 */
/* 基础重写 */
.hlx-slick-dots {
  padding: 0;
  margin: 0;

  position: absolute;
  bottom: 0;
  list-style: none;
}

.hlx-slick-dots li {
  display: inline-block;
}

.hlx-slick-dots button {
  font-size: 0;
  line-height: 0;

  display: block;

  cursor: pointer;

  color: transparent;
  background: transparent;
  border: 0;
  outline: none;
}

/* 定制重写 */
.hlx-slick-dots {
  right: 10px;
  bottom: 12px;
}
.hlx-slick-dots button {
  padding: 0;
  box-sizing: border-box;

  width: 18px;
  height: 6px;
  background: #f9f9f9;

  margin-left: 5px;
}

.hlx-slick-dots li.slick-active button {
  background: #088553;
}

.slick-item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;

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

  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;

  line-height: 30px;
  padding-right: 120px;
  padding-left: 10px;
}

/* ************************************************************************************************************************************* */

/* swiper.js v5 首页的轮播图 已经弃用 */
.swiper-container {
  height: 400px;
  width: 100%;
  position: relative;
}

.swiper-container .swiper-news-item {
  height: 100%;
  width: 100%;
  position: relative;
}

.swiper-container .swiper-news-item img {
  width: 100%;
  height: 100%;
  -ms-object-fit: cover;
  object-fit: cover;
}

.swiper-container .swiper-news-item p {
  position: absolute;
  margin: 0;
  padding: 0;

  background-color: rgba(0, 0, 0, 0.6);

  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  color: #fff;

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

  box-sizing: border-box;
  padding: 0 10px 0 10px;
}

/* 首页轮播 切换处理 */
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  color: #5d5d5d;
}

.swiper-container .swiper-button-prev:hover,
.swiper-container .swiper-button-next:hover {
  color: #d3d3d3;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
  font-weight: bold;
}

/* 首页轮播 下标处理 */
.swiper-container .swiper-pagination {
  bottom: 0;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 18px;
  height: 6px;
  background: #f9f9f9;
}

.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #088553;
  height: 8px;
}

/* ************************************************************************************************************************************* */

/* 首页 新闻  顶部新闻 */
.home-top-col-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 16px;
  line-height: 30px;

  font-family: "Microsoft Yahei", "PingFangSC-Regular", "Helvetica",
    "Droid Sans", "Arial", "sans-serif";
}

.home-top-col-item .title {
  width: 0;
  -ms-flex: 1;
  flex: 1;

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

.home-top-col-item .date {
}

/* ************************************************************************************************************************************* */
/* 其他新闻，重复度很高 */

.home-col-container {
  padding-top: 12px;
  min-height: 210px;
}

.home-col-item {
  color: #333;
  font-size: 16px;

  font-family: "Microsoft Yahei", "PingFangSC-Regular", "Helvetica",
    "Droid Sans", "Arial", "sans-serif";

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

  line-height: 30px;
}

/* ************************************************************************************************************************************* */

/* 通知公告 */
.home-notice {
  margin-top: 20px;

  display: -ms-flexbox;
  display: flex;

  gap: 50px;

  height: 60px;
  border-bottom: #296dc0 1px solid;
}

.home-notice .home-notice-title {
  height: 100%;

  border-bottom: #296dc0 15px solid;
  width: 130px;
}

.home-notice .home-notice-title a {
  height: 100%;

  font-size: 22px;
  text-align: center;
  display: block;
  color: #000;
}

.home-notice .home-notice-container {
  width: 0;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.home-notice .home-notice-list {
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  position: relative;
  left: 0;

  height: 100%;
}

.home-notice .notice-item {
  padding: 0 20px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  color: #000;
}

/* ************************************************************************************************************************************* */
