﻿@media screen and (min-width: 600px) {
  :root {
    --theme-color: #1f4f98;
    --container-width: 1440px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --theme-color: #1f4f98;
    --container-width: 100%;
  }
}
@font-face {
  font-family: YouShe;
  src: url("../fonts/YouSheBiaoTiHei.ttf");
}
* {
  box-sizing: border-box;
  font-family: "Microsoft YaHei", tamoha, Arial, "宋体";
}
.container {
  width: var(--container-width);
  margin: 0 auto;
}
.flex {
  display: flex;
}
.flex-grow {
  display: flex;
}
.flex-grow > * {
  flex-grow: 1;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.limit-line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.limit-line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
.limit-line-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.list-one.banner-list-one .list-title {
  height: 54px;
  background-image: url("../image/index/list-title-background---majority-horizon.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.list-one.full-horizon-list {
  width: 100%;
}
.list-one.full-horizon-list .list-title {
  height: 54px;
  background-image: url("../image/index/list-title-background---full-horizon.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.list-one.majority-horizon-list {
  width: 693px;
}
.list-one.majority-horizon-list .list-title {
  height: 54px;
  background-image: url("../image/index/list-title-background---majority-horizon.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.list-one.minority-horizon-list {
  width: 495px;
}
.list-one.minority-horizon-list .list-title {
  height: 54px;
  background-image: url("../image/index/list-title-background---majority-horizon.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.list-title {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.list-title .top-img {
  width: 36px;
  margin-right: 10px;
}
.list-title .top-title {
  font-weight: 500;
  font-size: 24px;
  color: #0054A6;
}
.list-title .sub-title {
  margin-left: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0680A6;
}
.list-title > a {
  font-weight: 400;
  font-size: 16px;
  color: #0054A6;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .list-title .top-img {
    width: 21px;
  }
  .list-title .flex-align-center img {
    width: 21px;
  }
  .list-title .top-title {
    margin-left: 4px;
    font-size: 16px;
  }
  .list-title > a {
    font-size: 12px;
  }
}