.button {
  font-size: 16px;
}

h1 {
  color: #19c7d5;
  font-size: 38px;
  text-align: center;
}
strong {
  font-size: 38px;
  font-weight: normal;
  color: #333333;
}
h4 {
  font-size: 20px;
  font-weight: normal;
  color: #3ab3c0;
  margin: 15px 0;
}
h5 {
  color: #49beca;
  font-size: 38px;
  font-weight: normal;
}
h6 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
}

.banner {
  height: 700px;
  padding-top: 100px;
  box-sizing: border-box;
  position: relative;
}
.banner > span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #3ab3c0;
  margin: 15px 0;
}
.banner img {
  position: absolute;
  left: 39%;
  top: 0;
  z-index: -1;
}
.banner-text {
  width: 400px;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
  margin: 30px 0 50px;
}
.banner .button {
  padding: 16px 45px;
}
.banner-boxs {
  margin-top: 55px;
  width: 695px;
  height: 122px;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.banner-br {
  height: 50px;
  width: 1px;
  background-color: #d1d1d1;
}
.banner-boxs .number {
  color: #49beca;
  font-size: 38px;
  font-weight: normal;
}
.number + div {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
}

.case {
  margin-top: 200px;
}
.case-boxs {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.case-item {
  width: 380px;
  height: 520px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.case-item:hover img {
  transform: scale(105%);
}
.case-item img {
  transition: all .2s;
  margin: -6px 0 0 -8px;
}
.case-item-img {
  width: 380px;
  height: 345px;
  overflow: hidden;
  background: url(../img/case-hospital2.png) no-repeat top;
  background-size: 105%;
  transition: all .2s;
}
.case-item:hover .case-item-img {
  background-size: 120%;
  height: 395px;
}
.case-item:hover .case-item-text {
  bottom: -50px;
}
.case-item-text {
  height: 170px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px;
  box-sizing: border-box;
  transition: all .2s;
}
.case-item-text h2 {
  font-size: 24px;
  margin: 20px 0;
  color: #333333;
}
.case-item-text p { 
  font-weight: normal;
  font-size: 18px;
  color: #999999;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-item-text span {
  display: inline-block;
  color: #0abac9;
  font-size: 20px;
  margin-top: 20px;
}
.case-item-text span::after {
  content: '';
  width: 20px;
  height: 23px;
  background-image: url(../img/right.svg);
  background-size: 20px 20px;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager a {
  min-width: 15px;
  padding: 0 10px;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #d1d1d1;
  margin: 0 5px;
  transition: all .2s;
}
.pager .active,
.pager a:hover {
  background-color: #0abac9;
  color: #ffffff;
  border: 1px solid #0abac9;
}

.remarks {
  margin-top: 180px;
}
.remarks h2 {
  color: #19c7d5;
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
}
.remarks-form form {
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-flow: wrap;
}
.remarks-form input {
  width: 100%;
  height: 70px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  outline: none;
  margin-top: 50px;
  font-size: 22px;
  padding: 10px 20px;
  box-sizing: border-box;
}
.remarks-form span.wpcf7-form-control-wrap{
  width: 30%;
}
.remarks-form span[data-name="your-message"]{
  width: 100%;
}
.remarks-form textarea {
  margin-top: 50px;
  width: 100%;
  height: 400px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  outline: none;
  font-size: 24px;
  font-family: inherit;
  color: #cccccc;
  padding: 20px;
  box-sizing: border-box;
}
.remarks-form input[type="submit"] {
  outline: none;
  border: none;
  width: unset;
  padding: 12px 60px;
  color: white;
  cursor: pointer;
  background-color: #0abac9;
  border-radius: 10px;
  margin-top: 50px;
  font-size: 18px;
}
.remarks-form button:hover {
  cursor: pointer;
}