.mqBtn {
  cursor: pointer;
}

/* 分页 */
.pagination {
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 20px;
  align-items: center;
  color: #666;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination li {
  border: 1px solid #e5e5e5;
  color: #666;
  margin-left: 10px;
  padding: 0 4px;
  font-size: 14px;
}
.pagination li a {
  display: block;
}
.pagination li:hover {
  border: 1px solid var(--color);
  background: var(--color);
}
.pagination li:hover,
.pagination li:hover a {
  color: #fff;
}
.pagination li.thisclass,
.pagination li.active {
  background-color: var(--color);
  color: #fff;
  border-color: var(--color);
}

/* 详情页3个按钮 */

.parter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 20px 80px 20px 80px;
  text-align: center;
}
.parter li {
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  width: 144px;
  height: 50px;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
.parter li:first-child {
  background-color: #629cff;
}
.parter li:nth-child(2) {
  background-color: #f93886;
}
.parter li:nth-child(3) {
  background-color: #2ea7e0;
}
.parter li a {
  color: #ffffff;
}

/* 详情页底部按钮 */

.appointment-box {
  margin: 15px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.appointment-box .item {
  padding-top: 36px;
  padding-left: 156px;
  box-sizing: border-box;
  width: 50%;
  height: 109px;
  background: #faf2ff url("/static/common/img/news_l.png") 57px 28px no-repeat;
}
.appointment-box .item:nth-child(2) {
  margin-left: 16px;
  padding-left: 163px;
  background: #e8eeff url("/static/common/img/news_r.png") 78px 35px no-repeat;
}
.appointment-box .item:nth-child(2) h4 {
  color: #4b73e8;
}
.appointment-box .item:nth-child(2) p {
  color: #7794ed;
}
.appointment-box h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 26px;
  color: #9d46e0;
}
.appointment-box p {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 20px;
  color: #bc85e6;
}
.left-text .appointment-box .item {
  background-position: 40px center;
  padding-left: 87px;
  padding-top: 25px;
}
/* 响应式 */
@media (max-width: 1024px) {
  .appointment-box .item {
    background-position: 20px center !important;
    padding-left: 100px !important;
    padding-top: 25px !important;
  }
}
@media (max-width: 768px) {
  .parter {
    gap: 0 20px;
    margin: 0;
  }
  .appointment-box .item {
    background-position: 10px center !important;
    padding-left: 87px !important;
    padding-top: 20px !important;
  }
}


/* 404页 */
.error-page{ 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 65vh;
}
.error-page .error-box { 
  text-align: center; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.error-page .error-box::before { 
  content: '';
  width: 60vw;
  height: 60vw;
  max-width: 300px;
  max-height: 300px; 
  background: url('/static/common/img/404.png') no-repeat center/contain;
}
.error-page .error-box p{
  height: 51px;
  line-height: 43px;
  font-size: 16px;  
  padding: 20px 0; 
}

/* 公共底部按钮 */
.index-tabBar {
  position: fixed;
  border: none;
  z-index: 97;
  bottom: 0;
  right: 0;
  left: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  /* iPhone X 兼容，把可交互的部分渲染到安全区域内*/
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%; 
  max-width: 640px;
  margin: 0 auto;
}
.index-tabBar::after {
  position: fixed;
  width: 100%; 
  content: "";
  display: block;
  bottom: 0;
  background: #fff;
  z-index: -1;
}
.index-tabBar >div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  text-align: center; 
  background-image: url(/static/common/img/footerbar.png);
  background-position: bottom center;
  background-repeat: no-repeat;  
  background-size: cover;
}
.index-tabBar div ul {
  width: 100%;
  margin-top: 1.3rem;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.index-tabBar div ul li a {
  display: block;
}
.index-tabBar div ul li a img,.index-tabBar div ul li a svg {
  display: inline-block;
  width: 2.72rem;
  height: 2.72rem;
  max-width:unset;  
  color: var(--color);
}
.index-tabBar div ul li a p {
  height: 0.64rem;
  line-height: 0.64rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: #313133;
}
.index-tabBar div ul .app_xiazai {
  position: relative;
}
.index-tabBar div ul .app_xiazai .xiazai svg {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: -0.86rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.index-tabBar div ul .app_xiazai p {
  margin-top: 0;
  transform: translateY(3rem);
}
@media (max-width: 800px) {
  #chatBtn {
    bottom: 22% !important;
  }
}

.goTOP {background: url(/static/common/img/scroll-top.png) no-repeat center #acadb1;background-size: 22px;width: 40px;height: 40px;position: fixed;right: 25px;bottom: 10%;opacity: 0;transition: all 0.3s;z-index: 9999999;border: #ccc 1px solid;border-radius: 100%;}
.goTOP.on { visibility: visible; opacity: 1; }