/**
 * 这是个 less 变量、函数文件，不会被编译成 common.css
 */
.hover-color-primary:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skeleton-wrapper {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.skeleton-wrapper:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-animation: skeletonLoading 2s ease-in-out infinite;
  animation: skeletonLoading 2s ease-in-out infinite;
  content: "";
}
@keyframes product-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.skeleton-element {
  animation: product-skeleton-loading 1.4s ease infinite;
  background-image: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  height: 0.8rem;
  list-style: none;
}
.skeleton-more-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@-webkit-keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
.skeleton-header {
  display: flex;
  justify-content: center;
  padding: 0 8px;
  height: 72px;
  align-items: center;
}
.skeleton-header .skeleton-title {
  width: 200px;
  height: 28px;
}
.skeleton-more {
  width: 131px;
  height: 32px;
}
.skeleton-product-card {
  width: 16%;
  float: left;
  margin-left: 15px;
}
/**
 * 响应式设计工具文件
 * 提供便捷的混入和工具类来简化响应式开发
 */
:root {
  --root-fs: 16;
}
@media (min-width: 1200px) {
  :root {
    --root-fs: 40;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  :root {
    --root-fs: 38;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  :root {
    --root-fs: 36;
  }
}
@media (min-width: 900px) and (max-width: 1000px) {
  :root {
    --root-fs: 34;
  }
}
@media (min-width: 800px) and (max-width: 900px) {
  :root {
    --root-fs: 32;
  }
}
@media (min-width: 700px) and (max-width: 800px) {
  :root {
    --root-fs: 30;
  }
}
@media (min-width: 675px) and (max-width: 700px) {
  :root {
    --root-fs: 28;
  }
}
@media (min-width: 650px) and (max-width: 674px) {
  :root {
    --root-fs: 27;
  }
}
@media (min-width: 625px) and (max-width: 649px) {
  :root {
    --root-fs: 26;
  }
}
@media (min-width: 600px) and (max-width: 624px) {
  :root {
    --root-fs: 25;
  }
}
@media (min-width: 575px) and (max-width: 599px) {
  :root {
    --root-fs: 24;
  }
}
@media (min-width: 550px) and (max-width: 574px) {
  :root {
    --root-fs: 23;
  }
}
@media (min-width: 525px) and (max-width: 549px) {
  :root {
    --root-fs: 22;
  }
}
@media (min-width: 500px) and (max-width: 524px) {
  :root {
    --root-fs: 21;
  }
}
@media (min-width: 475px) and (max-width: 499px) {
  :root {
    --root-fs: 20;
  }
}
@media (min-width: 450px) and (max-width: 474px) {
  :root {
    --root-fs: 19;
  }
}
@media (min-width: 425px) and (max-width: 449px) {
  :root {
    --root-fs: 18;
  }
}
@media (min-width: 400px) and (max-width: 424px) {
  :root {
    --root-fs: 17;
  }
}
@media (min-width: 375px) and (max-width: 399px) {
  :root {
    --root-fs: 16;
  }
}
@media (min-width: 350px) and (max-width: 374px) {
  :root {
    --root-fs: 15;
  }
}
@media (min-width: 325px) and (max-width: 349px) {
  :root {
    --root-fs: 14;
  }
}
@media (min-width: 300px) and (max-width: 324px) {
  :root {
    --root-fs: 13;
  }
}
@media (min-width: 275px) and (max-width: 299px) {
  :root {
    --root-fs: 12;
  }
}
@media (min-width: 250px) and (max-width: 274px) {
  :root {
    --root-fs: 11;
  }
}
@media (max-width: 249px) {
  :root {
    --root-fs: 11;
  }
}
@media (min-width: 701px) and (max-width: 1200px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
@media (max-width: 700px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
body {
  background: #ffffff;
}
@media (min-width: 701px) and (max-width: 1200px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
@media (max-width: 700px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
.paidServiceWrap {
  width: 100%;
  background-image: url("/egg/image/paidService/pc_bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 701px) and (max-width: 1200px) {
  .paidServiceWrap {
    background-image: url("/egg/image/paidService/pc_bg.jpg");
  }
}
@media (max-width: 700px) {
  .paidServiceWrap {
    background-image: url("/egg/image/paidService/mobile_bg.jpg");
    background-size: 100%;
  }
}
.paidServiceWrap .containerWrap {
  width: 1200px;
  margin: 0 auto;
  padding: 64px 0 24px;
  position: relative;
}
.paidServiceWrap .containerWrap .orderListBtns {
  position: absolute;
  top: 24px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  z-index: 10;
}
.paidServiceWrap .containerWrap .orderListBtns .orderBtn {
  width: auto;
  height: 32px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-font-1);
  padding: 0 12px;
  background: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.paidServiceWrap .containerWrap .orderListBtns .orderBtn .iconfont {
  font-size: 16px;
  margin-right: 2px;
  color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .orderListBtns .orderBtn:hover {
  background-color: var(--color-theme-1);
  color: #ffffff;
}
.paidServiceWrap .containerWrap .orderListBtns .orderBtn:hover .iconfont {
  color: #ffffff;
}
.paidServiceWrap .containerWrap .containerTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  color: var(--color-font-1);
  text-align: center;
}
.paidServiceWrap .containerWrap .containerDesc {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-font-2);
  margin-top: 16px;
  text-align: center;
}
.paidServiceWrap .containerWrap .filterBox {
  margin-top: 44px;
}
.paidServiceWrap .containerWrap .filterBox .priceFilter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn {
  width: 82px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: var(--color-font-1);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn .iconfont {
  font-size: 18px;
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn:hover {
  border-color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn.hasFilter {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn.isActive {
  border-color: var(--color-theme-1);
  color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .clearBtn {
  min-width: 60px;
  height: 32px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-font-3);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-left: 16px;
}
.paidServiceWrap .containerWrap .filterBox .priceFilter .clearBtn:hover {
  color: var(--color-theme-1);
}
@media (max-width: 1200px) {
  .paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn:hover {
    border-color: rgba(0, 0, 0, 0.15);
  }
  .paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn.isActive {
    border-color: var(--color-theme-1);
  }
}
.paidServiceWrap .containerWrap .filterBox .otherFilter {
  padding-top: 4px;
  display: none;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter.visible {
  display: block;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox {
  margin-top: 16px;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-font-1);
  margin-bottom: 12px;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList {
  display: flex;
  align-self: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  white-space: nowrap;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList::-webkit-scrollbar {
  height: 2px;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList .item {
  padding: 5px 24px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  color: var(--color-font-2);
  cursor: pointer;
  background: #ffffff;
  margin: 0 16px 12px 0;
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList .item.checked {
  background-color: var(--color-theme-1-opacity10);
  border-color: var(--color-theme-1);
  color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList .item:hover {
  border-color: var(--color-theme-1);
}
.paidServiceWrap .containerWrap .listWrap {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.paidServiceWrap .containerWrap .listWrap .managerCard {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
  min-width: 222px;
  margin-bottom: 0;
}
@media (max-width: 1063px) {
  .paidServiceWrap .containerWrap .listWrap .managerCard {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
@media (max-width: 793px) {
  .paidServiceWrap .containerWrap .listWrap .managerCard {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 1200px) {
  .paidServiceWrap .containerWrap .listWrap {
    gap: 16px;
  }
}
.paidServiceWrap .containerWrap .list-page {
  margin-top: 40px;
  box-shadow: none;
  position: static;
}
.paidServiceWrap .containerWrap .noDataWrap {
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.paidServiceWrap .containerWrap .noDataWrap .noDataImg {
  width: 30%;
  height: auto;
}
.paidServiceWrap .containerWrap .noDataWrap .noDataText {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-font-2);
}
@media (min-width: 701px) and (max-width: 1200px) {
  .paidServiceWrap .containerWrap {
    width: 100vw;
    min-width: 100vw;
    padding: 0 6%;
    padding-top: 64px;
    padding-bottom: 24px;
  }
  .paidServiceWrap .containerWrap .listWrap {
    width: 100%;
    height: 100%;
  }
  .paidServiceWrap .containerWrap .listWrap .managerCard {
    min-width: 222px;
  }
}
@media (max-width: 700px) {
  .paidServiceWrap .containerWrap {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 6%;
    padding-top: calc(40 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .containerTitle {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(33 / 16 * var(--root-fs) * 1px);
    font-weight: 700;
  }
  .paidServiceWrap .containerWrap .containerDesc {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-top: calc(8 / 16 * var(--root-fs) * 1px);
    font-weight: 500;
  }
  .paidServiceWrap .containerWrap .filterBox {
    margin-top: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .filterBox .priceFilter {
    justify-content: space-between;
  }
  .paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn {
    width: calc(32 / 16 * var(--root-fs) * 1px);
    height: calc(32 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .filterBox .priceFilter .filterBtn .filterBtnText {
    display: none;
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter {
    padding-top: 0;
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox {
    margin-top: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .title {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-top: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList::-webkit-scrollbar {
    height: calc(2 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList .item {
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    border-width: calc(1 / 16 * var(--root-fs) * 1px);
    border-radius: calc(4 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-right: calc(8 / 16 * var(--root-fs) * 1px);
    margin-bottom: 0;
  }
  .paidServiceWrap .containerWrap .filterBox .otherFilter .itemBox .btnList .item:hover {
    border-color: #e4e4e4;
  }
  .paidServiceWrap .containerWrap .listWrap {
    width: 100%;
    padding: 0;
    column-count: 1;
    column-gap: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .paidServiceWrap .containerWrap .listWrap .managerCard {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: auto;
  }
  .paidServiceWrap .containerWrap #vue-search-page {
    display: none;
  }
}
.professionalServiceTooltip .cj-tooltip-content {
  width: 360px;
}
