@charset "UTF-8";
/*	
Author:kermit
Email:455196886@qq.com
Company:http://dragontrail.com/
Creattime:2016-11-16
*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* KISSY CSS Reset
理念：1. reset 的目的不是清除浏览器的默认样式，这仅是部分工作。清除和重置是紧密不可分的。
2. reset 的目的不是让默认样式在所有浏览器下一致，而是减少默认样式有可能带来的问题。
3. reset 期望提供一套普适通用的基础样式。但没有银弹，推荐根据具体需求，裁剪和修改后再使用。
特色：1. 适应中文；2. 基于最新主流浏览器。
维护：玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com> */
/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
/** 设置默认字体 **/
body,
button,
input,
select,
textarea {
  font: 14px/1.5 tahoma, arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 12px;
}
/* 小于 12px 的中文很难阅读，让 small 正常化 */
/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}
/** 重置文本格式元素 **/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/** 重置表单元素 **/
legend {
  color: #000;
}
/* for ie6 */
fieldset,
img {
  border: 0;
}
/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  font-size: 100%;
}
/* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */
/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'youxuan';
  src: url('lib/fonts/title_font/youxuan.eot');
  /* IE9 Compat Modes */
  src: url('lib/fonts/title_font/youxuan.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('lib/fonts/title_font/youxuan.woff') format('woff'), /* Modern Browsers */ url('lib/fonts/title_font/youxuan.ttf') format('truetype'), /* Safari, Android, iOS */ url('lib/fonts/title_font/youxuan.svg') format('svg');
  /* Legacy iOS */
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clear {
  clear: both;
}
.after-clear::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-red {
  color: #e71e0f;
}
.single_text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vertical-center {
  /* Center vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.border-box {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.img-box {
  line-height: 0;
  font-size: 0;
}
.animation from {
  width: 100px;
  height: 100px;
  background-color: blue;
}
.animation to {
  width: 300px;
  height: 300px;
  background-color: red;
}
@keyframes animation {
  from {
    width: 100px;
    height: 100px;
    background-color: blue;
  }
  to {
    width: 300px;
    height: 300px;
    background-color: red;
  }
}
@-moz-keyframes animation {
  from {
    width: 100px;
    height: 100px;
    background-color: blue;
  }
  to {
    width: 300px;
    height: 300px;
    background-color: red;
  }
}
@-webkit-keyframes animation {
  from {
    width: 100px;
    height: 100px;
    background-color: blue;
  }
  to {
    width: 300px;
    height: 300px;
    background-color: red;
  }
}
@-o-keyframes animation {
  from {
    width: 100px;
    height: 100px;
    background-color: blue;
  }
  to {
    width: 300px;
    height: 300px;
    background-color: red;
  }
}
.animation_demo {
  width: 100px;
  height: 100px;
  background-color: blue;
  -ms-animation: animation 2s ease-in-out 1 normal forwards;
  -moz-animation: animation 2s ease-in-out 1 normal forwards;
  -o-animation: animation 2s ease-in-out 1 normal forwards;
  -webkit-animation: animation 2s ease-in-out 1 normal forwards;
  animation: animation 2s ease-in-out 1 normal forwards;
}
.transition_demo {
  width: 100px;
  height: 100px;
  background-color: blue;
  -ms-transition: all 2s ease 0s;
  -moz-transition: all 2s ease 0s;
  -o-transition: all 2s ease 0s;
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}
.transition_demo:hover {
  width: 300px;
  height: 300px;
  background-color: red;
}
.animation-rotate from {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -moz-transform: rotate(0deg);
  /* Firefox */
  -webkit-transform: rotate(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(0deg);
  /* Opera */
}
.animation-rotate to {
  transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  /* IE 9 */
  -moz-transform: rotate(360deg);
  /* Firefox */
  -webkit-transform: rotate(360deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(360deg);
  /* Opera */
}
@keyframes animation-rotate {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -moz-transform: rotate(360deg);
    /* Firefox */
    -webkit-transform: rotate(360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(360deg);
    /* Opera */
  }
}
@-moz-keyframes animation-rotate {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -moz-transform: rotate(360deg);
    /* Firefox */
    -webkit-transform: rotate(360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(360deg);
    /* Opera */
  }
}
@-webkit-keyframes animation-rotate {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -moz-transform: rotate(360deg);
    /* Firefox */
    -webkit-transform: rotate(360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(360deg);
    /* Opera */
  }
}
@-o-keyframes animation-rotate {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -moz-transform: rotate(360deg);
    /* Firefox */
    -webkit-transform: rotate(360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(360deg);
    /* Opera */
  }
}
.animation-rotate-un from {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -moz-transform: rotate(0deg);
  /* Firefox */
  -webkit-transform: rotate(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(0deg);
  /* Opera */
}
.animation-rotate-un to {
  transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  /* IE 9 */
  -moz-transform: rotate(-360deg);
  /* Firefox */
  -webkit-transform: rotate(-360deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(-360deg);
  /* Opera */
}
@keyframes animation-rotate-un {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -moz-transform: rotate(-360deg);
    /* Firefox */
    -webkit-transform: rotate(-360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-360deg);
    /* Opera */
  }
}
@-moz-keyframes animation-rotate-un {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -moz-transform: rotate(-360deg);
    /* Firefox */
    -webkit-transform: rotate(-360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-360deg);
    /* Opera */
  }
}
@-webkit-keyframes animation-rotate-un {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -moz-transform: rotate(-360deg);
    /* Firefox */
    -webkit-transform: rotate(-360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-360deg);
    /* Opera */
  }
}
@-o-keyframes animation-rotate-un {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -moz-transform: rotate(0deg);
    /* Firefox */
    -webkit-transform: rotate(0deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(0deg);
    /* Opera */
  }
  to {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -moz-transform: rotate(-360deg);
    /* Firefox */
    -webkit-transform: rotate(-360deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-360deg);
    /* Opera */
  }
}
:root {
  --maxContentWidth: 1370px;
  --fontsize24: 24px;
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible!important;
  -ms-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.full-box {
  width: 100%;
  height: 100%;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font: normal 14px/1.5 'Microsoft YaHei';
  color: #000;
}
img {
  max-width: 100%;
}
a {
  color: #fff;
}
a:hover {
  text-decoration: underline;
}
a.red-link {
  color: #e71e0f;
}
a.red-link:hover {
  color: #c1190d;
}
button {
  cursor: pointer;
  padding: 0.5em 1em;
  border: 0;
  background-color: #fff;
  color: #333;
  font: normal 14px/1 'Microsoft YaHei';
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
button:hover {
  background-color: #d6d6d6;
  color: #0a0a0a;
}
button.btn.btn-red {
  background-color: #e71e0f;
  color: #ebebeb;
}
button.btn.btn-red:hover {
  background-color: #c1190d;
  color: #fff;
}
.icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/imgs/icon_title.png) center center no-repeat;
  background-size: 100% 100%;
}
.icon.icon-title {
  background: url(../images/imgs/icon_title.png) center center no-repeat;
  background-size: 100% 100%;
}
.icon.icon-title-black {
  width: 36px;
  height: 39px;
  background: url(../images/imgs/icon_title_black.png) center center no-repeat;
  background-size: 100% 100%;
}
.icon.icon-clock-o {
  width: 33px;
  height: 33px;
  background: url(../images/imgs/icon_clock.png) 0 0 no-repeat;
}
.loading {
  color: #fff;
}
.loading .fa {
  font-size: 40px;
  -ms-transform-origin: center center;
  /* IE 9 */
  -moz-transform-origin: center center;
  /* Firefox */
  /* Safari 和 Chrome */
  -o-transform-origin: center center;
  /* Opera */
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -ms-animation: animation-rotate 2s linear infinite normal forwards;
  -moz-animation: animation-rotate 2s linear infinite normal forwards;
  -o-animation: animation-rotate 2s linear infinite normal forwards;
  -webkit-animation: animation-rotate 2s linear infinite normal forwards;
  animation: animation-rotate 2s linear infinite normal forwards;
}
.crumbs {
  font: normal 16px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
  color: #fff;
}
.crumbs a {
  color: #fff;
}
.crumbs a:hover {
  color: #e71e0f;
}
.crumbs .line {
  font-style: normal;
  padding: 0 0.3em;
}
.mobile-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 1em;
  background: #fff url(../images/imgs/search_bg.jpg) left center no-repeat;
  background-size: cover;
}
.mobile-search.mobile-search-hide {
  display: none;
}
.mobile-search .search-header {
  padding: 1em 0;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-right: 40px;
  position: relative;
}
.mobile-search .search-header .input-box {
  width: 100%;
  position: relative;
}
.mobile-search .search-header .input-box input {
  width: 100%;
  padding: 5px 0.5em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: inline-block;
  border-radius: 40px;
  border: 2px solid #000;
  font: normal 14px/1.2 'Microsoft YaHei';
}
.mobile-search .search-header .input-box input:focus {
  border-color: #e71e0f;
  outline: none;
}
.mobile-search .search-header .input-box input::-moz-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input:-ms-input-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input::-webkit-input-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input:-moz-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input::-moz-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input:-ms-input-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box input::-webkit-input-placeholder {
  color: #999999;
}
.mobile-search .search-header .input-box .search-btn {
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 0.5em;
  font-size: 20px;
  background-color: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}
.mobile-search .search-header .input-box .search-btn:hover {
  color: #e71e0f;
}
.mobile-search .search-header .close-btn {
  display: block;
  border: 2px solid #c0c0c0;
  width: 32px;
  height: 32px;
  padding: 0;
  text-align: center;
  line-height: 18px;
  background-color: transparent;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 1em;
  right: 0;
}
.mobile-search .search-header .close-btn .fa {
  font-size: 14px;
}
.mobile-search .search-header .close-btn:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.mobile-search .search-focus {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-bottom: 4em;
}
.mobile-search .search-focus a {
  float: left;
  display: inline-block;
  color: #000;
  padding: 0.2em 0.6em;
  background-color: #e8e8e8;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.mobile-search .search-focus a:hover {
  background-color: #e71e0f;
  color: #fff;
  text-decoration: none;
}
.mobile-search .search-focus .search-item-title {
  color: #666;
  margin-bottom: 0.5em;
}
.mobile-search .search-focus .search-item {
  margin-bottom: 0.5em;
}
.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.9;
  cursor: pointer;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e71e0f;
  transform: scale3d(1.4, 1.4, 1.4);
  -ms-transform: scale3d(1.4, 1.4, 1.4);
  /* IE 9 */
  -moz-transform: scale3d(1.4, 1.4, 1.4);
  /* Firefox */
  -webkit-transform: scale3d(1.4, 1.4, 1.4);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.4, 1.4, 1.4);
  /* Opera */
}
.swiper-prev,
.swiper-next {
  cursor: pointer;
  font: normal 40px/1 'Microsoft YaHei';
  color: #e6e6e6;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 999;
}
.swiper-prev:hover,
.swiper-next:hover {
  color: #e71e0f;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  opacity: 0.1;
}
.swiper-prev.swiper-button-disabled:hover,
.swiper-next.swiper-button-disabled:hover {
  color: #fff;
}
.swiper-prev {
  left: 40px;
}
.swiper-next {
  right: 40px;
}
.fade-up-black-bg {
  background: linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
}
[data-bgimg] {
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat center center;
}
.loading-box {
  display: inline-block;
  padding: 20px;
}
.loading-box img {
  width: 40px;
}
/* 中等屏幕（桌面显示器，大于等于 1136px 小于1336px） */
/* 中等屏幕（桌面显示器，大于等于 992px 小于1024px） */
/* 小屏幕（平板，大于等于 768px） */
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .loading .fa {
    font-size: 30px;
  }
  .swiper-prev {
    left: 10px;
  }
  .swiper-next {
    right: 10px;
  }
}
header {
  position: fixed;
  height: 80px;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  z-index: 99999;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.26));
  transition: all 0.3s linear;
  /* 中等屏幕（桌面显示器，小于1024px） */
  /* 中等屏幕（小于 992px）*/
  /* 小屏幕（手机，小于 768px）*/
}
header.black,
header.black_down {
  background: #fff;
}
header.black .header_content .menus .menus_item,
header.black_down .header_content .menus .menus_item {
  color: #000;
}
header.black .header_content .menus .menus_item.select .menus_item_search button i,
header.black_down .header_content .menus .menus_item.select .menus_item_search button i {
  color: #000;
}
header.black .header_content .menus .menus_item.select .menus_item_search .a,
header.black_down .header_content .menus .menus_item.select .menus_item_search .a {
  color: #000;
}
header.black {
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.161);
}
header.black_down {
  box-shadow: none;
}
@media screen and (max-width: 800px) {
  header {
    height: 60px;
    background: #fff;
  }
  header .header_content_m {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header_content_m .right {
    display: flex;
    align-items: center;
  }
  header .header_content_m .header_content_icon {
    width: 50px;
    height: 50px;
  }
  header .header_content_m #openMobileSearch {
    color: #000;
    font-size: 25px;
    line-height: 0;
  }
  header .header_content_m .btn {
    padding: 0;
    margin-left: 20px;
  }
  header .header_content_m .btn i {
    font-size: 30px;
  }
}
@media screen and (min-width: 801px) {
  header .header_content_m {
    display: none;
  }
}
header .header_content {
  width: 100%;
  height: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  left: -8px;
}
header .header_content .close {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 9px;
  right: 5px;
  align-items: center;
  justify-content: center;
}
header .header_content .close i {
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  header .header_content .close {
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  header .header_content {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 800px) {
  header .header_content {
    left: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
  }
}
header .header_content .header_content_icon {
  width: 80px;
  height: 80px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1000px) {
  header .header_content .header_content_icon {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  header .header_content .header_content_icon {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 99999;
    left: 10px;
    top: 5px;
  }
}
header .header_content .menus_footer {
  display: none;
}
@media screen and (max-width: 800px) {
  header .header_content .menus_footer {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  header .header_content .menus_footer .icons_item:nth-last-of-type(1) {
    margin-right: 0;
  }
  header .header_content .menus_footer .icons_item.wecaht-box {
    border-color: rgba(108, 187, 92, 0.5);
    color: #6cbb5c;
  }
  header .header_content .menus_footer .icons_item.weibo-box {
    border-color: rgba(231, 24, 47, 0.5);
    color: #e7182f;
  }
  header .header_content .menus_footer .icons_item.weibo-box a {
    color: #e7182f;
  }
  header .header_content .menus_footer .icons_item.douyin-box {
    border-color: #0b0205;
    color: #0b0205;
  }
  header .header_content .menus_footer .icons_item.xiaohongshu-box {
    border-color: #db2839;
    color: #db2839;
  }
  header .header_content .menus_footer .icons_item.xiaohongshu-box a {
    color: #db2839;
  }
  header .header_content .menus_footer .icons_item.kuaishou-box {
    border-color: #fc4b05;
    color: #fc4b05;
  }
  header .header_content .menus_footer .icons_item.shipinhao-box {
    border-color: #eb9c40;
    color: #eb9c40;
  }
}
header .header_content .menus {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 800px) {
  header .header_content .menus {
    flex-wrap: wrap;
    align-content: baseline;
    justify-content: center;
    padding-top: 20%;
    overflow-y: auto;
    max-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 85px;
  }
}
header .header_content .menus .menus_item {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
  position: relative;
  transition: all 0.3s linear;
  white-space: nowrap;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  header .header_content .menus .menus_item {
    width: 51%;
    height: 60px;
    line-height: 60px;
    color: #000;
    margin-left: 0;
    text-align: center;
    display: block;
    font-size: 40px;
    font-family: youxuan;
  }
}
header .header_content .menus .menus_item::after {
  width: 0px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 3px;
  background-color: #E71E0F;
  transition: all 0.2s linear;
}
header .header_content .menus .menus_item.active::after {
  width: 100%;
}
header .header_content .menus .menus_item.default::after {
  width: 100%;
}
@media screen and (max-width: 1371px) {
  header .header_content .menus .menus_item {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  header .header_content .menus .menus_item {
    margin-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  header .header_content .menus .menus_item {
    margin-left: 0;
  }
}
header .header_content .menus .menus_item.select {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  header .header_content .menus .menus_item.select {
    display: none;
  }
}
header .header_content .menus .menus_item.select .menus_item_search {
  width: 35px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1371px) {
  header .header_content .menus .menus_item.select .menus_item_search {
    width: 30px;
  }
}
header .header_content .menus .menus_item.select .menus_item_search form {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 6px;
}
header .header_content .menus .menus_item.select .menus_item_search form button {
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: inline;
}
header .header_content .menus .menus_item.select .menus_item_search form button i {
  color: #fff;
  font-size: 22px;
}
header .header_content .menus .menus_item.select .menus_item_search #searchInput {
  width: 0px;
  display: none;
  font-size: 18px;
  margin-left: 10px;
  padding: 10px 4px;
  border: none;
  outline: none;
  background-color: transparent;
}
@media screen and (max-width: 1371px) {
  header .header_content .menus .menus_item.select .menus_item_search #searchInput {
    padding: 6px 4px;
  }
}
header .header_content .menus .menus_item.select .menus_item_search:hover {
  width: 210px;
  background-color: #fff;
  padding: 0 4px 0 0;
}
header .header_content .menus .menus_item.select .menus_item_search:hover .fa-search {
  color: #ccc;
}
header .header_content .menus .menus_item.select .menus_item_search:hover #searchInput {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1200px) {
  header .header_content .menus .menus_item.select .menus_item_search {
    margin-right: 20px;
  }
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 39px;
  right: 0;
  z-index: 99;
  width: 470px;
  max-height: 8em;
  overflow-y: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #000;
  font: normal 14px/1.5 'Microsoft YaHei';
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-focus-inner {
  position: relative;
  padding: 10px 20px 10px 8px;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-focus-inner .close-btn {
  border: 0;
  background-color: transparent;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 5px;
  cursor: pointer;
  color: #333;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-focus-inner .close-btn i {
  color: #000;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-focus-inner .close-btn:hover {
  color: #000;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-item {
  overflow: hidden;
  margin-bottom: 0.5em;
  padding-left: 6em;
  position: relative;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-item .search-item-title {
  position: absolute;
  top: 0;
  left: 0;
  color: #999;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-item .search-item-content {
  width: 100%;
  word-break: break-word;
  overflow: hidden;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-item a {
  display: block;
  float: left;
  color: #000;
  margin-right: 1em;
}
header .header_content .menus .menus_item.select .menus_item_search .search-focus-box .search-item a:hover {
  color: #e71e0f;
}
@media screen and (max-width: 1024px) {
  header .menu_m .menu-left {
    padding-left: 30px;
    padding-right: 30px;
  }
  header .menu_m .menu-right {
    padding-left: 30px;
  }
  header .menu_m .menu-right .section-city {
    max-width: 300px;
  }
  header .menu_m .menu-right .section-town {
    max-width: 460px;
  }
  header .menu_m .menu-right .section-area {
    max-width: 460px;
  }
  header .menu_m .footer {
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  header .menu_m .menu-inner .memu-inner-left {
    float: none;
    width: 100%;
  }
  header .menu_m .menu-inner .memu-inner-right {
    display: none;
  }
  header .menu_m .menu-inner .memu-content .menu-content-inner {
    display: block;
  }
  header .menu_m .menu-left {
    float: none;
    width: 100%;
    text-align: center;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 8em;
    margin-bottom: 0;
  }
  header .menu_m .nav {
    margin-bottom: 0;
  }
  header .menu_m .nav li a {
    margin: 10px auto;
  }
  header .menu_m .menu-right {
    float: none;
    display: none;
  }
  header .menu_m .search-box {
    display: none;
  }
  header .menu_m .search-footer {
    display: none;
  }
  header .menu_m .menu-footer {
    width: 100%;
    bottom: 2em;
    padding-left: 0;
    font-size: 12px;
    text-align: center;
  }
  header .menu_m .menu-footer .footer-links span {
    display: none;
  }
  header .menu_m .menu-footer .footer-links a {
    display: block;
    text-decoration: underline;
    margin-bottom: 0.5em;
  }
}
@media (max-width: 768px) {
  header .menu_m .menu-left {
    padding-bottom: 0;
  }
}
.meuns_alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: auto;
  max-height: 80vh;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.161);
}
.meuns_alert .closeBox {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  position: relative;
}
.meuns_alert .closeBox .close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: -50px;
  top: 104px;
  border: 2px solid #e71e0f;
  text-align: center;
  line-height: 46px;
  color: #e71e0f;
  cursor: pointer;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 1500px) {
  .meuns_alert .closeBox .close {
    right: 20px;
  }
}
@media screen and (max-width: 1371px) {
  .meuns_alert .closeBox .close {
    width: 40px;
    height: 40px;
    line-height: 36px;
    right: 0;
  }
}
.meuns_alert .closeBox .close:hover {
  animation-name: tada;
  animation-duration: 1s;
  animation-fill-mode: both;
  background-color: #cf1b0d;
  color: #fff;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .closeBox .close {
    top: 100px;
  }
}
.meuns_alert .closeBox .close i {
  font-size: 36px;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .closeBox .close i {
    font-size: 28px;
  }
}
.meuns_alert .meuns_alert_content {
  display: none;
  width: 100%;
  max-height: calc(80vh - 20px);
  overflow-y: auto;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 100px calc((100vw - var(--maxContentWidth)) / 2) 20px;
}
@media screen and (max-width: 1441px) {
  .meuns_alert .meuns_alert_content {
    padding-top: 9%;
  }
}
@media screen and (max-width: 961px) {
  .meuns_alert .meuns_alert_content {
    padding-top: 90px;
  }
}
@media screen and (max-width: 800px) {
  .meuns_alert .meuns_alert_content {
    padding-top: 70px;
  }
}
.meuns_alert .meuns_alert_content_box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.meuns_alert .row {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.meuns_alert .row:nth-last-of-type(1) {
  margin-bottom: 0;
}
.meuns_alert .row .col {
  width: 100%;
  float: left;
}
.meuns_alert .row .col.hot {
  width: 480px;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .col.hot {
    width: 50%;
  }
  .meuns_alert .row .col.hot li {
    width: 50%;
  }
}
.meuns_alert .row .col.city {
  width: calc(100% - 540px);
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .col.city {
    width: 50%;
  }
  .meuns_alert .row .col.city li {
    width: 50%;
  }
}
.meuns_alert .row .section-title {
  font-size: 24px;
  color: #000;
  font-weight: 400;
  margin-bottom: 4px;
}
.meuns_alert .row .section-title a {
  color: #000000;
}
.meuns_alert .row .section-title a:hover {
  color: #e71e0f;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .section-title {
    font-size: 20px;
  }
}
.meuns_alert .row .section-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.meuns_alert .row .section-list li {
  width: 240px;
  float: left;
  line-height: 24px;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .section-list li {
    width: 25%;
  }
}
.meuns_alert .row .section-list li > a {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.meuns_alert .row .section-list li > a[data-spain-name]:not([data-spain-name=""])::after {
  content: attr(data-spain-name);
  width: 100%;
  font-size: 14px;
  display: none;
  transform: translateY(-4px);
  min-height: 24px;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .section-list li > a[data-spain-name]:not([data-spain-name=""])::after {
    font-size: 12px;
    min-height: 20px;
  }
}
.meuns_alert .row .section-list li > a span {
  width: 100%;
  font-size: 14px;
  display: none;
  margin-bottom: 6px;
  transform: translateY(-4px);
  min-height: 24px;
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .section-list li > a span {
    font-size: 12px;
  }
}
@media screen and (max-width: 1371px) {
  .meuns_alert .row .section-list li > a {
    font-size: 14px;
    line-height: 22px;
    min-height: 22px;
  }
}
.meuns_alert .row .section-list li > a:hover {
  color: #e71e0f;
}
.meuns_alert .row .section-list li > a:hover span,
.meuns_alert .row .section-list li > a:hover[data-spain-name]:not([data-spain-name=""])::after {
  display: block;
}
.menus_footer {
  width: 100%;
  height: 100px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1371px) {
  .menus_footer {
    height: 70px;
  }
}
@media screen and (max-width: 800px) {
  .menus_footer {
    height: 80px;
  }
}
.menus_footer .menus_footer_content {
  width: 100%;
  height: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .menus_footer .menus_footer_content {
    justify-content: center;
  }
}
.menus_footer .menus_footer_content .icons {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 800px) {
  .menus_footer .menus_footer_content .icons {
    width: auto;
    justify-content: center;
  }
}
.menus_footer .menus_footer_content .icons .icons_item {
  margin-right: 12px;
  width: 53px;
  height: 53px;
  border: 2px solid #595959;
  border-radius: 50%;
  color: #525252;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1371px) {
  .menus_footer .menus_footer_content .icons .icons_item {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 800px) {
  .menus_footer .menus_footer_content .icons .icons_item {
    width: 30px;
    height: 30px;
  }
}
.menus_footer .menus_footer_content .icons .icons_item a {
  color: #525252;
}
.menus_footer .menus_footer_content .icons .icons_item i {
  font-size: 30px;
}
@media screen and (max-width: 1371px) {
  .menus_footer .menus_footer_content .icons .icons_item i {
    font-size: 20px;
  }
}
.menus_footer .menus_footer_content .icons .icons_item .qr-code {
  display: none;
  width: 140px;
  position: absolute;
  bottom: 56px;
  left: 0;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
}
.menus_footer .menus_footer_content .icons .icons_item .qr-code p {
  font-size: 12px;
  line-height: 1.5;
  padding-top: 5px;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.wecaht-box {
  border-color: rgba(108, 187, 92, 0.5);
  color: #6cbb5c;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.wecaht-box .qr-code {
  display: block;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.wecaht-box .qr-code p {
  color: #000;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.weibo-box {
  border-color: rgba(231, 24, 47, 0.5);
  color: #e7182f;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.weibo-box a {
  color: #e7182f;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.xiaohongshu-box {
  border-color: #db2839;
  color: #db2839;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.xiaohongshu-box a {
  color: #db2839;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.douyin-box {
  border-color: #0b0205;
  color: #0b0205;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.douyin-box .qr-code {
  display: block;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.kuaishou-box {
  border-color: #fc4b05;
  color: #fc4b05;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.kuaishou-box .qr-code {
  display: block;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.shipinhao-box {
  border-color: #eb9c40;
  color: #eb9c40;
}
.menus_footer .menus_footer_content .icons .icons_item:hover.shipinhao-box .qr-code {
  display: block;
}
.menus_footer .menus_footer_content .right {
  float: right;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .menus_footer .menus_footer_content .right {
    padding-left: 12px;
  }
  .menus_footer .menus_footer_content .right p {
    display: none;
  }
}
.menus_footer .menus_footer_content .right .icon {
  width: 53px;
  height: 53px;
  border: 2px solid #e71e0f;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1371px) {
  .menus_footer .menus_footer_content .right .icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 800px) {
  .menus_footer .menus_footer_content .right .icon {
    width: 30px;
    height: 30px;
  }
}
.menus_footer .menus_footer_content .right .icon i {
  font-size: 30px;
  color: #e71e0f;
}
@media screen and (max-width: 1371px) {
  .menus_footer .menus_footer_content .right .icon i {
    font-size: 20px;
  }
}
.menus_footer .menus_footer_content .right p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-left: 12px;
  color: rgba(231, 29, 15, 0.7);
}
/* 中等屏幕（桌面显示器，小于 1380px ） */
@media screen and (max-width: 1371px) {
  :root {
    --maxContentWidth: 90% !important;
  }
}
/* 中等屏幕（桌面显示器，小于1024px） */
/* 中等屏幕（小于 992px）*/
@media (max-width: 801px) {
  :root {
    --maxContentWidth: calc(100% - 30px) !important;
  }
}
/* 小屏幕（手机，小于 768px）*/
.more_btn {
  width: 200px;
  height: 64px;
  background: #fff100;
  color: #000;
  margin: 10px auto;
  line-height: 64px;
  text-align: center;
  font-size: 16px;
  display: block;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 1680px) {
  .more_btn {
    width: 170px;
    height: 54px;
    line-height: 54px;
    font-size: 14px;
  }
}
footer.footer {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-top: 130px;
  background-color: #070e1c;
}
footer.footer .footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
footer.footer .footer-left {
  color: #fff;
}
footer.footer .footer-left p {
  color: #cccccc;
  line-height: 1.4em;
}
footer.footer .footer-left .links {
  color: #fff;
}
footer.footer .footer-left .links span {
  padding: 0 0.3em;
  color: #666;
}
@media (max-width: 450px) {
  footer.footer .footer-left .links a:last-child {
    display: block;
  }
  footer.footer .footer-left .links span:nth-last-child(2) {
    display: none;
  }
}
footer.footer .footer-right li {
  margin-left: 10px;
}
footer.footer .out-link {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 18px;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
footer.footer .out-link.go-back .fa {
  font-size: 18px;
}
footer.footer .out-link.go-back.go-back-full {
  background-color: #e71e0f;
  border-color: #e71e0f;
  color: #f2f2f2;
}
footer.footer .out-link.go-back.go-back-full.cur,
footer.footer .out-link.go-back.go-back-full:hover {
  background-color: #cf1b0d;
  color: #fff;
}
footer.footer .out-link .iconfont {
  font-size: 22px;
}
footer.footer .out-link.cur,
footer.footer .out-link:hover {
  border-color: #6cbb5c;
  color: #6cbb5c;
  text-decoration: none;
}
footer.footer .wecaht-box .out-link.cur,
footer.footer .wecaht-box .out-link:hover {
  border-color: #6cbb5c;
  color: #6cbb5c;
}
footer.footer .weibo-box .out-link.cur,
footer.footer .weibo-box .out-link:hover {
  border-color: #e7182f;
  color: #e7182f;
}
footer.footer .youku-box .out-link.cur,
footer.footer .youku-box .out-link:hover {
  border-color: #30b4ff;
  color: #30b4ff;
}
footer.footer .douyin-box .out-link.cur,
footer.footer .douyin-box .out-link:hover {
  border-color: #ffffff;
  color: #ffffff;
}
footer.footer .xiaohongshu-box .out-link.cur,
footer.footer .xiaohongshu-box .out-link:hover {
  border-color: #db2839;
  color: #db2839;
}
footer.footer .kuaishou-box .out-link.cur,
footer.footer .kuaishou-box .out-link:hover {
  border-color: #fc4b05;
  color: #fc4b05;
}
footer.footer .shipinhao-box .out-link.cur,
footer.footer .shipinhao-box .out-link:hover {
  border-color: #eb9c40;
  color: #eb9c40;
}
footer.footer .wecaht-box {
  position: relative;
}
footer.footer .wecaht-box .qr-code {
  display: none;
  width: 140px;
  position: absolute;
  bottom: 50px;
  left: -50px;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #fff;
}
footer.footer .wecaht-box .qr-code .qr-code-inner {
  position: relative;
}
footer.footer .wecaht-box .qr-code .icon_sanjiao {
  display: block;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -26px;
  left: 50%;
  margin-left: -8px;
}
footer.footer .wecaht-box .qr-code p {
  font-size: 12px;
  line-height: 1.5;
  padding-top: 5px;
}
footer.footer .wecaht-box:hover .qr-code {
  display: block;
}
/* 中等屏幕（桌面显示器，小于1100px） */
@media screen and (max-width: 1100px) {
  footer.footer .footer-inner {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1024px) {
  footer.footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* 中等屏幕（小于 992px）*/
@media (max-width: 992px) {
  footer.footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  footer.footer .footer-inner {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  footer.footer .footer-left {
    float: none;
    text-align: center;
  }
  footer.footer .footer-right {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  footer.footer .footer-right ul {
    display: inline-block;
  }
  footer.footer .footer-right ul li {
    margin: 0 0.5em;
  }
}
#go-back {
  position: fixed;
  display: none;
  bottom: 200px;
  right: 50px;
  padding: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
}
#go-back .iconfont {
  font-size: 20px;
  line-height: 40px;
}
#go-back:hover {
  background-color: #ffffff;
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  #go-back {
    right: 1em;
    bottom: 123px;
  }
}
/*	
Author:kermit
Email:455196886@qq.com
Company:http://dragontrail.com/
Creattime:2017-03-26
*/
/*
===== 变量的定义 =====
*/
/*===== 媒体查询节点 ======*/
/*===== 颜色的定义 =====*/
/*===== 品牌颜色设置 =====*/
/*===== 网站外观的关键颜色设置 =====*/
/*===== 链接颜色设置 =====*/
/*===== 排版设计=====*/
/*===== 文字大小 =====*/
/*===== 混合函数 ======*/
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
.logo {
  display: none !important;
  position: absolute;
  z-index: 9;
  bottom: 0;
  right: 0;
  width: 306px;
  height: 260px;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: url(../images/imgs/logo.png) 0 0 no-repeat;
  background-size: 100% 100%;
  line-height: 0;
  font-size: 0;
}
.logo .logo-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.logo a {
  display: block;
  width: 194px;
  height: 160px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  text-indent: -999em;
}
.banner__gallery {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 1em;
  padding-top: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
  text-align: center;
}
.img__gallery {
  position: relative;
}
.img__gallery .gallery__text {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 1em;
  font-size: 16px !important;
  color: #fff !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .img__gallery .gallery__text {
    font-size: 14px !important;
  }
}
.page {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.page .page-inner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(10, 19, 38, 0);
}
.page .page-inner.page-inner-home {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page.page-destination {
    background: url(../images/imgs/destination_bg.jpg) center center no-repeat;
    background-size: cover;
  }
}
.page-banner {
  padding-top: 120px;
  width: 100%;
  height: 100%;
  display: table;
  overflow: hidden;
  height: calc(100% - 120px);
}
@media screen and (max-width: 1371px) {
  .page-banner {
    padding-top: 80px;
    height: calc(100% - 80px);
  }
}
@media screen and (max-width: 800px) {
  .page-banner {
    padding-top: 60px;
    height: calc(100% - 60px);
  }
}
.page-banner .page-banner-inner {
  display: table-cell;
  vertical-align: middle;
}
.page-banner .page-banner-content {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 130px;
  padding-bottom: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: relative;
}
.page-banner .title {
  font: normal 36px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.page-banner .title span {
  margin-right: 40px;
}
.page-banner .title span.Eglish-name {
  margin-right: 0;
}
.page-banner .title::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 0.3em;
}
.page-banner .Eglish-name {
  display: block;
  margin: 0 auto;
  font: normal 26px/1.5 'Microsoft YaHei';
}
.page-banner .title-second {
  font: normal 30px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.page-banner p {
  font: normal 16px/2 'Microsoft YaHei';
}
.page-banner .page-tip {
  position: absolute;
  width: 60px;
  bottom: 60px;
  left: 50%;
  margin-left: -30px;
}
.page-banner .page-tip .page-tip-inner {
  position: relative;
}
.page-banner .page-tip .page-tip-inner .page-tip-line {
  width: 7px;
  height: 999em;
  position: absolute;
  top: 80px;
  left: 50%;
  margin-left: -3.5px;
  background: url(../images/imgs/page_tip_middle.png) 0 24px repeat-y;
}
.page-banner .page-tip .page-tip-inner .page-tip-line::before {
  content: '';
  display: block;
  width: 7px;
  height: 24px;
  background: url(../images/imgs/page_tip_top.png) 0 center no-repeat;
}
.page-banner .page-down-btn {
  width: 60px;
  height: 60px;
  bottom: 60px;
  border: 0;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: #202020;
  background-color: #fff100;
  border-radius: 50%;
  cursor: pointer;
  -ms-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.page-banner .page-down-btn .fa {
  animation-duration: 2s;
  -ms-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -o-animation-duration: 2s;
  -ms-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.page-banner .page-down-btn:hover {
  background-color: #e71e0f;
}
.page-banner .page-down-btn:hover .fa {
  color: #fff;
}
.page-banner .map-link {
  font-size: 12px;
  padding: 0.5em 1.5em;
  display: none;
  background-color: #fff;
  color: #000;
  -moz-border-radius: 2em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  margin: 1em 0;
}
.page-banner .map-link .fa {
  padding-right: 0.5em;
  color: #e71e0f;
  font-size: 14px;
}
.page-banner .crumbs {
  position: absolute;
  top: -2em;
  left: 0;
}
.page-404 .text-404 {
  font-size: 140px;
  line-height: 1.2em;
  font-weight: bold;
}
.page-404 .footer-404 {
  padding-top: 1em;
}
.page-404 .footer-404 p {
  margin-bottom: 0.3em;
}
.page-404 .footer-404 .btn-back-home {
  border-radius: 20px;
  padding: 0.5em 2em;
  line-height: 1.5;
  font-size: 16px;
  color: #000;
  background-color: #fff100;
}
.page-404 .page-banner .page-banner-content {
  padding-bottom: 100px;
}
.line-air-filter {
  width: 7px;
  margin: 80px auto;
}
.line-air-filter .line-middle {
  display: block;
  width: 7px;
  height: 150px;
  background: url(../images/imgs/page_tip_middle.png) 0 24px repeat-y;
}
.line-air-filter .line-top {
  content: '';
  display: block;
  width: 7px;
  height: 24px;
  background: url(../images/imgs/page_tip_top.png) 0 center no-repeat;
}
.line-air-filter .line-bottom {
  content: '';
  display: block;
  width: 7px;
  height: 24px;
  background: url(../images/imgs/page_tip_bottom.png) 0 center no-repeat;
}
.line-air-filter.line-air-filter-banner-bottom {
  margin-top: 0;
  margin-bottom: 40px;
}
.page-wrapper {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.page-wrapper.page-full-wrapper {
  width: 100%;
  padding-bottom: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.page-wrapper.page-full-wrapper .page-wrapper {
  padding-bottom: 0;
}
.page-title {
  font: normal 30px/2 'Microsoft YaHei';
  margin-bottom: 1em;
  color: #fff;
}
.page-about .about-basic-list {
  width: 102%;
  margin: 0 -1%;
}
.page-about .about-basic-list .cover {
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 100%;
  padding: 2em 1em;
  font: normal 14px/1.5 'Microsoft YaHei';
  background: linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
}
.page-about .about-basic-list .cover-title {
  font: normal 18px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.page-about .about-basic-list .cover-title::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 1px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 0.3em;
}
.page-about .about-basic-list li {
  width: 23%;
  margin: 0 1%;
  position: relative;
  overflow: hidden;
}
.page-about .about-basic-list li a {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}
.page-about .about-basic-list li a img {
  width: 100%;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-about .about-basic-list li a .cover-detail {
  opacity: 0;
  height: 0;
  max-height: 4.5em;
  overflow: hidden;
  transform: translate3d(0, 6em, 0);
  -ms-transform: translate3d(0, 6em, 0);
  /* IE 9 */
  -moz-transform: translate3d(0, 6em, 0);
  /* Firefox */
  -webkit-transform: translate3d(0, 6em, 0);
  /* Safari 和 Chrome */
  -o-transform: translate3d(0, 6em, 0);
  /* Opera */
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-about .about-basic-list li a:hover img {
  transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  /* IE 9 */
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  /* Firefox */
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.1, 1.1, 1.1);
  /* Opera */
}
.page-about .about-basic-list li a:hover .cover-detail {
  opacity: 1;
  height: 4.5em;
  transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  /* IE 9 */
  -moz-transform: translate3d(0, 0, 0);
  /* Firefox */
  -webkit-transform: translate3d(0, 0, 0);
  /* Safari 和 Chrome */
  -o-transform: translate3d(0, 0, 0);
  /* Opera */
}
.page-about .swiper-container-box {
  position: relative;
}
.page-about .swiper-container-box .swiper-prev,
.page-about .swiper-container-box .swiper-next {
  ursor: pointer;
  display: none;
  font: normal 30px/1.5 'Microsoft YaHei';
  color: #e6e6e6;
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.page-about .swiper-container-box .swiper-prev:hover,
.page-about .swiper-container-box .swiper-next:hover {
  color: #e71e0f;
}
.page-about .swiper-container-box .swiper-prev {
  left: 30px;
}
.page-about .swiper-container-box .swiper-next {
  right: 30px;
}
.page-about .about-practical-list {
  width: 864px;
  margin: 0 auto;
}
.page-about .about-practical-list li {
  width: 25%;
  margin-bottom: 2em;
  font: normal 18px/1.5 'Microsoft YaHei';
}
.page-about .about-practical-list li img {
  display: inline-block;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-about .about-practical-list li a {
  display: block;
}
.page-about .about-practical-list li a p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-about .about-practical-list li a:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  /* IE 9 */
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  /* Firefox */
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.05, 1.05, 1.05);
  /* Opera */
}
.page-route .route-slect-nav {
  padding: 40px 0;
}
.page-route .route-slect-nav .slect-title {
  color: #fff;
  font: normal 16px/1.5 'Microsoft YaHei';
  margin-bottom: 1em;
}
.page-route .route-slect-nav .slect-nav {
  position: relative;
  margin-bottom: 1em;
}
.page-route .route-slect-nav .slect-nav .slect-items {
  width: 100%;
}
.page-route .route-slect-nav .slect-nav .slect-items .btn {
  margin-right: 0.3em;
  margin-bottom: 0.5em;
}
.page-route .route-list {
  width: 100%;
}
.page-route .route-list .list-item {
  width: 100%;
  margin-bottom: 40px;
  background-color: #1c2437;
}
.page-route .route-list .list-item:last-child {
  margin-bottom: 20px;
}
.page-route .route-list .list-item .item-title {
  font: normal 24px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.page-route .route-list .list-item .item-title a:hover {
  text-decoration: none;
}
.page-route .route-list .list-item .item-title:after {
  content: '';
  display: block;
  width: 2.2em;
  height: 1px;
  background-color: #999999;
  margin: 0.5em auto;
}
.page-route .route-list .list-item .item-img {
  width: 50%;
  height: 330px;
  overflow: hidden;
}
.page-route .route-list .list-item .item-img a {
  display: block;
  width: 100%;
  height: 100%;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: url(../images/imgs/route_list_item1.jpg) center center no-repeat;
  background-size: 100% 100%;
}
.page-route .route-list .list-item .item-img a img {
  display: none;
}
.page-route .route-list .list-item .item-img a:hover {
  transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  /* IE 9 */
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  /* Firefox */
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.05, 1.05, 1.05);
  /* Opera */
}
.page-route .route-list .list-item .item-text {
  width: 50%;
  height: 330px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #40444d;
  background-color: #1c2437;
  display: table;
}
.page-route .route-list .list-item .item-text .item-text-inner {
  padding: 0 4em;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.page-route .route-list .list-item .item-text p {
  font-size: 16px;
  color: #999;
  margin-bottom: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.page-route-detail .detail-swiper-box {
  position: relative;
  color: #fff;
}
.page-route-detail .detail-swiper-box .swiper-prev,
.page-route-detail .detail-swiper-box .swiper-next {
  cursor: pointer;
  font: normal 40px/1 'Microsoft YaHei';
  color: #e6e6e6;
  position: absolute;
  top: 50%;
  margin-top: 40px;
}
.page-route-detail .detail-swiper-box .swiper-prev:hover,
.page-route-detail .detail-swiper-box .swiper-next:hover {
  color: #e71e0f;
}
.page-route-detail .detail-swiper-box .swiper-prev.swiper-button-disabled,
.page-route-detail .detail-swiper-box .swiper-next.swiper-button-disabled {
  opacity: 0.1;
}
.page-route-detail .detail-swiper-box .swiper-prev.swiper-button-disabled:hover,
.page-route-detail .detail-swiper-box .swiper-next.swiper-button-disabled:hover {
  color: #fff;
}
.page-route-detail .detail-swiper-box .swiper-prev {
  left: -30px;
}
.page-route-detail .detail-swiper-box .swiper-next {
  right: -30px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav {
  margin-bottom: 2em;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .detail-swiper-nav-inner {
  display: inline-block;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time {
  display: block;
  float: left;
  cursor: pointer;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time .icon {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  /* IE 9 */
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  /* Firefox */
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  /* Safari 和 Chrome */
  -o-transform: scale3d(0.5, 0.5, 0.5);
  /* Opera */
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time .time-text {
  padding: 0 30px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time .time-text span {
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time .time-text::before {
  width: 20px;
  background-color: #8d8e94;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time .time-text::after {
  width: 20px;
  background-color: #8d8e94;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:first-child .icon {
  margin-left: 10px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:first-child .time-text {
  padding-right: 20px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:first-child .time-text::after {
  width: 10px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:last-child .icon {
  margin-left: -10px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:last-child .time-text {
  padding-left: 20px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:last-child .time-text::before {
  width: 10px;
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time.active .time-text span,
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:hover .time-text span {
  transform: scale3d(1.2, 1.2, 1.2);
  -ms-transform: scale3d(1.2, 1.2, 1.2);
  /* IE 9 */
  -moz-transform: scale3d(1.2, 1.2, 1.2);
  /* Firefox */
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.2, 1.2, 1.2);
  /* Opera */
}
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time.active .icon,
.page-route-detail .detail-swiper-box .detail-swiper-nav .item-time:hover .icon {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  /* IE 9 */
  -moz-transform: scale3d(1, 1, 1);
  /* Firefox */
  -webkit-transform: scale3d(1, 1, 1);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1, 1, 1);
  /* Opera */
}
.page-route-detail .detail-swiper-box .item-time {
  display: none;
  margin-bottom: 1em;
}
.page-route-detail .detail-swiper-box .item-time .fa {
  font-size: 30px;
}
.page-route-detail .detail-swiper-box .item-time .time-text {
  display: inline-block;
  padding: 0 2.5em;
  font-size: 18px;
  position: relative;
}
.page-route-detail .detail-swiper-box .item-time .time-text::before {
  content: '';
  display: block;
  width: 2em;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 0;
}
.page-route-detail .detail-swiper-box .item-time .time-text::after {
  content: '';
  display: block;
  width: 2em;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
}
.page-route-detail .detail-swiper-box .swiper-item .item-inner {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 30px;
  border: 1px solid #3c404b;
  background-color: #1c2439;
}
.page-route-detail .detail-swiper-box .swiper-item .item-img {
  width: 50%;
  height: 300px;
}
.page-route-detail .detail-swiper-box .swiper-item .item-img.atlas-swiper-box .swiper-container.atlas-swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
}
.page-route-detail .detail-swiper-box .swiper-item .item-text {
  width: 50% !important;
  height: 300px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.page-route-detail .detail-swiper-box .swiper-item .item-text .item-text-inner {
  padding: 0 2em;
  color: #fff;
}
.page-route-detail .detail-swiper-box .swiper-item .item-text p {
  font-size: 14px;
  color: #999;
  margin-bottom: 1em;
}
.page-route-detail .route-detail-tip {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.page-route-detail .route-detail-tip .route-detail-tip-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 50px;
  border: 1px solid #3c404b;
  background-color: #1c2439;
  color: #f2f2f2;
}
.page-route-detail .route-detail-tip .route-detail-tip-inner p {
  font: normal 16px/1.5 'Microsoft YaHei';
  margin-bottom: 1em;
  word-wrap: break-word;
}
.route-detail {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 100px;
  border: 1px solid #3b3f49;
  background-color: #1b2438;
  color: #fff;
}
.route-detail .route-detail-inner {
  word-break: break-all;
}
.route-detail .route-detail-inner p {
  font: normal 14px/1.8 'Microsoft YaHei';
  margin-bottom: 1.5em;
  word-break: break-all;
  color: #c9ceda;
}
.route-detail .route-detail-inner p strong {
  display: block;
  margin-bottom: -1em;
  font-size: 16px;
  color: #fff;
}
.page-destination-detail .svgmap-box {
  width: 215px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.page-destination-detail .svgmap-box a {
  display: block;
  cursor: pointer;
}
.page-destination-detail .svgmap-box svg text {
  display: none;
}
.page-destination-detail .svgmap-box svg g {
  cursor: default;
}
.page-destination-detail .svgmap-box.svgmap-box-link {
  cursor: pointer;
}
.page-destination-detail .svgmap-box.svgmap-box-link svg g {
  cursor: pointer;
}
.page-destination-detail .svgmap-box.svgmap-box-link:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: tada;
  animation-name: tada;
}
.page-play .item-title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3em;
  text-shadow: 2px 2px 3px #000;
  text-align: center;
  font: bold 18px/1.5 'Microsoft YaHei';
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-play .item-title::after {
  content: '';
  display: block;
  width: 2em;
  margin: 0.5em auto;
  height: 1px;
  background-color: #fff;
}
.page-play .page-wrapper {
  padding-bottom: 0;
}
.page-play .item {
  position: relative;
}
.page-play .item a {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}
.page-play .item a img {
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-play .item a:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  /* IE 9 */
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  /* Firefox */
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.05, 1.05, 1.05);
  /* Opera */
}
.page-play .item a:hover .item-title {
  transform: translate3d(0, -2em, 0);
  -ms-transform: translate3d(0, -2em, 0);
  /* IE 9 */
  -moz-transform: translate3d(0, -2em, 0);
  /* Firefox */
  -webkit-transform: translate3d(0, -2em, 0);
  /* Safari 和 Chrome */
  -o-transform: translate3d(0, -2em, 0);
  /* Opera */
}
.page-play .play-spot {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-play .play-spot .item {
  width: 48%;
  margin: 0 1%;
  margin-bottom: 1.5em;
}
.page-play .play-spot .item .item-title {
  bottom: 2em;
}
.page-play .play-experience .item {
  width: 20%;
}
.page-play-list .icon.icon-title {
  width: 30px;
  height: 30px;
}
.page-play-list .page-banner .title {
  font: normal 26px/1.5 'Microsoft YaHei';
}
.page-play-list .play-list-box {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 100px 50px;
}
.page-play-list .slect-box {
  width: 100%;
  margin-bottom: 1em;
}
.page-play-list .slect-box .slect-box-inner {
  display: inline-block;
  width: 170px;
  position: relative;
}
.page-play-list .slect-box .slect-box-inner .btn {
  background-color: #1b2438;
  border: 0;
  display: block;
  width: 100%;
  color: #e6e6e6;
  text-align: left;
  padding: 0.8em 1em;
}
.page-play-list .slect-box .slect-box-inner .btn:hover,
.page-play-list .slect-box .slect-box-inner .btn.btn-cur {
  color: #fff;
}
.page-play-list .slect-box .slect-box-inner .btn.slect-btn {
  border: 1px solid #3f434c;
  margin-bottom: 1px;
}
.page-play-list .slect-box .slect-box-inner .btn.slect-btn:hover,
.page-play-list .slect-box .slect-box-inner .btn.slect-btn.slect-btn-open,
.page-play-list .slect-box .slect-box-inner .btn.slect-btn.slect-btn-slected {
  background-color: #e71e0f;
  color: #fff;
}
.page-play-list .slect-box .slect-box-inner .btn-group {
  display: none;
  position: absolute;
  top: 3.4em;
  left: 0;
  width: 100%;
  padding: 0 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  background-color: #1b2438;
  border: 1px solid #3f434c;
  z-index: 10;
}
.page-play-list .slect-box .slect-box-inner .btn-group .btn {
  padding-left: 0;
  padding-right: 0;
}
.page-play-list .slect-box .slect-box-inner .btn-group .btn:first-child {
  border-bottom: 1px solid #3c4457;
}
.page-play-list .slect-box .slect-box-inner .btn-group.btn-group-show {
  display: block;
}
.page-play-list .play-list {
  width: 102%;
  margin: 0 -1%;
}
.page-play-list .play-list .item {
  width: 23%;
  margin: 0 1%;
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
}
.page-play-list .play-list .item .img-box {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.page-play-list .play-list .item .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-play-list .play-list .item .cover-inner {
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-play-list .play-list .item .text {
  display: table-cell;
  vertical-align: middle ;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.page-play-list .play-list .item .text-inner {
  padding: 2em;
  font: normal 14px/1.5 'Microsoft YaHei';
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
.page-play-list .play-list .item .title {
  max-width: 8em;
  margin: 0 auto;
  color: #010100;
  font: normal 24px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-play-list .play-list .item .title::after {
  content: '';
  display: block;
  width: 2em;
  margin: 0.3em auto;
  height: 1px;
  background-color: #010100;
}
.page-play-list .play-list .item p {
  margin-bottom: 0.5em;
  font: normal 16px/1.5 'Microsoft YaHei';
}
.page-play-list .play-list .item p.mask-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.5em;
}
.page-play-list .play-list .item .footer-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 1em 1em;
  color: #fff;
  font: normal 16px/1.5 'Microsoft YaHei';
  opacity: 1;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
}
.page-play-list .play-list .item:hover .cover {
  opacity: 1;
}
.page-play-list .play-list .item:hover .cover-inner {
  background-color: rgba(0, 0, 0, 0.1);
}
.page-play-list .play-list .item:hover .footer-text {
  opacity: 0;
  transform: scale3d(1.6, 1.6, 1.6);
  -ms-transform: scale3d(1.6, 1.6, 1.6);
  /* IE 9 */
  -moz-transform: scale3d(1.6, 1.6, 1.6);
  /* Firefox */
  -webkit-transform: scale3d(1.6, 1.6, 1.6);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.6, 1.6, 1.6);
  /* Opera */
}
.page-detail .swiper-slide {
  position: relative;
}
.page-detail .swiper-slide img {
  width: 100%;
}
.page-detail .swiper-slide .swiper-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.page-detail .swiper-slide .swiper-cover-inner {
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background-color: rgba(0, 0, 0, 0);
}
.page-detail .swiper-slide .swiper-text {
  display: table-cell;
  vertical-align: middle;
}
.page-detail .swiper-slide .swiper-text-inner {
  width: 40%;
  margin: 0 30%;
  padding: 2em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
.page-detail .swiper-slide .title {
  color: #010100;
  font: normal 24px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-detail .swiper-slide .title::after {
  content: '';
  display: block;
  width: 2em;
  margin: 0.5em auto;
  height: 1px;
  background-color: #010100;
}
.page-detail .swiper-slide p {
  margin-bottom: 0.5em;
  font: normal 16px/1.5 'Microsoft YaHei';
}
.page-detail .swiper-slide.swiper-slide-active .swiper-cover {
  display: block;
}
.page-detail .swiper-slide.swiper-slide-active .swiper-cover-inner {
  background-color: rgba(0, 0, 0, 0.1);
}
.page-detail .detail-content {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 100px;
  border: 1px solid #3b3f49;
  background-color: #1b2438;
  color: #fff;
  margin-bottom: 200px;
}
.page-detail .detail-content .video-box {
  width: 100%;
}
.page-detail .detail-content .video-box video {
  width: 100%;
}
.page-detail .detail-content .post-content {
  padding: 0 20px;
  padding-bottom: 40px;
  word-break: break-all;
}
.page-detail .detail-content .post-content h3.title {
  font-size: 16px;
  margin-bottom: 0.5em;
}
.page-detail .detail-content .post-content p {
  font: normal 14px/1.8 'Microsoft YaHei';
  margin-bottom: 1.5em;
  color: #c9ceda;
}
.page-detail .detail-content .post-content .rich-cols-item.open .item-title::after {
  content: "[-]";
}
.page-detail .detail-content .post-content .rich-cols-item.open .item-content {
  display: block;
}
.page-detail .detail-content .post-content .rich-cols-item .item-title {
  cursor: pointer;
  font-size: 16px;
}
.page-detail .detail-content .post-content .rich-cols-item .item-title::after {
  content: "[+]";
  display: inline;
  color: #e71c03;
}
.page-detail .detail-content .post-content .rich-cols-item .item-content {
  display: none;
}
.page-detail .detail-content .detail-footer {
  margin: 0 20px;
  border-top: 1px solid #4b5262;
  padding-top: 40px;
  padding-right: 400px;
  position: relative;
  min-height: 236px;
}
.page-detail .detail-content .detail-footer .detail-info {
  margin-bottom: 2em;
}
.page-detail .detail-content .detail-footer .detail-info .info-item {
  position: relative;
  margin-bottom: 0.5em;
}
.page-detail .detail-content .detail-footer .detail-info .info-item dt {
  position: absolute;
  top: 0;
  left: 0;
}
.page-detail .detail-content .detail-footer .map-box {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -118px;
  width: 386px;
  height: 236px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 10px;
  border: 1px solid #4b5262;
}
.page-detail .detail-content .detail-footer .map-box .map {
  width: 100%;
  height: 100%;
}
.page-detail .detail-content .detail-footer.full-map-box {
  padding-right: 0;
}
.page-detail .detail-content .detail-footer.full-map-box .map-box {
  position: static;
  width: 100%;
  height: 300px;
  margin-top: 0;
}
.page-detail .detail-content .guide-navbox {
  margin-left: calc((100% - 800px) / -16);
  margin-right: calc((100% - 800px) / -16);
  margin-bottom: 27px;
}
.page-detail .detail-content .guide-navbox::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
.page-detail .detail-content .guide-navbox .guide-nav {
  display: block;
  width: 100px;
  height: 100px;
  float: left;
  background: #292f40;
  color: #8b8d94;
  margin: 0 calc((100% - 800px) / 16);
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}
.page-detail .detail-content .guide-navbox .guide-nav:hover {
  background: #e71e0f;
  color: #fff;
}
.page-detail .detail-content .guide-navbox .guide-nav .iconfont {
  font-size: 40px;
}
.page-detail .detail-content .guide-navbox .guide-nav p {
  font-size: 16px;
}
.page-detail .detail-content .guide-navbox .cur {
  background: #e71e0f;
  color: #fff;
}
.page-detail .detail-content .guide-navbox-mobile {
  display: none;
  width: 100%;
}
.page-detail .detail-content .guide-navbox-mobile .swiper-wrapper {
  width: 100%;
  position: relative;
}
.page-detail .detail-content .guide-navbox-mobile .swiper-wrapper:before,
.page-detail .detail-content .guide-navbox-mobile .swiper-wrapper:after {
  content: " ";
  display: table;
}
.page-detail .detail-content .guide-navbox-mobile .swiper-wrapper:after {
  clear: both;
}
.page-detail .detail-content .guide-navbox-mobile .guide-nav-mobile {
  display: block;
  font-size: 0;
  float: left;
  width: 28%;
  padding-top: 10/2;
  height: 150/2;
  margin-right: 8/2;
  text-align: center;
  background: #292f40;
  color: #8b8d94;
}
.page-detail .detail-content .guide-navbox-mobile .guide-nav-mobile .iconfont {
  font-size: 60/2;
}
.page-detail .detail-content .guide-navbox-mobile .guide-nav-mobile p {
  font-size: 24/2;
}
.page-detail .detail-content .guide-navbox-mobile .guide-nav-mobile:last-child {
  margin-right: 0;
}
.page-detail .detail-content .guide-navbox-mobile .cur {
  background: #e71e0f;
  color: #fff;
}
.page-detail .detail-content .guide-listbox {
  margin-left: -7px;
  margin-right: -7px;
}
.page-detail .detail-content .guide-listbox:before,
.page-detail .detail-content .guide-listbox:after {
  content: " ";
  display: table;
}
.page-detail .detail-content .guide-listbox:after {
  clear: both;
}
.page-detail .detail-content .guide-listbox .guide-list {
  margin: 7px;
  width: calc((100% - 42px) / 3);
  display: block;
  text-decoration: none;
  float: left;
}
.page-detail .detail-content .guide-listbox .guide-list .list-top {
  height: 50px;
  line-height: 50px;
  display: block;
  word-wrap: normal;
  /* for IE */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background: #192031;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bcimg {
  width: 100%;
  padding-bottom: 142.85714286%;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bottom {
  width: 100%;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bottom:before,
.page-detail .detail-content .guide-listbox .guide-list .list-bottom:after {
  content: " ";
  display: table;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bottom:after {
  clear: both;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bottom .list-bottom-left {
  width: calc((100% - 1px) / 2);
  float: left;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #70c45f;
  cursor: pointer;
}
.page-detail .detail-content .guide-listbox .guide-list .list-bottom .list-bottom-right {
  width: calc((100% - 1px) / 2);
  float: right;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #e71e0f;
  cursor: pointer;
}
.page-detail .detail-content .guide-listbox-mobile {
  display: none;
  margin-left: -4px;
  margin-right: -4px;
}
.page-detail .detail-content .guide-listbox-mobile:before,
.page-detail .detail-content .guide-listbox-mobile:after {
  content: " ";
  display: table;
}
.page-detail .detail-content .guide-listbox-mobile:after {
  clear: both;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb {
  margin: 4px;
  width: calc((100% - 16px) / 2);
  display: block;
  float: left;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-top-mb {
  height: 50/2;
  line-height: 50/2;
  display: block;
  word-wrap: normal;
  /* for IE */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 26/2;
  color: #fff;
  text-align: center;
  background: #192031;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bcimg-mb {
  width: 100%;
  padding-bottom: 142.85714286%;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb {
  width: 100%;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb:before,
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb:after {
  content: " ";
  display: table;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb:after {
  clear: both;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb .list-bottom-left-mb {
  width: calc((100% - 1px) / 2);
  float: left;
  height: 60/2;
  font-size: 24/2;
  line-height: 60/2;
  text-align: center;
  color: #fff;
  background: #70c45f;
  cursor: pointer;
}
.page-detail .detail-content .guide-listbox-mobile .guide-list-mb .list-bottom-mb .list-bottom-right-mb {
  width: calc((100% - 1px) / 2);
  float: right;
  height: 60/2;
  font-size: 24/2;
  line-height: 60/2;
  text-align: center;
  color: #fff;
  background: #e71e0f;
  cursor: pointer;
}
.page-detail .detail-padding60 {
  padding-left: 100px;
  padding-right: 100px;
}
.page-search-result .page-wrapper {
  padding-top: 120px;
}
.page-search-result .search-list {
  width: 100%;
}
.page-search-result .search-list .item {
  padding: 30px;
  width: 100%;
  margin-bottom: 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}
.page-search-result .search-list .item .item-inner {
  position: relative;
  padding-left: 220px;
  min-height: 200px;
}
.page-search-result .search-list .item .item-inner .img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url(../images/imgs/search_result_img1.jpg) center center no-repeat;
  background-size: cover;
}
.page-search-result .search-list .item .item-inner .title {
  font: normal 26px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-search-result .search-list .item .item-inner .title:after {
  content: '';
  display: block;
  width: 2em;
  height: 1px;
  margin: 0.5em 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-search-result .search-list .item .item-inner p {
  font: normal 16px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.page-search-result .search-list .item.un-result-item .title {
  font: normal 16px/1.5 'Microsoft YaHei';
}
.page-gallery {
  background-color: #000;
}
.page-gallery .logo {
  z-index: 9;
}
.page-gallery .gallery-list {
  width: 100%;
  height: 100%;
}
.page-gallery .gallery-list::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
.page-gallery .gallery-list .item {
  height: 33.33333333%;
  float: left;
  line-height: 0;
  font-size: 0;
  position: relative;
}
.page-gallery .gallery-list .item .cover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 1em;
  font: normal 16px/1.5 'Microsoft YaHei';
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
}
.page-gallery .gallery-list .item .cover-text .desc:nth-of-type(2) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: normal 14px/1.5 'Microsoft YaHei';
  color: #dcdcdc;
}
.page-gallery .gallery-list .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.page-gallery .gallery-list .item:nth-child(6n+1),
.page-gallery .gallery-list .item:nth-child(6n+6) {
  width: 20%;
}
.page-gallery .gallery-list .item:nth-child(6n+2),
.page-gallery .gallery-list .item:nth-child(6n+3),
.page-gallery .gallery-list .item:nth-child(6n+4),
.page-gallery .gallery-list .item:nth-child(6n+5) {
  width: 40%;
}
.page-gallery .gallery-list .item:nth-child(1) {
  position: relative;
  background-color: #000;
  color: #fff;
}
.page-gallery .gallery-list .item:nth-child(1) .title {
  position: absolute;
  right: 1em;
  bottom: 1em;
  font: normal 40px/1.2 'Microsoft YaHei';
}
.page-gallery .gallery-list .item:nth-child(1) .title .bottom-line {
  display: block;
  text-align: right;
  height: 2px;
  line-height: 2px;
}
.page-gallery .gallery-list .item:nth-child(1) .title .bottom-line:after {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 2px;
  background-color: #fff;
}
.page-gallery .images-container-box {
  width: 100%;
}
@media (min-width: 1001px) and (max-width: 1290px) {
  .page-gallery .images-container-box {
    width: 887px;
    margin: 0 auto;
  }
}
.page-gallery .images-container-box .images_item {
  display: inline-block;
  width: 280px;
  height: 208px;
  margin-bottom: 18px;
  overflow: hidden;
  font-size: 0;
  position: relative;
  background-color: #000;
  cursor: pointer;
  margin-right: 18.5px;
}
@media (max-width: 1000px) {
  .page-gallery .images-container-box .images_item {
    margin-right: 4%;
    width: 47%;
  }
  .page-gallery .images-container-box .images_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1001px) and (max-width: 1290px) {
  .page-gallery .images-container-box .images_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1291px) {
  .page-gallery .images-container-box .images_item:nth-of-type(4n) {
    margin-right: 0;
  }
}
.page-gallery .images-container-box .images_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-gallery .images-container-box .images_item .item_footer {
  width: 100%;
  height: auto;
  padding: 30px 15px 10px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #000000);
}
.page-gallery .images-container-box .images_item .item_footer .name {
  font-size: 14px;
  color: #fff;
}
.page-gallery .images-container-box .images_item .item_footer .num {
  font-size: 14px;
  color: #fff;
}
.pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
}
.pop .pop_content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
.pop .pop_content .title {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding-top: 30px;
}
.pop .pop_content .close {
  width: 1em;
  height: 1em;
  font-size: 30px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 0px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s linear;
}
.pop .pop_content .close:hover i {
  color: #b88f69;
}
.pop .pop_content .close i {
  font-size: 30px;
}
@media (max-width: 1200px) {
  .pop .pop_content {
    width: 100%;
  }
}
.pop .pop_content .pop_header {
  width: 100%;
  height: calc(80vh - 60px);
  position: relative;
}
.pop .pop_content .pop_header .pop-images_list {
  width: 100%;
  overflow-x: auto;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  z-index: 10;
}
.pop .pop_content .pop_header .pop-images_list .scroll {
  width: max-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.pop .pop_content .pop_header .pop-images_list .pop-images_list_item {
  margin: 0 10px;
  padding: 4px 20px;
  color: #fff;
  background-color: #000;
  border-radius: 14px;
  font-size: 16px;
  border: 1px solid #fff;
  cursor: pointer;
}
.pop .pop_content .pop_header .pop-images_list .pop-images_list_item.active {
  background-color: #fff;
  color: #000;
}
.pop .pop_content .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pop .pop_content .swiper-button-next,
.pop .pop_content .swiper-button-prev {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop .pop_content .swiper-button-next i,
.pop .pop_content .swiper-button-prev i {
  display: block;
  font-size: 60px;
  line-height: 0;
  color: #fff;
}
.pop .pop_content .swiper-button-next:hover i,
.pop .pop_content .swiper-button-prev:hover i {
  color: #cf1b0d;
}
.pop .pop_content .swiper-button-next.swiper-button-disabled,
.pop .pop_content .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
.pop .pop_content .swiper-button-next.swiper-button-disabled i,
.pop .pop_content .swiper-button-prev.swiper-button-disabled i {
  color: #bfbfbf;
}
@media (max-width: 1200px) {
  .pop .pop_content .swiper-button-next,
  .pop .pop_content .swiper-button-prev {
    display: none;
  }
}
.pop .pop_content .gallery-top {
  width: 100%;
  position: relative;
}
.pop .pop_content .gallery-top .swiper-slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.pop .pop_content .gallery-top .swiper-slide::before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.pop .pop_content .gallery-top .swiper-slide > div {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  min-width: 100px;
  min-height: 100px;
}
.pop .pop_content .gallery-top .swiper-slide > div .lazy {
  display: none !important;
}
.pop .pop_content .gallery-top .swiper-slide > div .lazy.swiper-lazy-loaded {
  display: block !important;
}
.pop .pop_content .gallery-top .swiper-slide p {
  margin-bottom: 2em;
  line-height: 1.5;
  width: 100%;
  color: #fff;
  text-align: center;
}
.pop .pop_content .gallery-top .swiper-slide img {
  width: auto;
  height: auto;
  max-height: calc(80vh - 4em - 100px);
  max-width: 100%;
  vertical-align: middle;
}
.pop .pop_content .gallery-top .swiper-slide div.desc {
  width: 100%;
  left: 0;
  z-index: 2;
  padding: 1em;
  text-align: left;
  white-space: break-spaces;
  line-height: 1.5;
  color: #fff;
  box-sizing: border-box;
}
.pop .pop_content .gallery-top .swiper-slide div.desc .desc_title {
  font-size: 1.1em;
  margin: 0;
  color: #fff;
  display: inline-block;
  text-align: left;
}
.pop .pop_content .gallery-top .swiper-slide .shadow {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 50px 40px rgba(0, 0, 0, 0.5);
}
.pop .pop_content .gallery-thumbs {
  height: 14vh;
  max-height: 140px;
  box-sizing: border-box;
  padding: 10px 0;
}
.pop .pop_content .gallery-thumbs .swiper-slide {
  width: 20vh;
  height: 100%;
  border: 4px solid transparent;
}
.pop .pop_content .gallery-thumbs .swiper-slide.swiper-slide-active {
  border-color: #fff;
}
.pop .pop_content .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pop .pop_content .gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
/* 中等屏幕（桌面显示器，大于等于 1290px ） */
@media screen and (max-width: 1290px) {
  .page-wrapper {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  .page-wrapper.page-full-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .page-route .route-list .list-item .item-img {
    height: 300px;
  }
  .page-route .route-list .list-item .item-text {
    height: 300px;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img {
    height: 282px;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text {
    height: 282px;
  }
  .page-destination-detail .swiper-slide .swiper-text-inner {
    padding: 1.5em;
  }
  .page-play-list .play-list .item .title {
    max-width: 6em;
    font: normal 20px/1.5 'Microsoft YaHei';
  }
  .page-play-list .play-list .item .title::after {
    margin: 0.3em auto;
  }
  .page-play-list .play-list .item p.mask-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3em;
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-detail .detail-padding60 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
/* 中等屏幕（桌面显示器，大于等于 1100px ） */
@media screen and (max-width: 1100px) {
  .page-play .play-spot {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav {
    width: 90px;
    height: 90px;
    margin: 0 calc(6.25% - 45px);
  }
  .page-detail .detail-content .guide-listbox .guide-list .list-top {
    font-size: 16px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav .iconfont {
    font-size: 38px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav p {
    font-size: 15px;
  }
  .page-detail .detail-content .guide-listbox .guide-list .list-top {
    height: 40px;
    line-height: 40px;
  }
}
/* 中等屏幕（桌面显示器，小于1336px） */
@media screen and (max-width: 1336px) {
  .logo {
    width: 220px;
    height: 187px;
  }
  .logo a {
    width: 140px;
    height: 115px;
  }
  .page-play-list .play-list .item .text-inner {
    width: 90%;
    margin: 0 5%;
    padding: 1em;
  }
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1024px) {
  .logo {
    width: 180px;
    height: 153px;
  }
  .logo a {
    width: 114px;
    height: 94px;
  }
  .page-banner .page-banner-content {
    margin: 0 auto;
    padding: 80px 100px 120px 100px;
  }
  .page-banner .page-tip {
    bottom: 40px;
  }
  .page-route .route-list .list-item .item-img {
    height: 260px;
  }
  .page-route .route-list .list-item .item-text {
    height: 260px;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img {
    height: 226px;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text {
    height: 226px;
  }
  .page-detail .detail-content .detail-footer {
    padding-right: 0;
  }
  .page-detail .detail-content .detail-footer .map-box {
    width: 100%;
    position: static;
    margin-top: 0;
  }
  .page-detail .detail-content {
    margin-bottom: 100px;
  }
  .page-gallery .gallery-list .item:nth-child(1) .title {
    font: normal 36px/1.2 'Microsoft YaHei';
  }
  .page-gallery .gallery-list .item:nth-child(1) .title .icon.icon-title {
    width: 36px;
    height: 36px;
  }
  .page-play-list .play-list .item .title {
    max-width: 6em;
    font: normal 18px/1.5 'Microsoft YaHei';
  }
  .page-play-list .play-list .item .title::after {
    margin: 0.3em auto;
  }
  .page-play-list .play-list .item p.mask-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3em;
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-404 .text-404 {
    font-size: 120px;
  }
  .page-404 .footer-404 {
    padding-top: 1em;
  }
  .page-404 .footer-404 p {
    margin-bottom: 0.5em;
  }
  .page-404 .footer-404 .btn-back-home {
    font-size: 14px;
  }
  .page-404 .page-banner .page-banner-content {
    padding-bottom: 80px;
  }
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1000px) {
  .page-banner .page-banner-content {
    width: auto;
    margin: 0 50px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav {
    width: 80px;
    height: 80px;
    margin: 0 calc(6.25% - 40px);
  }
  .page-detail .detail-content .guide-listbox .guide-list .list-top {
    font-size: 16px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav .iconfont {
    font-size: 35px;
  }
  .page-detail .detail-content .guide-navbox .guide-nav p {
    font-size: 12px;
  }
}
/* 小屏幕（平板，小于等于 992px） */
@media screen and (max-width: 992px) {
  .page-about .about-practical-list {
    width: 100%;
  }
  .page-about .about-practical-list li {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-about .about-practical-list img {
    width: 100px;
  }
  .page-route .route-list .list-item .item-img {
    height: 230px;
  }
  .page-route .route-list .list-item .item-text {
    height: 230px;
  }
  .page-route .route-list .list-item .item-title {
    font: normal 20px/1.5 'Microsoft YaHei';
  }
  .page-route .route-list .list-item .item-text .item-text-inner {
    padding: 2em;
  }
  .page-route .route-list .list-item .item-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img {
    height: 210px;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text {
    height: 210px;
  }
  .page-play-list .play-list .item {
    width: 31.33333333%;
    margin-bottom: 30px;
  }
  .page-play-list .play-list .item .footer-text {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .page-banner .crumbs {
    display: none;
  }
  .page-banner .map-link {
    display: inline-block;
  }
  .logo {
    width: 130px;
    height: 110px;
  }
  .logo a {
    width: 82px;
    height: 68px;
  }
  .page-about .about-practical-list {
    width: 100%;
  }
  .page-about .about-practical-list li {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-about .about-practical-list img {
    width: 60px;
  }
  .page-wrapper {
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;
  }
  .page-wrapper.page-full-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .line-air-filter {
    margin: 40px auto;
  }
  .line-air-filter .line-middle {
    height: 80px;
  }
  .icon.icon-title {
    width: 30px;
    height: 30px;
  }
  .page-title {
    font: normal 20px/2 'Microsoft YaHei';
  }
  .page-banner .title {
    font: normal 30px/1.5 'Microsoft YaHei';
  }
  .page-banner .title span {
    margin-right: 30px;
  }
  .page-banner .title::after {
    height: 1px;
  }
  .page-banner p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-banner .page-banner-content {
    width: 90%;
    margin: 0 5%;
    padding: 3em 2em;
    padding-bottom: 60px;
  }
  .page-banner .page-tip {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    bottom: 10px;
  }
  .page-banner .page-tip .page-down-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 30px;
  }
  .page-banner .page-tip .page-tip-inner .page-tip-line {
    top: 50px;
  }
  .page-banner .Eglish-name {
    font: normal 20px/1.5 'Microsoft YaHei';
  }
  .page-about .swiper-container-box {
    padding: 0 60px;
  }
  .page-about .swiper-container-box .swiper-prev,
  .page-about .swiper-container-box .swiper-next {
    display: block;
  }
  .page-about .about-basic-list {
    width: 100%;
    margin: 0 auto;
  }
  .page-about .about-basic-list li {
    width: auto;
    margin: 0;
  }
  .page-route .route-slect-nav {
    padding: 2em 0;
  }
  .page-route .route-slect-nav .slect-nav {
    padding-left: 0;
    position: static;
  }
  .page-route .route-slect-nav .slect-nav .slect-title {
    position: static;
    margin-bottom: 0.3em;
  }
  .page-route .route-list .list-item .item-img {
    width: 100%;
    height: auto;
  }
  .page-route .route-list .list-item .item-text {
    width: 100%;
    height: auto;
  }
  .page-route .route-list .list-item .item-text .item-text-inner {
    padding: 2em;
  }
  .page-route .route-list .list-item .item-img a {
    height: 0;
    padding-bottom: 53.39805825%;
  }
  .page-route-detail .detail-swiper-box {
    padding: 1em;
  }
  .page-route-detail .detail-swiper-box .swiper-container {
    overflow: auto;
  }
  .page-route-detail .detail-swiper-box .swiper-prev,
  .page-route-detail .detail-swiper-box .swiper-next {
    display: none;
  }
  .page-route-detail .detail-swiper-box .swiper-container .swiper-wrapper {
    display: block;
  }
  .page-route-detail .detail-swiper-box .item-time {
    display: block;
  }
  .page-route-detail .detail-swiper-box .detail-swiper-nav {
    display: none;
  }
  .page-route-detail .detail-swiper-box .swiper-item {
    margin-bottom: 2em;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img {
    width: 100%;
    height: 0;
    padding-bottom: 53.7704918%;
    margin-bottom: 1em;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img.atlas-swiper-box {
    height: auto;
    padding-bottom: 0;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img.atlas-swiper-box .swiper-container.atlas-swiper {
    height: auto;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img.atlas-swiper-box .swiper-container.atlas-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-img.atlas-swiper-box .swiper-slide {
    width: 100%;
    height: 0;
    padding-bottom: 53.7704918%;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text {
    width: 100% !important;
    height: auto;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-inner {
    padding: 0;
    border: 0;
    background-color: transparent;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text .item-text-inner {
    padding: 0;
    transform: inherit;
  }
  .page-route-detail .detail-swiper-box .swiper-item .item-text p {
    color: #fff;
  }
  .page-route-detail .route-detail-tip {
    padding: 1em;
  }
  .page-route-detail .route-detail-tip .route-detail-tip-inner {
    padding: 30px;
  }
  .page-route-detail .route-detail-tip .route-detail-tip-inner p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-destination-detail .swiper-slide .swiper-text-inner {
    width: 80%;
    margin: 0 10%;
  }
  .page-destination-detail .swiper-slide .title {
    font: normal 16px/1.5 'Microsoft YaHei';
    max-width: 6em;
  }
  .page-destination-detail .swiper-slide p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-destination-detail .banner-svgmap {
    display: none;
  }
  .page-play .play-spot {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-play .play-spot .item {
    width: 100%;
  }
  .page-play .play-experience .item {
    width: auto;
  }
  .page-play-list .play-list .item {
    width: 48%;
    margin-bottom: 20px;
  }
  .page-play-list .play-list-box {
    padding: 2em 1em;
  }
  .page-play-list .play-list .item .title {
    font: normal 16px/1.5 'Microsoft YaHei';
  }
  .page-play-list .play-list .item p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-play-list .play-list .item .title::after {
    margin: 0.2em auto;
  }
  .page-play-list .play-list .item p.mask-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3em;
  }
  .page-detail .detail-content {
    padding: 4em 1.5em;
  }
  .page-detail .detail-content .post-content {
    padding: 0;
  }
  .page-detail .detail-content .detail-footer {
    margin: 0;
  }
  .page-detail .detail-content {
    margin-bottom: 60px;
  }
  .page-detail .detail-content .detail-footer .detail-info .info-item {
    padding-left: 0;
  }
  .page-detail .detail-content .detail-footer .detail-info .info-item dt {
    position: static;
    margin-bottom: 0.2em;
  }
  .page-search-result .page-wrapper {
    padding-top: 80px;
  }
  .page-search-result .search-list .item {
    padding: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .page-search-result .search-list .item .item-inner {
    padding-left: 110px;
    min-height: 100px;
  }
  .page-search-result .search-list .item .item-inner .img {
    width: 100px;
    height: 100px;
    background: url(../images/imgs/search_result_img1.jpg) center center no-repeat;
    background-size: cover;
  }
  .page-search-result .search-list .item .item-inner .title {
    font: normal 18px/1.5 'Microsoft YaHei';
  }
  .page-search-result .search-list .item .item-inner .title:after {
    margin: 0.2em 0;
  }
  .page-search-result .search-list .item .item-inner p {
    font: normal 14px/1.5 'Microsoft YaHei';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 5em;
  }
  .page-gallery .gallery-list .item {
    width: 100%;
    float: none;
    height: 200px;
  }
  .page-gallery .gallery-list .item:nth-child(6n+1),
  .page-gallery .gallery-list .item:nth-child(6n+6) {
    width: 100%;
  }
  .page-gallery .gallery-list .item:nth-child(6n+2),
  .page-gallery .gallery-list .item:nth-child(6n+3),
  .page-gallery .gallery-list .item:nth-child(6n+4),
  .page-gallery .gallery-list .item:nth-child(6n+5) {
    width: 100%;
  }
  .page-gallery .gallery-list .item:nth-child(1) {
    height: 40px;
    padding: 1em 0;
    font-size: 14px;
  }
  .page-gallery .gallery-list .item:nth-child(1) .title {
    position: static;
    text-align: center;
    font: normal 20px/1 'Microsoft YaHei';
  }
  .page-gallery .gallery-list .item:nth-child(1) .title .title-inner {
    display: inline-block;
    height: 40px;
  }
  .page-gallery .gallery-list .item:nth-child(1) .title .icon.icon-title {
    width: 22px;
    height: 22px;
  }
  .page-gallery .gallery-list .item:nth-child(1) .title .bottom-line {
    display: block;
  }
  .route-detail {
    padding: 4em 2em;
  }
  .route-detail .route-detail-inner p {
    font-size: 14px;
  }
  .page-destination-detail .svgmap-box {
    display: none;
  }
  .page-404 .text-404 {
    font-size: 100px;
  }
  .page-404 .footer-404 {
    padding-top: 1em;
  }
  .page-404 .footer-404 p {
    margin-bottom: 0.5em;
  }
  .page-404 .footer-404 .btn-back-home {
    font-size: 14px;
  }
  .page-404 .page-banner .page-banner-content {
    padding-bottom: 3em;
  }
  .page-detail .detail-content .guide-navbox {
    display: none;
  }
  .page-detail .detail-content .guide-navbox-mobile {
    display: block;
  }
  .page-detail .detail-content .guide-listbox {
    display: none;
  }
  .page-detail .detail-content .guide-listbox-mobile {
    display: block;
  }
}
.jspScrollable:focus {
  border: none;
  outline: none;
}
html,
body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.top-tip {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
.bottom-tip {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
.st0 {
  fill: #F6F6F6;
}
.st1 {
  fill: url(#mapa_07_mapa-africa) !important;
}
.st2 {
  fill: url(#mapa_07_mapa-europa) !important;
}
.st3 {
  opacity: 0.3;
}
.st4 {
  fill: none;
  stroke: #979797;
  stroke-width: 2;
  stroke-miterlimit: 10;
}
.st5 {
  fill: none;
  stroke: #979797;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 6.1632, 6.1632;
}
.st6 {
  fill: none;
  stroke: #979797;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 5.7649, 5.7649;
}
.st7 {
  fill: #CCCCCC;
}
.st8 {
  fill: #CCCCCC;
  stroke: #CCCCCC;
  stroke-miterlimit: 10;
}
.st9 {
  opacity: 0.6;
  fill: #FFFFFF;
}
.st10 {
  fill: #EDC230;
}
.st11 {
  fill: #FFFFFF;
}
.st12 {
  fill: #4B4B4B;
}
.st14 {
  font-size: 12px;
}
.st15 {
  opacity: 0.3055;
  fill: #C5220D;
}
.st16 {
  fill: #C5220D;
}
.st17 {
  opacity: 0.31;
  fill: #C5220D;
}
.area-text {
  fill: white;
}
.area-text-tran {
  fill: transparent;
}
.area-text-black {
  fill: #7f7f7f;
}
.area-font-12 {
  font-size: 12px;
}
.area-font-11 {
  font-size: 11px;
}
.area-font-10 {
  font-size: 10px;
}
.area-font-9 {
  font-size: 9px;
}
.area-font-8 {
  font-size: 8px;
}
svg g {
  cursor: pointer;
}
svg g.svgGHide {
  display: none;
}
svg g.areapHover polygon {
  fill: #c5220d;
  stroke: #ffffff;
}
svg g.areapHover polyline {
  fill: #c5220d;
  stroke: #ffffff;
}
svg g.areapHover rect {
  fill: #c5220d;
  stroke: #ffffff;
}
svg g.areapHover path {
  fill: #c5220d;
  stroke: #ffffff;
}
svg g.areapHover text {
  fill: #000000;
}
svg g.areapHover text.area-text-tran {
  fill: #4b4b4b;
}
svg g.areapHover line {
  stroke: #c5220d;
}
svg g.areapHover polyline.st5 {
  fill: none;
  stroke: #c5220d;
}
svg g.areapHover polyline.st4 {
  fill: none;
  stroke: #c5220d;
}
svg g.areapHover rect.text-bg {
  fill: white;
  stroke: #ffffff;
}
svg g.tooltip circle,
svg g.tooltip text,
svg g.tooltip rect,
svg g.tooltip polygon,
svg g.tooltip g {
  transition: all 0.5s ease;
}
svg g.tooltip.active circle.st9,
svg g.tooltip.areapHover circle.st9 {
  opacity: 0.31;
  fill: #C5220D;
}
svg g.tooltip.active circle.st10,
svg g.tooltip.areapHover circle.st10 {
  fill: #C5220D;
}
svg g.tooltip.active rect,
svg g.tooltip.areapHover rect {
  fill: #C5220D;
}
svg g.tooltip.active text,
svg g.tooltip.areapHover text {
  fill: white;
}
svg g.tooltip.active.height rect,
svg g.tooltip.areapHover.height rect {
  height: 32px;
}
svg g.tooltip.active.height_top rect,
svg g.tooltip.areapHover.height_top rect {
  height: 32px;
  y: -13px;
}
svg g.tooltip.active#chinchon rect,
svg g.tooltip.areapHover#chinchon rect {
  width: 102px;
}
svg g.tooltip.active#granada rect,
svg g.tooltip.areapHover#granada rect {
  width: 114px;
}
svg g.tooltip.active#malaga rect,
svg g.tooltip.areapHover#malaga rect {
  width: 96px;
}
svg g.tooltip.active#cuenca rect,
svg g.tooltip.areapHover#cuenca rect {
  width: 90px;
}
svg g.tooltip.active#merida rect,
svg g.tooltip.areapHover#merida rect {
  width: 90px;
}
svg g.tooltip.active#cordoba rect,
svg g.tooltip.areapHover#cordoba rect {
  width: 116px;
  x: -18;
}
svg g.tooltip.active#cordoba text.st14,
svg g.tooltip.areapHover#cordoba text.st14 {
  transform: translateX(-23px);
}
svg g.svgGHideText {
  cursor: auto;
}
svg g.svgGHideText text {
  display: none;
}
svg g#chinchon:hover rect {
  width: 102px;
}
svg g#granada:hover rect {
  width: 114px;
}
svg g#malaga:hover rect {
  width: 96px;
}
svg g#cuenca:hover rect {
  width: 90px;
}
svg g#merida:hover rect {
  width: 90px;
}
svg g#cordoba:hover rect {
  width: 116px;
  x: -18;
}
svg g#cordoba:hover text.st14 {
  transform: translateX(-23px);
}
svg g.markActive path {
  fill: #c5220d;
}
svg g.markActive text {
  fill: #c5220d;
}
#svgmap {
  width: 100%;
  height: 100%;
  height: auto;
  min-height: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  padding: 100px 0 50px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#svgmap .mapNav {
  width: 22%;
  min-width: 250px;
  max-width: 300px;
  flex-shrink: 0;
  margin-right: 10vw;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav {
    min-width: 200px;
  }
}
#svgmap .mapNav .mapNav_title {
  font-size: 40px;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
  font-family: youxuan;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .mapNav_title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
#svgmap .mapNav .mapNav_title .line {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 80px;
  height: 6px;
  background: #FFC107;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .mapNav_title .line {
    width: 60px;
    bottom: -20px;
    height: 4px;
  }
}
#svgmap .mapNav .nav {
  margin-bottom: 20px;
}
#svgmap .mapNav .nav .nav-item {
  margin-bottom: 2px;
  line-height: 1;
  background-color: #2C3C55;
}
#svgmap .mapNav .nav .nav-item::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
#svgmap .mapNav .nav .nav-item .fa-angle-right {
  display: none;
}
#svgmap .mapNav .nav .nav-item.nav-item-cur .nav-item-title {
  display: none;
}
#svgmap .mapNav .nav .nav-item.nav-item-cur .nav-item-content {
  display: flex;
}
#svgmap .mapNav .nav .nav-item.nav-item-cur .nav-item-content .nav-post-list {
  display: block;
}
#svgmap .mapNav .nav .nav-item .nav-item-content {
  width: 100%;
  aspect-ratio: 300 / 420;
  background-size: cover;
  background-position: center center;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-item-content-default {
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(0, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  text-align-last: left;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .nav .nav-item .nav-item-content .nav-item-content-default {
    font-size: 12px;
  }
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-item-content-default .nav-item-content-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .nav .nav-item .nav-item-content .nav-item-content-default .nav-item-content-title {
    font-size: 18px;
  }
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  display: none;
  transition: all 0.3s;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list.active {
  z-index: 10;
  opacity: 1;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item {
  width: 100%;
  height: 100%;
  background-color: #2c3c55;
  background-image: url();
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item.active {
  z-index: 10;
  opacity: 1;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item[data-role="autonomousRegion"] .nav-post-item-content .nav-post-item-link {
  display: none;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content {
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(0, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  text-align-last: left;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content {
    font-size: 12px;
  }
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content .nav-post-item-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 2px;
}
@media screen and (max-width: 1024px) {
  #svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content .nav-post-item-title {
    font-size: 18px;
  }
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content .nav-post-item-title-sub {
  line-height: 20px;
  margin-bottom: 4px;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content .nav-post-item-link {
  font-weight: bold;
}
#svgmap .mapNav .nav .nav-item .nav-item-content .nav-post-list .nav-post-item .nav-post-item-content .nav-post-item-desc {
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#svgmap .mapNav .nav .nav-item .nav-item-title {
  width: 100%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
}
#svgmap .mapNav .mapNav-footer {
  padding: 1.5em 1em;
  background-color: #f4f4f4;
  color: #808080;
}
#svgmap .mapNav .mapNav-footer li {
  display: none;
}
#svgmap .mapNav .mapNav-footer li.content-show {
  display: block;
}
#svgmap #map {
  max-width: 100%;
  height: 100%;
  overflow: visible;
  transform: translate(-10px, 20px);
}
#svgmap .mapArea {
  flex: 1;
  height: 100%;
  transform: translateX(-3vw);
}
#svgmap .mapArea .mapArea-inner {
  width: 100%;
  height: 100%;
  width: 95%;
  position: relative;
  display: flex;
  justify-content: end;
}
#svgmap .mapArea .mapArea-inner .content-item {
  display: none;
}
#svgmap .mapArea .mapArea-inner .content-item.content-item-show {
  display: block;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item {
  width: 360px;
  padding: 25px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #f3f3f3;
  box-shadow: 1.5px 2.598px 9px 0px #0a0205;
  position: absolute;
  margin-left: -180px;
  display: none;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item.list-item-show {
  display: block;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner {
  position: relative;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner::before {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  left: 50%;
  margin-left: -10px;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner a.img-box {
  display: block;
  overflow: hidden;
  min-height: 120px;
  margin-bottom: 10px;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner a.img-box img {
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner a.img-box:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  /* IE 9 */
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  /* Firefox */
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.05, 1.05, 1.05);
  /* Opera */
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner h3 {
  font: normal 16px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner h3 a {
  color: #1a1a1a;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner h3 a[data-spain-name]:not([data-spain-name=""])::after {
  content: attr(data-spain-name);
  display: inline-block;
  margin-left: 5px;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner h3 a:hover {
  color: #000;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner .detail {
  font: normal 14px/1.5 'Microsoft YaHei';
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #666;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner .closeMapMark {
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
  border: 0;
  color: #666;
  background-color: transparent;
  position: absolute;
  top: -26px;
  right: -26px;
  font-size: 20px;
  z-index: 10;
}
#svgmap .mapArea .mapArea-inner .content-item .list-item .list-item-inner .closeMapMark:hover {
  color: #333;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='aragon'] {
  top: 156px;
  left: 566px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='aragon'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='asturias'] {
  top: 50px;
  left: 348px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='asturias'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='pais-vasco'] {
  top: 63px;
  left: 488px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='pais-vasco'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='baleares'] {
  top: 298px;
  left: 710px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='baleares'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cantabria'] {
  top: 56px;
  left: 427px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cantabria'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='castilla-la-mancha'] {
  top: 287px;
  left: 472px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='castilla-la-mancha'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='castilla-y-leon'] {
  top: 156px;
  left: 405px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='castilla-y-leon'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cataluna'] {
  top: 140px;
  left: 670px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cataluna'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='extremadura'] {
  top: 294px;
  left: 336px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='extremadura'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='galicia'] {
  top: 86px;
  left: 262px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='galicia'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='la-rioja'] {
  top: 113px;
  left: 484px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='la-rioja'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='madrid'] {
  top: 220px;
  left: 434px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='madrid'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='region-de-murcia'] {
  bottom: 256px;
  left: 537px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='region-de-murcia'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='navarra'] {
  top: 91px;
  left: 526px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='navarra'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='region-de-valencia'] {
  top: 283px;
  left: 570px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='region-de-valencia'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='andalucia'] {
  bottom: 220px;
  left: 390px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='andalucia'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ceuta'] {
  bottom: 138px;
  left: 394px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ceuta'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='melilla'] {
  bottom: 94px;
  left: 472px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='melilla'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='canarias'] {
  bottom: 134px;
  left: 180px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='canarias'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='bilbao'] {
  top: 70px;
  left: 482px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='bilbao'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='zaragoza'] {
  top: 147px;
  left: 567px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='zaragoza'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='segovia'] {
  top: 148px;
  left: 420px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='segovia'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='madrid-madrid_city'] {
  top: 233px;
  left: 465px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='madrid-madrid_city'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='toledo'] {
  top: 274px;
  left: 440px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='toledo'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='sevilla'] {
  bottom: 220px;
  left: 356px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='sevilla'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='granada'] {
  bottom: 200px;
  left: 458px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='granada'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='malaga'] {
  bottom: 178px;
  left: 420px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='malaga'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='valencia'] {
  top: 300px;
  left: 588px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='valencia'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='barcelona'] {
  top: 160px;
  left: 666px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='barcelona'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santander'] {
  top: 40px;
  left: 457px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santander'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='valldemossa'] {
  top: 260px;
  left: 732px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='valldemossa'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='jerez-de-la-frontera'] {
  bottom: 190px;
  left: 342px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='jerez-de-la-frontera'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santo-domingo-de-la-calzada'] {
  top: 100px;
  left: 436px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santo-domingo-de-la-calzada'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='peniscola'] {
  top: 216px;
  left: 580px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='peniscola'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='mijas'] {
  bottom: 190px;
  left: 436px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='mijas'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cadaques'] {
  top: 120px;
  left: 720px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cadaques'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='aranjuez'] {
  top: 244px;
  left: 480px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='aranjuez'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='almagro'] {
  top: 300px;
  left: 476px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='almagro'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='chinchon'] {
  top: 220px;
  left: 470px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='chinchon'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ronda'] {
  bottom: 192px;
  left: 393px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ronda'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ubeda'] {
  bottom: 265px;
  left: 454px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='ubeda'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='tarragona'] {
  top: 160px;
  left: 634px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='tarragona'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santiago-de-compostela'] {
  top: 73px;
  left: 286px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='santiago-de-compostela'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='san-cristobal-de-la-laguna'] {
  bottom: 110px;
  left: 180px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='san-cristobal-de-la-laguna'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='salamanca'] {
  top: 187px;
  left: 372px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='salamanca'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='merida'] {
  top: 310px;
  left: 340px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='merida'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='eivissa'] {
  top: 310px;
  left: 700px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='eivissa'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cordoba'] {
  bottom: 266px;
  left: 378px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cordoba'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='caceres'] {
  top: 270px;
  left: 334px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='caceres'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cuenca'] {
  top: 244px;
  left: 530px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='cuenca'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='avila'] {
  top: 206px;
  left: 393px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='avila'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='alcala-de-henares'] {
  top: 207px;
  left: 500px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='alcala-de-henares'] .list-item-inner::before {
  top: -43px;
  border-color: transparent transparent #f3f3f3 transparent;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='baeza'] {
  bottom: 262px;
  left: 424px;
}
#svgmap .mapArea .mapArea-inner .content-item.content-area .list-item[data-id='baeza'] .list-item-inner::before {
  bottom: -43px;
  border-color: #f3f3f3 transparent transparent transparent;
}
#destination-moble {
  display: none;
  padding-top: 80px;
}
#destination-moble .moble-title {
  font: normal 16px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
  color: #fff;
}
#destination-moble .moble-sction {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #fff;
  padding: 2em 5%;
  margin-bottom: 2em;
}
#destination-moble .moble-sction .line {
  clear: both;
  width: 100%;
  height: 1px;
  background-color: #cecece;
}
#destination-moble .moble-sction .moble-sction-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
#destination-moble .moble-sction a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  color: #333;
  font: normal 14px/1.5 'Microsoft YaHei';
  position: relative;
  padding: 0.5em 0;
  white-space: nowrap;
}
#destination-moble .moble-sction a:hover {
  color: #e71e0f;
}
#destination-moble .moble-sction a[data-spain-name]:not([data-spain-name=""])::after {
  content: attr(data-spain-name);
  display: block;
}
#destination-moble .moble-sction a:nth-child(2n-1):before {
  content: '';
  display: block;
  height: 1em;
  width: 1px;
  background-color: #cecece;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
}
#destination-moble .moble-sction a.un-right-border::after {
  display: none;
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1024px) {
  #svgmap .mapNav {
    margin-right: 70px;
  }
  #svgmap .mapArea {
    transform: translateX(-1vw);
  }
}
/* 中等屏幕（小于 992px）*/
@media (max-width: 992px) {
  #svgmap {
    box-sizing: border-box;
  }
  #svgmap .mapNav {
    margin-right: 30px;
  }
  #svgmap .mapArea {
    transform: translateX(0);
  }
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  #svgmap {
    display: none;
  }
  .page.page-destination {
    background: url(../images/imgs/destination_bg_m.jpg) center center no-repeat;
    background-size: cover;
  }
  #destination-moble {
    display: block;
  }
}
.page-home .footer {
  border-top: 1px solid #000;
  margin-top: -210px;
}
@media screen and (max-width: 1024px) {
  .page-home .footer {
    margin-top: -170px;
  }
}
@media screen and (max-width: 993px) {
  .page-home .footer {
    margin-top: -225px;
  }
}
.page-home .page-inner-home {
  width: 100%;
  height: 100%;
}
.page-home #main-swiper {
  width: 100%;
  height: 100%;
}
.page-home #main-swiper .swiper_footer {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1371px) {
  .page-home #main-swiper .swiper_footer {
    bottom: 30px;
  }
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper .swiper_footer {
    width: 100%;
  }
}
.page-home #main-swiper .swiper_footer .main-slide-prevBtn,
.page-home #main-swiper .swiper_footer .main-slide-nextBtn {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC;
  font-size: 40px;
  cursor: pointer;
}
.page-home #main-swiper .swiper_footer .main-slide-prevBtn:hover,
.page-home #main-swiper .swiper_footer .main-slide-nextBtn:hover {
  background: #B2341E;
  color: #FFFFFF;
}
.page-home #main-swiper .swiper_footer .main-slide-prevBtn.swiper-button-disabled,
.page-home #main-swiper .swiper_footer .main-slide-nextBtn.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1371px) {
  .page-home #main-swiper .swiper_footer .main-slide-prevBtn,
  .page-home #main-swiper .swiper_footer .main-slide-nextBtn {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper .swiper_footer .main-slide-prevBtn,
  .page-home #main-swiper .swiper_footer .main-slide-nextBtn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}
.page-home #main-swiper .swiper_footer .main-slide-prevBtn {
  margin-right: 35px;
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper .swiper_footer .main-slide-prevBtn {
    margin-right: 20px;
  }
}
.page-home #main-swiper .swiper_footer .main-slide-nextBtn {
  margin-left: 35px;
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper .swiper_footer .main-slide-nextBtn {
    margin-left: 20px;
  }
}
.page-home #main-swiper .swiper_footer .main-slide-num {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 1371px) {
  .page-home #main-swiper .swiper_footer .main-slide-num {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper .swiper_footer .main-slide-num {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .page-home #main-swiper {
    height: 450px;
  }
}
.page-home #main-swiper .swiper-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 200px;
  background-image: url(../images/imgs/bgSpainMr.jpg);
  background-color: #333;
}
.page-home #main-swiper .swiper-slide .swiper-slide_img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
}
.page-home #main-swiper .swiper-slide.video {
  position: relative;
  background-image: none;
  background-color: #000;
}
.page-home #main-swiper .swiper-slide.video video {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.page-home #main-swiper .swiper-slide.video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  width: 48px;
  height: 48px;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 1371px) {
  .page-home #main-swiper .swiper-slide.video .video-play {
    width: 38px;
    height: 38px;
  }
}
.page-home #main-swiper .swiper-slide.video .video-play i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #fff;
  padding: 10px;
  display: none;
}
.page-home #main-swiper .swiper-slide.video .video-play i.show {
  display: inline-block;
}
@media screen and (max-width: 1371px) {
  .page-home #main-swiper .swiper-slide.video .video-play i {
    width: 18px;
    height: 18px;
    padding: 5px;
  }
}
.page-home #main-swiper .swiper-container-vertical > .swiper-pagination-bullets {
  right: 70px;
}
.page-home #main-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 8px 0;
}
.page-home #main-swiper .main-slide {
  position: relative;
}
.page-home #main-swiper .main-slide .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page-home #main-swiper .main-slide .slide-inner a:hover {
  text-decoration: none;
}
.page-home #main-swiper .main-slide .slide-content {
  width: 100%;
  height: 100%;
  max-width: 1190px;
  margin: 0 auto;
  display: table;
}
.page-home #main-swiper .main-slide .slide-content .slide-text {
  display: table-cell;
  vertical-align: middle;
}
.page-home #main-swiper .faceTextPc from {
  background-position: 0 0;
}
.page-home #main-swiper .faceTextPc to {
  background-position: 0 -7920px;
}
@keyframes faceTextPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -7920px;
  }
}
@-moz-keyframes faceTextPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -7920px;
  }
}
@-webkit-keyframes faceTextPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -7920px;
  }
}
@-o-keyframes faceTextPc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -7920px;
  }
}
.page-home #main-swiper .faceTextMobile from {
  background-position: 0 0;
}
.page-home #main-swiper .faceTextMobile to {
  background-position: 0 -11400px;
}
@keyframes faceTextMobile {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -11400px;
  }
}
@-moz-keyframes faceTextMobile {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -11400px;
  }
}
@-webkit-keyframes faceTextMobile {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -11400px;
  }
}
@-o-keyframes faceTextMobile {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -11400px;
  }
}
.page-home #main-swiper .main-slide-face {
  background: url(../images/imgs/home_ms1_bg.jpg) center center no-repeat;
  background-size: cover;
}
.page-home #main-swiper .main-slide-face .slide-content {
  width: 100%;
  height: 100%;
}
.page-home #main-swiper .main-slide-face .slide-content .slide-text-pc {
  display: block;
}
.page-home #main-swiper .main-slide-face .slide-content .slide-text-moble {
  display: none;
}
.page-home #main-swiper .main-slide-face #home_svg {
  width: 137px;
  height: 161px;
}
.page-home #main-swiper .main-slide-face .face-text {
  width: 550px;
  height: 220px;
  background: url(../images/imgs/face_text_pc.png) 0 0 no-repeat;
}
.page-home #main-swiper .main-slide-face .face-text.face-text-animated {
  -ms-animation: faceTextPc 2s steps(36) 1 normal forwards;
  -moz-animation: faceTextPc 2s steps(36) 1 normal forwards;
  -o-animation: faceTextPc 2s steps(36) 1 normal forwards;
  -webkit-animation: faceTextPc 2s steps(36) 1 normal forwards;
  animation: faceTextPc 2s steps(36) 1 normal forwards;
}
.page-home #main-swiper .main-slide-experience,
.page-home #main-swiper .main-slide-spot,
.page-home #main-swiper .main-slide-destination {
  color: #fff;
}
.page-home #main-swiper .main-slide-experience .footer-line,
.page-home #main-swiper .main-slide-spot .footer-line,
.page-home #main-swiper .main-slide-destination .footer-line {
  display: inline-block;
  width: 3em;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-experience .icon.icon-title,
