﻿@charset "utf-8";


/* 外层容器 */
.middle {width:100%;height:auto;padding-bottom:10px;overflow:hidden;}

/* 主体内容 */
.mid-main{
	padding:80px 0 50px;
	overflow:hidden;
}
.mid-title {
	font-size:36px;
	font-weight:bold;
	color:#000;
	text-align:center;
	display:flex;
	align-items:center;
	justify-content:center;
}
.mid-title img {
	width:40px;
	height:40px;
	object-fit:contain;
	flex-shrink:0;
	margin-right:12px;
}

.content-img{
	display:block;
	position:relative;
	text-align:center;
	max-width:700px;
	max-height:370px;
	border-radius:20px;
	border:1px solid #707070;
	margin:0 auto 50px auto;
}
#Content{
	font-size:16px;
	color:#1E3A5F;
	line-height:28px;
	margin-left:auto;
	margin-right:auto;
	padding-top:40px;
}
#Content p{
	margin-bottom:20px;
	text-indent:0em;
}
#Content img{max-width:500px;height:auto;}

/* ==============响应式============== */
@media screen and (max-width:1000px) {
	.mid-main{padding:50px 0 20px;}
	.mid-title{font-size:22px;line-height:31px;margin-bottom:24px;}
	.mid-title img{width:25px;height:25px;}
	#Content{padding-top:0;font-size:14px;}
	#Content p{margin-bottom:10px;}
	#Content img{max-width:unset;width:100%;}
}

/* 主体内容 */
.mid-main {
    padding: 80px 0 40px;
    overflow: hidden;
}
.mid-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mid-title img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 12px;
}

/* 诊疗项目网格 */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.project-item {
    width: 25%;
    padding: 0 17px;
    margin-bottom: 40px;
    box-sizing: border-box;
}
.project-img-wrap {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.project-item:hover .project-img-wrap {
    box-shadow: 0 4px 12px rgba(58, 168, 217, 0.15);
}
.project-item:hover .project-img-wrap img {
    transform: scale(1.05);
}
.project-name {
    font-size: 18px;
    color: #1E3A5F;
    text-align: center;
    line-height: 1.4;
}


@media screen and (max-width: 1000px) {

    .mid-main { padding: 50px 0 20px; }
    .mid-title {
        font-size: 22px;
        line-height: 31px;
        margin-bottom: 24px;
    }
    .mid-title img {
        width: 25px;
        height: 25px;
    }
    .project-item {
        width: 50%;
        padding: 0 10px;
        margin-bottom: 25px;
    }
}