/* 三种样式互不干扰、互不影响 */
/* 首页样式 */
.main {
  width: 100%;
}

.main .banner {
  width: 100%;
  height: 500px;
}

.main .search_bar {
  width: 100%;
  height: 80px;
  padding: 18px;
  background: #fff;
  box-sizing: border-box;
}

.main .search_bar .search {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

.main .search_bar .search .search_input {
  width: 500px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /* 选择所有 input 元素 */
}
.main .search_bar .search_input .search_input #search_type{
    width: 110px;
    height: 42px;
    -webkit-appearance: none;
  /* 移除默认的下拉箭头 */
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  /* 背景颜色 */
  padding: 10px 20px;
  /* 内边距 */
  font-size: 14px;
  /* 字体大小 */
  color: #666;
  /* 文字颜色 */
  cursor: pointer;
  /* 鼠标悬停时的指针样式 */
  position: relative;
  /* 使伪元素相对于 select 定位 */
  background-image: url('../image/zjlb/back.png');
  /* 背景图片 */
  background-repeat: no-repeat;
  /* 图片不重复 */
  background-position: right 10px center;
  /* 图片位置 */
  background-size: 12px 7px;
  /* 图片大小 */
  border-radius: 10px 0 0 10px;
  border-right: 1px solid #eee;
}
.main .search_bar .search .search_input .search_icon {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 21px;
}

.main .search_bar .search .search_input input {
    padding: 20px;
    height: 42px;
    box-sizing: border-box;
  border: none;
  flex: 1;
  border-radius: 0 10px  10px 0;
}

.main .search_bar .search .search_input input::placeholder {
  color: #ccc;
  /* 设置 placeholder 的颜色 */
}

.main .search_bar .search .btn {
  width: 100px;
  height: 44px;
  background: #00c8cc;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  color: #ffffff;
  margin-left: 12px;
  cursor: pointer;
}

.main .bottom {
  background: #f3f5f7;
  width: 100%;
  padding-bottom: 30px;
}

.main .bottom .content {
  width: 1200px;
  padding-top: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.main .bottom .content .left h2 {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
}

.main .bottom .content .left h2 img {
  width: 5px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 3px;
}

.main .bottom .content .left .zjfc,
.main .bottom .content .left .qyfc {
  width: 850px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}

.main .bottom .content .left .zjfc .swiper,
.main .bottom .content .left .qyfc .swiper {
  width: 800px;
  height: 190px;
}

.main .bottom .content .left .zjfc .swiper .swiper-button-next,
.main .bottom .content .left .qyfc .swiper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -2px);
}

.main .bottom .content .left .zjfc .swiper .swiper-button-next::after,
.main .bottom .content .left .qyfc .swiper .swiper-button-next::after {
  content: none;
}

.main .bottom .content .left .zjfc .swiper .swiper-button-next img,
.main .bottom .content .left .qyfc .swiper .swiper-button-next img {
  z-index: 99;
}

.main .bottom .content .left .zjfc .swiper .swiper-button-prev,
.main .bottom .content .left .qyfc .swiper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -2px);
}

.main .bottom .content .left .zjfc .swiper .swiper-button-prev::after,
.main .bottom .content .left .qyfc .swiper .swiper-button-prev::after {
  content: none;
}

.main .bottom .content .left .zjfc .swiper .swiper-button-prev img,
.main .bottom .content .left .qyfc .swiper .swiper-button-prev img {
  z-index: 99;
}

.main .bottom .content .left .zjfc .swiper-slide,
.main .bottom .content .left .qyfc .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.main .bottom .content .left .zjfc .swiper-slide img,
.main .bottom .content .left .qyfc .swiper-slide img {
  width: 140px;
  height: 190px;
}