.page-home #main-swiper .main-slide-spot .icon.icon-title,
.page-home #main-swiper .main-slide-destination .icon.icon-title {
  width: 30px;
  height: 30px;
}
.page-home #main-swiper .main-slide-experience .title,
.page-home #main-swiper .main-slide-spot .title,
.page-home #main-swiper .main-slide-destination .title {
  font: normal 26px/1.5 'Microsoft YaHei';
}
.page-home #main-swiper .main-slide-experience .title span,
.page-home #main-swiper .main-slide-spot .title span,
.page-home #main-swiper .main-slide-destination .title span {
  padding-bottom: 0.2em;
  margin-right: 30px;
  font-style: italic;
  border-bottom: 2px solid #fff;
}
.page-home #main-swiper .main-slide-experience .child-title,
.page-home #main-swiper .main-slide-spot .child-title,
.page-home #main-swiper .main-slide-destination .child-title {
  font: normal 52px/2 'Microsoft YaHei';
}
.page-home #main-swiper .main-slide-experience p,
.page-home #main-swiper .main-slide-spot p,
.page-home #main-swiper .main-slide-destination p {
  font: normal 18px/1.5 'Microsoft YaHei';
}
.page-home #main-swiper .main-slide-experience p.mobile-link,
.page-home #main-swiper .main-slide-spot p.mobile-link,
.page-home #main-swiper .main-slide-destination p.mobile-link {
  display: none;
}
.page-home #main-swiper .main-slide-experience .experience-slide-nav,
.page-home #main-swiper .main-slide-spot .experience-slide-nav,
.page-home #main-swiper .main-slide-destination .experience-slide-nav {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font: normal 14px/1.5 'Microsoft YaHei';
  font-style: italic;
  z-index: 999;
}
.page-home #main-swiper .main-slide-experience .experience-slide-nav li,
.page-home #main-swiper .main-slide-spot .experience-slide-nav li,
.page-home #main-swiper .main-slide-destination .experience-slide-nav li {
  margin: 0.3em 0;
  cursor: pointer;
  transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  /* IE 9 */
  -moz-transform: scale3d(1, 1, 1);
  /* Firefox */
  -webkit-transform: scale3d(1, 1, 1);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1, 1, 1);
  /* Opera */
}
.page-home #main-swiper .main-slide-experience .experience-slide-nav li.cur,
.page-home #main-swiper .main-slide-spot .experience-slide-nav li.cur,
.page-home #main-swiper .main-slide-destination .experience-slide-nav li.cur {
  transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  /* IE 9 */
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  /* Firefox */
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.1, 1.1, 1.1);
  /* Opera */
  -ms-transform-origin: left center;
  /* IE 9 */
  -moz-transform-origin: left center;
  /* Firefox */
  /* Safari 和 Chrome */
  -o-transform-origin: left center;
  /* Opera */
  -webkit-transform-origin: left center;
  transform-origin: left center;
  color: #e71e0f;
}
.page-home #main-swiper .main-slide-experience .experience-slide-nav li.cur span,
.page-home #main-swiper .main-slide-spot .experience-slide-nav li.cur span,
.page-home #main-swiper .main-slide-destination .experience-slide-nav li.cur span {
  border-bottom: 1px solid #e71e0f;
}
.page-home #main-swiper .main-slide-experience .text-right,
.page-home #main-swiper .main-slide-destination .text-right {
  padding-right: 10%;
}
.page-home #main-swiper .main-slide-experience .title span,
.page-home #main-swiper .main-slide-destination .title span {
  margin-right: 0;
}
.page-home #main-swiper .main-slide-wechat {
  background: url(../images/imgs/home_ms5_bg.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
}
.page-home #main-swiper .main-slide-wechat .tab-line {
  color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-wechat .slide-title {
  font: italic normal 16px/1.5 'Microsoft YaHei';
  margin: 0 1.3em 2em;
  display: inline-block;
}
.page-home #main-swiper .main-slide-wechat .slide-title .icon.icon-title {
  width: 0px;
  height: 0px;
}
.page-home #main-swiper .main-slide-wechat .slide-title span {
  color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-wechat .slide-title.cur .icon.icon-title {
  width: 30px;
  height: 30px;
}
.page-home #main-swiper .main-slide-wechat .slide-title.cur span {
  color: #fff;
  padding-bottom: 0.2em;
  font-size: 26px;
  font-style: italic;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
