.common-pad-top{
  padding: 80px 0;
}
/* 公共标题样式 */
.common-title {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
.common-title  p{
  font-size: 14px;
  color: #555;
  margin: 15px 0;
}
/* 医院简介 */
.hospital-intr{
  width: 100%;
  height: 600px;
  background: url(../images/hospital-introduction-bg.jpg) no-repeat center;
}
.hospital-intr-content p {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  text-indent: 2em;
  padding: 0 30px;
}
/* 诊疗项目 */
.treatment-items {
  background: #f8f8f8;
}
.treatment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.treatment-item {
  position: relative;
  width: calc((100% - 40px) / 3);
  height: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.treatment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.treatment-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
}
.treatment-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.treatment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.treatment-item span {
  font-size: 16px;
  font-weight: 500;
}
.treatment-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(186, 4, 12, 0.95);
  padding: 15px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.treatment-item:hover .treatment-hover {
  transform: translateY(0);
}
.treatment-hover p {
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .treatment-item {
    width: calc((100% - 20px) / 2);
    height: 150px;
  }
  .treatment-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
  .treatment-item span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .treatment-item {
    width: 100%;
    height: 130px;
  }
}
/* 医院环境 */
.hospital-env-swiper {
  width: 100%;
}
.hospital-env-swiper .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}
.hospital-env-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hospital-env-swiper .swiper-slide:hover img {
  transform: scale(1.08);
}
.hospital-env-swiper .swiper-slide p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
/* 专家团队 */
.expert-team {
  height: 100%;
  background-color: #f1f1f1;
}
.expert-team-swiper .swiper {
  width: 100%;
  height: 100%;
}
.expert-team-swiper .swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  height: 518px;
}
.expert-team-swiper .swiper-slide img {
  display: block;
  width: 578px;
  height: 518px;
  object-fit: cover;
}
.expert-team-swiper .swiper-button-next:after,
.expert-team-swiper .swiper-button-prev:after {
  font-size: 60px;
  color: #263B74;
}
.expert-info {
  display: flex;
  flex-direction: column;
  width: 600px;
}
.honor{
  margin-top: 25px;
}
.honor h3, .int h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.honor h3 i, .int h3 i {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  vertical-align: middle;
}
.honor h3 i {
  background: url(../images/honor.png) no-repeat center;
}
.int h3 i {
  background: url(../images/int.png) no-repeat center;
}
.honor p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom:6px;
}
.expert-team-swiper .int {
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}
.int p {
  text-indent: 2em;
}
/* 最新医院动态 */
.dynamic-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
.dynamic-img{
  width: 590px;
  height: 320px;
}
.dynamic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dynamic-list {
  width: 592px;
  height: 320px;
  padding: 20px 40px;
  background: #f5f5f5;
}
.dynamic-list li {
  padding: 26px 0 20px;
  border-bottom: dashed 1px #c7c7c7;
}
.dynamic-list li h5 {
  font-size: 16px;
  margin-bottom: 14px;
}
.dynamic-list li p {
  color: #999;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 表单 */
.contact-form .type-area {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
.contact-form-content {
  flex: 1;
  min-width: 400px;
  max-width: 560px;
  padding-top: 45px;
}
.form-item {
  display: flex;
  align-items: center;
  padding: 18px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  background: #fff;
}
.form-item span:first-child {
  color: #f59606;
  font-weight: bold;
  margin-right: 8px;
}
.form-item span:nth-child(2) {
  font-size: 14px;
  color: #333;
  margin-right: 15px;
  white-space: nowrap;
}
.form-item input,
.form-item textarea {
  flex: 1;
  font-size: 14px;
  color: #333;
  background: transparent;
}
.form-item input::placeholder,
.form-item textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.form-item textarea {
  resize: none;
  min-height: 60px;
  line-height: 1.5;
  padding-top: 2px;
}
.form-item:nth-child(3) {
  align-items: flex-start;
}
.form-item:last-child {
  border: none;
  padding: 0;
  margin-top: 5px;
}
.form-item:last-child input[type="button"] {
  width: 100%;
  height: 48px;
  background: #263B74;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.contact-image {
  width: 420px;
  margin-right: 20px;
  flex-shrink: 0;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

