/* CSS Document */
.facList .Img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.facList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.facList .facItem {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 1181px) {
  .facList .facItem:nth-child(odd) .Img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .facList .facItem:nth-child(odd) .Txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1180px) {
  .facList .facItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .facList .facItem {
    width: 100%;
  }
}
.facList .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 10px;
}
@media (max-width: 1180px) {
  .facList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1201px) {
  .facList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .facList .item:hover .Txt .title a {
    color: #f1c713;
  }
}
.facList .Img {
  width: 50%;
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 1180px) {
  .facList .Img {
    width: 100%;
  }
}
.facList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.facList .Txt {
  width: 50%;
  padding: 50px 20px;
}
@media (max-width: 1180px) {
  .facList .Txt {
    width: 100%;
    padding: 20px 0;
  }
}
.facList .Txt .title {
  margin-bottom: 15px;
}
.facList .Txt .title a {
  display: block;
  font-size: 20px;
  color: #474747;
}
.facList .Txt .text {
  color: #474747;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 2px;
  height: 200px;
}