* {
  margin: 0;
  padding: 0;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rate-wrapper {
  height: 30px;
  /* padding: 2px; */
  /* border: solid 1px #dcdfe6; */
  border-left: none;
  padding: 0 5px 0 12px;
  transform: translateX(-2px);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}
/* 主体 */
.content-wrapper {
  min-height: calc(100vh - 100px);
}
.content {
  padding: 40px 15px;
  box-sizing: border-box;
}
.logo {
  height: 30px;
}
.title {
  text-align: center;
  margin-top: 50px;
}
.desc {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #8c8c8c;
}
.filters {
  display: flex;
  margin-top: 80px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.filter-item {
  flex: 1;
  margin-right: 25px;
}
.filter-item:nth-last-child(1) {
  margin-right: 0;
}
.filter-label {
  color: #8c8c8c;
  font-size: 0.9em;
}

/**/
.status {
  display: flex;
  align-items: center;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #606266;
  margin-right: 5px;
}

.status-success {
  color: rgb(14, 168, 14);
}
.status-success .status-dot {
  background-color: rgb(14, 168, 14);
}
.pager {
  margin-top: 20px;
  text-align: right;
}

/* footer */

.footer-wrapper {
  position: relative;
  height: 100px;
  background-color: #cfd0d2;
}
.footer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0 15px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.footer-icon-wrapper {
  height: 25px;
  margin-left: 40px;
}
.footer-icon {
  height: 25px;
}
.footer-logo {
  height: 30px;
}

/* 小助手 */
.contact-wrapper {
  transition: 0.2s ease-out;
  position: fixed;
  width: 70px;
  top: 20%;
  right: 10px;
  font-size: 12px;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.1);
  padding: 7px 3px;
}
/* hr {
  margin: 0;
  border-top: 1px solid #6666661f;
} */

.contact-item {
  text-align: center;
  position: relative;
}

.contact-item:hover .hover-content {
  display: flex;
}

.contact-item-icon {
  width: 50%;
}

.contact-item-text {
  color: #1678ff;
}

.hover-content {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -220px;
  top: 0;
  background: #fff;
  width: 170px;
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  text-align: left;
  min-height: 80px;
}

.contact-arrow {
  display: block;
  border: 7px solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: -13px;
  top: 30px;
}


.contact-wx {
  text-align: center;
  padding: 10px;
  padding: 20px;
}

.contact-title {
  font-weight: 400;
  font-size: 16px;
  color:#1678ff;
}

.contact-qrcode {
  width: 82%;
}

/* h2 {
  font-size: 16px;
} */

.contact-text {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0px;
}

@media screen and (min-width: 1440px) {
  .content {
    width: 1440px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 50px 30px;
  }
  .title {
    font-size: 40px;
  }
  .footer {
    padding: 0 30px;
    width: 1440px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .content {
    padding: 30px 10px;
  }
  .title {
    font-size: 25px;
  }
  .footer {
    padding: 10px 10px;
  }
  .footer-logo-wrapper {
    width: 100%;
    text-align: center;
  }
  .footer-icon-wrapper {
    margin-left: 5px;
  }
  .copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .filter-item {
    flex: 0 0 32%;
    margin-right: 2%;
    margin-bottom: 10px;
  }

  .filter-item:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 414px) {
  .filter-item {
      flex: 0 0 49%;
      margin-right: 2%;
      margin-bottom: 10px;
    }
  
    .filter-item:nth-child(2n) {
      margin-right: 0;
    }
}
