﻿/*----------------------医生-------------------*/
.title_head_server {
	height: 30px;
	background: url(../../News/images/ZaiXianFuWuYiSheng/bq_tit_bg.jpg) repeat-x left center;
	border: 1px solid #ccc;
	border-bottom: none;
}

.title_head_server h3 {
	background: url(../../News/images/ZaiXianFuWuYiSheng/bq_bg.jpg) no-repeat left top;
	color: #FFFFFF;
	float: left;
	font-size: 14px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	padding-left: 10px;
	width: 200px;
	cursor: pointer;
}

/*----------------------医生汇总页-------------------*/
.doctor_search {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
}

.doctor_search .doctor_search_input {
	flex: 1;
	height: 48px;
	padding: 0 20px;
	padding-right: 70px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.doctor_search .doctor_search_input:focus {
	outline: none;
	border-color: #A40000;
	box-shadow: 0 0 0 3px rgba(164, 0, 0, 0.1);
}

.doctor_search .doctor_search_btn {
	position: absolute;
	right: 0;
	top: 0;
	height: 48px;
	width: 60px;
	background-color: #A40000;
	color: #fff;
	border: none;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.doctor-department-tabs {
	display: flex;
	margin-bottom: 24px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.doctor-department-tab {
	padding: 0 20px;
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	margin-right: 15px;
	font-size: 16px;
	position: relative;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.doctor-department-tab.active {
	color: #A40000;
	font-weight: 600;
}

.doctor-department-tab.active::after {
	content: '';
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #A40000;
	border-radius: 3px 3px 0 0;
}

.doctor-department-list {
	display: none;
	gap: 15px;
	flex-wrap: wrap;

}

.doctor-department-list.active {
	display: flex;
}

.doctor-department-btn {
	padding: 12px 10px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background-color: #fff;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	width: calc(20% - 15px);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.doctor-department-btn.active {
	background-color: #A40000;
	color: #fff;
	border-color: #A40000;
	box-shadow: 0 4px 12px rgba(164, 0, 0, 0.2);
}

.doctor-department-btn:hover:not(.active) {
	border-color: #A40000;
	color: #A40000;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(164, 0, 0, 0.1);
}

.doctor-department-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(164, 0, 0, 0.05), transparent);
	transition: all 0.5s ease;
}

.doctor-department-btn:hover::before {
	left: 100%;
}


.hide-doctors {
	display: none;
}

.doctors-container {
	display: flex;
	/* justify-content: space-around; */
	padding: 20px;
	gap: 20px;
	margin: 0px auto;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.doctor-card {
	border: 1px solid #A40000;
	background-color: #fff;
	padding: 15px 15px 15px 20px;
	width: calc(33.33% - 13.33px);
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.doctor-card:hover {
 background-color: rgba(164, 0, 0, 0.9);
 border-color: #A40000;
 color: #fff;
 background-image: url(/Sites/Uploaded/UserUpLoad/20251212/20251212190138.jpg);
 background-size: cover;
 background-position: center;
 background-blend-mode: soft-light;
 opacity: 0.95;
}
.card-layout {
	display: flex;
}

.avatar-container {
	width: 40%;
	flex-shrink: 0;
	position: relative;
	padding: 5px 0 15px 5px;
}

.avatar-bg {
	position: absolute;
	left: -10px;
	top: 26px;
	width: 100%;
	height: 85%;
	background-color: #A40000;
	z-index: 0;
	border-bottom-left-radius: 3%;
}


.doctor-avatar {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	position: relative;
	z-index: 1;
}

.doctor-card .text-content {
	width: 60%;
	padding-left: 15px;
}

.doctor-card .doctor-name {
	font-size: 20px;
	font-weight: bold;
	color: #A40000;
	margin-bottom: 8px;
}

.doctor-title,
.doctor-department {
	font-size: 14px;
	margin-bottom: 5px;
	color: #333;
}

.doctor-card .divider {
	height: 1px;
	margin: 10px 0;
	background-color: #A40000;
}

.doctor-specialty {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	margin-top: 3px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.doctor-card:hover .doctor-name{
	color:#fff;
}
.doctor-card:hover .doctor-title,.doctor-card:hover .doctor-department,.doctor-card:hover .doctor-specialty{
	color:#fff;
}
/*----------------------医生个人详细页-------------------*/

.doc_index_left {
	width: 300px;
	padding-right: 15px;
	float: left;
}

.doc_index_left .doc_intro {
	padding: 10px;
	border: 1px solid #cccccc;
}

.doc_index_left .doc_intro .doc_intro_part1 img {
	padding: 2px;
	float: left;
	border: 1px solid #2C9638;
}

.doc_index_left .doc_intro .doc_intro_part1 .files {
	float: left;
	padding-left: 10px;
	width: 120px;
}

.doc_index_left .doc_intro .doc_intro_part1 .files li {
	line-height: 26px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666666;
}

.doc_index_left .doc_intro .doc_intro_part1 .files li span {
	color: #2C9638;
}

.doc_index_left .doc_intro .doc_intro_part1 .files li .doc_name {
	font-weight: bold;
}

.doc_index_left .doc_intro p {
	color: #2C9638;
	line-height: 24px;
	margin-top: 10px;
}

.doc_index_left .doc_intro p span {
	color: #666666;
}

.doc_index_left .doc_intro .team_btn {
	background-image: url(../../Doctors/images/szjstd.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 43px;
	width: 206px;
	margin-right: auto;
	margin-left: auto;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	margin-top: 15px;
}

.doc_index_left .btn_group {
	margin-top: 15px;
	background-image: url(../../Common/images/woyaozixun.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 54px;
	width: 262px;
}

.doc_index_left .contact_us {
	margin-top: 15px;
	padding-right: 4px;
	padding-left: 4px;
	border: 1px solid #CCCCCC;
}

.doc_index_right {
	width: 690px;
	float: left;
}

.doc_index_right .doc_index_right1 .block_tit {
	background-image: url(../../Common/images/gerenjianjie.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right1 .block_tit:hover {
	background-image: url(../../Common/images/gerenjianjie_h.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right1 p {
	line-height: 24px;
	color: #2C9638;
	text-indent: 2em;
	padding-top: 10px;
	padding-left: 5px;
}

.doc_index_right .doc_index_right1 .details {
	color: #fa5200;
	float: right;
}

.doc_index_right .doc_index_right2 .block_tit,
.doc_index_right .doc_index_right2 .answer_tit {
	display: block;
	height: 20px;
	width: 120px;
	float: left;
}

.doc_index_right .doc_index_right2 .answer_tit {
	background-image: url(../../Common/images/yjddwt.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right2 .answer_tit:hover {
	background-image: url(../../Common/images/yjddwt_h.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right2 .block_tit {
	background-image: url(../../Common/images/wjddwt.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right2 .block_tit:hover {
	background-image: url(../../Common/images/wjddwt_h.jpg);
	background-repeat: no-repeat;
}

.doc_index_right .doc_index_right2 .btn_group {
	float: right;
	margin-top: 5px;
	line-height: 25px;
	margin-right: 10px;
}

.doc_index_right .doc_index_right2 .btn_group a {
	color: #fa5200;
	margin-left: 10px;
}

.doc_index_right .doc_index_right2 .ques_list {
	margin-top: 10px;
}

.doc_index_right .doc_index_right2 .ques_list li {
	line-height: 28px;
	height: 28px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e0eaf1;
	background-image: url(../../Common/images/quiz_icon.png);
	background-repeat: no-repeat;
	background-position: 15px center;
	padding-left: 35px;
	padding-right: 10px;
}

.doc_index_right .doc_index_right2 .ques_list li .ques_tit {
	float: left;
}

.doc_index_right .doc_index_right2 .doc_quiz li .span_date {
	float: right;
	color: #999999;
}

.doc_index_left .contact_us .contact_us_tit,
.doc_index_left .dep_trends .dep_trends_inside .dep_trends_tit {
	margin-bottom: 10px;
}

.infor_right .infor_right1 .block_tit,
.infor_right .infor_right2 .block_tit,
.infor_right .infor_right3 .block_tit,
.doc_index_left .contact_us .contact_us_tit a,
.doc_index_right .doc_index_right1 .block_tit,
.doc_index_left .dep_trends .dep_trends_inside .dep_trends_tit a,
.doc_index_right .doc_index_right1 .dep_intro_tit,
.doc_index_right .doc_index_right1 .outpatient_tit,
.doc_index_right .doc_index_right1 .dep_pic_tit,
.doc_index_left .dep_trends .dep_trends_inside .expert_team_tit a,
.hos_infor_part1 .hos_regulation .regulation_tit,
.hos_infor_right .blue_box .box .blue_box_tit1,
.hos_infor_right .blue_box .box .blue_box_tit2,
.hos_infor_right .blue_box .box .blue_box_tit3,
.hos_infor_right .blue_box .box .blue_box_tit4,
.survey_part1 .blue_box .cooperat_tit {
	display: block;
	height: 20px;
	width: 80px;
}

.main02_left .special_dep .special_dep_inside .special_dep_tit1,
.main02_left .special_dep .special_dep_inside .special_dep_tit2,
.main02_left .special_dep .special_dep_inside .special_dep_tit3,
.hos_infor_part2 .bidding .bidding_tit,
.doc_index_left .contact_us .contact_us_tit,
.doc_index_left .dep_trends .dep_trends_inside .dep_trends_tit,
.doc_index_left .dep_trends .dep_trends_inside .expert_team_tit,
.hos_infor_part2 .bidding .bidding_inside .stu_manage_tit {
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d2e7f3;
	padding-top: 10px;
	padding-left: 15px;
}

.infor_right .infor_right3 p,
.doc_index_left .contact_us .contact_us_inside p {
	line-height: 24px;
	color: #0d72af;
}

.doc_index_left .contact_us .contact_us_inside p {
	padding-left: 10px;
	color: #2C9638;
}

.doc_index_right .doc_index_right1,
.doc_index_right .doc_index_right2 {
	margin-bottom: 15px;
	padding-right: 4px;
	padding-left: 4px;
	border: 1px solid #CCCCCC;
	zoom: 1;
}

.doctor_ltd_boy .doc_list .scr_cont .slide-content {
	float: left;
}

.doctor_ltd_boy .doc_list {
	height: 180px;
	width: 930px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

.doc_index_right .doc_index_right1 h3 {
	background-color: #80E26A;
	color: #0E7E25;
	font-size: 14px;
	font-weight: bold;
	height: 26px;
	line-height: 26px;
	margin-top: 10px;
	text-align: center;
	width: 95px;
}

.doc_index_right .doc_index_right1 .details {
	color: #CF0000;
	float: right;
	height: 14px;
	line-height: 14px;
	padding-right: 65px;
	margin-bottom: 10px;
}

.doc_index_right .doc_index_right2 .outpationt_time {
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	width: 670px;
	padding-bottom: 10px;
}

.box01 {
	border: 1px solid #A7E89C;
	height: 120px;
}

.box01 td {
	background-color: #FFFFFF;
	border: 1px solid #A7E89C;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}

.table_zi {
	color: #0091F1;
	font-size: 14px;
	font-weight: bold;
}

.box01 .daytime {
	background-color: #D0FAC9;
	color: #2E973A;
	width: 85px;
}

.box01 .weekday {
	background-color: #D0FAC9;
	color: #2E973A;
	width: 80px;
}

.box01 .days_over {
	background-color: #2C9638;
	color: #FFFFFF;
	width: 80px;
}

.box01 a {
	color: #2E973A;
}

.doc_index_right .doc_index_right2 .outpationt_time .clinicDetail_explain {
	color: #EA0E23;
	margin-top: 15px;
	text-align: center;
}

.zssy_wenti .consulting_list_a1 {
	PADDING-RIGHT: 10px;
	padding-top: 3px;
	FLOAT: left;
	WIDTH: 320px
}

.zssy_wenti .span_doc_answer1 {
	PADDING-RIGHT: 10px;
	FLOAT: left;
	OVERFLOW: hidden;
	WIDTH: 60px;
	HEIGHT: 28px
}

.zssy_wenti .question_cont_icn1 {
	FLOAT: left;
	WIDTH: 30px;
	HEIGHT: 28px
}

.zssy_wenti .consulting_date1 {
	FLOAT: right;
	WIDTH: 80px
}

.quiz_list_head {
	line-height: 28px;
	height: 28px;
	color: #2C9638;
}

.quiz_list_head .tit {
	float: left;
	padding-right: 10px;
	text-indent: 30px;
	width: 560px;
}

.quiz_list_head .span_date {
	width: 60px;
	float: right;
	overflow: hidden;
	height: 28px;
	padding-right: 10px;
}
 @media only screen and (max-width:768px) {
   .doctor-department-btn{
   width: 47%;
   }
   .doctors-container{
   gap: 10px;
   padding: 10px;
   }
   .doctor-card{
   width: 48%;
   padding: 10px;
   }
   .card-layout{
   flex-wrap: wrap;
   }
   .avatar-bg{
   display: none;
   }
   .avatar-container{
   width: 100%;
 flex-shrink: 0;
 position: relative;
 padding: 0 0 10px;
   }
   .doctor-card .doctor-name{
   font-size: 16px;
 font-weight: bold;
 color: #A40000;
 margin-bottom: 8px;
 width: 48%;
   }
  .doctor-card .text-content{
   padding: 0;
 display: flex;
 flex-wrap: wrap;
 width: 100%;
 align-items: center;
   }
   .doctor-title{
   font-size: 14px;
 margin-bottom: 8px;
 color: #333;
 /* flex-shrink: 0; */
 width: 52%;
   }
   .doctor-card .divider{
   display: none;
   }
   .doctor-department{
   font-size: 13px;
   }
   .doctor-specialty{
   font-size: 13px;
   text-align: justify;
   }
   .doctor_search{
   margin-bottom: 3vw;
   }
 } 