.outpatient-header {
  min-width: 1200px;
  width: 100%;
  background-size: cover;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.outpatient-header .header-title {
  width: 1200px;
  margin: 0 auto;
}

.header-title .title {
  font-size: 40px;
  font-weight: 600;
  color: #004ea2;
}

.header-title .line {
  width: 48px;
  height: 4px;
  background: #004ea2;
  margin-top: 16px;
}

.header-title .english {
  font-size: 16px;
  font-weight: 400;
  color: #004ea2;
  margin-top: 16px;
}

.outpatient-list-wrapper {
  background-color: #f0f5f6;
  padding: 48px 0 80px;
}

.outpatient-list {
  width: 1200px;
  margin: 0 auto;
}

.outpatient-list .list-item {
  height: 264px;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.outpatient-list .list-item .left {
  width: 384px;
  height: 216px;
  margin-right: 48px;
}

.outpatient-list .list-item .middle {
  flex: 1;
}

.list-item .middle .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.list-item .middle .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  width: 600px;
}

.list-item .middle .info-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.list-item .middle .info-item span {
  display: inline-block;
  font-size: 20px;
  color: #999999;
  display: inline-block;
  width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item .middle .more-btn {
  display: inline-block;
  width: 96px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #00aac4;
  border-radius: 16px;
  margin-top: 16px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.list-item .right {}

.list-item .right img {
  width: 80px;
  height: 80px;
}

.list-item .right div {
  font-size: 16px;
  color: #999999;
  margin-top: 16px;
}