/******************
**公用的一些样式放在这里
*******************/
@font-face {
  /*该字体一般用于数字中*/
  font-family: 'HelveticaNeue';
  src: url('../HelveticaNeueLTPro-Th.otf');
}
/***背景颜色**/
.bgWhite {
  /*白色背景*/
  background-color: #FFF!important;
}
.bgGray {
  /*统一的灰色的背景*/
  background-color: #F3F3F3!important;
}
/***边框****/
.borderCCC {
  border: 1px solid #CCC;
}
.borderRedBottom {
  border-bottom: 1px solid red;
}
.borderBlue {
  border: 2px solid #BDD1E6;
}
.fontRed {
  color: #F00;
}
.fontBlue {
  color: #00ABE1;
}
.f16 {
  font-size: 16px;
}
.f14 {
  font-size: 14px;
}
.f12 {
  font-size: 12px;
}
/* 边距 */
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-50 {
  margin-left: 50px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-50 {
  margin-right: 50px;
}
/**文字截断**/
.text-break {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}
/**文字截断出省略号**/
.text-break-ell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
}
/* iscroll自定义滚动条样式 */
.iScrollHorizontalScrollbar {
  position: absolute;
  z-index: 9999;
  height: 16px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  overflow: hidden;
}
.iScrollHorizontalScrollbar.iScrollBothScrollbars {
  right: 18px;
}
.iScrollVerticalScrollbar {
  position: absolute;
  z-index: 9999;
  width: 4px;
  bottom: 2px;
  top: 2px;
  right: 2px;
  overflow: hidden;
}
.iScrollVerticalScrollbar.iScrollBothScrollbars {
  bottom: 18px;
}
.iScrollIndicator {
  position: absolute;
  background: #E0E0E0;
  width: 4px;
  border-radius: 2px;
}
.iScrollHorizontalScrollbar .iScrollIndicator, .iScrollVerticalScrollbar .iScrollIndicator {
  height: 100%;
  background: #E0E0E0;
}
/* 自定义通用弹出层 */
.qhee-popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
}
.qhee-popup-in, .qhee-popup-out {
  display: block;
  overflow: auto;
}
.qhee-popup-container {
  width: auto;
  max-width: 650px;
  box-sizing: border-box;
  position: relative;
  margin: 200px auto 0;
  padding: 30px;
  animation: popup-in .3s;
  border-radius: 6px;
  background-color: #FFF;
}
.qhee-popup-container .close {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: url('../../image/business-plan/icon-close.svg') no-repeat center center;
}
.qhee-popup-container .title {
  text-align: center;
  letter-spacing: .3px;
  color: #3C3E4F;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
}
.qhee-popup-container .desc {
  text-align: center;
  color: #3C3E4F;
  font-size: 16px;
  line-height: 30px;
}
.qhee-btn-group {
  text-align: center;
}
.qhee-btn-group .btn {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}
/* 业务线选择弹窗样式 */
.business-line-popup {
  z-index: 10000;
}
.business-line-popup .qhee-popup-container {
  max-width: 600px;
  padding: 40px 30px;
  margin-top: 100px !important; /* 往上移动，避免底部看不见 */
}
.business-line-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.business-line-item {
  width: 48%;
  margin-bottom: 20px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  box-sizing: border-box;
}
.business-line-item:hover {
  border-color: #00ABE1;
  background-color: #f6fdfd;
}
.business-line-item.active {
  border-color: #00ABE1;
  background-color: #f6fdfd;
}
.business-line-item .line-name {
  font-size: 18px;
  font-weight: bold;
  color: #3C3E4F;
  margin-bottom: 10px;
}
.business-line-item .line-desc {
  font-size: 14px;
  color: #666;
}
.business-line-item.online-consult {
  width: 100%;
  margin-top: 10px;
}
/* 微信二维码展示弹窗 */
.wechat-qrcode-popup {
  z-index: 10001;
}
.wechat-qrcode-popup .qhee-popup-container {
  max-width: 400px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 120px !important; /* 往上移动，避免底部看不见 */
}
.wechat-qrcode-popup .qrcode-title {
  font-size: 20px;
  font-weight: bold;
  color: #3C3E4F;
  margin-bottom: 20px;
}
.wechat-qrcode-popup .qrcode-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}
.wechat-qrcode-popup .qrcode-image img {
  width: 100%;
  height: auto;
  display: block;
}
.wechat-qrcode-popup .qrcode-tips {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
/* 自定义在线咨询挂件 */
.qhee-custom-consult-btn {
  position: fixed;
  right: 20px;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ABE1 0%, #0398c7 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 171, 225, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.qhee-custom-consult-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 171, 225, 0.4);
}
.qhee-custom-consult-btn .consult-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.qhee-custom-consult-btn .consult-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #00ABE1;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.qhee-custom-consult-btn .consult-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00ABE1;
  border-radius: 50%;
  bottom: -2px;
  right: -2px;
}
.qhee-custom-consult-btn .consult-text {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #3C3E4F;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.qhee-custom-consult-btn:hover .consult-text {
  opacity: 1;
}
/* 当页面滚动到底部时，调整按钮位置 */
.qhee-custom-consult-btn.absolute {
  position: absolute !important;
  bottom: 435px;
  right: 20px;
  top: auto;
  transform: translateY(0) !important;
}
.qhee-custom-consult-btn.absolute:hover {
  transform: scale(1.1) !important;
}
.qhee-custom-consult-btn.fixed {
  position: fixed !important;
}
@keyframes popup-in {
  0% {
    transform: scale(.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popup-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(.2);
    opacity: 0;
  }
}
.qhee-box-loading {
  position: relative;
}
.qhee-box-loading::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../../image/share/loading.gif') no-repeat center center, rgba(255, 255, 255, .5);
  background-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(5px);
  z-index: 1;
}
/* 通用顶部banner */
.qhee-subject-top {
  width: 100%;
  height: auto;
  min-height: 400px;
}
.qhee-subject-top .qhee-subject-banner {
  width: 100%;
  max-width: 1920px;
}
.qhee-subject-top .qhee-subject-banner .title {
  font-size: 50px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 600;
}
.qhee-subject-top .qhee-subject-banner .describe {
  width: 80%;
  max-width: 1000px;
  opacity: .7;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 36px;
  font-weight: 400;
}
.qhee-subject-top .qhee-subject-banner .button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.qhee-module-title {
  text-align: center;
  position: relative;
  font-size: 24px !important;
  font-weight: normal !important;
  border: none !important;
}
.qhee-module-title::before, .qhee-module-title::after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  background: url(/node/public/image/index/title.png) no-repeat 0 0;
}
.qhee-module-title::before {
  background-position: 0 3px;
  margin-right: 50px;
}
.qhee-module-title::after {
  background-position: -63px 3px;
  margin-left: 50px;
}