@charset "UTF-8";
@font-face {
  font-family: "font";
  src: url(../assets/font.ttf);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * 基础模块 & 全局变量配置
 *
 */
/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*
 * @file: 重置样式
 */
/* 全局设置 */
*,
*:before,
*:after {
  box-sizing: border-box;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

/* 设置基本html,body样式 */
html,
body {
  margin: 0 auto;
  padding: 0;
}

/* 设置图片最大宽度 */
img {
  max-width: 100%;
}

/* 清除默认按钮表现形式 */
button {
  -webkit-appearance: none;
  appearance: none;
}

/* 设置表格默认样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 文本域禁止拖拉放大 */
textarea {
  resize: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

img {
  vertical-align: top;
}

i,
em {
  font-style: normal;
}

ol,
ul,
li,
menu {
  list-style: none outside none;
}

fieldset,
iframe,
abbr,
acronym {
  border: 0 none;
}

dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td,
hr,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

del {
  text-decoration: line-through;
}

/* @name: 转为REM单位fn
 * @ps: 默认宽度为750px
 */
/* @name: 上下左右居中 (未知高度)
 * @ps: 需要设置父元素 display:table
 */
/* @name: 上下左右居中 （确定高度）*/
/*
 * @name: 文字溢出显示省略号
 * @ps: 需要设置宽度
 */
/* @name: 强制不换行 */
/* @name: 清除浮动 */
/*
 * @name:  三角形
 * @param: $size  大小
 * @param: $color 颜色
 * @param: $type {string}  类型 (up || down || left || right || topleft || topright || bottomleft || bottomright)
 */
.text-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

body {
  font: 300 0.29rem/0.44rem "Microsoft YaHei", SimSun, "Arial Narrow";
  color: #8e563d;
  max-width: 750px;
  margin: 0 auto;
  background: url(../img/bg.png) center top repeat-y;
  background-size: 100% auto;
}

body a {
  text-decoration: none;
  color: #8e563d;
}

.section {
  width: 7.25rem;
  margin: 0 auto;
  position: relative;
}

.section .img-box {
  overflow: hidden;
}

@keyframes fadeInUp {
  0% {
    transform: translate3d(-100%, 100%, 0) scale(0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0% {
    background-position: center -0.51rem;
  }
  100% {
    background-position: center 0.51rem;
  }
}

.bg-1 {
  background: url(../img/bg_1.jpg) center top no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-2 {
  background: url(../img/bg_2.jpg) center top no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-4 {
  background: url(../img/title_1.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-5 {
  background: url(../img/title_2.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-6 {
  background: url(../img/title_3.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-7 {
  background: url(../img/title_4.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-8 {
  background: url(../img/title_5.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-9 {
  background: url(../img/title_6.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-10 {
  background: url(../img/title_7.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-11 {
  background: url(../img/title_8.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-12 {
  background: url(../img/title_9.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-13 {
  background: url(../img/title_10.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-14 {
  background: url(../img/title_11.png) center 1rem no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
}

.bg-1 {
  height: 11.26rem;
}

.bg-2 {
  height: 5.84rem;
  padding-top: 1.2rem;
}

.bg-4 {
  padding-top: 1.78rem;
}

.bg-4 .more {
  margin-left: 0.8rem;
}

.bg-5 {
  padding-top: 1.84rem;
}

.bg-5 .more {
  width: 5.6rem;
  height: 1.6rem;
  margin-left: 1.3rem;
}

.bg-6 {
  padding-top: 1.84rem;
}

.bg-6 .more {
  margin-left: 1rem;
  height: 1.5rem;
}

.bg-7 {
  padding-top: 1.78rem;
}

.bg-7 .more {
  margin-left: 0.6rem;
  width: 6.3rem;
}

.bg-8 {
  padding-top: 1.78rem;
}

.bg-8 .more {
  margin-left: 0.6rem;
  width: 6.3rem;
}

.bg-9 {
  padding-top: 1.78rem;
}

.bg-9 .more {
  margin-left: 0.6rem;
  width: 6.3rem;
}

.bg-10 {
  padding-top: 1.78rem;
}

.bg-10 .more {
  margin-left: 0.4rem;
  width: 6.5rem;
}

.bg-11 {
  padding-top: 1.78rem;
}

.bg-11 .more {
  margin-left: 2rem;
  width: 4rem;
}

.bg-12 {
  padding-top: 1.78rem;
}

.bg-12 .more {
  margin-left: 2rem;
  width: 4rem;
}

.bg-13 {
  padding-top: 2.58rem;
}

.bg-14 {
  padding-top: 3.4rem;
}

.footer {
  height: 18.65rem;
  background: url(../img/footer.png) center top no-repeat;
  background-size: 100% auto;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg-img {
  position: absolute;
}

.bg-1-1 {
  background: url(../img/bg_1_1.png) center no-repeat;
  background-size: cover;
  width: 3.34rem;
  height: 7.13rem;
  top: 1.84rem;
  left: 2.97rem;
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

.bg-1-2 {
  background: url(../img/bg_1_2.png) center no-repeat;
  background-size: cover;
  width: 0.87rem;
  height: 4.57rem;
  top: 3.98rem;
  left: 2.65rem;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.bg-1-3 {
  background: url(../img/bg_1_3.png) center no-repeat;
  background-size: cover;
  width: 5.22rem;
  height: 0.29rem;
  top: 10rem;
  left: 50%;
  margin-left: -2.61rem;
  opacity: 0;
  animation: slideInBottom 0.8s ease-out 0.4s forwards;
}

.daoyu {
  font-family: "font";
  font-size: 0.29rem;
  line-height: 0.4rem;
  color: #8e563d;
  width: 6.8rem;
  margin: 0 auto;
  padding: 0 0.2rem;
  height: 3.9rem;
  overflow-y: auto;
  text-align: justify;
  text-indent: 2em;
}

.daoyu::-webkit-scrollbar {
  width: 0.1rem;
}

.daoyu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border: solid 0.01rem rgba(142, 86, 61, 0.5);
  border-radius: 0.04rem;
}

.daoyu::-webkit-scrollbar-thumb {
  background: #986d4b;
  border-radius: 0.04rem;
}

.tabs {
  overflow: hidden;
  padding: 0 0.08rem;
}

.tabs li {
  float: left;
  padding: 0 0.01rem;
  margin-bottom: 0.16rem;
  cursor: pointer;
}

.tabs img {
  height: 0.57rem;
  max-width: 2.41rem;
  object-fit: cover;
}

.swiper-video-1 .swiper-slide {
  width: 4.19rem;
  height: 7.45rem;
  background-color: #396c83;
}

.swiper-video-1 .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-video-1 .swiper-slide a::after {
  display: none;
  content: "";
  position: absolute;
  left: 1.44rem;
  top: 3.12rem;
  width: 1.43rem;
  height: 1.43rem;
  background-image: url(../img/play.png);
  background-size: cover;
}

.swiper-video-1 .swiper-slide-active a::after {
  display: block;
}

.swiper-video-1 img {
  display: block;
  height: 7.45rem;
  width: 100%;
  object-fit: cover;
}

.section-bg {
  width: 6.92rem;
  background-color: #ffffff;
  border-radius: 0.3rem;
  padding: 0.3rem 0.26rem;
  margin: 0 auto;
}

.section-bg-2 {
  width: 7rem;
  background-color: #fff;
  padding: 0 0 0.1rem;
  margin: 0 auto;
}

.big-img {
  position: relative;
  margin-bottom: 0.35rem;
  font-size: 0.28rem;
  font-weight: bold;
  line-height: 0.36rem;
}

.big-img a {
  color: #2276d6;
}

.big-img img {
  display: block;
  width: 100%;
  height: 3.72rem;
  object-fit: cover;
}

.big-img .img-title {
  padding: 0.15rem 0.3rem;
  font-size: 0.3rem;
  line-height: 0.4rem;
  text-align: center;
  font-weight: bold;
  background-color: #ffffff;
}

.big-video a {
  position: relative;
  display: block;
}

.big-video a::after {
  content: "";
  position: absolute;
  left: 0.17rem;
  top: 3.14rem;
  width: 0.68rem;
  height: 0.68rem;
  background-image: url(../img/play.png);
  background-size: cover;
}

.big-video img {
  display: block;
  width: 100%;
  height: 3.93rem;
  object-fit: cover;
}

.big-video .video-title {
  padding: 0.2rem 0.3rem 0;
  font-size: 0.3rem;
  line-height: 0.4rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.big-video .video-time {
  font-size: 0.21rem;
  line-height: 1;
  padding: 0 0.3rem 0.3rem;
  border-bottom: 1px solid #e9c2fc;
  margin-bottom: 0.3rem;
}

.more {
  overflow: hidden;
  display: block;
  width: 6.2rem;
  height: 1.5rem;
  margin: 0 auto 0.19rem;
}

.img-list {
  line-height: 0.35rem;
  font-size: 0.28rem;
  margin-bottom: 0.3rem;
  padding: 0 0.16rem;
}

.img-list li {
  overflow: hidden;
  margin-bottom: 0.33rem;
  padding: 0.16rem 0.22rem;
  border-radius: 0.18rem 0rem 0.18rem 0rem;
  border: solid 0.01rem #fafad6;
  background-color: #f9e6c9;
}

.img-list img {
  float: left;
  width: 2.2rem;
  height: 1.65rem;
  object-fit: cover;
  margin-right: 0.23rem;
}

.img-list .img-title {
  font-size: 0.31rem;
  line-height: 0.5rem;
}

.news-list {
  font-size: 0.3rem;
  line-height: 0.4rem;
}

.news-list li {
  margin-bottom: 0.3rem;
}

.news-list a {
  color: #1b1b1b;
}

.news-list.ellipsis li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list.ellipsis-two li {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-box [class*="swiper-button-prev-2"] {
  left: 0;
  top: 2.2rem;
  width: 0.74rem;
  height: 1.4rem;
  background: url(../img/left.png) center no-repeat;
  background-size: cover;
  z-index: 5;
}

.swiper-box [class*="swiper-button-prev-2"]::after {
  display: none;
}

.swiper-box [class*="swiper-button-next-2"] {
  right: 0;
  top: 2.2rem;
  width: 0.74rem;
  height: 1.4rem;
  background: url(../img/right.png) center no-repeat;
  background-size: cover;
}

.swiper-box [class*="swiper-button-next-2"]::after {
  display: none;
}

.city-swiper {
  display: none;
}

.city-swiper.active {
  display: block;
}

.swiper-video-2 {
  margin-bottom: 0.5rem;
  height: 5.49rem;
}

.swiper-video-2 img {
  display: block;
  width: 100%;
  height: 5.49rem;
  object-fit: cover;
}

.swiper-video-2 a {
  color: #ffffff;
}

.swiper-video-2 .swiper-slide div {
  padding: 0.2rem;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 0.31rem;
}

.list .section {
  width: 7rem;
}

.list .banner {
  margin-bottom: 0.4rem;
}

.list .news-list {
  line-height: 0.5rem;
  font-size: 0.33rem;
}

.list .news-list a {
  color: #2a3339;
}

.list .news-list li {
  position: relative;
  padding: 0.15rem 0 0.15rem 0.2rem;
  margin-bottom: 0;
}

.list .news-list li::before {
  content: "";
  top: 0.33rem;
  width: 0.14rem;
  height: 0.14rem;
  background-color: #8e563d;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.crumb {
  line-height: 0.75rem;
  font-size: 0.3rem;
}

.crumb a {
  color: #2a3339;
}

.citys {
  overflow: hidden;
}

.citys li {
  display: inline-block;
  vertical-align: middle;
  width: 2.38rem;
  cursor: pointer;
  margin: 0 0 0.3rem;
  text-align: center;
}

.citys img {
  height: 1.68rem;
  object-fit: contain;
}
