/* 公共样式 */
body {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #333;
  background-color: #fff;
}
/* 公共container */
.container {
  max-width: 1200px !important;
  margin: auto;
}
.no-search-banner {
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: MiSansVF_Bold;
  font-size: 42px;
  color: #ffffff;
  line-height: 56px;
  letter-spacing: 2px;
  font-style: normal;
  text-transform: uppercase;
}

.search-results {
  border-bottom: 1px solid #e8e8e8;
}
a:hover {
  color: #21a13b;
}
.search-results .search-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.search-results .search-content .search-keywords {
  font-family: MiSansVF_Semibold;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  padding: 20px 0;
  cursor: pointer;
  margin-right: 64px;
  display: inline-block;
}
.keywords {
  font-family: MiSansVF_Semibold;
  font-size: 20px;
  color: #333333;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}
@media screen and (max-width: 1600px) {
  .no-search-banner {
    height: 440px !important;
  }
}
@media screen and (max-width: 1240px) {
  .container {
    width: 92% !important;
  }
}
@media screen and (max-width: 1200px) {
  .no-search-banner {
    height: 300px !important;
  }
}
@media screen and (max-width: 768px) {
  .no-search-banner {
    height: 375px;
    text-align: center;
    font-size: 32px;
    line-height: 46px;
  }
  .search-results .search-content .search-keywords {
    margin-right: 0px;
    padding: 16px;
    font-family: MiSansVF_Semibold;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    font-style: normal;
  }
  .keywords {
    font-family: MiSansVF_Semibold;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    font-style: normal;
  }
}
/* 单行超出隐藏，...结尾 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.twice-line-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制为2行 */
  overflow: hidden;
}
.multi-line-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 限制为3行 */
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* 清除浮动 */
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* 主题色 */
:root {
  --theme-color: #21a13b;
  --background-color: #f4f4f4;
}
/* 字体库 */
@font-face {
  font-family: "MiSansVF";
  src: url("../fonts/MiSans-Normal.otf") format("truetype");
}
@font-face {
  font-family: "MiSansVF_Bold";
  src: url("../fonts/MiSans-Bold.otf") format("truetype");
}
@font-face {
  font-family: "MiSansVF_Semibold";
  src: url("../fonts/MiSans-Semibold.otf") format("truetype");
}
