@charset "UTF-8";
/* 定义主题色 */
/* 定义文字颜色 */
/* 定义背景颜色 */
/* 定义底部边框颜色 */
::-webkit-scrollbar {
  width: 6px;
  /*滚动条宽度*/
  height: 6px;
  /*滚动条高度*/
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
  /* 滚动条 拖动条 */
  background-color: #052961;
  border-radius: 6px;
}

/*滚动条轨道*/
::-webkit-scrollbar-track {
  /* 滚动条背景槽 */
  background-color: #eee;
  border-radius: 6px;
}

::-moz-selection {
  background-color: #052961;
  color: #fff;
}

::selection {
  background-color: #052961;
  color: #fff;
}

/* 自定义常用 */
.flex-center,
.flex-row-start,
.flex-row-center,
.flex-row-end,
.flex-row-between,
.flex-row-evenly,
.flex-col,
.flex-col-start,
.flex-col-end,
.flex-col-stretch,
.flex-col-baseline,
.flex-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.flex-row-start {
  justify-content: flex-start;
}

.flex-row-center {
  justify-content: center;
}

.flex-row-end {
  justify-content: flex-end;
}

.flex-row-between {
  justify-content: space-between;
}

.flex-row-evenly {
  justify-content: space-evenly;
}

.flex-row-around {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.flex-col-start {
  align-items: flex-start;
  align-content: flex-start;
}

.flex-col-end {
  align-items: flex-end;
  align-content: flex-end;
}

.flex-col-stretch {
  align-items: stretch;
  align-content: stretch;
}

.flex-col-baseline {
  align-items: baseline;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/* 遍历生成文本省略 */
.line-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.line-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

body {
  min-width: 320px;
  font-family: "Microsoft YaHei", "Source Han Sans CN", "PingFang SC";
  overflow-x: hidden;
  line-height: 1.2;
  overflow-wrap: break-word;
}

/* 自定义常用样式 */
button:hover {
  opacity: 0.8;
}

a:hover {
  cursor: pointer;
  color: #052961;
}

img {
  transition: all 0.3s;
}

.responsive-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

/* 主容器 */
.container {
  max-width: 1880px;
  padding: 0 100px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 540px) {
  .container {
    padding: 0 15px;
  }
} /*# sourceMappingURL=common.css.map */
