@charset "UTF-8";
/* 公用样式 */
/* 全局通用变量 */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  min-width: 1440px;
  font-weight: 400;
  font-size: 12px;
  font-family: PingFang SC, HarmonyOS_Regular, Helvetica Neue, Microsoft YaHei, sans-serif !important;
}

p, ul, li, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.icon {
  line-height: 1;
}

.common-content {
  display: flex;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
}

.common-header {
  display: flex;
  justify-content: space-between;
}
.common-header .title {
  position: relative;
  color: #033635;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  z-index: 1;
}
.common-header .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 63px;
  height: 4px;
  max-width: 100%;
  border-radius: 4px;
  background-color: #74B807;
  z-index: -1;
}
.common-header .show-more {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.common-header .show-more::after {
  content: "\e629";
  display: inline-block;
  margin-left: 4px;
  font-family: "icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.common-ul {
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  color: #666;
  font-size: 0;
}
.common-ul li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
}
.common-ul li:last-child {
  margin-bottom: 0;
}
.common-ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 6px;
  height: 6px;
  transform: translate(0, -50%);
  background-color: #033635;
}
.common-ul li a {
  display: block;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-wrap {
  width: 1440px;
}

/* 页面内容区域 */
.page-content {
  display: flex;
  padding: 40px 80px;
  background-color: #E5EDE1;
}
.page-content .page-aside {
  width: 356px;
  flex-shrink: 0;
  margin-right: 24px;
}
.page-content .page-main {
  flex: 1;
}
.page-content .page-block {
  width: 100%;
  padding: 16px;
  margin-bottom: 8px;
  box-sizing: border-box;
  background-color: #fff;
}
.page-content .page-block:last-child {
  margin-bottom: 0;
}
.page-content .page-block .page-block-title {
  display: flex;
  align-items: center;
  color: #033635;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.page-content .page-block .page-block-title .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  text-align: center;
  font-size: 16px;
  color: #74B807;
}
.page-content .page-block .page-block-title ~ .page-block-content {
  margin-top: 17px;
}

/* 页面aside区域列表样式 */
.aside-list {
  list-style: none;
  padding-bottom: 8px;
}
.aside-list .title {
  display: block;
  padding-left: 16px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
.aside-list .title:not(:first-child) {
  margin-top: 16px;
}
.aside-list .list-item {
  position: relative;
  padding: 12px 16px 12px 30px;
  font-size: 14px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.aside-list .list-item.is-active {
  color: #222;
  background-color: #DEF3D1;
}
.aside-list .list-item.is-active::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #033635;
}

/* 导航条样式 */
.nav-wrap {
  height: 56px;
  align-items: center;
  background: #033635;
}
.nav-wrap .nav-bar {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
}
.nav-wrap .nav-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  height: 100%;
  min-width: 80px;
  padding: 0 12px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  box-sizing: border-box;
}
.nav-wrap .nav-bar a.is-active {
  color: #033635;
  background-color: #98ED10;
}
.nav-wrap .search-wrap {
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
}
.nav-wrap .search-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nav-wrap .search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nav-wrap .search-wrap .icon {
  color: #fff;
}
.nav-wrap .btn-wrap {
  display: flex;
}
.nav-wrap .btn-wrap .button {
  width: 68px;
  height: 32px;
  margin-left: 8px;
  border-radius: 48px;
  font-size: 14px;
}
.nav-wrap .btn-wrap .button:first-child:hover {
  background-color: rgba(116, 184, 7, 0.2);
}

.search-wrap {
  display: flex;
  width: 280px;
  height: 32px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #C1C5CE;
  box-sizing: border-box;
}
.search-wrap .icon {
  cursor: pointer;
  font-size: 20px;
  color: #C1C5CE;
}
.search-wrap input {
  flex: 1;
  padding: 0;
  margin-left: 8px;
  border: none;
  font-size: 14px;
  line-height: 18px;
  background-color: transparent;
  color: #fff;
}
.search-wrap input:focus {
  outline: none;
}
.search-wrap input::-moz-placeholder {
  color: #C1C5CE;
}
.search-wrap input::placeholder {
  color: #C1C5CE;
}
.search-wrap.is-round {
  border-radius: 16px;
}
.search-wrap.right-icon {
  flex-direction: row-reverse;
  padding: 6px 12px;
}
.search-wrap.right-icon input {
  margin-left: 0;
  margin-right: 8px;
}

/* 关于我们样式 */
.about-wrap {
  position: relative;
  display: flex;
  padding: 56px 80px;
  background-color: #F2F2F2;
  color: #222;
}
.about-wrap .title {
  position: relative;
  margin-bottom: 25px;
  color: #033635;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  z-index: 2;
}
.about-wrap .title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;
  height: 3px;
  background-color: #033635;
}
.about-wrap .about-left {
  display: flex;
  flex: 1;
}
.about-wrap .about-left ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-wrap .about-left ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.about-wrap .about-left ul li .icon {
  flex-shrink: 0;
}
.about-wrap .about-left .follow-us {
  margin-right: 100px;
}
.about-wrap .about-left .follow-us .qrcode-wrap {
  width: 100px;
  background-color: #fff;
  box-sizing: border-box;
}
.about-wrap .about-left .follow-us .qrcode-wrap img {
  width: 100%;
  aspect-ratio: 1;
}
.about-wrap .about-left .follow-us .qrcode-wrap span {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.about-wrap .about-left .follow-us ul {
  justify-content: space-between;
  margin-top: 6px;
}
.about-wrap .about-left .follow-us ul .icon {
  margin-right: 2px;
  font-size: 16px;
  color: #888888;
}
.about-wrap .about-left .contact ul {
  flex-direction: column;
}
.about-wrap .about-left .contact ul li {
  margin-bottom: 16px;
  font-weight: 500;
}
.about-wrap .about-left .contact ul li:last-child {
  margin-bottom: 0;
}
.about-wrap .about-left .contact ul .icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #033635;
  color: #fff;
  font-size: 14px;
}
.about-wrap .friendly-links {
  position: relative;
  width: 480px;
  flex-shrink: 0;
}
.about-wrap .friendly-links .title {
  position: absolute;
}
.about-wrap .friendly-links .title::after {
  display: none;
}
.about-wrap .friendly-links .tabs {
  margin-top: -6px;
}
.about-wrap .friendly-links .tabs .tabs-nav-list {
  justify-content: flex-end;
  border-bottom: 3px solid #033635;
  margin-bottom: 20px;
}
.about-wrap .friendly-links .tabs .tabs-nav-list .tabs-nav {
  padding: 3px 8px;
  border-radius: 5px 5px 0 0;
  margin: 0 0 -1px 8px;
  font-size: 12px;
  color: #033635;
}
.about-wrap .friendly-links .tabs .tabs-nav-list .tabs-nav.is-active {
  color: #fff;
  background-color: #033635;
}
.about-wrap .friendly-links .link-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
  width: 100%;
}
.about-wrap .friendly-links .link-panel a {
  text-decoration: none;
  color: #222;
}
.about-wrap .friendly-links .link-panel a .icon {
  margin-right: 4px;
}

