* {
  margin: 0;
  padding: 0;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 8px;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  html {
    font-size: 14px;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-grow-0 {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flex-grow-1 {
  min-width: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.flex-x-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-y-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.flex-y-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
/* 主轴方向 main */
.m-start {
  justify-content: flex-start;
}
.m-end {
  justify-content: flex-end;
}
.m-around {
  justify-content: space-around;
}
.m-between {
  justify-content: space-between;
}
.m-center {
  justify-content: center;
}
/* 侧轴方向 second*/
.s-start {
  align-items: flex-start;
}
.s-end {
  align-items: flex-end;
}
.s-around {
  align-items: space-around;
}
.s-between {
  align-items: space-between;
}
.s-center {
  align-items: center;
}
.other-banner {
  width: 100%;
  height: 22.5625rem;
  background-image: url('/static/images/other-bg.png');
  background-size: 100% 22.5625rem;
  background-repeat: no-repeat;
}
.other-banner__container {
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .other-banner__container {
    padding-right: 1.25rem;
  }
}
.other-banner__title {
  font-weight: 700;
  font-size: 2.25rem;
  text-align: right;
  color: #fff;
}
.other-banner__subTitle {
  font-weight: 400;
  font-size: 1.5rem;
  text-align: right;
  color: #fff;
}
#main-layout-content {
  background: #f5f5f5;
}
#main-layout-content .layout-onecolumn {
  max-width: 1200px;
  margin: 0 auto;
}
.pagination > .active > span {
  background-color: #ddd;
}
