/* reset element normal style */
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

ul {
  list-style: none;
}

img {
  vertical-align: middle;
  border: none;
}

a {
  text-decoration: none;
  color: #333;
}

/* custom style */

.raletive {
  position: relative;
}

.absolute {
  position: absolute;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

/* transition time */
.tran-all-05 {
  transition: all .5s ease-in-out;
}

/*page content width*/
.public-page-wdith-1500 {
  width: 1500px;
  margin: 0 auto;
}

/* float left */
.float-left {
  float: left;
}

/* float rigth */
.float-right {
  float: right;
}

/* shadow */
.box-shadow,
.nav-wrap:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 7px 10px 0 rgba(0, 0, 0, 0.12);
  background: #3eaabf;
}

/* page style */

/* header */
header {
  position: relative;
}

.nav-wrap {
  position: fixed;
  width: 100%;
  transition: all .5s;
  z-index: 999;
}

.nav-content {
  text-align: center;
}

.nav-content ul {
  display: inline-block;
  vertical-align: top;
}

.nav-content ul li {
  float: left;
  padding: 0 16px;
}

.nav-content ul li a {
  display: block;
  color: rgba(255, 255, 255, .7);
  line-height: 60px;
}

.active,
.nav-content ul li a:hover {
  color: rgb(255, 255, 255) !important;
}

.nav-content ul .slider,
.nav-content ul li:nth-child(1):hover ~ .slider {
  position: absolute;
  bottom: 12px;
  left: 17px;
  width: 46px;
  height: 3px;
  background: #fff;
}

.nav-content ul li:nth-child(2):hover ~ .slider {
  left: 95px;
  width: 131px;
}

.nav-content ul li:nth-child(3):hover ~ .slider {
  left: 258px;
  width: 47px;
}

.nav-content ul li:nth-child(4):hover ~ .slider {
  left: 337px;
  width: 57px;
}

.nav-content ul li:nth-child(5):hover ~ .slider {
  left: 425px;
  width: 128px;
}

/* guide */
.guide {
  position: relative;
  top: 0;
  left: 0;
}


.guide-link {
  width: 100%;
  height: 100%;
}

.guide-link .line {
  border: 16px solid #3eaabf;
  position: absolute;
  transition: all 0.5s;
  z-index: 2;
  width: 24%;
  height: 9%;
  border: none;
}

.guide-link .line-left-top {
  border-top: 16px solid #3eaabf;
  border-left: 16px solid #3eaabf;
  top: -100%;
  left: -100%;
}

.guide-link .line-right-top {
  border-top: 16px solid #3eaabf;
  border-right: 16px solid #3eaabf;
  top: -100%;
  right: -100%;
}

.guide-link .line-left-bottom {
  border-left: 16px solid #3eaabf;
  border-bottom: 16px solid #3eaabf;
  left: -100%;
  bottom: -100%;
}

.guide-link .line-right-bottom {
  border-right: 16px solid #3eaabf;
  border-bottom: 16px solid #3eaabf;
  right: -100%;
  bottom: -100%;
}

.guide-link > a {
  width: 690px;
  text-align: center;
  display: block;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 36px 50px;
  transform: translate(-50%, -50%);
  z-index: 998;
}


.guide-link > a:hover {
  color: #3eaabf;
}

.guide-link > a:hover ~ .line-left-top {
  top: 40%;
  left: 26%;
}

.guide-link > a:hover ~ .line-right-top {
  top: 40%;
  right: 26%;
}

.guide-link > a:hover ~ .line-left-bottom {
  bottom: 40%;
  left: 26%;
}

.guide-link a:hover ~ .line-right-bottom {
  bottom: 40%;
  right: 26%;
}

/* introduce */
.sign {
  padding-top: 60px;
}

.intr-wrap > h3 {
  font: normal 3em/1em "";
  text-align: center;
  margin-bottom: 60px;
}

.intr-wrap .itmes {
  margin-bottom: 50px;
}

.intr-wrap .itmes .img-wrap {
  width: 38%;
  height: 343px;
  background: #3EAABF;
}

.intr-wrap .itmes .img-wrap figcaption {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  z-index: 20;
}

.intr-wrap .itmes .img-wrap figcaption > h4 {
  font: normal 2em/2em "";
  color: #fff;
  margin-top: 40px;
}

.intr-wrap .itmes .img-wrap figcaption > p {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin: 0 20px;
  opacity: 0;
}

.intr-wrap .itmes .img-wrap figcaption::before {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.2);
  content: '';
  opacity: 0;
  transition: all .5s ease;
}

.intr-wrap .itmes .img-wrap img {
  width: 100%;
  height: 100%;
  transform: scale(.6);
}

.intr-wrap .itmes .img-wrap figcaption:hover {
  background-color: rgba(58, 52, 42, .4);
}

.intr-wrap .itmes .img-wrap figcaption:hover ~ img {
  transform: scale(1);
}

.intr-wrap .itmes .img-wrap figcaption:hover::before,
.intr-wrap .itmes .img-wrap figcaption:hover p {
  opacity: 1;
}

.intr-wrap .itmes .info-wrap {
  width: 53.3%;
  padding: 4em;
  background: #F3F1F1;
  border: 1px solid #E6E3E3;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.intr-wrap .itmes .info-wrap > h3 {
  font: normal 2em/1em "";
}

