

.kill-doctor{
	margin-top: 100px;
}
.kill-doctor-name{
	margin-top: 25px;
	width: 65%;
	text-align: center;
}
.kill-desc-icon{
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background-color: #00BCAE;
}
.kill-desc-content{
	padding-top: 50px;
}

#moreData {
	display: none;
}

/* 产品信息样式 */
.product-info {
	margin-top: 10px;
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 4px;
	font-size: 14px;
}

.info-item {
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
}

.info-item:last-child {
	margin-bottom: 0;
}

.info-item .label {
	font-weight: 600;
	color: #333;
	width: 100px;
	flex-shrink: 0;
}

.info-item .value {
	color: #666;
	flex: 1;
	word-break: break-word;
	text-align: left;
}

/* 产品型号单行显示，超出省略 */
.info-item:nth-child(2) .value {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.info-item .label {
		width: 90px;
		font-size: 12px;
	}
	
	.info-item .value {
		font-size: 12px;
	}
}