@charset "UTF-8";
/* CSS Document */
/*內頁*/
@media (max-width: 767px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
}

/*列表頁*/
.travelList {
  margin: 0 -10px;
}
.travelList .travelItem {
  padding: 0 10px;
  margin-bottom: 40px;
}
.travelList .Img {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.travelList .Img:hover img {
  opacity: 0.4;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.travelList .Img:hover a::before {
  opacity: 1;
  top: -20px;
}
.travelList .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.travelList .Txt {
  padding: 10px;
  background-color: #fff;
}
.travelList .Txt .title a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.travelList .Txt .title a:hover {
  text-decoration: underline;
}
.travelList .Txt .text {
  height: 45px;
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #ababab;
}
.travelList .Txt .distance {
  /*距離計算*/
  margin-top: 10px;
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #000;
}

.insIntroBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .insIntroBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.insIntroBox .albumBox {
  width: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .insIntroBox .albumBox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.insIntroBox .albumBox .albumList .albumItem {
  cursor: pointer;
}
.insIntroBox .albumBox .albumList .albumItem img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.insIntroBox .albumBox .albumListNav {
  margin: 15px -5px 0;
}
.insIntroBox .albumBox .albumListNav .albumItem {
  padding: 0 5px;
}
.insIntroBox .introBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .insIntroBox .introBox {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.insIntroBox .introBox .articleTitle {
  margin-bottom: 15px;
  padding: 0 0 15px 0;
}
.insIntroBox .introBox .code {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
.insIntroBox .introBox .Txt {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 13px;
  color: #6c6c6c;
}
.insIntroBox .introBox .btn {
  padding-top: 30px;
}
.insIntroBox .introBox .btn a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 15px;
  color: #fff;
}

.mapBox {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  padding-bottom: 40%;
  position: relative;
}
.mapBox .map {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .mapBox {
    padding-bottom: 56.25%;
  }
}

.scheduleBox {
  margin-bottom: 30px;
}
.scheduleBox .scheduleItem {
  cursor: pointer;
  padding: 10px 0 10px 50px;
  position: relative;
}
.scheduleBox .scheduleItem::before {
  content: "";
  width: 31px;
  height: 40px;
  background: url("../travel/images/mapMarker.png") center/contain no-repeat;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 1;
}
.scheduleBox .scheduleItem.current {
  color: #b27f56;
}
.scheduleBox .scheduleItem .Txt .title {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scheduleBox .scheduleItem .Txt .text {
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.8;
  padding-top: 10px;
}