* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-width: 1160px;
  min-height: 100vh;
  overflow-x: hidden;
}

@media screen and (max-width: 1160px) {
  html {
    overflow-x: auto;
  }
}

.page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.cur {
  cursor: pointer;
}

.cur:hover{
  opacity: 0.8;
}

.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-dc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

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

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

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

.ellipsis-line-1{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis-line-2{
  -webkit-line-clamp: 2;
}

.ellipsis-line-3{
  -webkit-line-clamp: 3;
}

.ellipsis-line-4{
  -webkit-line-clamp: 4;
}

.ellipsis-line-5{
  -webkit-line-clamp: 5;
}

.ellipsis-line-2, .ellipsis-line-3, .ellipsis-line-4, .ellipsis-line-5{
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box; /* 弹性伸缩盒 */
  -webkit-box-orient: vertical; /* 设置伸缩盒子元素排列方式 */
}

/* 公共组件样式 */
.footer {
  width: 100%;
  height: 129px;
  background-color: #3D68A8;
}

.footer-icon {
  width: 64px;
  height: 68px;
  margin-right: 48px;
}

.footer-text {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-seat {
  width: 100%;
  height: 40px;
  background-color: #000000;
}
