/* 元素设置 start */
* {
  box-sizing: border-box;
  font-family: 'Source Han Sans CN', 'Source Han Sans CN';
}

body {
  padding: 0px;
  margin: 0px;
  background: #F1F6F2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
}
/* 元素设置 end */

/* 头部样式 start */
.ban-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 88px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 0px 1px #E4E4E4;
}

.header-top {
  height: 88px;
  margin: 0 80px 0 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 44px;
  line-height: 44px;
}

.logo img {
  width: 134px;
  vertical-align: middle;
}

.ban-right {
  display: flex;
  line-height: 44px;
}

.home-page-btn {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  font-style: normal;
  text-transform: none;
  margin-right: 20px;
}

.search-container {
  margin-right: 10px;
  position: relative;
}
.search-container img {
  position: absolute;
  top: 10px;
  left: 23px;
  width: 24px;
}
.header-search {
  width: 657px;
  height: 44px;
  padding-left: 57px;
  background-color: #F2F2F2;
  border-radius: 27px;
  border: 1px solid #D2D2D2;
  font-weight: 400;
  font-size: 18px;
  line-height: 44px;
  color: #333333;
  outline: none;
}
.header-search::placeholder {
  color: #9B9B9B;
}

.search-btn {
  margin-right: 20px;
  width: 143px;
  height: 44px;
  border-radius: 27px;
  border: 1px solid #1F9E72;
  font-weight: 400;
  font-size: 20px;
  line-height: 42px;
  color: #1F9E72;
  text-align: center;
  cursor: pointer;
}

.user-container {
  height: 44px;
  line-height: 44px;
}

.user-container img {
  width: 40px;
  vertical-align: middle;
}

.user-container .user-name {
  margin-left: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #707070;
  cursor: pointer;
}
/* 头部样式 end */

/* 类别 start */
.box-title {
  padding-bottom: 16px;
  border-bottom: 1px dashed #E6E6E6;
  font-weight: bold;
  font-size: 14px;
  color: #1F9E72;
}

.type-content {
  margin-top: 16px;
}

.type-line {
  display: flex;
  margin-bottom: 20px;
}
.type-line:last-of-type {
  margin-bottom: 0px;
}

/* .type-line .type-dot {
  flex: 1;
} */
.type-dot {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: left;
  cursor: pointer;
}
.type-dot:not(:last-of-type) {
  border-right: 1px solid #E5E5E5;
}
.type-dot.active {
  color: #1F9E72;
}

.tres-line .type-line .type-dot:nth-of-type(1) {
  flex: 0 0 81px;
}
.tres-line .type-line .type-dot:nth-of-type(2) {
  flex: 0 0 106px;
  text-align: center;
}
.tres-line .type-line .type-dot:nth-of-type(3) {
  flex: 0 0 81px;
  text-align: right;
}

.four-line .type-line .type-dot:nth-of-type(1) {
  flex: 0 0 58px;
}
.four-line .type-line .type-dot:nth-of-type(2),
.four-line .type-line .type-dot:nth-of-type(3) {
  flex: 0 0 76px;
  text-align: center;
}
.four-line .type-line .type-dot:nth-of-type(4) {
  flex: 0 0 58px;
  text-align: right;
}
/* 类别 end */

/* 底部样式 start */
.footer-wrap {
  width: 100%;
  margin-top: 50px;
}

.footer-bottom {
  width: 100%;
  height: 82px;
  background-color: #085D3F;
  line-height: 82px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #90B2A6;
}
/* 底部样式 end */

.layui-menu-body-title {
  display: flex;
  align-items: center;
}