@charset "utf-8";

.fullPage-wp {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fullPage-wp:after {
  display: block;
  content: ' ';
  height: 0;
  clear: both;
}

.fullPage-wp.anim {
  -webkit-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
}

.fullPage-page {
  display: block;
  overflow: hidden;
}

.fullPage-dir-h {
  float: left;
}

.wp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.wp-h {
  width: 100%;
  height: 100%;
}

html {
  font-size: 20px;
  color: #000;
  background: #fff;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 400px) {
  html {
    font-size: 21.33333333px !important;
  }
}

@media only screen and (min-width: 414px) {
  html {
    font-size: 22.08px !important;
  }
}

@media only screen and (min-width: 480px) {
  html {
    font-size: 25.6px !important;
  }
}

html * {
  outline: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  font-family: sans-serif;
}

body {
  font-size: 16px;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */

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

input,
select,
textarea {
  font-size: 100%;
}

/* 去掉各 Table  cell 的边距并让其边重合 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 去除默认边框 */

fieldset,
img {
  border: 0;
}

/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* 一致的 del 样式 */

del {
  text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

/* 去掉列表前的标识, li 会继承 */

ol,
ul {
  list-style: none;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */

caption,
th {
  text-align: left;
}

/* 来自 yahoo, 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

q:before,
q:after {
  content: '';
}

/* 统一上标和下标 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* 正常链接 未访问 */

/* 鼠标悬停 */

a:hover {
  text-decoration: underline;
}

/* 默认不显示下划线，保持页面简洁 */

ins,
a {
  text-decoration: none;
}

@-webkit-keyframes guideTop {
  0% {
    -webkit-transform: translate3d(0, 15px, 0);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, 0px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 0px, 0);
    opacity: 0;
  }
}

@keyframes guideTop {
  0% {
    -webkit-transform: translate3d(0, 15px, 0);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, 0px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 0px, 0);
    opacity: 0;
  }
}

.start {
  position: fixed;
  left: 50%;
  top: 95%;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.start b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/arrow.png);
  background-size: 100% 100%;
  -webkit-animation: guideTop 1.5s infinite;
          animation: guideTop 1.5s infinite;
}

.landscape {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffd40a;
  font-size: 22px;
  background: #32373b;
}

.landscape img {
  margin-top: 20px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-animation: landscape 1.5s infinite;
          animation: landscape 1.5s infinite;
}

@-webkit-keyframes landscape {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  30% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@keyframes landscape {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  30% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.wp-inner > .page1 {
  background: url(../images/p1-bg.png) no-repeat center bottom;
  background-size: 100% auto;
  position: relative;
}

.wp-inner > .page1 .ball {
  position: absolute;
  left: 50%;
  top: 48%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 13.975rem;
  height: 16.725rem;
}

.wp-inner > .page1 .ball .shape {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 2s 1s;
  transition: all 2s 1s;
  opacity: 0;
}

.wp-inner > .page1 .ball .shape1 {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/p1-shape2.png);
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.wp-inner > .page1 .ball .shape2 {
  left: 50%;
  top: 50%;
  width: 12.575rem;
  height: 14.175rem;
  background-image: url(../images/p1-shape1.png);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
      -ms-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.wp-inner > .page1 .ball .desc {
  width: 100%;
  position: relative;
  z-index: 10;
  top: -4rem;
  text-align: center;
}

.wp-inner > .page1 .ball .desc img {
  max-width: 100%;
}

.wp-inner > .page1 .ball .logo {
  width: 6.5rem;
}

.wp-inner > .page1 .ball .tit {
  width: 11.225rem;
}

.wp-inner > .page1 .ball .name {
  width: 9.25rem;
}

.wp-inner > .page1 .p1-tit {
  padding-top: 1.25rem;
  padding-bottom: 0.7rem;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 3s 1s;
  transition: all 3s 1s;
}

.wp-inner > .page1 .none,
.wp-inner > .page1 .copy {
  opacity: 0;
  -webkit-transition: all 2s 3.5s;
  transition: all 2s 3.5s;
}

.wp-inner > .page1 .none1 {
  opacity: 0;
  -webkit-transition: all 2s 2.8s;
  transition: all 2s 2.8s;
}

.wp-inner > .page1.cur .p1-tit {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.wp-inner > .page1.cur .shape {
  opacity: 1;
}

.wp-inner > .page1.cur .shape1 {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.wp-inner > .page1.cur .shape2 {
  -webkit-transform: translate(-50%, -50%) rotate(0);
      -ms-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.wp-inner > .page1.cur .none,
.wp-inner > .page1.cur .none1,
.wp-inner > .page1.cur .copy {
  opacity: 1;
}

.wp-inner > .page1 .copy {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.wp-inner > .page1 .copy img {
  width: 7.925rem;
  height: 2.55rem;
}

.wp-inner > .page3 {
  background: url(../images/p1-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.wp-inner > .page3 .tit-box {
  background: url(../images/p3-tit-bg.png) no-repeat center top;
  background-size: cover;
  text-align: center;
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}

.wp-inner > .page3 .tit-box img {
  width: 10.95rem;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}

.wp-inner > .page3 .theme-box {
  position: relative;
  top: -5rem;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}

.wp-inner > .page3 .theme-box .item {
  padding: 20px 0 20px 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transform: translateX(800px);
      -ms-transform: translateX(800px);
          transform: translateX(800px);
  -webkit-transition: all 1.2s .3s;
  transition: all 1.2s .3s;
}

.wp-inner > .page3 .theme-box .item1 {
  width: 230px;
}

.wp-inner > .page3 .theme-box .item1 .txt {
  width: 140px;
}

.wp-inner > .page3 .theme-box .item4 {
  clear: both;
  float: right;
  width: 240px;
}

.wp-inner > .page3 .theme-box .item4 .txt {
  width: 140px;
  margin-left: 20px;
}

.wp-inner > .page3 .theme-box .item3 .txt {
  width: 185px;
}

.wp-inner > .page3 .theme-box .item2 .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
  padding-left: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-line-clamp: 2;
}

.wp-inner > .page3 .theme-box .line {
  position: absolute;
  display: block;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 2s .8s;
  transition: all 2s .8s;
}

.wp-inner > .page3 .theme-box .line1 {
  height: 1px;
  top: 0;
  left: 0;
  width: 100%;
  /*no*/
}

.wp-inner > .page3 .theme-box .line2,
.wp-inner > .page3 .theme-box .line6 {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 0;
}

.wp-inner > .page3 .theme-box .line3 {
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
}

.wp-inner > .page3 .theme-box .line5,
.wp-inner > .page3 .theme-box .line7 {
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
}

.wp-inner > .page3 .theme-box .line4,
.wp-inner > .page3 .theme-box .line8 {
  width: 1px;
  top: 0;
  right: 0;
  bottom: 0;
}

.wp-inner > .page3 .theme-box .line9 {
  height: 1px;
  bottom: 0;
  right: 0;
  width: 100%;
  /*no*/
}

.wp-inner > .page3 .theme-box .num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 39px;
  width: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 38px;
}

.wp-inner > .page3 .theme-box .num1 {
  background-image: url(../images/p3-n1.png);
}

.wp-inner > .page3 .theme-box .num2 {
  background-image: url(../images/p3-n2.png);
}

.wp-inner > .page3 .theme-box .num3 {
  background-image: url(../images/p3-n3.png);
}

.wp-inner > .page3 .theme-box .num4 {
  background-image: url(../images/p3-n4.png);
}

.wp-inner > .page3.cur .tit-box img {
  opacity: 1;
}

.wp-inner > .page3.cur .item {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.wp-inner > .page3.cur .line {
  opacity: 1;
}

.page2 {
  background: url(../images/p2-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.page2 .p1 {
  padding-top: 7.85rem;
  padding-left: 2.4rem;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateX(500px);
      -ms-transform: translateX(500px);
          transform: translateX(500px);
}

.page2 .p1 img {
  width: 14.6rem;
}

.page2.cur .p1,
.page2.cur .p2 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  /*no*/
}

.page2 .p2 {
  padding-top: 2.65rem;
  padding-left: 2.4rem;
  -webkit-transition: all 1s .5s;
  transition: all 1s .5s;
  -webkit-transform: translateX(-300px);
      -ms-transform: translateX(-300px);
          transform: translateX(-300px);
}

.page2 .p2 img {
  width: 10.425rem;
}

.js-share {
  padding-top: 1.75rem;
}

.page4 {
  background-image: url(../images/p1-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.page4 .swiper-container {
  width: 100%;
  /*no*/
}

.page4 .tit-box {
  padding-top: 3.5rem;
  padding-bottom: 1.25rem;
  width: 7.675rem;
  height: 1.75rem;
  margin-left: 0.3rem;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.page4 .tit-box img {
  width: 100%;
}

.page4.cur .tit-box {
  opacity: 1;
}

.page4 .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 14.575rem;
  height: 15.025rem;
  background-color: #ccc;
  border-radius: 8px;
}

.page4 .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.c1 {
  background: url(../images/p4-bg2.png) no-repeat center bottom;
  background-size: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 0 10px;
}

.c1 .txt {
  text-align: center;
  font-size: 15px;
  color: #111;
  line-height: 2.5;
  padding-top: 0.5rem;
}

.c1 .txt p {
  background-color: #fff;
  width: 14.575rem;
  margin: 0 auto;
}

.page5 {
  background: url(../images/p5-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.page5 .tit-box {
  background: url(../images/p3-tit-bg.png) no-repeat center top;
  background-size: cover;
  text-align: center;
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}

.page5 .tit-box img {
  width: 5.9rem;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.page5.cur .tit-box img,
.page5.cur .con-box {
  opacity: 1;
}

.page5 .con-box {
  opacity: 0;
  -webkit-transition: all 1s .8s;
  transition: all 1s .8s;
  width: 15.05rem;
  height: 15.05rem;
  margin: 0 auto;
  position: relative;
  top: -4.5rem;
}

.page5 .con-box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/p5-bor.png) no-repeat center top;
  background-size: 100%;
}

.page5 .con-box dl {
  padding-top: 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}

.page5 .con-box dt {
  margin-bottom: 10px;
}

.page5 .con-box dt img {
  width: 10.025rem;
}

.page6 {
  background: url(../images/p6-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.share {
  position: relative;
}

.share .con {
  top: 50%;
  left: 0;
  width: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 2.1rem;
  padding-right: 2.1rem;
  text-align: center;
}

.share dl {
  padding: 1.5rem 0;
  position: relative;
}

.share dl .t {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.share dl .t i {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #fff;
}

.share dl .t span {
  display: inline-block;
  padding: 0 .6em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.share dl .l {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.share dl .l i {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  background-color: #fff;
}

.share dl .l span {
  width: 1em;
  display: inline-block;
  padding: .6em 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.share dl em {
  display: inline-block;
  width: 100%;
}

.share dl .r {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.share dl .r i {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  background-color: #fff;
}

.share dl .r span {
  width: 1em;
  display: inline-block;
  padding: .6em 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.share dl .b {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.share dl .b i {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #fff;
}

.share dl .b span {
  display: inline-block;
  padding: 0 .6em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.share dt {
  margin-bottom: 1.2rem;
}

.share dt img {
  width: 7.825rem;
}

.share dd {
  text-align: center;
  margin-bottom: 0.5rem;
}

.share .hd {
  display: inline-block;
  width: 6rem;
  height: 6.25rem;
  background: url(../images/p6-bor.png) no-repeat center;
  background-size: 6rem 6.25rem;
  text-align: center;
}

.share .hd img {
  width: 5.525rem;
  height: 5.525rem;
  margin-top: 0.275rem;
  border-radius: 50%;
}

.share .bd {
  line-height: 1.6;
  padding-top: 0.15rem;
  font-size: 0;
}

.share .bd h5 {
  font-size: 0.9rem;
  color: #00bcfa;
  font-weight: 700;
}

.share .bd p {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
}

.share .bd a {
  color: inherit;
}

.page4-1 dt {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateX(800px);
      -ms-transform: translateX(800px);
          transform: translateX(800px);
}

.page4-1 dd {
  opacity: 0;
}

.page4-1 dd:nth-child(2) {
  -webkit-transition: all .8s .8s;
  transition: all .8s .8s;
  -webkit-transform: translateX(-800px);
      -ms-transform: translateX(-800px);
          transform: translateX(-800px);
}

.page4-1 dd:nth-child(3) {
  -webkit-transition: all .8s 1.3s;
  transition: all .8s 1.3s;
  -webkit-transform: translateX(800px);
      -ms-transform: translateX(800px);
          transform: translateX(800px);
}

.page4-1.cur dt,
.page4-1.cur dd {
  opacity: 1;
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
  /*no*/
}

.wp-inner-share {
  width: 100%;
  height: 100%;
  position: relative;
}

.page4-1 .hd {
  background: url('');
}

.page7 .con dl {
  padding-top: 30px;
}

.page7 .con dd p {
  padding: 0 14px;
  text-align: left;
}

.page9 .con dl,
.page11 .con dl {
  padding-top: 30px;
}

.page9 .con dd p,
.page11 .con dd p {
  padding: 0 34px;
  text-align: left;
}

.page13 {
  background: url(../images/p1-bg.png) no-repeat center bottom;
  background-size: 100% auto;
  position: relative;
}

.page13 .inner {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.page13 .tit-box {
  text-align: center;
  padding-bottom: 1.15rem;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.page13 .tit-box img {
  width: 7.575rem;
}

.page13.cur .tit-box,
.page13.cur .before-box {
  opacity: 1;
}

.page13 .before-box {
  font-size: 0;
  opacity: 0;
  -webkit-transition: all 1s 1s;
  transition: all 1s 1s;
}

.page13 .before-box .item {
  width: 50%;
  display: inline-block;
  text-align: center;
  padding: 0 0.25rem;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.page13 .before-box .item .i {
  width: 100%;
  height: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.65rem;
  border-radius: 0.25rem;
}

.page13 .before-box .item .i i {
  width: 2.35rem;
  height: 2.675rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page13 .before-box .item p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding-top: 0.25rem;
}

.page13 .before-box .item:nth-child(1) .i {
  background-color: #79cd8b;
}

.page13 .before-box .item:nth-child(1) .i i {
  background-image: url(../images/p13-6s.png);
}

.page13 .before-box .item:nth-child(2) .i {
  background-color: #580e8b;
}

.page13 .before-box .item:nth-child(2) .i i {
  background-image: url(../images/p13-5s.png);
}

.page13 .before-box .item:nth-child(3) .i {
  background-color: #00cbf0;
}

.page13 .before-box .item:nth-child(3) .i i {
  background-image: url(../images/p13-4s.png);
}

.page13 .before-box .item:nth-child(4) .i {
  background-color: #0086e9;
}

.page13 .before-box .item:nth-child(4) .i i {
  background-image: url(../images/p13-3s.png);
}

.page13 .before-box .item:nth-child(5) .i {
  background-color: #0044d8;
}

.page13 .before-box .item:nth-child(5) .i i {
  background-image: url(../images/p13-2s.png);
}

.page13 .before-box .item:nth-child(6) .i {
  background-color: #aa2ea0;
}

.page13 .before-box .item:nth-child(6) .i i {
  background-image: url(../images/p13-1s.png);
}

.page14 {
  background: url(../images/p14-bg.png) no-repeat center bottom;
  background-size: 100% auto;
  position: relative;
}

.page14.cur .con dt,
.page14.cur .con .d1,
.page14.cur .con .d2,
.page14.cur .con .ewm-box {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.page14 .con {
  color: #fff;
  width: 13.35rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page14 .con dt {
  padding-bottom: 0.75rem;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
}

.page14 .con dt img {
  width: 10.875rem;
}

.page14 .con .d1 {
  opacity: 0;
  -webkit-transition: all 1s .6s;
  transition: all 1s .6s;
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
}

.page14 .con .d2 {
  opacity: 0;
  -webkit-transition: all 1s 1.2s;
  transition: all 1s 1.2s;
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
}

.page14 .con .ewm-box {
  opacity: 0;
  -webkit-transition: all 1s 1.8s;
  transition: all 1s 1.8s;
  -webkit-transform: translateY(200px);
      -ms-transform: translateY(200px);
          transform: translateY(200px);
}

.page14 .con dd {
  padding-top: 0.9rem;
  font-size: 18px;
  line-height: 1.5;
}

.page14 .con dd a {
  color: inherit;
}

.page14 .con .p1,
.page14 .con .p2 {
  padding-left: 28px;
  display: block;
}

.page14 .con .p1 {
  background: url(../images/tel.png) no-repeat left center;
  background-size: 19.5px 16px;
}

.page14 .con .p2 {
  background: url(../images/email.png) no-repeat 2px center;
  background-size: 16px 11px;
}

.page14 .con .ewm-box {
  text-align: center;
  padding-top: 1rem;
  padding-left: 2.25rem;
}

.page14 .con .ewm-box p {
  width: 150px;
  font-size: 0;
}

.page14 .con .ewm-box p i {
  display: block;
  font-style: normal;
  font-size: 15px;
  line-height: 2.5;
}

.page14 .con .ewm {
  border: 10px solid rgba(255, 255, 255, 0.2);
  width: 130px;
}

.star {
  display: block;
  width: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0);
  top: 100px;
  left: 400px;
  font-size: 0;
  position: absolute;
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-animation: star-ani 6s infinite ease-out;
          animation: star-ani 6s infinite ease-out;
  opacity: 0;
  z-index: 2;
}

.star:after {
  content: '';
  display: block;
  top: 0;
  left: 1px;
  height: 1px;
  width: 100px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(-45deg) translate3d(1px, 1px, 0);
          transform: rotate(-45deg) translate3d(1px, 1px, 0);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-animation: shooting-ani 3s infinite ease-out;
          animation: shooting-ani 3s infinite ease-out;
}

.s1 {
  top: 30px;
  left: 275px;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.s1:after {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.s2 {
  top: 35px;
  left: 352px;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.s2:after {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.s3 {
  top: -80px;
  left: 100px;
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.s3:after {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

@-webkit-keyframes star-ani {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(0) translate3d(0, 0, 0);
            transform: scale(0) rotate(0) translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
            transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
            transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
  }
}

@keyframes star-ani {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(0) translate3d(0, 0, 0);
            transform: scale(0) rotate(0) translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
            transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
            transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
  }
}

.music {
  position: absolute;
  z-index: 1000;
  right: 0;
  top: 0;
  padding: 15px;
  width: 25px;
  height: 25px;
}

.music .music-btn {
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/music-1.png);
  background-size: 100% 100%;
}

.music .music-btn.play {
  background-image: url(../images/music-0.png);
}