.main .bottom .content .left .zjfc .swiper-slide p,
.main .bottom .content .left .qyfc .swiper-slide p {
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 30px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0px 0px 10px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.main .bottom .content .left .zjfc .swiper-slide img,
.main .bottom .content .left .qyfc .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main .bottom .content .left .zjfc .info,
.main .bottom .content .left .qyfc .info {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 30px 0;
  text-indent: 2em;
}

.main .bottom .content .left .zjfc .link_click,
.main .bottom .content .left .qyfc .link_click {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #00c8cc;
  margin-bottom: 5px;
  text-align: right;
}

.main .bottom .content .left .qyfc {
  margin-top: 30px;
}

.main .bottom .content .left .qyfc .mySwiper1 {
  height: 120px;
}

.main .bottom .content .left .qyfc .swiper-wrapper {
  height: 120px;
}

.main .bottom .content .left .qyfc .swiper-slide {
  width: 176px;
  height: 120px;
}

.main .bottom .content .left .qyfc .swiper-slide img {
  width: 176px;
  height: 120px;
}

.main .bottom .content .right {
  width: 315px;
  box-sizing: border-box;
  padding: 25px;
  background: #fff;
  border-radius: 20px;
}

.main .bottom .content .right h2 {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
}

.main .bottom .content .right h2 img {
  width: 5px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 3px;
}

.main .bottom .content .right ul {
  display: flex;
  flex-direction: column;
}

.main .bottom .content .right ul li {
  margin-bottom: 10px;
}

.main .bottom .content .right ul li a img {
  width: 270px;
  height: 164px;
  margin-bottom: 5px;
}

.main .bottom .content .right ul li a p {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  text-align: center;
}











/* 专家列表样式 */
.main {
  width: 100%;
}

.main .bj {
  background-color: #f3f5f7;
  padding-bottom: 30px;
}

.main .bj .hyzj {
  width: 1200px;
  margin: 0 auto;
}

.main .bj .hyzj .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0 25px 0;
  padding-top: 30px;
}

.main .bj .hyzj .top .left {
  display: flex;
  align-items: center;
}

.main .bj .hyzj .top .left img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.main .bj .hyzj .top .left p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.main .bj .hyzj .bottom {
  width: 1200px;
  height: 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-sizing: border-box;
}

.main .bj .hyzj .bottom .swiper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -2px);
}

.main .bj .hyzj .bottom .swiper .swiper-button-next::after {
  content: none;
}

.main .bj .hyzj .bottom .swiper .swiper-button-next img {
  z-index: 99;
}

.main .bj .hyzj .bottom .swiper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -2px);
}

.main .bj .hyzj .bottom .swiper .swiper-button-prev::after {
  content: none;
}

.main .bj .hyzj .bottom .swiper .swiper-button-prev img {
  z-index: 99;
}

.main .bj .hyzj .bottom .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.main .bj .hyzj .bottom .swiper-slide img {
  width: 140px;
  height: 190px;
}

.main .bj .hyzj .bottom .swiper-slide p {
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 30px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0px 0px 10px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

/*.main .bj .hyzj .bottom .swiper-slide img {*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

.main .bj .zjzy {
  width: 1200px;
  margin: 0 auto;
}

.main .bj .zjzy .top {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 14px 0;
}

.main .bj .zjzy .top .left {
  display: flex;
  align-items: center;
}

.main .bj .zjzy .top .left img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.main .bj .zjzy .top .left p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.main .bj .zjzy .top .right {
  display: flex;
  align-items: center;
}

.main .bj .zjzy .top .right .search_input {
  width: 400px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  /* 自定义 select 样式 */
  /* 选择所有 input 元素 */
}

