.mb40 {
  margin-bottom: 40px;
}
/* 咨询中心 */
.consulting-center .consulting-center-title {
  font-size: 28px;
  color: #000000;
  font-weight: 500;
}
.consulting-center .consulting-center-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 164px;
  height: 4px;
  background: linear-gradient(90deg, #1c65e9 0%, #6c65fd 100%);
  border-radius: 0px 0px 0px 0px;
}
.consulting-center-list {
  flex-wrap: wrap;
}
.consulting-center-list .consulting-center-item {
  width: 310px;
  height: 170px;
  padding: 20px;
  box-sizing: border-box;
  margin-right: 26.5px;
  background: linear-gradient(#ffffff 0%, #f4f8ff 100%);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.06);
  border-radius: 9px 9px 9px 9px;
  border: 1px solid #f3f3f3;
}

.consulting-center-list .consulting-center-item:nth-child(4n + 4) {
  margin-right: 0;
}
.consulting-center-list .consulting-center-item .content .title {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  margin-left: 6px;
}
.consulting-center-list .consulting-center-item:first-child {
  background: url("../img/kefu-backgroud.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(2) {
  background: url("../img/kefu2-backgroud.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(3) {
  background: url("../img/baoming-backgroud.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(4) {
  background: url("../img/daikuan-bacground.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(5) {
  background: url("../img/house-background.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(6) {
  background: url("../img/law-backgroud.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item:nth-child(7) {
  background: url("../img/decoration-backgroud.png") no-repeat center;
  background-size: cover;
}
.consulting-center-list .consulting-center-item .text {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.79);
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 热门问题 */
.hot-questions-content {
  height: 805px;
  background: url("../img/hot-questions-backgroud.png") no-repeat center;
  background-size: cover;
}
.hot-questions-content .hot-questions-title {
  font-weight: 500;
  font-size: 32px;
  color: #000000;
}
.hot-questions-content .hot-questions-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 164px;
  height: 4px;
  background: linear-gradient(90deg, #1c65e9 0%, #6c65fd 100%);
  border-radius: 0px 0px 0px 0px;
}
.hot-questions-search {
  width: 430px;
  float: right;
  margin-bottom: 18px;
}
.hot-questions-search .search-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #dcdcdc;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.4);
  padding-left: 35px;
  padding-right: 40px;
}
.hot-questions-search .search-icon {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 13px;
  left: 10px;
}
.hot-questions-search .search-clear {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 13px;
  right: 10px;
  cursor: pointer;
}
.hot-questions-tabs ul {
  width: 1320px;
}
.hot-questions-tabs ul li {
  width: 50%;
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  background: #e0ebff;
  font-weight: 500;
  font-size: 16px;
  color: #1c60d7;
}
.hot-questions-tabs ul li:hover,
.hot-questions-tabs ul li.active {
  background: linear-gradient(90deg, #1c65e9 0%, #6c65fd 100%);
  color: #ffffff;
}
.hot-questions-list .hot-questions-item {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #f8f8f8;
  padding-left: 55px;
}
.hot-questions-list .hot-questions-item:nth-child(odd) {
  background-color: #f8f8f8; /* 奇数行的颜色 */
}
.hot-questions-list .hot-questions-item:nth-child(even) {
  background-color: #ffffff; /* 偶数行的颜色 */
}
.hot-questions-list .hot-questions-item .title {
  width: 50%;
}
.hot-questions-list .hot-questions-item .title .img img {
  width: 30px;
  margin-right: 13px;
}
.hot-questions-list .hot-questions-item .title .text {
  font-weight: 400;
  font-size: 14px;
  color: #484848;
}
.hot-questions-list .hot-questions-item .title .text:hover {
  cursor: pointer;
  color: #1c60d7;
}

/* 弹窗样式 */
.popup {
  display: none; /* 默认隐藏 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup-content,
.popup-second-content {
  padding: 20px;
  width: 725px;
  height: 720px;
  margin: 5% auto auto;
  background: url("../img/popup-backgroud.png") no-repeat center;
  background-size: 100% 100%;
  padding-top: 155px;
  box-sizing: border-box;
}

.popup-content .close-btn {
  cursor: pointer;
  margin-top: 25px;
}
.popup-content .close-btn img {
  width: 310px;
}
.popup-second-list {
  width: 545px;
  margin: auto;
  height: 365px;
  margin-top: 40px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.14);
  border-radius: 30px;
}
.popup-second-list dl dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 53px;
  background: rgba(127, 197, 254, 0.52);
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.08);
  border-radius: 30px 30px 0px 0px;
  padding-left: 15px;
}
.popup-second-list dl dt .text {
  font-weight: 400;
  font-size: 16px;
  color: #484848;
  margin-left: 5px;
}
.popup-second-list dl dt .img img {
  width: 32px;
}
.popup-second-list dl dd {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 15px;
  margin-top: 15px;
}
.popup-second-list dl dd .img img {
  width: 32px;
}
.popup-second-list dl dd .text {
  font-weight: 400;
  font-size: 16px;
  color: #484848;
  margin-left: 5px;
}
.popup-second-content .close-btn {
  cursor: pointer;
  margin-top: 40px;
  padding-bottom: 20px;
}
.popup-second-content .close-btn img {
  width: 310px;
}

.popup-serch {
  width: 615px;
  margin: 55px auto 35px auto;
}
.popup-serch .search-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #dcdcdc;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  padding-left: 35px;
  padding-right: 40px;
}
.popup-serch .search-icon {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 13px;
  left: 10px;
}
.popup-serch .search-clear {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 13px;
  right: 10px;
  cursor: pointer;
}
.popup-list-box {
  background: rgba(127, 197, 254, 0.52);
  border-radius: 30px;
  box-sizing: border-box;
  padding-top: 65px;
  height: 250px;
}
.popup-list {
  height: 250px;
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.08);
  overflow-y: scroll;

}
.popup-list::-webkit-scrollbar {
  width: 6px;
  height: 16px;
  background-color: #f5f5f5;
}

.popup-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.popup-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.popup-list .popup-item {
  height: 57px;
  line-height: 57px;
  padding: 0 35px 0 68px;
}
/* .popup-list .popup-item:last-child {
  border-radius: 0 0 30px 30px;
} */
.popup-list .popup-item:nth-child(odd) {
  background-color: #f8f8f8; /* 奇数行的颜色 */
}
.popup-list .popup-item:nth-child(even) {
  background-color: #ffffff; /* 偶数行的颜色 */
}
.popup-list .popup-item .number{
  font-weight: bold;
  font-size: 26px;
  color: #FF8204;
}
.popup-list .popup-item .number img {
  width: 15px;
  margin-bottom: 8px;
}
.popup-list .popup-item .content {
  width: 500px;
  font-weight: 400;
  font-size: 16px;
  color: #484848;
  padding-left: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-list .popup-item .content:hover {
  cursor: pointer;
  color: #3569ff;
}
.popup-list .popup-item .arrow img {
  width: 16px;
  cursor: pointer;
}

/* 业务分类简介 */

.business-intro {
  width: 710px;
  margin: auto;
  padding: 47px 0 70px 0;
  box-sizing: border-box;
}
.business-intro-content {
  width: 710px;
  background: url("../img/submitFormProxy/consult-background.png") no-repeat center;
  background-size: 100% 100%;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 45px auto auto;
}
.business-intro-box{
  width: 630px;
  padding: 50px 0 30px 0;
}
.business-intro-box p {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 32px;
}
.business-intro-box .detail-pic img{
  width: 100%;
  margin-bottom: 15px;
}
/* 合作方 */
.no-data-text{
  padding: 40px 0;
  font-size: 18px;
  color: #000000;
}
.business-partner {
  min-height: 805px;
  background: url("../img/hot-questions-backgroud.png") no-repeat center;
  background-size: cover;
  padding-top: 70px;
  box-sizing: border-box;
}
.business-partner-content{
  width: 710px;
  margin: auto;
}
.business-partner-title {
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(90deg, #1c65e9 0%, #6c65fd 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px -5px 15px 0px rgba(53, 157, 194, 0.1);
  border-radius: 6px 6px 0px 0px;
}
.business-partner-list {
  width: 710px;
  margin: auto;
  /* height: 450px; */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px -5px 15px 0px rgba(53, 157, 194, 0.1);
}
.business-partner-list .business-partner-item {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 70px;
  box-sizing: border-box;
}
.business-partner-list .business-partner-item span{
  margin-left: 15px;
}
.business-partner-list .business-partner-item:nth-child(odd) {
  background-color: #ffffff;
}
.business-partner-list .business-partner-item:nth-child(even) {
  background: #f8f8f8;
}
.business-partner-list .business-partner-item .content .pic img {
  width: 50px;
  height: 50px;
}
.business-partner-list .business-partner-item .content .name a {
  padding-left: 50px;
  font-weight: 400;
  font-size: 24px;
  color: #484848;
}
.business-partner-list .business-partner-item .content .name a:hover {
  color: #1c65e9;
}
.business-partner-list .business-partner-item .arrow img {
  width: 11px;
  cursor: pointer;
}

/* 添加一些基本样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 350px;
  text-align: center;
  position: relative;
}
.qrCode-img{
  width: 300px;
  height: 300px;
  margin-top: 20px;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.close img{
  width: 25px;
}

