/* CSS Document */
.locationList .Txt .text, .locationList .Txt .title, .locationList .item, .classTitle {
  transition: all 0.5s ease-in-out;
}

.classTitle {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #1A3A5F;
  border-radius: 25px;
  padding: 5px 23px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.locationList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.locationList .locationItem {
  width: 33.3333333333%;
  position: relative;
  padding: 0px 15px;
  padding-bottom: 30px;
}
@media (max-width: 1180px) {
  .locationList .locationItem {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .locationList .locationItem {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  .locationList .locationItem:hover .item {
    background-color: #0072BF;
  }
  .locationList .locationItem:hover .title {
    color: white;
  }
  .locationList .locationItem:hover .text {
    color: white;
  }
}
.locationList .linkWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.locationList .item {
  border-radius: 20px;
  background-color: transparent;
  padding: 20px;
  background-color: #99d5ee;
}
.locationList .ImgBox {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.locationList .Img {
  position: relative;
  display: block;
}
.locationList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.locationList .Txt {
  position: relative;
}
.locationList .Txt .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 15px;
  color: #4c4c4c;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media (max-width: 1180px) {
  .locationList .Txt .title {
    margin-top: 10px;
  }
}
.locationList .Txt .text {
  height: 112px;
  margin-top: 10px;
  line-height: 28px;
  color: #333333;
  letter-spacing: 0.4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 1180px) {
  .locationList .Txt .text {
    margin-top: 5px;
  }
}
.locationList .Txt .textItem {
  display: flex;
}
.locationList .Txt .textItem .left {
  width: 50px;
  min-width: 50px;
}