/* 页脚样式 */
.page-footer {
  padding: 18px 0;
  text-align: center;
  background-color: #2B303F;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
}
.page-footer a {
  color: #fff;
}

.tag {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 2px;
  background: #F2F4FB;
  color: #181C25;
  font-size: 12px;
  line-height: 18px;
}

/* 面性按钮的颜色 */
/* 按钮样式 */
.button {
  /* 默认的按钮颜色 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid;
  background: transparent;
  font-size: 12px;
  cursor: default;
  box-sizing: border-box;
  border-color: #033635;
  color: #033635;
}
.button .icon {
  margin-right: 4px;
  font-size: 16px;
}
.button:hover {
  background-color: rgba(3, 54, 53, 0.05);
}
.button.is-plan {
  background-color: #033635;
  color: #fff;
}
.button.is-plan:hover {
  background-color: #044e4d;
}
.button.is-round {
  border-radius: 14px;
}
.button-success {
  border-color: #74B807;
  color: #74B807;
}
.button-success:hover {
  background-color: rgba(116, 184, 7, 0.05);
}
.button-success.is-plan {
  background-color: #74B807;
  color: #fff;
}
.button-success.is-plan:hover {
  background-color: #7dc708;
}

/* 描述组件样式 */
.descriptions .descriptions-body {
  display: grid;
  row-gap: 4px;
}
.descriptions .descriptions-body .descriptions-item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 18px;
}
.descriptions .descriptions-body .descriptions-item .descriptions-item-label {
  flex-shrink: 0;
  color: #888;
}
.descriptions .descriptions-body .descriptions-item .descriptions-item-content {
  color: #222;
}

/* 引用组件的样式 */
.quote {
  padding: 12px;
  box-sizing: border-box;
  color: #222;
  background-color: #F7F7F7;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.quote .quote-title {
  margin-bottom: 8px;
  font-weight: 500;
}
.quote .quote-title + .quote-content {
  padding: 12px;
  background-color: #fff;
}

/* 页签组件样式 */
.tabs .tabs-nav-list {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DEE1E8;
}
.tabs .tabs-nav-list .tabs-nav-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  background-color: #74B807;
  transition: 0.3s;
}
.tabs .tabs-nav-list .tabs-nav {
  padding: 12px 0;
  margin-right: 24px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #545861;
  cursor: default;
}
.tabs .tabs-nav-list .tabs-nav.is-active {
  color: #74B807;
}
.tabs .tabs-panel-list .tabs-panel {
  display: none;
}
.tabs .tabs-panel-list .tabs-panel.is-active {
  display: block;
}

/*  表格样式 */
.table {
  width: 100%;
  border: 1px solid #E6E7EA;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 12px;
  border: 1px solid #E6E7EA;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: #111;
}
.table th {
  font-weight: normal;
  color: #666;
  background-color: #F2F3F5;
}

/* 空数据样式 */
.empty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  padding: 40px 0;
}
.empty .empty-image {
  width: 160px;
}
.empty .empty-description {
  margin: 24px 0 0 0;
  font-size: 14px;
  color: #909399;
}