.intr-wrap .itmes .info-wrap > p {
  line-height: 2em;
  margin: 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.intr-wrap .itmes .info-wrap a {
  display: inline-block;
  font-size: 1.5em;
  color: #3EAABF;
  padding: 0.2em 1em;
  text-align: center;
  border: 2px solid #3EAABF;
  z-index: 1;
}

.intr-wrap .itmes .info-wrap a:hover {
  background: #3EAABF;
  color: #fff;
}


.video .content .wrap {
  padding-top: 150px;
  width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.video .content .wrap > h3 {
  font-size: 3em;
}

.video .content .wrap > p {
  line-height: 2em;
  margin: 30px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.video .content .wrap > .paly {
  display: inline-block;
}

.video .content .wrap > .paly > i {
  color: #FFFFFF;
}

/* footer */
.footer {
  margin-top: 50px;
  background: #1387A0;
}

.footer .content p {
  text-align: center;
  color: #fff;
  line-height: 4em;
}

/* about */
.about-guide-wrap {
  height: 780px;
  background-size: cover;
}

.guide .guide-wrap .guide-link .about-guide::after {

}

.sub-nav {
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.sub-nav ul {
  display: inline-block;
}

.sub-nav ul li {
  display: inline-block;
  margin: 0 20px;
  line-height: 80px;
  vertical-align: top;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.sub-nav ul li:first-child,
.sub-nav ul li:hover {
  color: #3EAABF;
}

.text-wrapper {
  width: 1000px;
  padding-top: 50px;
  margin: 0 auto;
  text-align: center;
}

.text-wrapper > h3 {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 3em;
  color: #bbb;
  font-weight: normal;
  border-bottom: 3px solid #dc221a;
}

.text-wrapper > p {
  margin-bottom: 10px;
  text-align: left;
  color: #898989;
  line-height: 1.5em;
}

.text-wrapper > p img {
  display: block;
  width: 80%;
  height: 400px;
  margin: 2em auto;
}

/* Sights */
.guide-sights .guide-wrap {
  height: 500px;
  margin-bottom: 50px;
  background-size: cover;
}

.sights .sights-wrapper {
  margin: 0 auto;
  width: 1000px;
}

.itmes .title-wrapper > h3 {
  font-size: 1.3em;
  padding-left: 30px;
  border-left: 10px solid #2d8359;
}

.itmes .info-wrapper {
  padding-top: 30px;
}

.itmes .info-wrapper .rows {
  margin-bottom: 20px;
}

.itmes .info-wrapper .rows img {
  width: 400px;
  margin: 0 20px;
  height: 276px;
}

.itme1 .info-wrapper .rows p {
  width: 500px;
  color: #5a5a5a;
  line-height: 1.8em;
  margin-top: 40px;
  text-indent: 2em;
}

.itme2 {
  padding-top: 50px;
}

.itme2 .title-wrapper > h3 {
  border-left-color: #b36e1e;
}

.itme2 .info-wrapper .rows {
  text-align: center;
}

.itme2 .info-wrapper .rows p {
  color: #5a5a5a;
  line-height: 1.8em;
  text-indent: 2em;
  text-align: left;
}

.itme2 .info-wrapper .rows img {
  margin: 20px;
  width: 500px;
  height: 300px;
}

/* festivals */
.festivals .festivals-wrapper {
  margin: 0 auto;
  width: 1000px;
}

.festivals-wrapper .itme1 .title-wrapper > h3 {
  border-left-color: #4d712b;
}

.festivals-wrapper .itme2 .title-wrapper > h3 {
  border-left-color: #dbad60;
}

.festivals-wrapper .itme3 .title-wrapper > h3 {
  border-left-color: #cfaf88;
}

.festivals-wrapper .info-wrapper .rows {
  text-align: center;
}

.festivals-wrapper .info-wrapper .rows p {
  width: auto;
  color: #5a5a5a;
  line-height: 1.8em;
  text-indent: 2em;
  text-align: left;
  margin-top: auto;
}

.festivals-wrapper .info-wrapper .rows img {
  margin: 20px;
  width: 400px;
  height: 300px;
}

/* accommodation */
.accommodation .content-wrapper {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.tab-list ul li {
  float: left;
  margin: 0 20px;
  line-height: 4em;
  color: #aaa;
  cursor: pointer;
}

.tab-list ul li.tab-active {
  color: #3EAABF;
  border-bottom: 2px solid #3EAABF;
}

.tab-list ul li:hover {
  color: #3EAABF;
}

.content-wrapper .iframe-box {
  width: 2400px;
  margin: 0 auto;
}

.iframe-box .box {
  margin: 0 150px;
}

.iframe-box .box .items {
  width: 800px;
  margin: 40px auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, .5);
  padding: 0;
}

.iframe-box .box .items .img-wrapper {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.iframe-box .box .items .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: all .5s ease-in-out;
}

.iframe-box .box .items .img-wrapper img:hover {
  transform: scale(1.3);
}

.iframe-box .box .items .img-wrapper h3 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #f3f3f3;
  font-size: 1.3em;
}

.iframe-box .box .items .info-wrapper {
  background: #2d6429;
  padding: 20px;
  box-sizing: border-box;
  text-indent: 2em;
  background: #e3e3e3;
  line-height: 1.5em;
  color: #666;
}