@charset "utf-8";
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
}
html,
body {
  /* 禁止长按链接与图片弹出菜单 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Arial, Tahoma, Geneva, Verdana, sans-serif;
}
/* pc端限制 html font-size */
@media screen and (min-width: 768px) {
  html {
    font-size: 16px!important;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
}
body {
  color: #fff;
  background-color: #191512;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: #e2d7ca !important;
  background-image: none !important;
  color: #fff !important;
}
/* 取消链接高亮  */
a,
button,
input,
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
/* 图片自适应 */
img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* 去掉图片下面的留白 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
  position: relative;
}
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
label,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body:focus,
div:focus,
ul:focus,
li:focus,
ol:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
input:focus,
textarea:focus,
select:focus,
label:focus,
p:focus,
dl:focus,
dt:focus,
dd:focus,
a:focus,
img:focus,
button:focus,
form:focus,
table:focus,
th:focus,
tr:focus,
td:focus,
tbody:focus,
article:focus,
aside:focus,
details:focus,
figcaption:focus,
figure:focus,
footer:focus,
header:focus,
menu:focus,
nav:focus,
section:focus {
  outline: none;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: none;
}
input[type="color"]:active,
input[type="date"]:active,
input[type="datetime-local"]:active,
input[type="datetime"]:active,
input[type="email"]:active,
input[type="month"]:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="search"]:active,
input[type="tel"]:active,
input[type="text"]:active,
input[type="time"]:active,
input[type="url"]:active,
input[type="week"]:active,
select:active,
textarea:active,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus,
textarea:focus,
input[type="color"]:visited,
input[type="date"]:visited,
input[type="datetime-local"]:visited,
input[type="datetime"]:visited,
input[type="email"]:visited,
input[type="month"]:visited,
input[type="number"]:visited,
input[type="password"]:visited,
input[type="search"]:visited,
input[type="tel"]:visited,
input[type="text"]:visited,
input[type="time"]:visited,
input[type="url"]:visited,
input[type="week"]:visited,
select:visited,
textarea:visited {
  outline: none;
  outline-color: none;
}
em,
i {
  font-style: normal;
}
ul,
li,
ol {
  list-style-type: none;
}
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}
.clearfix {
  zoom: 1;
}
a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  text-decoration: none;
}
img {
  border: none;
  border-color: transparent;
  color: transparent;
}
/*单行溢出*/
.one-txt-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt-cut {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* IE8/9/10 hack */
  line-height: 2em\0 !important;
  height: 6em\0 !important;
  position: relative\0;
}
.txt-cut:after {
  content: '';
  font-weight: bold\0;
  position: absolute\0;
  bottom: 0\0;
  right: 5px\0;
  vertical-align: bottom\0;
  line-height: 2em\0;
}
.txt-cut-five {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  /* IE8/9/10 hack */
  line-height: 2em\0 !important;
  height: 7em\0 !important;
  position: relative\0;
}
.txt-cut-five:after {
  content: '';
  font-weight: bold\0;
  position: absolute\0;
  bottom: 0\0;
  right: 5px\0;
  vertical-align: bottom\0;
  line-height: 2em\0;
}
/* firefox hack */
@-moz-document url-prefix() {
  .txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 2em !important;
    height: 7em !important;
    position: relative;
  }
  .txt-cut:after {
    content: '';
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 5px;
    vertical-align: bottom;
    line-height: 2em;
  }
}
.w50 {
  width: 50%;
}
.w25 {
  width: 25%;
}
.w20 {
  width: 20%;
}
.w33 {
  width: 33.333333%;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.db {
  display: block !important;
}
.dn {
  display: none !important;
}
/* 精灵图公共类 */
/* 水平垂直居中公共类 */
.middle:before,
.middle-self {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* 垂直居中公共类 */
.middle-y:before,
.middle-y-self {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
/* 水平居中公共类 */
.middle-x:before,
.middle-x-self {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* 模态框 */
#ix-module,
#shadow-box {
  position: fixed;
  z-index: 99998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
#shadow-box {
  background: rgba(0, 0, 0, 0.8);
}
#shadow-box p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  width: 100%;
  text-align: center;
}
/* loading动画 */
#loading-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 1;
  display: none;
}
#loading-img:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: 50px;
  width: 50px;
  background: url(../images/loading.gif) no-repeat center;
}
.loading-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 1;
  display: none;
}
.loading-box .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: 26px;
  width: 26px;
  background: url(../images/loading.png) no-repeat;
  background-size: 100%;
  z-index: 20;
  -webkit-animation: serverLoading 1s infinite linear;
  animation: serverLoading 1s infinite linear;
}
@keyframes serverLoading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.loading .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loading .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loading > div {
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  background-color: #ed6d00;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.pageloading:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  background: url(../images/pageloading.png) no-repeat center center;
  background-size: 100%;
  left: 50%;
  top: 50%;
  margin-left: -1.6rem;
  margin-top: -2.32rem;
  -webkit-animation: bouncedelayTwo .5s infinite alternate;
  animation: bouncedelayTwo .5s infinite alternate;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@keyframes bouncedelayTwo {
  from,
  to {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
  25% {
    transform: scale(1, 1);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
}
@keyframes heartbeatTwo {
  0% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
  45% {
    transform: scale(1, 1);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
}
/* 字体图标 */
@font-face {
  font-family: "FUTURA-LT-CONDENSED-BOLD";
  /*自定义字体名称*/
  src: url("../fonts/FUTURA-LT-CONDENSED-BOLD.eot");
  /*解决IE9兼容模式下的兼容性问题*/
  src: url("../fonts/FUTURA-LT-CONDENSED-BOLD.eot?") format("embedded-opentype"), /*在eot加?或者?iefix，以解决字体文件在IE下加载失败的问题*/ url("../fonts/FUTURA-LT-CONDENSED-BOLD.woff") format("woff"), url("../fonts/FUTURA-LT-CONDENSED-BOLD-webfont.ttf") format("trueytype"), url("../fonts/FUTURA-LT-CONDENSED-BOLD-webfont.svg") format("svg");
  font-weight: normal;
  /*定义字体粗细*/
  font-style: normal;
  /*定义字体样式*/
  font-display: swap;
}
/* 头部 */
.dtong {
  height: 60px;
  background: #202020;
  display: block;
  position: relative;
  z-index: 999;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* 导航栏 */
#eoc-nav {
  position: fixed;
  top: 60px;
  width: 100%;
  height: 60px;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.nav-title {
  position: relative;
  overflow: visible;
}
.nav-title .nav-icon {
  margin: 8px 0 0 10px;
}
.nav-title .nav-logo {
  margin: 10px 0 0 25px;
}
.nav-title .pc-nav-list {
  margin-left: 268px;
  width: 672px;
  display: table;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.nav-title .pc-nav-list > li {
  position: relative;
  display: table-cell;
}
.nav-title .pc-nav-list > li > a {
  display: inline-block;
  padding: 20px 0;
}
.nav-title .pc-nav-list > li a {
  color: #e2d7ca;
}
.nav-title .pc-nav-list > li a:hover {
  color: #f0a529;
  text-decoration: underline;
}
.nav-title .pc-nav-list > li.active > a {
  color: #f0a529;
  text-decoration: underline;
}
.nav-title .pc-nav-list .special:after {
  content: '';
  display: inline-block;
  position: relative;
  left: 5px;
  width: 0;
  height: 0;
  vertical-align: bottom;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #fff;
}
.nav-title .pc-nav-list .special:hover:after {
  border-top-color: #f0a529;
}
.nav-title .pc-nav-list .special-list {
  display: none;
  position: absolute;
  top: 60px;
  width: 100%;
  line-height: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.nav-title .pc-nav-list .special-list li {
  padding: 20px 0;
}
.nav-title .nav-share {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 0;
}
.nav-title .nav-share > a {
  display: inline-block;
  margin-right: 15px;
}
.nav-title .mobile-nav {
  display: none;
}
.btn-download {
  width: 115px;
  height: 40px;
  position: absolute;
  top: 1px;
  right: -134px;
  animation: starFlick 1.2s 0s linear both infinite;
  -webkit-animation: starFlick 1.2s 0s linear both infinite;
  -moz-animation: starFlick 1.2s 0s linear both infinite;
  -ms-animation: starFlick 1.2s 0s linear both infinite;
}
.btn-download img {
  display: block;
  width: 115px;
  height: 40px;
}
@media screen and (max-width: 1400px) {
  .nav-title .nav-share {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #eoc-nav {
    top: 0;
    height: 1rem;
  }
  .wrapper {
    width: 100%;
    overflow: visible;
  }
  .nav-title .nav-icon {
    margin: .025rem 0 0 .2rem;
    width: .95rem;
    height: .95rem;
  }
  .nav-title .nav-logo {
    font-size: 0;
    margin: .2rem 0 0 .17rem;
    width: 1.79rem;
    height: .63rem;
  }
  .nav-title .pc-nav-list {
    display: none;
  }
  .nav-title .nav-share {
    position: absolute;
    top: .14rem;
    right: 1.3rem;
    font-size: 0;
    width: 2.1rem;
    height: .74rem;
  }
  .nav-title .nav-share a {
    width: 100%;
    height: 100%;
  }
  .nav-title .mobile-nav {
    display: block;
  }
  .nav-title .mobile-nav .mobile-open {
    display: block;
    float: right;
    width: 1rem;
    height: 1rem;
  }
  .nav-title .mobile-nav > ul {
    position: absolute;
    right: 0;
    top: 1rem;
    width: 3.6rem;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }
  .nav-title .mobile-nav > ul > li {
    font-size: .36rem;
    line-height: 1.06rem;
    text-align: center;
  }
  .nav-title .mobile-nav > ul > li a {
    color: #e2d7ca;
  }
  .nav-title .mobile-nav > ul > li select {
    color: #e2d7ca;
    font-size: .36rem;
    cursor: pointer;
    border: none;
    outline: none;
  }
  .nav-title .mobile-nav > ul > li.active a,
  .nav-title .mobile-nav > ul > li.active select {
    color: #f0a529;
    border-bottom: 1px solid #f0a529;
  }
  .nav-title .mobile-nav > ul > li .special {
    display: none;
  }
  .nav-title .mobile-nav > ul > li .special-list li.active a,
  .nav-title .mobile-nav > ul > li .special-list li.active select {
    color: #f0a529;
    border-bottom: 1px solid #f0a529;
  }
  .dtong {
    height: 0;
  }
  .topBar {
    display: none !important;
  }
  .btn-download {
    top: -0.02rem;
    right: -0.25rem;
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
  }
  .btn-download img {
    width: 100%;
    height: 100%;
  }
}
/* 主体内容 */
.eoc-content {
  position: relative;
  overflow: hidden;
  min-width: 1200px;
}
.common-header {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  margin-left: -960px;
  min-height: 1168px;
  overflow: hidden;
  z-index: -1;
}
.common-header .header-box {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 621px;
  z-index: -1;
}
.common-header .mid-box {
  position: absolute;
  top: 621px;
  left: 0;
  display: block;
  height: 546px;
  z-index: -1;
}
.common-header .mb-slogan {
  display: none;
}
.common-header .pc-slogan {
  position: absolute;
  top: 438px;
  left: 50%;
  display: block;
  width: 712px;
  height: 165px;
  margin-left: -356px;
}
.common-header .pc-slogan > span {
  display: block;
  width: 100%;
  height: 100%;
}
.common-header .pc-slogan > a {
  position: absolute;
  top: 95px;
  left: 50%;
  display: block;
  width: 61px;
  height: 61px;
  margin-left: -30.5px;
  z-index: 10;
}
.common-header .pc-slogan > a img {
  display: block;
}
@media screen and (max-width: 768px) {
  .eoc-content {
    width: 100%;
    min-width: 0;
  }
  .common-header {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 7.5rem;
    margin-left: -3.75rem;
    min-height: 12.91rem;
    overflow: hidden;
  }
  .common-header .header-box {
    height: 10rem;
  }
  .common-header .mid-box {
    top: 10rem;
    height: auto;
  }
  .common-header .pc-slogan {
    position: absolute;
    left: 50%;
    top: 8.1rem;
    width: 7.12rem;
    height: 1.65rem;
    margin-left: -3.56rem;
  }
  .common-header .pc-slogan > span {
    display: block;
    width: 100%;
    height: 100%;
  }
  .common-header .pc-slogan > a {
    position: absolute;
    top: .95rem;
    left: 50%;
    display: block;
    width: .61rem;
    height: .61rem;
    margin-left: -0.305rem;
  }
}
/* 公共部分 */
.common-content {
  margin-top: 420px;
  padding: 0 25px;
}
.common-content .Communities {
  background-color: #191512;
}
.common-content .Communities strong {
  display: block;
  padding: 66px 0 35px 0;
  text-align: center;
  border-bottom: 1px dashed #53381e;
  font-size: 30px;
  line-height: 30px;
  color: #cc9552;
}
.common-content .Communities .shaw {
  text-align: center;
  padding: 28px 0;
  font-size: 12px;
}
.common-content .Communities .shaw a {
  display: inline-block;
  min-width: 44px;
  color: #cc9552;
  margin: 0 40px;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.common-content .Communities .shaw a:hover {
  color: #f3d080;
}
.common-content .Communities .shaw a:before {
  content: '';
  display: block;
  margin: 0 auto;
  padding-bottom: 18px;
  background: url(../images/sprites.png?20180814) no-repeat;
}
.common-content .Communities .shaw a.shaw1:before {
  height: 44px;
  width: 22px;
  background-position: -168px -112px;
  padding-bottom: 16px;
}
.common-content .Communities .shaw a.shaw2:before {
  height: 37px;
  width: 43px;
  background-position: -166px -176px;
}
.common-content .Communities .shaw a.shaw3:before {
  height: 32px;
  width: 44px;
  background-position: -165px -233px;
}
.common-content .Communities .shaw a.shaw4:before {
  height: 35px;
  width: 35px;
  background-position: -168px 0;
}
.common-content .Communities .shaw a.shaw5:before {
  height: 37px;
  width: 44px;
  background-position: -163px -297px;
}
.common-content .Communities .shaw a.shaw6:before {
  height: 41px;
  width: 39px;
  background-position: -168px -56px;
  padding-bottom: 13px;
}
.common-content .Communities .shaw a.shaw1:hover:before {
  background-position: -231px -109px;
}
.common-content .Communities .shaw a.shaw2:hover:before {
  background-position: -233px -177px;
}
.common-content .Communities .shaw a.shaw3:hover:before {
  background-position: -233px -233px;
}
.common-content .Communities .shaw a.shaw4:hover:before {
  background-position: -232px 0;
}
.common-content .Communities .shaw a.shaw5:hover:before {
  background-position: -163px -297px;
}
.common-content .Communities .shaw a.shaw6:hover:before {
  background-position: -231px -55px;
}
@media screen and (max-width: 768px) {
  .common-content {
    margin-top: 1rem;
    padding: 0 .44rem;
  }
  .common-content .Communities strong {
    padding: .66rem 0 .35rem 0;
    font-size: .4rem;
    line-height: .4rem;
  }
  .common-content .Communities .shaw {
    text-align: center;
    padding: .28rem 0;
    font-size: .24rem;
  }
  .common-content .Communities .shaw a {
    display: inline-block;
    color: #cc9552;
    width: 29%;
    min-width: 0;
    margin: .3rem 1.5%;
  }
  .common-content .Communities .shaw a:before {
    padding-bottom: .18rem;
    background-size: 2.94rem 4.8rem;
  }
  .common-content .Communities .shaw a.shaw1:before {
    height: .44rem;
    width: .22rem;
    background-position: -1.68rem -1.12rem;
    padding-bottom: .16rem;
  }
  .common-content .Communities .shaw a.shaw2:before {
    height: .37rem;
    width: .43rem;
    background-position: -1.66rem -1.76rem;
  }
  .common-content .Communities .shaw a.shaw3:before {
    height: .32rem;
    width: .44rem;
    background-position: -1.65rem -2.33rem;
  }
  .common-content .Communities .shaw a.shaw4:before {
    height: .35rem;
    width: .35rem;
    background-position: -1.68rem 0;
  }
  .common-content .Communities .shaw a.shaw5:before {
    height: .37rem;
    width: .44rem;
    background-position: -1.63rem -2.96rem;
  }
  .common-content .Communities .shaw a.shaw6:before {
    height: .41rem;
    width: .39rem;
    background-position: -1.68rem -0.56rem;
    padding-bottom: .13rem;
  }
  .common-content .Communities .shaw a.shaw1:hover:before {
    background-position: -2.31rem -1.09rem;
  }
  .common-content .Communities .shaw a.shaw2:hover:before {
    background-position: -2.33rem -1.77rem;
  }
  .common-content .Communities .shaw a.shaw3:hover:before {
    background-position: -2.33rem -2.33rem;
  }
  .common-content .Communities .shaw a.shaw4:hover:before {
    background-position: -2.32rem 0;
  }
  .common-content .Communities .shaw a.shaw5:hover:before {
    height: .37rem;
    background-position: -2.35rem -2.96rem;
  }
  .common-content .Communities .shaw a.shaw6:hover:before {
    background-position: -2.31rem -0.55rem;
  }
}
/* 首页 */
.home-header {
  z-index: auto;
}
.home-content {
  margin-top: 621px;
  padding: 0 25px;
}
.home-content .mid-left {
  width: 740px;
  overflow: hidden;
}
.home-content .swiper-container {
  position: relative;
  width: 740px;
  font-size: 0;
}
.home-content .swiper-container .bd {
  height: auto !important;
}
.home-content .swiper-container .bd .swiper-slide {
  width: 740px;
  height: auto !important;
}
.home-content .swiper-container .bd .swiper-slide a {
  display: inline-block;
}
.home-content .swiper-container .bd .swiper-slide a img {
  width: 100%;
  height: 265px;
}
.home-content .swiper-container .hd {
  width: 740px;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  text-align: right;
}
.home-content .swiper-container .hd span {
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  background: #cbbaab;
  margin-right: 12px;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
}
.home-content .swiper-container .hd span.swiper-active-switch {
  background: #e7a94b;
}
.home-content .mid-news {
  background: rgba(40, 33, 29, 0.4);
  padding: 0 20px;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.home-content .mid-news .hd {
  border-bottom: 1px solid #f0a529;
}
.home-content .mid-news .hd li {
  position: relative;
  float: left;
  font-size: 20px;
  padding: 12px 35px;
  line-height: 24px;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.home-content .mid-news .hd li a {
  color: #e2d7ca;
}
.home-content .mid-news .hd li:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -20px;
  display: none;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #f0a529 transparent transparent;
  margin-left: -10px;
}
@media screen and (min-width: 769px) {
  .home-content .mid-news .hd li.active:after,
  .home-content .mid-news .hd li:hover:after {
    display: block;
  }
  .home-content .mid-news .hd li.active a,
  .home-content .mid-news .hd li:hover a {
    color: #f0a529;
  }
}
.home-content .mid-news .bd {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.home-content .mid-news .bd > ul {
  width: 2100px;
  position: relative;
  transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.home-content .mid-news .bd > ul > li {
  float: left;
  width: 700px;
  overflow: hidden;
}
.home-content .mid-news .bd > ul > li li {
  overflow: hidden;
  clear: both;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 0;
  color: #6f553b;
  border-bottom: 1px dashed #957351;
}
.home-content .mid-news .bd > ul > li li a {
  text-align: left;
  color: #957351;
}
.home-content .mid-news .bd > ul > li li a:hover {
  text-decoration: underline;
}
.home-content .mid-news .bd > ul > li li i {
  float: right;
}
.home-content .mid-news .view-all {
  padding: 16px 0;
  text-align: right;
}
.home-content .mid-news .view-all a {
  display: inline-block;
  min-width: 200px;
  font-size: 24px;
  line-height: 24px;
  padding: 11px 0;
  background-color: #f0a529;
  text-align: center;
  color: #fff;
}
.home-content .mid-news .view-all a:hover {
  background-color: #ff8d2d;
}
.home-content .fb-share {
  display: inline-block;
  width: 380px;
  height: 550px;
}
@media screen and (max-width: 768px) {
  .home-content {
    margin-top: 10rem;
    padding: .4rem .45rem 0 .45rem;
  }
  .home-content .mid-left {
    width: 100%;
  }
  .home-content .swiper-container {
    width: 100%;
  }
  .home-content .swiper-container .bd {
    height: auto !important;
  }
  .home-content .swiper-container .bd .swiper-slide {
    width: 100%;
  }
  .home-content .swiper-container .bd .swiper-slide a {
    display: inline-block;
  }
  .home-content .swiper-container .bd .swiper-slide a img {
    width: 100%;
    height: auto;
  }
  .home-content .swiper-container .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: .2rem;
    text-align: center;
  }
  .home-content .swiper-container .hd span {
    display: inline-block;
    width: .18rem;
    height: .18rem;
  }
  .home-content .mid-news {
    background: none;
    margin-top: .2rem;
    padding: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .home-content .mid-news .hd {
    border-bottom: 1px solid #f0a529;
    display: table;
    width: 100%;
  }
  .home-content .mid-news .hd li {
    position: relative;
    float: none;
    display: table-cell;
    text-align: center;
    font-size: .36rem;
    padding: .17rem 0;
    line-height: .36rem;
    transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
  }
  .home-content .mid-news .hd li a {
    color: #e2d7ca;
  }
  .home-content .mid-news .hd li:after {
    bottom: -0.2rem;
    border-width: .1rem;
    margin-left: -0.1rem;
  }
  .home-content .mid-news .hd li.active {
    background-color: #332720;
  }
  .home-content .mid-news .hd li.active:after {
    display: block;
  }
  .home-content .mid-news .hd li.active a {
    color: #f0a529;
  }
  .home-content .mid-news .bd > ul {
    position: relative;
  }
  .home-content .mid-news .bd > ul > li {
    width: 6.6rem;
  }
  .home-content .mid-news .bd > ul > li li {
    font-size: .24rem;
    line-height: .4rem;
    padding: .2rem 0;
  }
  .home-content .mid-news .bd > ul > li li a {
    font-size: .32rem;
    word-wrap: break-word;
  }
  .home-content .mid-news .view-all {
    padding: .16rem 0;
    text-align: center;
  }
  .home-content .mid-news .view-all a {
    min-width: auto;
    width: 100%;
    font-size: .48rem;
    line-height: .48rem;
    padding: .16rem 0;
  }
  .home-content .fb-share {
    display: none;
  }
}
/* 新闻页 */
.news-mid > ul {
  background: rgba(40, 33, 29, 0.4);
  font-size: 20px;
  padding: 0 16px;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.news-mid > ul > li {
  position: relative;
  float: left;
  line-height: 20px;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.news-mid > ul > li a {
  display: inline-block;
  padding: 21px 35px;
  color: #e2d7ca;
}
@media screen and (min-width: 769px) {
  .news-mid > ul > li:hover a,
  .news-mid > ul > li.active a {
    color: #f0a529;
  }
}
.news-mid .events-Mod {
  margin-top: 20px;
  background-color: #2e241f;
}
.news-mid .events-Mod .floatL {
  width: 278px;
  height: 200px;
}
.news-mid .events-Mod .floatL img {
  width: 100%;
  height: 100%;
}
.news-mid .events-Mod .floatR {
  margin-left: 278px;
  height: 200px;
  overflow: hidden;
  padding: 0 40px;
}
.news-mid .events-Mod .floatR span {
  display: block;
  line-height: 20px;
  padding: 20px 0;
  font-size: 16px;
  border-bottom: 1px dashed #957351;
}
.news-mid .events-Mod .floatR span a {
  font-size: 20px;
  color: #f0a529;
  word-wrap: break-word;
}
.news-mid .events-Mod .floatR span a:hover {
  color: #f3d080;
}
.news-mid .events-Mod .floatR span i {
  float: right;
  display: inline-block;
  color: #f0a529;
  font-size: 14px;
}
.news-mid .events-Mod .floatR p {
  padding-top: 10px;
  line-height: 30px;
  color: #957351;
}
.news-mid .events-Mod .floatR .readMore {
  display: inline-block;
  color: #f0a529;
  float: right;
}
.news-mid .events-Mod .floatR .readMore:hover {
  color: #f3d080;
}
.news-mid .events-all {
  padding: 20px 0;
  text-align: right;
}
.news-mid .events-all a {
  display: inline-block;
  min-width: 200px;
  font-size: 24px;
  line-height: 24px;
  padding: 11px 0;
  background-color: #f0a529;
  text-align: center;
  color: #fff;
}
.news-mid .events-all a:hover {
  background-color: #ff8d2d;
}
.news-mid .no-more {
  display: none;
  font-size: 20px;
  line-height: 24px;
  padding: 11px 0;
  text-align: center;
  color: #999;
}
@media screen and (max-width: 768px) {
  .news-header {
    display: none;
  }
  .news-content {
    margin-top: 1.4rem;
  }
  .news-mid > ul {
    background: none;
    font-size: .36rem;
    padding: 0;
    position: relative;
    width: 100%;
    display: table;
    height: auto;
    overflow: visible;
    border-bottom: 1px solid #f0a529;
  }
  .news-mid > ul > li {
    position: relative;
    float: none;
    display: table-cell;
    line-height: .2rem;
  }
  .news-mid > ul > li i {
    display: none;
  }
  .news-mid > ul > li:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -0.2rem;
    display: none;
    width: 0;
    height: 0;
    border-width: .1rem;
    border-style: solid;
    border-color: #f0a529 transparent transparent;
    margin-left: -0.1rem;
  }
  .news-mid > ul > li a {
    display: block;
    padding: .25rem .05rem;
    text-align: center;
  }
  .news-mid > ul > li.active:after {
    display: block;
  }
  .news-mid > ul > li.active a {
    color: #f0a529;
    background-color: #332720;
  }
  .news-mid .events-content {
    padding-top: .2rem;
  }
  .news-mid .events-Mod {
    margin: 0 0 .7rem 0;
    background-color: inherit;
  }
  .news-mid .events-Mod .floatL {
    display: block;
    float: none;
    width: 100%;
    height: auto;
  }
  .news-mid .events-Mod .floatR {
    margin-left: 0;
    height: auto;
    overflow: hidden;
    padding: 0;
  }
  .news-mid .events-Mod .floatR span {
    display: block;
    line-height: .4rem;
    padding: .3rem 0;
    font-size: .28rem;
  }
  .news-mid .events-Mod .floatR span a {
    font-size: .32rem;
  }
  .news-mid .events-Mod .floatR span a:hover {
    color: #f3d080;
  }
  .news-mid .events-Mod .floatR span i {
    font-size: .24rem;
  }
  .news-mid .events-Mod .floatR p {
    font-size: .28rem;
    padding-top: .23rem;
    line-height: .4rem;
  }
  .news-mid .events-Mod .floatR .readMore {
    display: none;
  }
  .news-mid .events-all {
    padding: .2rem 0;
    text-align: center;
  }
  .news-mid .events-all a {
    display: block;
    min-width: auto;
    font-size: .48rem;
    line-height: .48rem;
    padding: .16rem 0;
  }
  .news-mid .events-all a:hover {
    background-color: #ff8d2d;
  }
}
/* 新闻详情页 */
.newsdetails-mid {
  background: rgba(40, 33, 29, 0.8);
  padding: 0 85px;
}
.newsdetails-mid h1 {
  font-size: 36px;
  padding-top: 50px;
  text-align: center;
  color: #f0a529;
}
.newsdetails-mid .user-time {
  font-size: 14px;
  color: #f0a529;
  border-bottom: 1px dashed #957351;
  padding: 20px 0;
  text-align: right;
  margin-bottom: 16px;
}
.newsdetails-mid .user-article {
  font-size: 16px;
  color: #957351;
  line-height: 24px;
}
.newsdetails-mid .user-article .title {
  color: #f0a529;
  font-weight: bold;
  line-height: 40px;
}
.newsdetails-mid .user-article .desc {
  color: #957351;
  line-height: 24px;
}
.newsdetails-mid .user-share {
  font-size: 16px;
  color: #f0a529;
  line-height: 20px;
}
.newsdetails-mid .user-share i {
  display: block;
}
.newsdetails-mid .user-Flip {
  padding: 45px 0 60px 0;
  font-size: 20px;
  line-height: 20px;
}
.newsdetails-mid .user-Flip a {
  padding: 23px 5px;
  min-width: 200px;
  text-align: center;
  background-color: #f0a529;
}
.newsdetails-mid .user-Flip a:hover {
  background-color: #ff8d2d;
}
@media screen and (max-width: 767px) {
  .newsdetails-header {
    display: none;
  }
  .newsdetails-mid {
    background: inherit;
    padding: 0;
  }
  .newsdetails-mid h1 {
    font-size: .36rem;
    padding-top: .4rem;
    text-align: center;
    line-height: .56rem;
  }
  .newsdetails-mid .user-time {
    font-size: .24rem;
    padding: .27rem 0;
    text-align: right;
    margin-bottom: .2rem;
  }
  .newsdetails-mid .user-article {
    font-size: .28rem;
  }
  .newsdetails-mid .user-article .title {
    color: #f0a529;
    font-weight: bold;
    line-height: .8rem;
  }
  .newsdetails-mid .user-article .desc {
    line-height: .4rem;
  }
  .newsdetails-mid .user-share {
    font-size: .28rem;
    line-height: .3rem;
  }
  .newsdetails-mid .user-Flip {
    padding: .6rem 0 .06rem 0;
    font-size: .36rem;
    line-height: .36rem;
  }
  .newsdetails-mid .user-Flip a {
    padding: .22rem .05rem;
    min-width: 3.2rem;
  }
  .newsdetails-mid .user-Flip a:hover {
    background-color: #ff8d2d;
  }
}
/* 导航页 */
.guides-mid .common-show {
  position: relative;
  padding-left: 34px;
  background: rgba(40, 33, 29, 0.8);
  height: 488px;
}
.guides-mid .common-show h3 {
  font-size: 30px;
  color: #e2d7ca;
  line-height: 30px;
  padding: 30px 0;
}
.guides-mid .common-show h3:before {
  content: '|';
  display: inline-block;
  width: 4px;
  line-height: 30px;
  color: #f0a529;
  margin-right: 20px;
  vertical-align: text-top;
}
.guides-mid .common-show .tab-hd {
  position: relative;
  z-index: 2;
}
.guides-mid .common-show .tab-hd .tab-list {
  position: relative;
  float: left;
  margin: 0 8px;
  font-size: 0;
  overflow: hidden;
}
.guides-mid .common-show .tab-hd .tab-list a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 110px;
  word-wrap: break-word;
  line-height: 20px;
  padding: 45px 5px;
  font-size: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: #f0a529;
}
.guides-mid .common-show .tab-hd .tab-list.active a {
  display: none;
}
.guides-mid .common-show .tab-hd .tab-arrow {
  float: left;
  width: 12px;
  margin-top: 35px;
  height: 39px;
  background: url(../images/sprites.png?20180814) no-repeat;
  cursor: pointer;
}
.guides-mid .common-show .tab-hd .tab-arrow.arrow-left {
  background-position: 0 0;
}
.guides-mid .common-show .tab-hd .tab-arrow.arrow-right {
  background-position: -24px 0;
}
.guides-mid .common-show .tab-bd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.guides-mid .common-show .tab-bd li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.guides-mid .common-show .tab-bd li:after {
  content: '';
  position: absolute;
  top: 16px;
  right: 12px;
  display: none;
  width: 122px;
  height: 430px;
  background: url(../images/pcImg/skill-one.png) no-repeat center;
  background-size: cover;
}
.guides-mid .common-show .tab-bd li:nth-child(2):after {
  background: url(../images/pcImg/skill-two.png) no-repeat center;
  background-size: cover;
}
.guides-mid .common-show .tab-bd li:nth-child(3):after {
  background: url(../images/pcImg/skill-three.png) no-repeat center;
  background-size: cover;
}
.guides-mid .common-show .tab-bd li .skills-pic {
  position: absolute;
  top: 0;
  right: 0;
}
.guides-mid .common-show .tab-bd li.active {
  opacity: 1;
}
.guides-mid .common-show .tab-bd li.active:after {
  display: block;
}
.guides-mid .common-show .desc {
  position: relative;
  margin: 200px 0 0 34px;
}
.guides-mid .common-show .desc strong {
  display: block;
  font-size: 24px;
  line-height: 24px;
  padding: 23px 0;
  color: #f0a529;
}
.guides-mid .common-show .desc p {
  position: relative;
  width: 536px;
  font-size: 16px;
  color: #957351;
  line-height: 32px;
  padding: 20px 80px 0 0;
}
.guides-mid .common-show .desc p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 456px;
  height: 1px;
  background: linear-gradient(30deg, #957351, #957351 50%, transparent);
  background: -ms-linear-gradient(30deg, #957351, #957351 50%, transparent);
  background: -webkit-linear-gradient(30deg, #957351, #957351 50%, transparent);
  background: -moz-linear-gradient(30deg, #957351, #957351 50%, transparent);
}
.guides-mid .characters {
  margin-bottom: 20px;
}
.guides-mid .features {
  margin-bottom: 40px;
}
.guides-mid .features .swiper-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.guides-mid .features .swiper-container .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.guides-mid .features .swiper-container .swiper-slide > div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.guides-mid .features .swiper-container .swiper-slide > div img {
  position: absolute;
  right: 0;
}
.guides-mid .features .desc {
  height: 100%;
  margin: 0;
  padding: 70px 0 0 34px;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.guides-mid .features .swiper-more {
  position: absolute;
  left: 34px;
  bottom: 65px;
  font-size: 16px;
  color: #f0a529;
}
.guides-mid .features .swiper-more:hover {
  color: #f3d080;
}
.guides-mid .features .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  text-align: center;
}
.guides-mid .features .swiper-pagination span {
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  background: #cbbaab;
  margin-right: 12px;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
}
.guides-mid .features .swiper-pagination span.swiper-active-switch {
  background: #e7a94b;
}
.guides-mid .features .play-btn {
  position: absolute;
  right: 386px;
  top: 214px;
  display: block;
  height: 61px;
  width: 61px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .guides-header {
    display: none;
  }
  .guides-mid .common-show {
    padding-left: 0;
    background: inherit;
    height: auto;
  }
  .guides-mid .common-show h3 {
    font-size: .5rem;
    line-height: .5rem;
    padding: .35rem 0;
  }
  .guides-mid .common-show h3:before {
    width: .04rem;
    line-height: .5rem;
    margin-right: .1rem;
  }
  .guides-mid .common-show .tab-hd {
    text-align: center;
  }
  .guides-mid .common-show .tab-hd .tab-list {
    position: relative;
    float: none;
    display: inline-block;
    width: 1.32rem;
    height: 1.32rem;
    margin: 0 .15rem;
    vertical-align: bottom;
  }
  .guides-mid .common-show .tab-hd .tab-list a {
    width: 100%;
    line-height: .24rem;
    padding: .54rem .05rem;
    font-size: .24rem;
  }
  .guides-mid .common-show .tab-hd .tab-arrow {
    display: none;
  }
  .guides-mid .common-show .tab-bd {
    position: relative;
    height: auto;
  }
  .guides-mid .common-show .tab-bd li:after {
    top: .2rem;
    right: -0.05rem;
    width: 1.22rem;
    height: 4.3rem;
  }
  .guides-mid .common-show .tab-bd li .skills-pic {
    position: absolute;
    top: 0;
    right: 0;
  }
  .guides-mid .common-show .tab-bd li .skills-pic {
    position: relative;
    font-size: 0;
  }
  .guides-mid .common-show .tab-bd li.active {
    position: relative;
  }
  .guides-mid .common-show .desc {
    margin: 0;
  }
  .guides-mid .common-show .desc strong {
    font-size: .32rem;
    padding: 0 0 .3rem 0;
    border-bottom: 1px dashed #957351;
  }
  .guides-mid .common-show .desc p {
    font-size: .28rem;
    line-height: .5rem;
    width: 100%;
    padding: 0;
    padding-top: .2rem;
  }
  .guides-mid .common-show .desc p:before {
    display: none;
  }
  .guides-mid .characters {
    margin-bottom: .4rem;
  }
  .guides-mid .features {
    margin: 0 -0.44rem;
  }
  .guides-mid .features h3 {
    padding: .35rem .44rem;
  }
  .guides-mid .features .swiper-container {
    position: relative;
    height: auto;
    max-height: 11.4rem!important;
  }
  .guides-mid .features .swiper-container .swiper-slide {
    position: relative;
    height: auto;
  }
  .guides-mid .features .swiper-container .swiper-slide > div {
    position: relative;
  }
  .guides-mid .features .swiper-container .swiper-slide > div > img {
    position: relative;
    width: 7.5rem;
    height: 6.06rem;
  }
  .guides-mid .features .desc {
    height: auto;
    padding: 0 .44rem .6rem .44rem;
  }
  .guides-mid .features .swiper-more {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: .24rem;
    padding-left: .44rem;
  }
  .guides-mid .features .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 5.4rem;
    font-size: 0;
  }
  .guides-mid .features .swiper-pagination span {
    width: .18rem;
    height: .18rem;
    margin-right: .12rem;
  }
  .guides-mid .features .play-btn {
    position: absolute;
    right: 4.6rem;
    top: 2.3rem;
    width: .61rem;
    height: .61rem;
    font-size: 0;
  }
}
/* 天神页 */
.celestials-mid {
  position: relative;
  padding: 0 38px;
  background: rgba(40, 33, 29, 0.8);
  height: 858px;
}
.celestials-mid .header {
  display: inline-block;
}
.celestials-mid h3 {
  position: relative;
  float: left;
  font-size: 60px;
  color: #e2d7ca;
  line-height: 60px;
  padding: 35px 0;
  z-index: 2;
}
.celestials-mid h3:before {
  content: '|';
  display: inline-block;
  width: 4px;
  line-height: 60px;
  color: #f0a529;
  margin-right: 25px;
  vertical-align: text-top;
}
.celestials-mid .play-btn {
  position: relative;
  float: left;
  height: 61px;
  width: 61px;
  margin: 40px 0 0 40px;
  z-index: 10;
}
.celestials-mid .tab-hd {
  position: relative;
  z-index: 2;
  float: right;
  margin-top: 40px;
}
.celestials-mid .tab-hd .tab-list {
  position: relative;
  float: left;
  margin: 0 5px;
  font-size: 0;
  overflow: hidden;
}
.celestials-mid .tab-hd .tab-list a {
  position: relative;
  display: block;
  width: 66px;
  height: 66px;
  background: url(../images/pcImg/celestials-hd.png) no-repeat center;
  background-position: 0;
}
.celestials-mid .tab-hd .tab-list a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.celestials-mid .tab-hd .tab-list:nth-child(3) a {
  background-position: -76px 0;
}
.celestials-mid .tab-hd .tab-list:nth-child(4) a {
  background-position: -152px 0;
}
.celestials-mid .tab-hd .tab-list:nth-child(5) a {
  background-position: -228px 0;
}
.celestials-mid .tab-hd .tab-list:nth-child(6) a {
  background-position: -304px 0;
}
.celestials-mid .tab-hd .tab-list:nth-child(7) a {
  background-position: -380px 0;
}
.celestials-mid .tab-hd .tab-list.active a:after {
  display: none;
}
.celestials-mid .tab-hd .tab-arrow {
  float: left;
  width: 12px;
  height: 39px;
  margin: 13.5px 5px 0 0;
  background: url(../images/sprites.png?20180814) no-repeat;
  cursor: pointer;
}
.celestials-mid .tab-hd .tab-arrow.arrow-left {
  background-position: 0 0;
}
.celestials-mid .tab-hd .tab-arrow.arrow-right {
  background-position: -24px 0;
}
.celestials-mid .tab-bd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.celestials-mid .tab-bd li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.celestials-mid .tab-bd li .skills-pic {
  position: absolute;
  top: 0;
  right: 0;
}
.celestials-mid .tab-bd li.active {
  opacity: 1;
  display: block;
}
.celestials-mid .desc {
  position: relative;
  margin: 130px 0 0 38px;
  padding-top: 20px;
}
.celestials-mid .desc strong {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 10px 0;
  color: #f0a529;
}
.celestials-mid .desc p {
  position: relative;
  width: 536px;
  margin-top: 30px;
  padding-right: 75px;
  font-size: 16px;
  line-height: 30px;
  color: #957351;
}
.celestials-mid:after {
  position: relative;
  left: 0;
  top: 128px;
  content: '';
  display: block;
  border-top: 1px dashed #957351;
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .celestials-header {
    display: none;
  }
  .celestials-mid {
    padding: 0;
    height: auto;
    background: none;
  }
  .celestials-mid .header {
    display: block;
  }
  .celestials-mid h3 {
    font-size: .5rem;
    line-height: .5rem;
    padding: .35rem 0;
  }
  .celestials-mid h3:before {
    width: .04rem;
    line-height: .5rem;
    margin-right: .18rem;
  }
  .celestials-mid .play-btn {
    float: right;
    width: .61rem;
    height: .61rem;
    margin: .35rem 0;
    font-size: 0;
  }
  .celestials-mid .tab-hd {
    position: absolute;
    float: none;
    margin-top: 7.95rem;
    padding: 0 .12rem;
  }
  .celestials-mid .tab-hd .tab-list {
    margin: 0 .08rem;
  }
  .celestials-mid .tab-hd .tab-list a {
    width: .9rem;
    height: .9rem;
    background-size: cover;
  }
  .celestials-mid .tab-hd .tab-list:nth-child(3) a {
    background-position: -1.05rem 0;
  }
  .celestials-mid .tab-hd .tab-list:nth-child(4) a {
    background-position: -2.1rem 0;
  }
  .celestials-mid .tab-hd .tab-list:nth-child(5) a {
    background-position: -3.15rem 0;
  }
  .celestials-mid .tab-hd .tab-list:nth-child(6) a {
    background-position: -4.2rem 0;
  }
  .celestials-mid .tab-hd .tab-list:nth-child(7) a {
    background-position: -5.25rem 0;
  }
  .celestials-mid .tab-hd .tab-list.active a:after {
    display: none;
  }
  .celestials-mid .tab-hd .tab-arrow {
    display: none;
  }
  .celestials-mid .tab-bd {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    margin: 0 -0.44rem;
  }
  .celestials-mid .tab-bd li {
    position: relative;
  }
  .celestials-mid .tab-bd li .skills-pic {
    position: relative;
    font-size: 0;
  }
  .celestials-mid .desc {
    position: relative;
    margin: .9rem 0 0;
    padding: 0 .44rem;
  }
  .celestials-mid .desc strong {
    font-size: .32rem;
    line-height: .32rem;
    padding: .25rem 0;
    border-bottom: 1px dashed #957351;
  }
  .celestials-mid .desc p {
    position: relative;
    width: 100%;
    margin-top: .3rem;
    padding-right: 0;
    font-size: .28rem;
    line-height: .5rem;
  }
  .celestials-mid:after {
    display: none;
  }
}
/* 底部 */
#footer {
  width: 100%;
  padding: 60px 0 80px 0;
  font-size: 16px;
  line-height: 35px;
  color: #674b30;
  background: #191512;
}
#footer .ft-logo {
  display: none;
}
#footer .ft-nav {
  padding-bottom: 15px;
  text-align: center;
}
#footer .ft-nav a {
  color: #674b30;
  padding: 0 5px;
}
#footer p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer {
    line-height: .3rem;
    padding: .4rem 0;
    font-size: .18rem;
    background-color: #000;
    position: relative;
  }
  #footer .ft-logo {
    position: absolute;
    left: .2rem;
    top: .14rem;
    display: block;
    width: 2rem;
  }
  #footer .ft-nav {
    display: none;
  }
  #footer p {
    color: #a5a5a5;
    margin-left: 2rem;
    padding-left: .2rem;
    text-align: left;
  }
}
/* 视频弹窗 */
.pop-video-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
}
.pop-video-box .mid {
  height: 543px;
  width: 960px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
  border: 1px solid #a6703b;
}
.pop-video-box .mid .play-video {
  display: block;
  width: 100%;
  height: 100%;
}
.pop-video-box .mid .close {
  position: absolute;
  top: 0;
  right: -80px;
  background: url(../images/sprites.png?20180814) no-repeat;
  background-position: -80px -70px;
  height: 70px;
  width: 69px;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.pop-video-box .mid .close:hover {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .pop-video-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    transition: all 0.1s ease-in-out;
  }
  .pop-video-box .mid {
    height: 4.42rem;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
  }
  .pop-video-box .mid .play-video {
    display: block;
    width: 90%;
    height: 100%;
  }
  .pop-video-box .mid .close {
    position: absolute;
    top: 0;
    right: 0;
    height: .7rem;
    width: .69rem;
    background-size: 2.94rem 4.8rem;
    background-position: -0.8rem -0.7rem;
  }
}
/* 公共弹窗 */
.popUp_sign {
  box-sizing: content-box !important;
}
.popUp_sign * {
  box-sizing: content-box;
}
@media (min-width: 768px) and (max-width: 900px) {
  .popUp_sign {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 767px) {
  .popUp_sign {
    left: 50% !important;
    -webkit-transform: translateX(-50%) scale(0.4);
    -ms-transform: translateX(-50%) scale(0.4);
    transform: translateX(-50%) scale(0.4);
  }
}
/*竖屏 css*/
/*横屏 css*/
/* 2018-9-18 start shuiyue */
.nav-title .pc-nav-list {
  width: 550px;
}
.miniclient-fixed {
  position: fixed;
  top: 150px;
  right: 0px;
  z-index: 100;
}
@media screen and (min-width: 1200px) {
  .miniclient-fixed {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .miniclient-icon,
  .miniclient-fixed {
    display: none !important;
  }
}
/* 2018-9-18 end shuiyue */
@keyframes starFlick { 0% { transform: scale(1.08); } 50% { transform: scale(1); } 100% { transform: scale(1.08); } }
@-webkit-keyframes starFlick { 0% {-webkit-transform: scale(1.08); } 50% { -webkit-transform: scale(1); } 100% { -webkit-transform: scale(1.08); }  }
@-moz-keyframes starFlick { 0% { -moz-transform: scale(1.08); } 50% { -moz-transform: scale(1); } 100% { -moz-transform: scale(1.08); }  }
@-ms-keyframes starFlick { 0% { -ms-transform: scale(1.08); } 50% { -ms-transform: scale(1); } 100% { -ms-transform: scale(1.08); }  }