.page-home #main-swiper .main-slide-wechat .slide-video,
.page-home #main-swiper .main-slide-wechat .slide-wechat {
  min-height: 530px;
  display: none;
}
.page-home #main-swiper .main-slide-wechat .slide-video.on,
.page-home #main-swiper .main-slide-wechat .slide-wechat.on {
  display: block;
}
.page-home #main-swiper .main-slide-wechat #slide-video .img-box {
  position: relative;
}
.page-home #main-swiper .main-slide-wechat #slide-video .img-box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.page-home #main-swiper .main-slide-wechat #slide-video .img-box .fa-play {
  z-index: 2;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-home #main-swiper .main-slide-wechat #slide-video .header {
  padding-bottom: 0.6em;
}
.page-home #main-swiper .main-slide-wechat #slide-video .header .date {
  font-size: 16px;
  font-weight: bold;
}
.page-home #main-swiper .main-slide-wechat #slide-video .title,
.page-home #main-swiper .main-slide-wechat #slide-video .source {
  font: normal 12px/1.5 'Microsoft YaHei';
  color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-wechat #slide-video .title {
  color: #fff;
}
.page-home #main-swiper .main-slide-wechat #slide-video .title:after {
  margin: 1.5em 0;
}
.page-home #main-swiper .main-slide-wechat .swiper-next {
  display: none;
  width: 100%;
}
.page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn,
.page-home #main-swiper .main-slide-wechat .video-slide-next-btn {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 99;
  width: 26px;
  height: 26px;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -moz-transform: rotate(-45deg);
  /* Firefox */
  -webkit-transform: rotate(-45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(-45deg);
  /* Opera */
}
.page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn .fa,
.page-home #main-swiper .main-slide-wechat .video-slide-next-btn .fa {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(45deg);
  /* Opera */
}
.page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn:hover,
.page-home #main-swiper .main-slide-wechat .video-slide-next-btn:hover {
  border-color: #e71e0f;
  color: #e71e0f;
}
.page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn.swiper-button-disabled,
.page-home #main-swiper .main-slide-wechat .video-slide-next-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn.swiper-button-disabled:hover,
.page-home #main-swiper .main-slide-wechat .video-slide-next-btn.swiper-button-disabled:hover {
  border-color: #fff;
  color: #fff;
}
.page-home #main-swiper .main-slide-wechat .slide-inner {
  width: 100%;
}
.page-home #main-swiper .main-slide-wechat .swiper-container {
  width: 100%;
}
.page-home #main-swiper .main-slide-wechat .slide-list {
  width: 102%;
  margin: 0 -1%;
}
.page-home #main-swiper .main-slide-wechat .slide-list::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide {
  width: 23%;
  margin: 0 1%;
  float: left;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide a {
  display: block;
  text-align: left;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide a:hover {
  text-decoration: none;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header {
  color: rgba(255, 255, 255, 0.5);
  font: normal 14px/1.5 'Arial';
  margin-bottom: 0.5em;
  letter-spacing: 0.2em;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header .date {
  color: #fff;
  font: normal 36px/1.5 'Georgia';
  padding-right: 0.2em;
  letter-spacing: 0;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .title {
  margin: 0.5em 0;
  margin-top: 1em;
  font: normal 18px/1.5 'Microsoft YaHei';
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .title:after {
  content: '';
  display: block;
  width: 3em;
  height: 2px;
  margin-top: 0.3em;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .img {
  overflow: hidden;
  display: block;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .img img {
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(1),
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(3) {
  padding-top: 120px;
}
.page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:hover .img img {
  transform: scale3d(1.2, 1.2, 1.2);
  -ms-transform: scale3d(1.2, 1.2, 1.2);
  /* IE 9 */
  -moz-transform: scale3d(1.2, 1.2, 1.2);
  /* Firefox */
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.2, 1.2, 1.2);
  /* Opera */
}
.page-home #main-swiper .main-slide-special {
  color: #fff;
}
.page-home #main-swiper .main-slide-special .footer-line {
  display: inline-block;
  width: 3em;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-home #main-swiper .main-slide-special .icon.icon-title {
  width: 30px;
  height: 30px;
}
.page-home #main-swiper .main-slide-special .title {
  font: normal 26px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.page-home #main-swiper .main-slide-special .title span {
  padding-bottom: 0.2em;
  margin-right: 30px;
  font-style: italic;
  border-bottom: 2px solid #fff;
}
.page-home #main-swiper .main-slide-special .child-title {
  font: normal 40px/1.5 'Microsoft YaHei';
}
.page-home #main-swiper .main-slide-special p.mobile-link {
  display: none;
}
.page-home #main-swiper .main-slide-special .slide-text-inner {
  width: 560px;
  margin: 0 auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 30px 50px;
  background-color: rgba(0, 0, 0, 0.5);
}
.page-home .home_title {
  font-size: 40px;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
  font-family: youxuan;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .page-home .home_title {
    font-size: 30px;
  }
}
.page-home .home_title .moer {
  width: 100px;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #2C3C55;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  color: #2C3C55;
  cursor: pointer;
  font-family: auto;
}
@media screen and (max-width: 800px) {
  .page-home .home_title .moer {
    width: 70px;
    height: 26px;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: -40px;
  }
}
.page-home .home_title .line {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 80px;
  height: 6px;
  background: #FFC107;
}
@media screen and (max-width: 800px) {
  .page-home .home_title .line {
    width: 60px;
    bottom: -20px;
    height: 4px;
  }
}
.page-home .home_map {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 100px auto 0;
}
.page-home .home_map .moer {
  display: none;
}
@media screen and (max-width: 800px) {
  .page-home .home_map {
    margin-top: 40px;
    max-width: 100%;
  }
  .page-home .home_map .home_title {
    margin-left: 15px;
    margin-right: 15px;
    box-sizing: border-box;
  }
  .page-home .home_map .home_title .moer {
    display: block;
  }
}
.page-home .home_map .home_map_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .home_map .home_map_content {
    align-items: center;
  }
}
.page-home .home_map .home_map_content .left {
  width: 400px;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .left {
    width: 280px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .left {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.page-home .home_map .home_map_content .left .list_item {
  background-color: #2C3C55;
  margin-top: 2px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .left .list_item {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .left .list_item {
    width: 33%;
  }
}
.page-home .home_map .home_map_content .left .list_item.active .content {
  display: flex;
  height: 450px;
  background: url(../images/imgs/about_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .left .list_item.active .content {
    height: 300px;
  }
}
.page-home .home_map .home_map_content .left .list_item.active .title {
  display: none;
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .left .list_item.active .content {
    display: none;
  }
  .page-home .home_map .home_map_content .left .list_item.active .title {
    display: block;
    background-color: #D13C26;
  }
}
.page-home .home_map .home_map_content .left .list_item .title {
  width: 100%;
  text-align: center;
  height: 68px;
  line-height: 68px;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.2s linear;
}
@media screen and (min-width: 801px) {
  .page-home .home_map .home_map_content .left .list_item .title:hover {
    color: #fff;
  }
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .left .list_item .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .left .list_item .title {
    display: block;
    height: auto;
    line-height: 1.5;
    font-size: 14px;
    padding: 10px 0;
  }
}
.page-home .home_map .home_map_content .left .list_item .content {
  display: none;
  box-sizing: border-box;
  align-items: flex-end;
  align-content: end;
  flex-wrap: wrap;
}
.page-home .home_map .home_map_content .left .list_item .content .move {
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  padding: 30px;
}
.page-home .home_map .home_map_content .left .list_item .content .content_title {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .left .list_item .content .content_title {
    font-size: 24px;
  }
}
.page-home .home_map .home_map_content .left .list_item .content .desc {
  margin-top: 10px;
  margin-bottom: 13px;
  font-size: 16px;
  color: #fff;
  opacity: 0.78;
  line-height: 24px;
  font-weight: 400;
}
.page-home .home_map .home_map_content .right_map {
  width: 860px;
  position: relative;
  display: flex;
  min-width: 556px;
  margin-right: 30px;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map {
    width: 55vw;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .right_map {
    display: none;
  }
}
.page-home .home_map .home_map_content .right_map .item {
  position: absolute;
  align-items: center;
  display: none;
}
.page-home .home_map .home_map_content .right_map .item.show {
  display: flex;
}
.page-home .home_map .home_map_content .right_map .item:hover#santiago-de-compostela .title[data-spain-name]:not([data-spain-name=""])::after {
  display: block;
  margin-left: 0;
}
.page-home .home_map .home_map_content .right_map .item:hover .title {
  background-color: #B2341E;
  color: #fff;
}
.page-home .home_map .home_map_content .right_map .item:hover .title[data-spain-name]:not([data-spain-name=""])::after {
  display: inline-block;
}
.page-home .home_map .home_map_content .right_map .item:hover .dian {
  background: #B2341E;
}
.page-home .home_map .home_map_content .right_map .item#san-cristobal-de-la-laguna {
  top: 81%;
  left: 11%;
}
.page-home .home_map .home_map_content .right_map .item#santiago-de-compostela {
  left: 29%;
  top: 10%;
}
.page-home .home_map .home_map_content .right_map .item#santiago-de-compostela .title {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.page-home .home_map .home_map_content .right_map .item#salamanca {
  left: 43.5%;
  top: 29%;
  flex-direction: column-reverse;
}
.page-home .home_map .home_map_content .right_map .item#salamanca .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#salamanca .title {
  margin-bottom: 10px;
  position: absolute;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#salamanca .title {
    bottom: 13px;
  }
}
.page-home .home_map .home_map_content .right_map .item#avila {
  left: 48.3%;
  top: 31.6%;
  flex-direction: column;
}
.page-home .home_map .home_map_content .right_map .item#avila .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#avila .title {
  margin-top: 10px;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#avila .title {
    top: 10px;
  }
}
.page-home .home_map .home_map_content .right_map .item#alcala-de-henares {
  left: 55.5%;
  top: 31.5%;
}
.page-home .home_map .home_map_content .right_map .item#tarragona {
  left: 83%;
  top: 24%;
}
.page-home .home_map .home_map_content .right_map .item#caceres {
  left: 40.8%;
  top: 42%;
}
.page-home .home_map .home_map_content .right_map .item#merida {
  right: 54%;
  left: auto;
  top: 49%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#merida .title {
  margin-right: 10px;
}
.page-home .home_map .home_map_content .right_map .item#cordoba {
  left: auto;
  right: 49.5%;
  top: 56%;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#cordoba .title {
  margin-right: 10px;
}
.page-home .home_map .home_map_content .right_map .item#baeza {
  left: 53.3%;
  top: 60%;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-home .home_map .home_map_content .right_map .item#baeza .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#baeza .title {
  margin-top: 10px;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#baeza .title {
    top: 13px;
  }
}
.page-home .home_map .home_map_content .right_map .item#ubeda {
  left: 59%;
  top: 58.5%;
}
.page-home .home_map .home_map_content .right_map .item#cuenca {
  left: 65%;
  top: 37%;
}
.page-home .home_map .home_map_content .right_map .item#eivissa {
  left: 83%;
  top: 45%;
}
.page-home .home_map .home_map_content .right_map .item#bilbao {
  left: 60.5%;
  top: 8.5%;
}
.page-home .home_map .home_map_content .right_map .item#segovia {
  left: 35%;
  top: 28%;
}
.page-home .home_map .home_map_content .right_map .item#madrid-madrid_city {
  left: 56%;
  top: 35%;
}
.page-home .home_map .home_map_content .right_map .item#toledo {
  left: 36%;
  top: 47%;
}
.page-home .home_map .home_map_content .right_map .item#sevilla {
  left: auto;
  right: 55%;
  top: 60%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#sevilla .dian {
  margin-right: 0;
  margin-left: 10px;
}
.page-home .home_map .home_map_content .right_map .item#granada {
  left: 55%;
  top: 64%;
}
.page-home .home_map .home_map_content .right_map .item#malaga {
  left: 49.8%;
  top: 67.5%;
  flex-direction: column;
}
.page-home .home_map .home_map_content .right_map .item#malaga .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#malaga .title {
  margin-top: 10px;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#malaga .title {
    top: 13px;
  }
}
.page-home .home_map .home_map_content .right_map .item#valencia {
  left: 73%;
  top: 42.5%;
}
.page-home .home_map .home_map_content .right_map .item#barcelona {
  left: 87.5%;
  top: 25.5%;
}
.page-home .home_map .home_map_content .right_map .item#barcelona .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#barcelona .title {
  position: absolute;
  bottom: 29px;
  left: 50%;
  transform: translateX(-50%);
}
.page-home .home_map .home_map_content .right_map .item#zaragoza {
  left: auto;
  right: 27%;
  top: 22%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#zaragoza .dian {
  margin-right: 0;
  margin-left: 10px;
}
.page-home .home_map .home_map_content .right_map .item#santo-domingo-de-la-calzada {
  left: auto;
  right: 38%;
  top: 14%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#santo-domingo-de-la-calzada .dian {
  margin-left: 10px;
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#chinchon {
  right: 41.5%;
  left: auto;
  top: 33%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#chinchon .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#chinchon .title {
  margin-right: 10px;
}
.page-home .home_map .home_map_content .right_map .item#aranjuez {
  left: 56%;
  top: 37%;
}
.page-home .home_map .home_map_content .right_map .item#jerez-de-la-frontera {
  right: 56.5%;
  left: auto;
  top: 66%;
}
.page-home .home_map .home_map_content .right_map .item#jerez-de-la-frontera .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#jerez-de-la-frontera .title {
  margin-bottom: 10px;
  position: absolute;
  left: 50%;
  bottom: 19px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#jerez-de-la-frontera .title {
    bottom: 13px;
  }
}
.page-home .home_map .home_map_content .right_map .item#mijas {
  left: 52%;
  top: 65.5%;
}
.page-home .home_map .home_map_content .right_map .item#ronda {
  left: 48.3%;
  top: 67.8%;
  flex-direction: column;
}
.page-home .home_map .home_map_content .right_map .item#ronda .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#ronda .title {
  margin-top: 10px;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item#ronda .title {
    top: 13px;
  }
}
.page-home .home_map .home_map_content .right_map .item#peniscola {
  left: 78%;
  top: 33%;
}
.page-home .home_map .home_map_content .right_map .item#cadaques {
  left: auto;
  right: 3.5%;
  top: 14%;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#cadaques .dian {
  margin-right: 0;
  margin-left: 10px;
}
.page-home .home_map .home_map_content .right_map .item#valldemossa {
  left: 88%;
  top: 39.5%;
}
.page-home .home_map .home_map_content .right_map .item#valldemossa .dian {
  margin-right: 0;
}
.page-home .home_map .home_map_content .right_map .item#valldemossa .title {
  margin-top: 10px;
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
.page-home .home_map .home_map_content .right_map .item#almagro {
  left: 57%;
  top: 47%;
}
.page-home .home_map .home_map_content .right_map .item .dian {
  width: 10px;
  height: 10px;
  background: #FFC107;
  border: 5px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item .dian {
    width: 8px;
    height: 8px;
    border-width: 3px;
  }
}
.page-home .home_map .home_map_content .right_map .item#santander {
  right: 45.5%;
  top: 5.5%;
  left: auto;
  flex-direction: row-reverse;
}
.page-home .home_map .home_map_content .right_map .item#santander .dian {
  margin-right: 0;
  margin-left: 10px;
}
.page-home .home_map .home_map_content .right_map .item .title {
  padding: 7px 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #393939;
  background-color: #fff;
  transition: all 0.3s linear;
}
.page-home .home_map .home_map_content .right_map .item .title[data-spain-name]:not([data-spain-name=""])::after {
  content: attr(data-spain-name);
  font-size: 12px;
  display: none;
  margin-left: 5px;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .item .title {
    padding: 5px 7px;
    font-size: 12px;
  }
}
.page-home .home_map .home_map_content .right_map .bg_mini {
  width: 200px;
  position: absolute;
  bottom: 0;
  left: -80px;
}
@media screen and (max-width: 1371px) {
  .page-home .home_map .home_map_content .right_map .bg_mini {
    width: 20%;
    left: 0;
  }
}
.page-home .home_map .home_map_content .right_map .bg_mini img {
  width: 100%;
  height: 100%;
}
.page-home .home_map .home_map_content .right_map .bg_mini .item:nth-of-type(1) {
  top: 32%;
  left: 35%;
}
.page-home .home_map .home_map_content .right_map .bg {
  width: 100%;
  height: 100%;
}
.page-home .home_map .home_map_content .right_map .bg img {
  width: 100%;
  height: 100%;
}
.page-home .home_map .home_map_content .right {
  display: none;
}
@media screen and (max-width: 800px) {
  .page-home .home_map .home_map_content .right {
    width: 100%;
    display: flex;
  }
  .page-home .home_map .home_map_content .right .right_list {
    width: 100%;
    overflow-x: scroll;
    margin-top: 10px;
    display: none;
  }
  .page-home .home_map .home_map_content .right .right_list.active {
    display: flex;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item {
    width: 70%;
    min-width: 70%;
    max-width: 70%;
    float: left;
    margin-left: 10px;
    position: relative;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item:nth-last-of-type(1) {
    margin-right: 15px;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item:nth-of-type(1) {
    margin-left: 15px;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item .bg {
    width: 100%;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item .bg img {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 0;
  }
  .page-home .home_map .home_map_content .right .right_list .list_item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    box-sizing: border-box;
    padding: 15px 10px;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  }
  .page-home .home_map .home_map_content .right .right_list .list_item .title[data-spain-name]:not([data-spain-name=""])::after {
    content: attr(data-spain-name);
    display: inline;
    margin-left: 5px;
  }
}
.page-home .home_yibaya {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 100px auto 0;
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya {
    margin-top: 60px;
  }
}
.page-home .home_yibaya .home_yibaya_desc {
  width: 100%;
  font-size: 18px;
  color: #000;
  line-height: 28px;
  font-weight: 400;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_desc {
    margin-bottom: 10px;
    margin-top: 40px;
    font-size: 16px;
  }
}
.page-home .home_yibaya .home_yibaya_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.page-home .home_yibaya .home_yibaya_content .item {
  width: calc(33.333% - 18px);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 26px;
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-size: 30%;
  background-position: center center;
  min-height: 10vw;
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_content .item {
    min-height: 20vw;
  }
}
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1),
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(2) {
  width: calc(50% - 13px);
  height: 450px;
  background-size: 20%;
}
@media screen and (max-width: 1370px) {
  .page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1),
  .page-home .home_yibaya .home_yibaya_content .item:nth-of-type(2) {
    height: 30vw;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1),
  .page-home .home_yibaya .home_yibaya_content .item:nth-of-type(2) {
    height: calc(100vw - 60px);
  }
}
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1) .bg,
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(2) .bg {
  background-size: cover;
  background-position: center center;
}
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1) .bg img,
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(2) .bg img {
  display: none;
}
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(1),
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(3) {
  margin-right: 26px;
}
.page-home .home_yibaya .home_yibaya_content .item:nth-of-type(5) {
  margin-left: 26px;
}
.page-home .home_yibaya .home_yibaya_content .item:hover .bg img {
  transform: scale(1.2);
}
.page-home .home_yibaya .home_yibaya_content .item .bg {
  width: 100%;
  height: 100%;
}
.page-home .home_yibaya .home_yibaya_content .item .bg img {
  transition: all 0.3s linear;
  width: 100%;
  height: 100%;
  display: block;
}
.page-home .home_yibaya .home_yibaya_content .item .bg.hover {
  transition: all 0.3s linear;
}
.page-home .home_yibaya .home_yibaya_content .item .bg.hover:hover {
  transform: scale(1.2);
}
.page-home .home_yibaya .home_yibaya_content .item .tag {
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.43);
  border-radius: 14px;
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  box-sizing: border-box;
  padding: 3px 10px;
  position: absolute;
  top: 12px;
  right: 10px;
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_content .item .tag {
    font-size: 14px;
  }
}
.page-home .home_yibaya .home_yibaya_content .item .title {
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding: 20px 20px;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_content .item .title {
    font-size: 14px;
    padding: 15px  10px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_yibaya .home_yibaya_content .item {
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }
}
.page-home .home_xingcheng {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 80px auto 0;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng {
    margin-top: 60px;
  }
}
.page-home .home_xingcheng .home_xingcheng_desc {
  width: 100%;
  font-size: 18px;
  color: #000;
  line-height: 28px;
  font-weight: 400;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_desc {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.page-home .home_xingcheng .home_xingcheng_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page-home .home_xingcheng .home_xingcheng_content_item {
  position: relative;
  z-index: 12;
  overflow: hidden;
  top: -113px;
  width: calc(33.333% - 40px);
  cursor: pointer;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.219);
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-position: center center;
  background-size: 30%;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item {
    width: 100%;
    min-height: 200px;
    top: 0;
    margin-bottom: 10px;
  }
}
.page-home .home_xingcheng .home_xingcheng_content_item:hover .bg .bg_img {
  transform: scale(1.2);
}
.page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) {
  height: 540px;
  min-height: auto;
}
@media screen and (max-width: 1370px) {
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) {
    height: 35vw;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) {
    height: 50vw;
  }
}
.page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1):hover .bg {
  transform: scale(1.1);
}
.page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .bg {
  background-size: cover;
  background-position: center center;
  transition: all 0.3s linear;
}
.page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .bg img {
  display: none;
}
.page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(3) {
  margin: 0 21px;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(3) {
    margin: 0 0 10px 0;
  }
}
@media screen and (min-width: 801px) {
  .page-home .home_xingcheng .home_xingcheng_content_item {
    min-height: 287px;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) {
    width: 100%;
    z-index: 10;
    top: 0;
    box-shadow: none;
    background-size: 10%;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .title {
    width: 70%;
    height: auto;
    line-height: 1.5;
    font-size: 30px;
    color: #fff;
    position: absolute;
    z-index: 2;
    top: 100px;
    left: 37px;
    margin: 0;
    padding: 0;
    background: none;
    line-height: normal;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .tag {
    position: absolute;
    top: 53px;
    left: 37px;
    right: auto;
    z-index: 2;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .desc {
    display: block;
    width: 70%;
    padding-left: 0;
    max-width: 75%;
    position: absolute;
    top: 148px;
    left: 37px;
    z-index: 11;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .bg {
    width: 100%;
    height: 100%;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .moer {
    width: 100%;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    float: left;
    position: relative;
    z-index: 11;
    margin-top: 13px;
    box-sizing: border-box;
  }
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .mock,
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .mock2 {
    display: block;
  }
}
@media screen and (min-width: 801px) and screen and (max-width: 1371px) {
  .page-home .home_xingcheng .home_xingcheng_content_item:nth-of-type(1) .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1370px) {
  .page-home .home_xingcheng .home_xingcheng_content_item {
    min-height: auto;
    height: 17vw;
    top: -7vw;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item {
    min-height: auto;
    height: 50vw;
    top: 0;
  }
}
.page-home .home_xingcheng .home_xingcheng_content_item .moer {
  display: none;
}
.page-home .home_xingcheng .home_xingcheng_content_item .mock,
.page-home .home_xingcheng .home_xingcheng_content_item .mock2 {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 282px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.99));
  opacity: 0.38;
}
.page-home .home_xingcheng .home_xingcheng_content_item .mock2 {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.99), rgba(0, 0, 0, 0));
}
.page-home .home_xingcheng .home_xingcheng_content_item .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-home .home_xingcheng .home_xingcheng_content_item .bg .bg_img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.page-home .home_xingcheng .home_xingcheng_content_item .tag {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  font-size: 16px;
  box-sizing: border-box;
  padding: 3px 10px;
  margin-left: 0;
  right: 10px;
  top: 19px;
  z-index: 11;
  float: right;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item .tag {
    font-size: 14px;
    right: 10px;
  }
}
.page-home .home_xingcheng .home_xingcheng_content_item .title {
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  color: #000;
  box-sizing: border-box;
  z-index: 11;
  float: left;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .page-home .home_xingcheng .home_xingcheng_content_item .title {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }
}
.page-home .home_xingcheng .home_xingcheng_content_item .desc {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 24px;
  opacity: 0.78;
  position: relative;
  z-index: 11;
  box-sizing: border-box;
  padding-left: 39px;
  float: left;
  display: none;
}
.page-home .home_jieri {
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri {
    margin-top: 60px;
  }
}
.page-home .home_jieri .home_jieri_content {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  position: relative;
}
.page-home .home_jieri .home_jieri_swiper {
  margin-top: 70px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper {
    margin-top: 50px;
  }
}
.page-home .home_jieri .home_jieri_swiper .swiper-wrapper {
  width: 100%;
  padding-top: 10px;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next,
.page-home .home_jieri .home_jieri_swiper .swiper-prev {
  width: 50px;
  height: 50px;
  opacity: 0.68;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  cursor: pointer;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next:hover,
.page-home .home_jieri .home_jieri_swiper .swiper-prev:hover {
  background: #B2341E;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next:hover i,
.page-home .home_jieri .home_jieri_swiper .swiper-prev:hover i {
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper .swiper-next,
  .page-home .home_jieri .home_jieri_swiper .swiper-prev {
    display: none;
  }
}
.page-home .home_jieri .home_jieri_swiper .swiper-next i,
.page-home .home_jieri .home_jieri_swiper .swiper-prev i {
  font-size: 30px;
  color: #CCCCCC;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next.swiper-button-disabled,
.page-home .home_jieri .home_jieri_swiper .swiper-prev.swiper-button-disabled {
  opacity: 0.3;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next {
  right: 50px;
}
.page-home .home_jieri .home_jieri_swiper .swiper-next i {
  margin-right: 15px;
}
.page-home .home_jieri .home_jieri_swiper .swiper-prev {
  left: 50px;
}
.page-home .home_jieri .home_jieri_swiper .swiper-prev i {
  margin-left: 10px;
}
.page-home .home_jieri .home_jieri_swiper .swiper-slide {
  height: 100%;
}
.page-home .home_jieri .home_jieri_swiper .item {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 15vw;
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-size: 30%;
  background-position: center center;
  min-height: 150px;
  display: block;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper .item {
    min-height: 150px;
  }
}
.page-home .home_jieri .home_jieri_swiper .item:hover .img img {
  transform: scale(1.2);
}
.page-home .home_jieri .home_jieri_swiper .item .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-home .home_jieri .home_jieri_swiper .item .img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  line-height: 0;
  font-size: 0;
  display: block;
}
.page-home .home_jieri .home_jieri_swiper .item .title {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper .item .title {
    font-size: 14px;
    padding: 15px 10px;
  }
}
.page-home .home_jieri .home_jieri_swiper .item .tag {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: -10px;
  width: 84px;
  height: 78px;
  background: url(../images/imgs/home_jieri_icon.png) no-repeat 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-left: 8px;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper .item .tag {
    transform: scale(0.9);
    top: -14px;
  }
}
.page-home .home_jieri .home_jieri_swiper .item .tag p {
  color: #000;
  font-size: 34px;
  height: 25px;
  width: 100%;
  text-align: center;
}
.page-home .home_jieri .home_jieri_swiper .item .tag p:nth-of-type(2) {
  font-size: 15px;
}
@media screen and (max-width: 800px) {
  .page-home .home_jieri .home_jieri_swiper .item .tag p {
    font-size: 24px;
    height: 20px;
    font-weight: bold;
  }
  .page-home .home_jieri .home_jieri_swiper .item .tag p:nth-of-type(2) {
    font-size: 14px;
  }
}
.page-home .home_wx_video {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 120px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx_video {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_wx_video {
    margin-top: 80px;
    display: block;
  }
  .page-home .home_wx_video .home_video {
    margin-top: 60px;
  }
}
.page-home .home_wx_video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  width: 48px;
  height: 48px;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1371px) {
  .page-home .home_wx_video .video-play {
    width: 38px;
    height: 38px;
  }
}
.page-home .home_wx_video .video-play i {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1371px) {
  .page-home .home_wx_video .video-play i {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_wx_video .video-play {
    width: 34px;
    height: 34px;
  }
  .page-home .home_wx_video .video-play i {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
}
.page-home .home_wx,
.page-home .home_video {
  width: calc(100%);
}
@media screen and (max-width: 1371px) {
  .page-home .home_wx,
  .page-home .home_video {
    width: calc(100%);
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_wx,
  .page-home .home_video {
    width: 100%;
  }
}
.page-home .home_wx .home_wx_content,
.page-home .home_video .home_wx_content {
  margin-top: 70px;
  display: flex;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content,
  .page-home .home_video .home_wx_content {
    margin-top: 50px;
    flex-wrap: wrap;
  }
}
.page-home .home_wx .home_wx_content .right,
.page-home .home_video .home_wx_content .right {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .right,
  .page-home .home_video .home_wx_content .right {
    width: 100%;
    margin-left: 0;
  }
}
.page-home .home_wx .home_wx_content .item-box-out,
.page-home .home_video .home_wx_content .item-box-out {
  width: calc(100% / 4 - 18px);
  position: relative;
  overflow: hidden;
  display: block;
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-size: 30%;
  background-position: center center;
  min-height: 150px;
  margin-bottom: 24px;
  margin-right: 24px;
  border-radius: 15px;
}
@media screen and (max-width: 1370px) {
  .page-home .home_wx .home_wx_content .item-box-out,
  .page-home .home_video .home_wx_content .item-box-out {
    width: calc(100% / 4 - 13.5px);
    margin-right: 18px;
    margin-bottom: 18px;
  }
  .page-home .home_wx .home_wx_content .item-box-out:nth-child(4n),
  .page-home .home_video .home_wx_content .item-box-out:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .item-box-out,
  .page-home .home_video .home_wx_content .item-box-out {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .page-home .home_wx .home_wx_content .item-box-out:nth-child(2n),
  .page-home .home_video .home_wx_content .item-box-out:nth-child(2n) {
    margin-right: 0;
  }
}
.page-home .home_wx .home_wx_content .item-box-out:nth-child(4n),
.page-home .home_video .home_wx_content .item-box-out:nth-child(4n) {
  margin-right: 0;
}
.page-home .home_wx .home_wx_content .item-box-out .item-box-in,
.page-home .home_video .home_wx_content .item-box-out .item-box-in {
  width: 100%;
  padding-bottom: 85%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .item-box-out .item-box-in,
  .page-home .home_video .home_wx_content .item-box-out .item-box-in {
    padding-bottom: 50%;
  }
}
.page-home .home_wx .home_wx_content .item,
.page-home .home_video .home_wx_content .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  min-height: 150px;
}
.page-home .home_wx .home_wx_content .item .item_icon,
.page-home .home_video .home_wx_content .item .item_icon {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.page-home .home_wx .home_wx_content .item .item_icon i,
.page-home .home_video .home_wx_content .item .item_icon i {
  font-size: 18px;
}
.page-home .home_wx .home_wx_content .item:hover img,
.page-home .home_video .home_wx_content .item:hover img {
  transform: scale(1.2);
}
.page-home .home_wx .home_wx_content .item img,
.page-home .home_video .home_wx_content .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.page-home .home_wx .home_wx_content .item .wx_footer,
.page-home .home_video .home_wx_content .item .wx_footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 11;
  box-sizing: border-box;
  padding: 20px ;
  padding-right: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 1370px) {
  .page-home .home_wx .home_wx_content .item .wx_footer,
  .page-home .home_video .home_wx_content .item .wx_footer {
    padding: 15px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .item .wx_footer,
  .page-home .home_video .home_wx_content .item .wx_footer {
    padding: 10px 10px;
  }
}
.page-home .home_wx .home_wx_content .item .wx_footer .title,
.page-home .home_video .home_wx_content .item .wx_footer .title {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 设置显示的最大行数 */
  line-clamp: 2;
  /* 标准属性 */
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .item .wx_footer .title,
  .page-home .home_video .home_wx_content .item .wx_footer .title {
    font-size: 14px;
  }
}
.page-home .home_wx .home_wx_content .item .wx_footer .time,
.page-home .home_video .home_wx_content .item .wx_footer .time {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page-home .home_wx .home_wx_content .item .wx_footer .time,
  .page-home .home_video .home_wx_content .item .wx_footer .time {
    font-size: 14px;
  }
}
.page-home .home_regard {
  width: 100%;
  margin-top: 80px;
}
.page-home .home_regard .home_regard_title {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-home .home_regard {
    margin-top: 70px;
  }
}
.page-home .home_regard .home_regard_bg {
  margin-top: 70px;
  width: 100%;
  height: 1100px;
  background: url(../images/imgs/home_footer_bg_1080.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1371px) {
  .page-home .home_regard .home_regard_bg {
    height: 900px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_regard .home_regard_bg {
    margin-top: 40px;
    height: 800px;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content {
  width: 100%;
  max-width: var(--maxContentWidth);
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 6%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .page-home .home_regard .home_regard_bg .home_regard_content {
    display: block;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .title {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 61px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .title span:nth-of-type(1),
.page-home .home_regard .home_regard_bg .home_regard_content .title span:nth-of-type(3) {
  width: 59px;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.42;
}
.page-home .home_regard .home_regard_bg .home_regard_content .title span:nth-of-type(2) {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  padding: 0 18px;
}
@media screen and (max-width: 800px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .title span:nth-of-type(2) {
    font-size: 20px;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .line {
  float: left;
  width: 3px;
  height: 457px;
  transform: scaleX(0.5);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), #FFFFFF, rgba(255, 255, 255, 0.01));
}
@media screen and (max-width: 1000px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .line {
    display: none;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item {
  width: 28%;
}
@media screen and (max-width: 1000px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .left {
    width: 100%;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .left .title {
    justify-content: center;
    margin-bottom: 30px;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item_box {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item_box .footer_item {
    width: 83px;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item_box .footer_item {
    width: 13%;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item {
  width: 14.34%;
}
@media screen and (max-width: 1000px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .right {
    width: 100%;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .title {
    justify-content: center;
    margin: 50px 0 30px !important;
    padding: 0 !important;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box {
    width: 100%;
    display: flex;
    justify-content: space-around !important;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box .footer_item {
    width: 83px;
    margin: 0;
    padding: 0;
    margin: 0 6% 10px;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box .footer_item:nth-of-type(even) {
    margin: 0 6% 10px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .right .title {
    margin-top: 40px !important;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box .footer_item {
    width: 13%;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .left,
.page-home .home_regard .home_regard_bg .home_regard_content .right {
  float: left;
  flex-wrap: wrap;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item_box,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: 20%;
  margin-bottom: 46px;
  position: relative;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item:nth-of-type(even),
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item:nth-of-type(even) {
  margin-right: 0;
}
@media screen and (max-width: 1371px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item,
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item {
    margin-right: 18%;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item img,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item img {
  width: 100%;
  opacity: 0;
  contain-intrinsic-size: 130px 130px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box {
  width: 100%;
  aspect-ratio: 1/1;
  /* 正方形 */
  position: absolute;
  top: 0;
  left: 0;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon {
  transform: translate(-50%, -50%) scale(var(--icon-scale));
  transform-origin: center center;
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/img/indexhome_icon/css_sprites.png);
  background-repeat: no-repeat;
  background-size: 600px auto;
  /* 根据你的雪碧图实际尺寸调整 */
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon09,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon09 {
  background-position: -161px -10px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon08,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon08 {
  background-position: -10px -161px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon04,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon04 {
  background-position: -160px -161px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon06,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon06 {
  background-position: -311px -10px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon10,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon10 {
  background-position: -311px -160px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon12,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon12 {
  background-position: -10px -311px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon05,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon05 {
  background-position: -160px -311px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon02,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon02 {
  background-position: -310px -311px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon01,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon01 {
  background-position: -10px -10px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon03,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon03 {
  background-position: -461px -10px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon11,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon11 {
  background-position: -461px -160px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item .img-box .bg-icon07,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item .img-box .bg-icon07 {
  background-position: -461px -310px;
}
.page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item p,
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item p {
  font-size: 18px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1371px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .left .footer_item p,
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item p {
    font-size: 14px;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .right .title {
  box-sizing: border-box;
  padding-left: 12%;
  justify-content: center;
}
@media screen and (max-width: 1371px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .right .title {
    padding-left: 16%;
  }
}
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item_box {
  justify-content: flex-end;
}
.page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item {
  margin-right: 0;
  margin-left: 10%;
}
@media screen and (max-width: 1371px) {
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item {
    margin-right: 0;
    margin-left: 9%;
  }
  .page-home .home_regard .home_regard_bg .home_regard_content .right .footer_item:nth-of-type(even) {
    margin-right: 0;
  }
}
/* 中等屏幕（桌面显示器，大于等于 1380px ） */
@media screen and (max-width: 1380px) {
  .page-home #main-swiper .main-slide.main-slide-wechat .slide-content {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* 中等屏幕（桌面显示器，大于等于 1290px ） */
@media screen and (max-width: 1290px) {
  .page-home #main-swiper .main-slide .slide-content {
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* 中等屏幕（桌面显示器，大于等于 1136px 小于1336px） */
/* 中等屏幕（桌面显示器，大于等于 992px 小于1024px） */
@media screen and (max-width: 1024px) {
  .page-home #main-swiper .main-slide-wechat .slide-list {
    width: 102%;
    margin: 0 -1%;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide {
    width: 31.33333333%;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header .date {
    font: normal 30px/1.5 'Georgia';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .title {
    font: normal 16px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(1),
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(3) {
    padding-top: 100px;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(4) {
    display: none;
  }
  .page-home #main-swiper .main-slide-special .icon.icon-title {
    width: 26px;
    height: 26px;
  }
  .page-home #main-swiper .main-slide-special .title {
    font: normal 22px/1.5 'Microsoft YaHei';
    margin-bottom: 0.5em;
  }
  .page-home #main-swiper .main-slide-special .title span {
    padding-bottom: 0.2em;
    font-style: italic;
    border-bottom: 2px solid #fff;
  }
  .page-home #main-swiper .main-slide-special .child-title {
    font: normal 28px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-special .slide-text-inner {
    width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 30px 50px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .page-home #main-swiper .main-slide-next-btn {
    right: 38px;
  }
  .page-home #main-swiper .main-slide-prev-btn {
    left: 38px;
  }
  .page-home #main-swiper .swiper-container-vertical > .swiper-pagination-bullets {
    right: 30px;
  }
  .page-home #main-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 8px 0;
  }
}
/* 小屏幕（平板，大于等于 768px） */
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .page-home #main-swiper .main-slide-prev-btn .inner,
  .page-home #main-swiper .main-slide-next-btn .inner {
    width: 20px;
    height: 20px;
    border-width: 1px;
  }
  .page-home #main-swiper .main-slide-prev-btn .fa,
  .page-home #main-swiper .main-slide-next-btn .fa {
    line-height: 20px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
  }
  .page-home #main-swiper .main-slide-prev-btn {
    left: 1em;
  }
  .page-home #main-swiper .main-slide-prev-btn .fa {
    margin-left: 0;
  }
  .page-home #main-swiper .main-slide-next-btn {
    right: 1em;
  }
  .page-home #main-swiper .main-slide-next-btn .fa {
    margin-left: 0;
  }
  .page-home #main-swiper .main-slide .slide-content {
    padding-left: 1em;
    padding-right: 1em;
  }
  .page-home #main-swiper .swiper-container-vertical > .swiper-pagination-bullets {
    right: 2em;
  }
  .page-home #main-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 5px 0;
  }
  .page-home #main-swiper .main-slide-face {
    background: url(../images/imgs/home_ms1_bg_m.jpg) center center no-repeat;
    background-size: cover;
  }
  .page-home #main-swiper .main-slide-face .slide-content {
    padding-bottom: 80px;
    padding-left: 20px;
    padding-top: 40px;
  }
  .page-home #main-swiper .main-slide-face .slide-content img {
    width: 70%;
  }
  .page-home #main-swiper .main-slide-face .slide-content .slide-text-pc {
    display: none;
  }
  .page-home #main-swiper .main-slide-face .slide-content .slide-text-moble {
    display: block;
  }
  .page-home #main-swiper .main-slide-face .slide-content .face-text {
    width: 420px;
    height: 300px;
    transform: scale3d(0.6, 0.6, 0.6);
    -ms-transform: scale3d(0.6, 0.6, 0.6);
    /* IE 9 */
    -moz-transform: scale3d(0.6, 0.6, 0.6);
    /* Firefox */
    -webkit-transform: scale3d(0.6, 0.6, 0.6);
    /* Safari 和 Chrome */
    -o-transform: scale3d(0.6, 0.6, 0.6);
    /* Opera */
    -ms-transform-origin: left center;
    /* IE 9 */
    -moz-transform-origin: left center;
    /* Firefox */
    /* Safari 和 Chrome */
    -o-transform-origin: left center;
    /* Opera */
    -webkit-transform-origin: left center;
    transform-origin: left center;
    background: url(../images/imgs/face_text_m.png) 0 0 no-repeat;
  }
  .page-home #main-swiper .main-slide-face .slide-content .face-text.face-text-animated {
    -ms-animation: faceTextMobile 2s steps(38) 1 normal forwards;
    -moz-animation: faceTextMobile 2s steps(38) 1 normal forwards;
    -o-animation: faceTextMobile 2s steps(38) 1 normal forwards;
    -webkit-animation: faceTextMobile 2s steps(38) 1 normal forwards;
    animation: faceTextMobile 2s steps(38) 1 normal forwards;
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text {
    padding-bottom: 100px;
    text-align: center;
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text .icon.icon-title,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text .icon.icon-title,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text .icon.icon-title {
    width: 26px;
    height: 26px;
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text .title,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text .title,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text .title {
    font: normal 24px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text .title span,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text .title span,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text .title span {
    margin-right: 26px;
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text .child-title,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text .child-title,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text .child-title {
    font: normal 30px/2 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-experience .slide-content .slide-text p,
  .page-home #main-swiper .main-slide-spot .slide-content .slide-text p,
  .page-home #main-swiper .main-slide-destination .slide-content .slide-text p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-experience .experience-slide-nav,
  .page-home #main-swiper .main-slide-spot .experience-slide-nav,
  .page-home #main-swiper .main-slide-destination .experience-slide-nav {
    left: 20px;
    bottom: 20px;
  }
  .page-home #main-swiper .main-slide-experience p.mobile-link,
  .page-home #main-swiper .main-slide-spot p.mobile-link,
  .page-home #main-swiper .main-slide-destination p.mobile-link {
    display: block;
    margin-top: 0.5em;
  }
  .page-home #main-swiper .main-slide-experience p.mobile-link span,
  .page-home #main-swiper .main-slide-spot p.mobile-link span,
  .page-home #main-swiper .main-slide-destination p.mobile-link span {
    text-decoration: underline;
  }
  .page-home #main-swiper .main-slide-experience .footer-line,
  .page-home #main-swiper .main-slide-spot .footer-line,
  .page-home #main-swiper .main-slide-destination .footer-line {
    display: none;
  }
  .page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn,
  .page-home #main-swiper .main-slide-wechat .video-slide-next-btn {
    display: none;
    width: 20px;
    height: 20px;
    border-width: 1px;
    margin-left: -10px;
  }
  .page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn.cur,
  .page-home #main-swiper .main-slide-wechat .video-slide-next-btn.cur {
    display: block;
  }
  .page-home #main-swiper .main-slide-wechat .wechat-slide-next-btn .fa,
  .page-home #main-swiper .main-slide-wechat .video-slide-next-btn .fa {
    line-height: 20px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
  }
  .page-home #main-swiper .main-slide-wechat .slide-wechat,
  .page-home #main-swiper .main-slide-wechat .slide-video {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    height: 500px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .page-home #main-swiper .main-slide-wechat .slide-title {
    margin-top: 8em;
    margin-bottom: 1em;
  }
  .page-home #main-swiper .main-slide-wechat #slide-video .header .date {
    font-size: 18px;
    font-weight: bold;
  }
  .page-home #main-swiper .main-slide-wechat #slide-video .title,
  .page-home #main-swiper .main-slide-wechat #slide-video .source {
    font: normal 14px/1.2 'Microsoft YaHei';
    color: rgba(255, 255, 255, 0.5);
  }
  .page-home #main-swiper .main-slide-wechat #slide-video .title {
    color: #fff;
  }
  .page-home #main-swiper .main-slide-wechat #slide-video .title:after {
    margin: 1em 0;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list {
    width: 100%;
    max-width: 325px;
    margin: 0 auto;
    text-align: center;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide {
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .header .date {
    font: normal 30px/1.5 'Georgia';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide .title {
    font: normal 16px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(1),
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(3) {
    padding-top: 0;
  }
  .page-home #main-swiper .main-slide-wechat .slide-list .swiper-slide:nth-child(4) {
    display: block;
  }
  .page-home #main-swiper .main-slide-special .icon.icon-title {
    width: 24px;
    height: 24px;
  }
  .page-home #main-swiper .main-slide-special .title {
    font: normal 18px/1.5 'Microsoft YaHei';
    margin-bottom: 0.5em;
  }
  .page-home #main-swiper .main-slide-special .title span {
    padding-bottom: 0.2em;
    font-style: italic;
    border-bottom: 2px solid #fff;
  }
  .page-home #main-swiper .main-slide-special .title span span {
    margin-right: 24px;
  }
  .page-home #main-swiper .main-slide-special .child-title {
    font: normal 24px/1.5 'Microsoft YaHei';
  }
  .page-home #main-swiper .main-slide-special .slide-text-inner {
    width: 80%;
    margin: 0 10%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 30px 50px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .page-home #main-swiper .main-slide-special p.mobile-link {
    display: block;
    margin-top: 0.5em;
  }
  .page-home #main-swiper .main-slide-special p.mobile-link span {
    text-decoration: underline;
  }
  .page-home #main-swiper .main-slide-special .footer-line {
    display: none;
  }
  .page-home #main-swiper .main-slide-experience .text-right,
  .page-home #main-swiper .main-slide-spot .text-right,
  .page-home #main-swiper .main-slide-destination .text-right {
    padding-right: 0;
  }
  .page-home #main-swiper .main-slide.main-slide-wechat .slide-content {
    padding-left: 26px;
    padding-right: 26px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
@media (max-width: 340px) {
  .page-home #main-swiper .main-slide-wechat .slide-title:nth-of-type(2) {
    margin-top: 0.5em;
  }
}
.recommend-swiper-box .swiper-prev {
  left: 20px;
}
.recommend-swiper-box .swiper-next {
  right: 20px;
}
.recommend-swiper-box .recommend-swiper .list-item {
  width: 100%;
  margin-bottom: 40px;
  background-color: #1c2437;
}
.recommend-swiper-box .recommend-swiper .list-item:last-child {
  margin-bottom: 20px;
}
.recommend-swiper-box .recommend-swiper .list-item .item-title {
  font: normal 24px/1.5 'Microsoft YaHei';
  margin-bottom: 0.5em;
}
.recommend-swiper-box .recommend-swiper .list-item .item-title a:hover {
  text-decoration: none;
}
.recommend-swiper-box .recommend-swiper .list-item .item-title:after {
  content: '';
  display: block;
  width: 2.2em;
  height: 1px;
  background-color: #999999;
  margin: 0.5em auto;
}
.recommend-swiper-box .recommend-swiper .list-item .item-img {
  width: 50%;
  height: 330px;
  overflow: hidden;
}
.recommend-swiper-box .recommend-swiper .list-item .item-img .img-box {
  width: 100%;
  height: 100%;
}
.recommend-swiper-box .recommend-swiper .list-item .item-img a {
  display: block;
  width: 100%;
  height: 100%;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: url(../images/imgs/route_list_item1.jpg) center center no-repeat;
  background-size: 100% 100%;
}
.recommend-swiper-box .recommend-swiper .list-item .item-img a img {
  display: none;
}
.recommend-swiper-box .recommend-swiper .list-item .item-img a:hover {
  transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  /* IE 9 */
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  /* Firefox */
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.05, 1.05, 1.05);
  /* Opera */
}
.recommend-swiper-box .recommend-swiper .list-item .item-text {
  width: 50%;
  height: 330px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #40444d;
  background-color: #1c2437;
  display: table;
}
.recommend-swiper-box .recommend-swiper .list-item .item-text .item-text-inner {
  padding: 0 4em;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.recommend-swiper-box .recommend-swiper .list-item .item-text p {
  font-size: 16px;
  color: #999;
  margin-bottom: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1024px) {
  .recommend-swiper-box .recommend-swiper .list-item .item-title {
    font: normal 20px/1.5 'Microsoft YaHei';
  }
  .recommend-swiper-box .recommend-swiper .list-item .item-text .item-text-inner {
    padding: 0 3em;
  }
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .recommend-swiper-box .recommend-swiper .list-item .item-img {
    width: 100%;
    float: none;
    height: 200px;
  }
  .recommend-swiper-box .recommend-swiper .list-item .item-title {
    font: normal 18px/1.5 'Microsoft YaHei';
  }
  .recommend-swiper-box .recommend-swiper .list-item .item-text {
    width: 100%;
    float: left;
    height: auto;
  }
  .recommend-swiper-box .recommend-swiper .list-item .item-text .item-text-inner {
    padding: 1em 2em;
  }
}
.hot-swiper-box {
  position: relative;
}
.hot-swiper-box .hot-swiper-box-inner {
  width: 116%;
  margin: 0 -8%;
}
.hot-swiper-box .swiper-container {
  padding: 40px 0;
}
.hot-swiper-box .swiper-slide {
  cursor: pointer;
  position: relative;
}
.hot-swiper-box .swiper-slide .swiper-slide-inner {
  margin: 0 20px;
  position: relative;
  line-height: 0;
  font-size: 0;
}
.hot-swiper-box .swiper-slide img {
  width: 100%;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.hot-swiper-box .swiper-slide .swiper-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hot-swiper-box .swiper-slide .swiper-cover-inner {
  width: 100%;
  height: 100%;
  display: table;
  font-size: 14px;
  text-align: center;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background-color: rgba(0, 0, 0, 0);
}
.hot-swiper-box .swiper-slide .swiper-text {
  display: none;
  vertical-align: middle;
}
.hot-swiper-box .swiper-slide .swiper-text-inner {
  width: 40%;
  margin: 0 30%;
  padding: 2em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
.hot-swiper-box .swiper-slide .title {
  color: #010100;
  font: normal 24px/1.5 'Microsoft YaHei';
  max-width: 8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
}
.hot-swiper-box .swiper-slide .title::after {
  content: '';
  display: block;
  width: 2em;
  margin: 0.5em auto;
  height: 1px;
  background-color: #010100;
}
.hot-swiper-box .swiper-slide p {
  margin-bottom: 0.5em;
  font: normal 16px/1.5 'Microsoft YaHei';
}
.hot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover {
  display: block;
}
.hot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover-inner {
  background-color: rgba(0, 0, 0, 0.1);
}
.hot-swiper-box .swiper-slide .swiper-text-inner {
  width: 80%;
  margin: 0 10%;
}
.hot-swiper-box .swiper-slide .title {
  color: #010100;
  font: normal 18px/1.5 'Microsoft YaHei';
  max-width: 8em;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hot-swiper-box .swiper-slide .bottom-text {
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.5em 0;
  font: normal 22px/1.5 'Microsoft YaHei';
  background: linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
}
.hot-swiper-box .swiper-slide .bottom-text .title {
  color: #fff;
  text-shadow: 3px 3px 3px #000;
}
.hot-swiper-box .swiper-slide .bottom-text .title::after {
  background-color: #fff;
}
.hot-swiper-box .swiper-slide p {
  font: normal 14px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
}
.hot-swiper-box .swiper-slide:hover .bottom-text {
  padding: 2em 0;
}
.hot-swiper-box .swiper-slide.swiper-slide-active img {
  transform: scale3d(1.16, 1.16, 1.16);
  -ms-transform: scale3d(1.16, 1.16, 1.16);
  /* IE 9 */
  -moz-transform: scale3d(1.16, 1.16, 1.16);
  /* Firefox */
  -webkit-transform: scale3d(1.16, 1.16, 1.16);
  /* Safari 和 Chrome */
  -o-transform: scale3d(1.16, 1.16, 1.16);
  /* Opera */
}
.hot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover {
  display: block;
}
.hot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover-inner {
  background-color: rgba(0, 0, 0, 0);
}
.hot-swiper-box .swiper-slide.swiper-slide-active .bottom-text {
  opacity: 0;
}
.hot-swiper-box .swiper-slide.swiper-slide-active .swiper-text {
  display: table-cell;
}
/* 中等屏幕（桌面显示器，大于等于 1290px ） */
@media screen and (max-width: 1290px) {
  .hot-swiper-box .swiper-slide .swiper-text-inner {
    padding: 1.5em;
  }
  .hot-swiper-box .swiper-slide .swiper-text-inner .title {
    font-size: 16px;
  }
  .hot-swiper-box .swiper-slide .swiper-text-inner .title:after {
    margin: 0.3em auto;
  }
}
/* 中等屏幕（桌面显示器，小于1024px） */
@media screen and (max-width: 1024px) {
  .hot-swiper-box .hot-swiper-box-inner {
    width: 130%;
    margin: 0 -15%;
  }
  .hot-swiper-box .swiper-slide .swiper-text-inner {
    padding: 1em;
  }
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .hot-swiper-box .hot-swiper-box-inner {
    width: 200%;
    margin: 0 -50%;
  }
  .hot-swiper-box .swiper-slide .swiper-text-inner {
    padding: 0.8em;
  }
}
.spot-swiper-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.spot-swiper-box .swiper-slide {
  position: relative;
}
.spot-swiper-box .swiper-slide img {
  width: 100%;
}
.spot-swiper-box .swiper-slide .swiper-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.spot-swiper-box .swiper-slide .swiper-cover-inner {
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background-color: rgba(0, 0, 0, 0);
}
.spot-swiper-box .swiper-slide .swiper-text {
  display: table-cell;
  vertical-align: middle;
}
.spot-swiper-box .swiper-slide .swiper-text-inner {
  width: 40%;
  margin: 0 30%;
  padding: 2em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
.spot-swiper-box .swiper-slide .title {
  color: #010100;
  font: normal 24px/1.5 'Microsoft YaHei';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
}
.spot-swiper-box .swiper-slide .title::after {
  content: '';
  display: block;
  width: 2em;
  margin: 0.5em auto;
  height: 1px;
  background-color: #010100;
}
.spot-swiper-box .swiper-slide p {
  margin-bottom: 0.5em;
  font: normal 16px/1.5 'Microsoft YaHei';
}
.spot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover {
  display: block;
}
.spot-swiper-box .swiper-slide.swiper-slide-active .swiper-cover-inner {
  background-color: rgba(0, 0, 0, 0.1);
}
.spot-swiper-box .swiper-container {
  padding-bottom: 40px;
}
.spot-swiper-box .swiper-container-horizontal > .swiper-pagination-bullets,
.spot-swiper-box .swiper-pagination-custom,
.spot-swiper-box .swiper-pagination-fraction {
  bottom: 0;
}
.spot-swiper-box .mask-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.spot-swiper-box .img-box {
  width: 100%;
  height: 0;
  padding-bottom: 52.30460922%;
  overflow: hidden;
}
/* 小屏幕（平板，小于等于 992px） */
@media screen and (max-width: 992px) {
  .spot-swiper-box {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
/* 小屏幕（手机，小于 768px）*/
@media (max-width: 768px) {
  .spot-swiper-box {
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
  }
  .spot-swiper-box .swiper-img-pc {
    display: none;
  }
  .spot-swiper-box .swiper-img-m {
    display: block;
  }
  .spot-swiper-box .swiper-slide .swiper-text-inner {
    width: 80%;
    margin: 0 10%;
    padding: 1em;
  }
  .spot-swiper-box .swiper-slide .title {
    font: normal 16px/1.5 'Microsoft YaHei';
    max-width: 8em;
  }
  .spot-swiper-box .swiper-slide p {
    font: normal 14px/1.5 'Microsoft YaHei';
  }
  .spot-swiper-box .img-box {
    padding-bottom: 135.78947368%;
  }
}
header.header-goole .go-back {
  background-color: #e71e0f;
  border: 2px solid #e71e0f;
  color: #fff;
}
.page-goole-map {
  background-color: #fff;
}
.page-goole-map #goole-map {
  width: 100%;
  height: 100%;
}
.page-goole-map .map-cover {
  margin-left: 15px;
}
.page-goole-map .map-cover .title {
  font: normal 16px/1.5 Microsoft YaHei;
  margin-bottom: 0.3em;
}
.page-goole-map .map-cover .img-box {
  margin-bottom: 10px;
}
.page-goole-map .map-cover .img-box a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.page-goole-map .map-cover .detail {
  font: normal 14px/1.5 Microsoft YaHei;
  max-height: 4.5em;
  margin-bottom: 0.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.inspiration-list-box .inspiration-list {
  display: flex;
  flex-wrap: wrap;
  min-height: 300px;
  align-content: start;
}
.inspiration-list-box .inspiration-list .item-box-out {
  width: calc(100% / 4 - 18px);
  min-height: 150px;
  position: relative;
  overflow: hidden;
  display: block;
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-size: 30%;
  background-position: center center;
  margin-bottom: 24px;
  margin-right: 24px;
  margin-left: 0;
  border-radius: 15px;
}
.inspiration-list-box .inspiration-list .item-box-out:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1370px) {
  .inspiration-list-box .inspiration-list .item-box-out {
    width: calc(100% / 4 - 13.5px);
    margin-right: 18px;
    margin-bottom: 18px;
  }
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .inspiration-list-box .inspiration-list .item-box-out {
    width: calc(100% / 3 - 10px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(4n) {
    margin-right: 15px;
  }
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .inspiration-list-box .inspiration-list .item-box-out {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(4n),
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(3n) {
    margin-right: 10px;
  }
  .inspiration-list-box .inspiration-list .item-box-out:nth-child(2n) {
    margin-right: 0;
  }
}
.inspiration-list-box .inspiration-list .item-box-out .item-box-in {
  width: 100%;
  padding-bottom: 85%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .inspiration-list-box .inspiration-list .item-box-out .item-box-in {
    padding-bottom: 60%;
  }
}
.inspiration-list-box .inspiration-list .item-box-out .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  min-height: 150px;
}
.inspiration-list-box .inspiration-list .item-box-out .item .item_icon {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.inspiration-list-box .inspiration-list .item-box-out .item .item_icon i {
  font-size: 18px;
}
.inspiration-list-box .inspiration-list .item-box-out .item:hover img {
  transform: scale(1.2);
}
.inspiration-list-box .inspiration-list .item-box-out .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.inspiration-list-box .inspiration-list .item-box-out .item .item_footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 11;
  box-sizing: border-box;
  padding: 18px 20px;
  padding-right: 40px;
  font-size: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 800px) {
  .inspiration-list-box .inspiration-list .item-box-out .item .item_footer {
    padding: 10px 10px;
  }
}
.inspiration-list-box .inspiration-list .item-box-out .item .item_footer .title {
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 设置显示的最大行数 */
  overflow: hidden;
  white-space: pre-wrap;
}
@media screen and (max-width: 800px) {
  .inspiration-list-box .inspiration-list .item-box-out .item .item_footer .title {
    font-size: 14px;
  }
}
.inspiration-list-box .inspiration-list .item-box-out .item .item_footer .title::after {
  content: none !important;
}
.inspiration-list-box .inspiration-list .item-box-out .item .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  width: 48px;
  height: 48px;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inspiration-list-box .inspiration-list .item-box-out .item .video-play i {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .inspiration-list-box .inspiration-list .item-box-out .item .video-play {
    width: 34px;
    height: 34px;
  }
  .inspiration-list-box .inspiration-list .item-box-out .item .video-play i {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
}
.inspiration_category {
  display: flex;
  color: #FFFFFF;
  align-items: center;
  margin-bottom: 47px;
  font-size: 16px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 800px) {
  .inspiration_category {
    margin-bottom: 25px;
    font-size: 14px;
    padding-left: 70px;
  }
}
@media screen and (max-width: 800px) {
  .inspiration_category p {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.inspiration_category span {
  display: inline-block;
  padding: 5px 9px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  margin-left: 6px;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}
.inspiration_category span.active,
.inspiration_category span:hover {
  background-color: #FFF100;
}
@media screen and (max-width: 800px) {
  .inspiration_category span {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
#recommend_list.page-play-list .play-list .item:nth-child(9) {
  display: none;
}
@media screen and (max-width: 992px) {
  #recommend_list.page-play-list .play-list .item:nth-child(9) {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #recommend_list.page-play-list .play-list .item:nth-child(9) {
    display: none;
  }
}
#inspiration .inspiration_box_out {
  min-height: 150px;
  position: relative;
  overflow: hidden;
  display: block;
  background: #333 url(../images/imgs/bgSpainMr.jpg) no-repeat;
  background-size: 30%;
  background-position: center center;
  margin-left: 0;
  border-radius: 15px;
}
#inspiration .inspiration_box_out .inspiration_box {
  width: 100%;
  padding-bottom: 85%;
  position: relative;
}
@media screen and (max-width: 992px) {
  #inspiration .inspiration_box_out .inspiration_box {
    padding-bottom: 70%;
  }
}
@media screen and (max-width: 768px) {
  #inspiration .inspiration_box_out .inspiration_box {
    padding-bottom: 60%;
  }
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  min-height: 150px;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_icon {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_icon i {
  font-size: 18px;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item:hover img {
  transform: scale(1.2);
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 11;
  box-sizing: border-box;
  padding: 18px 20px;
  padding-right: 40px;
  font-size: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 800px) {
  #inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_footer {
    padding: 10px 10px;
  }
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_footer .title {
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 设置显示的最大行数 */
  overflow: hidden;
  white-space: pre-wrap;
}
@media screen and (max-width: 800px) {
  #inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_footer .title {
    font-size: 14px;
  }
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .item_footer .title::after {
  content: none !important;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  width: 48px;
  height: 48px;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
#inspiration .inspiration_box_out .inspiration_box .inspiration_item .video-play i {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #inspiration .inspiration_box_out .inspiration_box .inspiration_item .video-play {
    width: 34px;
    height: 34px;
  }
  #inspiration .inspiration_box_out .inspiration_box .inspiration_item .video-play i {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
}
#inspiration .play-list .item:nth-child(9) {
  display: none;
}
@media screen and (max-width: 992px) {
  #inspiration .play-list .item:nth-child(9) {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #inspiration .play-list .item:nth-child(9) {
    display: none;
  }
}
.page-detail .detail-content.sitemap-content {
  padding: 50px 30px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-bottom: 40px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-title {
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  padding-bottom: 20px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner {
  width: 100%;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item {
  width: 100%;
  padding: 0 20px 20px;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-title {
  width: 100%;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 20px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-title a:hover {
  color: #e71e0f;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a {
  position: relative;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a:hover {
  color: #e71e0f;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a:hover[data-spain-name]:not([data-spain-name=""])::after {
  opacity: 1;
}
.page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a[data-spain-name]::after {
  content: attr(data-spain-name);
  display: block;
  color: #e71e0f;
  opacity: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
  transform: translateY(-2px);
}
@media (max-width: 1200px) {
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .page-detail .detail-content.sitemap-content {
    padding: 20px 5px;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item {
    grid-template-columns: 1fr;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item {
    padding: 0 10px 10px;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div {
    font-size: 14px;
    line-height: 20px;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a[data-spain-name]::after {
    opacity: 1;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    min-height: 16px;
  }
  .page-detail .detail-content.sitemap-content .sitemap-content-item .sitemap-content-item-inner .sitemap-content-item-inner-item .sitemap-content-item-inner-item-list > div > a:hover[data-spain-name]::after {
    color: #e71e0f;
    display: block;
    opacity: 1;
  }
}
#tipLayer {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  background: rgba(128, 128, 128, 0.8);
}
#tipLayer .close__btn {
  display: inline-block;
  border: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
}
#tipLayer .close__btn .iconfont {
  font-size: 30px;
}
#tipLayer .layer__inner {
  width: 100%;
  box-sizing: border-box;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  line-height: 1.5;
  color: #fff;
  font-size: 16px;
}
#tipLayer .more__link {
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 1;
  font-size: 14px;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 0.3em;
}
@media screen and (max-width: 1024px) {
  #tipLayer .close__btn {
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
  }
  #tipLayer .close__btn .iconfont {
    font-size: 26px;
  }
  #tipLayer .layer__inner {
    padding-top: 30px;
    font-size: 14px;
  }
}
#COVID19Banner {
  position: fixed;
  left: 0;
  top: 120px;
  z-index: 89;
  width: 100%;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  width: 200px;
}
#COVID19Banner .banner__inner {
  position: relative;
}
#COVID19Banner .banner__inner img {
  width: 100%;
  max-width: 100%;
}
#COVID19Banner .banner__inner .banner__bg {
  opacity: 0.4;
}
#COVID19Banner .banner__inner .face_logo {
  position: absolute;
  top: 0;
  left: 0;
}
#COVID19Banner:hover .banner__inner .banner__bg {
  opacity: 0.7;
}
@media (max-width: 768px) {
  #COVID19Banner {
    width: 120px;
    top: 80px;
  }
}
.swipebox-image-container {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
.swipebox-image-container img {
  width: auto;
  height: auto;
  max-height: 80vh !important;
  max-width: 100vw !important;
}
.swipebox-image-container .image-des {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  text-align: left;
}
@media (max-width: 1440px) {
  .swipebox-image-container .image-des {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .swipebox-image-container .image-des {
    margin-left: 8px;
  }
}
@media (max-width: 360px) {
  .swipebox-image-container .image-des {
    margin-left: 0px;
  }
}
.swipebox-image-container .image-desc {
  line-height: 20px;
  font-size: 14px;
  color: #dcdcdc;
  text-align: left;
  white-space: normal;
}
@media (max-width: 1440px) {
  .swipebox-image-container .image-desc {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .swipebox-image-container .image-desc {
    margin-left: 8px;
  }
}
@media (max-width: 360px) {
  .swipebox-image-container .image-desc {
    margin-left: 0px;
  }
}
#cookieConsent {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
#cookieConsent .cookie__inner {
  display: flex;
  align-items: center;
  padding-bottom: 0;
  padding-top: 1em;
}
#cookieConsent .tip__content {
  flex: 1;
  color: #333;
}
#cookieConsent .tip__content a {
  color: #000;
  padding: 0 0.2em;
  border-bottom: 1px solid #000;
}
#cookieConsent .cookie__btn {
  border: 0;
  background: #FFC107;
  padding: 0.5em 1.5em;
  color: #000;
}
#cookieConsent .cookie__btn:hover {
  background: #ecb100;
}
#cookieConsent .cookie__btn.danger {
  background: #cdcdcd;
}
#cookieConsent .cookie__btn.danger:hover {
  background: #c0c0c0;
}
#cookieConsent .cookie__btn + .cookie__btn {
  margin-left: 10px;
}
#cookieConsent .btn__group {
  padding-left: 1em;
  text-align: right;
}
#cookieConsent .close__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.3em;
  border-radius: 50%;
  background: transparent;
  line-height: 1;
  color: #333;
}
#cookieConsent .close__btn:hover {
  color: #000;
  background-color: #efefef;
}
@media (max-width: 768px) {
  #cookieConsent .cookie__inner {
    flex-direction: column;
    padding-top: 1.5em;
  }
  #cookieConsent .btn__group {
    padding-left: 0;
    padding-top: 1em;
  }
}
.cookie_setting_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  box-sizing: border-box;
  padding: 15px 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 1.5;
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie_setting_wrapper .cookie_setting_inner {
  width: 600px;
  overflow-y: auto;
  max-height: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px 30px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .cookie_setting_wrapper .cookie_setting_inner {
    width: 96%;
  }
}
.cookie_setting_wrapper .cookie_setting_inner .close__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.3em;
  border-radius: 50%;
  background: transparent;
  font-size: 14px;
  color: #333;
}
.cookie_setting_wrapper .cookie_setting_inner .close__btn:hover {
  color: #000;
  background-color: #efefef;
}
.cookie_setting_wrapper .cookie_setting_inner .setting_title {
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.cookie_setting_wrapper .cookie_setting_inner .setting_content {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.cookie_setting_wrapper .cookie_setting_inner .setting_content a {
  color: #000;
  padding: 0 0.2em;
  border-bottom: 1px solid #000;
}
.cookie_setting_wrapper .cookie_setting_inner .select {
  width: 100%;
  margin-top: 10px;
}
.cookie_setting_wrapper .cookie_setting_inner .select_item {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-bottom: 10px;
}
.cookie_setting_wrapper .cookie_setting_inner .select_item:nth-of-type(4) {
  margin-bottom: 0;
}
.cookie_setting_wrapper .cookie_setting_inner .select_item input {
  cursor: pointer;
  flex-shrink: 0;
}
.cookie_setting_wrapper .cookie_setting_inner .select_item label {
  display: flex;
  align-items: baseline;
  padding-left: 10px;
  cursor: pointer;
  font-size: 16px !important;
  white-space: nowrap;
  -webkit-text-size-adjust: none !important;
  /* 解决ios文字多字体放大问题 */
}
.cookie_setting_wrapper .cookie_setting_inner .select_item label span {
  display: inline-block;
  padding-left: 10px;
  font-size: 0.875rem !important;
  color: #333;
  white-space: break-spaces;
  font-family: auto;
}
.cookie_setting_wrapper .cookie_setting_inner .cookie__btn {
  border: 0;
  background: #FFC107;
  padding: 0.5em 1.5em;
  color: #000;
}
.cookie_setting_wrapper .cookie_setting_inner .cookie__btn:hover {
  background: #ecb100;
}
.cookie_setting_wrapper .cookie_setting_inner .cookie__btn.danger {
  background: #cdcdcd;
}
.cookie_setting_wrapper .cookie_setting_inner .cookie__btn.danger:hover {
  background: #c0c0c0;
}
.cookie_setting_wrapper .cookie_setting_inner .cookie__btn + .cookie__btn {
  margin-left: 10px;
}
.cookie_setting_wrapper .cookie_setting_inner .btn__group {
  margin-top: 20px;
  padding-left: 1em;
  text-align: center;
}
.cookie_setting_reconfirm {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner {
  width: 520px;
  max-width: 96%;
  height: auto;
  min-height: 200px;
  padding: 20px 34px 58px 48px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .close_reconfirm_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.3em;
  border-radius: 50%;
  background: transparent;
  color: #333;
  font-size: 14px;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_warning {
  position: absolute;
  left: 0;
  padding-left: 24px;
  font-size: 18px;
  color: #faad14;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_title {
  width: 100%;
  line-height: 27px;
  margin-bottom: 4px;
  color: #333;
  font-size: 18px;
  padding: 0;
  background: #FFFFFF;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_content {
  width: 100%;
  font-size: 14px;
  line-height: 1.57;
  word-wrap: break-word;
  padding: 0;
  color: #333333;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_content .cookie_setting_reconfirm_content_item {
  font-size: 16px;
  white-space: nowrap;
  margin-bottom: 5px;
  line-height: 1.5;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_content .cookie_setting_reconfirm_content_item span {
  font-size: 14px;
  color: #333333;
  white-space: break-spaces;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_footer .cookie_setting_reconfirm_footer_btn {
  position: relative;
  top: 0;
  right: 0;
  background: #cdcdcd;
  border: none;
  padding: 0.5em 1.5em;
  color: #000000;
  border-radius: 0;
  cursor: pointer;
  line-height: 1;
}
.cookie_setting_reconfirm .cookie_setting_reconfirm_inner .cookie_setting_reconfirm_footer .cookie_setting_reconfirm_footer_btn#cookie_setting_reconfirm_footer_btn {
  background: #FFC107;
  margin-left: 10px;
}
#jump_to_ext_site_shade {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: black;
  opacity: 0.3;
  display: none;
}
#jump_to_ext_site {
  width: 100%;
  max-width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
  background: white;
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: black;
}
#jump_to_ext_site .close_reconfirm_btn {
  position: absolute;
  top: 24px;
  right: 24px;
}
#jump_to_ext_site .jump_to_ext_site_logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
#jump_to_ext_site .jump_to_ext_site_text span {
  color: red;
  font-weight: bold;
}
#jump_to_ext_site .jump_to_ext_site_line {
  width: 58px;
  height: 1px;
  background: black;
  opacity: 0.2;
}
#jump_to_ext_site .jump_to_ext_site_desc {
  opacity: 0.7;
}