.main .bj .zjzy .top .right .search_input select {
  -webkit-appearance: none;
  /* 移除默认的下拉箭头 */
  -moz-appearance: none;
  appearance: none;
  background: #f5f5f5;
  /* 背景颜色 */
  padding: 10px 20px;
  /* 内边距 */
  font-size: 14px;
  /* 字体大小 */
  color: #666;
  /* 文字颜色 */
  cursor: pointer;
  /* 鼠标悬停时的指针样式 */
  position: relative;
  /* 使伪元素相对于 select 定位 */
  background-image: url('../image/zjlb/back.png');
  /* 背景图片 */
  background-repeat: no-repeat;
  /* 图片不重复 */
  background-position: right 10px center;
  /* 图片位置 */
  background-size: 12px 7px;
  /* 图片大小 */
}

.main .bj .zjzy .top .right .search_input select {
  width: 120px;
  height: 40px;
  border: none;
  border-right: 1px solid #ddd;
}

.main .bj .zjzy .top .right .search_input input {
  flex: 1;
  height: 44px;
  border: none;
  padding: 0;
  padding-left: 20px;
  box-sizing: border-box;
}

.main .bj .zjzy .top .right .search_input input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  /* 设置 placeholder 的颜色 */
}

.main .bj .zjzy .top .right .btn {
  width: 100px;
  height: 40px;
  background: #00c8cc;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  color: #ffffff;
  margin-left: 12px;
  cursor: pointer;
}

.main .bj .zjzy .bottom {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}

.main .bj .zjzy .bottom li {
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

.main .bj .zjzy .bottom li:last-child {
  border: none;
}

.main .bj .zjzy .bottom li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .bj .zjzy .bottom li a .left {
  width: 120px;
  height: 162px;
}

.main .bj .zjzy .bottom li a .right {
  flex: 1;
  margin-left: 20px;
}

.main .bj .zjzy .bottom li a .right h1 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.main .bj .zjzy .bottom li a .right p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 28px;
  display: -webkit-box;
  /* 使用弹性盒子模型 */
  -webkit-line-clamp: 3;
  /* 控制显示的行数 */
  -webkit-box-orient: vertical;
  /* 设置子元素垂直堆叠 */
  overflow: hidden;
  /* 隐藏溢出的内容 */
}












/* 专家详情样式 */
.main {
  width: 100%;
}

.main .zjxq {
  background: #f3f5f7;
  padding: 30px 0;
}

.main .zjxq .detail {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
}

.main .zjxq .detail .top {
  display: flex;
  align-items: center;
  padding-bottom: 23px;
  border-bottom: 1px solid #eeeeee;
}

.main .zjxq .detail .top .left {
  width: 22px;
  height: 20px;
  margin-right: 10px;
}

.main .zjxq .detail .top p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.main .zjxq .detail .info {
  display: flex;
  margin: 30px 0;
}

.main .zjxq .detail .info .left_img {
  width: 165px;
  height: 224px;
  margin-right: 20px;
}

.main .zjxq .detail .info .content {
  flex: 1;
}

.main .zjxq .detail .info .content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}

.main .zjxq .detail .info .content .btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  color: #ff7800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 32px;
  border: 1px solid #ff7800;
  border-radius: 17px;
}

.main .zjxq .detail .info .content .btn a img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.main .zjxq .detail .info .content p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0.28px;
  margin-top: 30px;
}

.main .zjxq .detail .tabs {
  display: flex;
  margin-bottom: 30px;
  height: 50px;
  background: #f3f5f7;
  border-radius: 10px;
}

.main .zjxq .detail .tabs .tab {
  display: flex;
  width: 383px;
  height: 50px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.main .zjxq .detail .tabs .tab img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

.main .zjxq .detail .tabs .tab p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}

.main .zjxq .detail .tabs .active {
  background: linear-gradient(#0c9ad6 0%, #51bcbc 100%);
  border-radius: 10px;
}

.main .zjxq .detail .tabs .active p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.main .zjxq .detail .rich_text {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 36px;
  text-align: center;
}

.main .zjxq .detail .rich_text img {
  width: 798px;
  height: 532px;
  margin: 15px 0;
}

.main .zjxq .detail .rich_text p {
  text-align: left;
  text-indent: 2em;
}