/*reset.less*/
/* CSS Document */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 312.5%;
}
ul,
li,
div,
p,
body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
input {
  -webkit-appearance: button;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #fff;
}
input {
  -webkit-appearance: none;
  outline: none;
}
input,
textarea {
  font-size: 0.25rem;
}
* {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.hide {
  display: none;
}
body,
html {
  font-family: "Microsoft YaHei", "Helvetica Neue", Arial, HelveticaNeue, Helvetica, "BBAlpha Sans", sans-serif;
  font-weight: normal;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
button {
  border: none;
  background: none;
  display: block;
  outline: none;
}
/* mobile media-query */
html {
  font-size: 312.5%;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
@media screen and (min-width: 360px) and (max-width: 374px) and (orientation: portrait) {
  html {
    font-size: 351.5%;
  }
}
@media screen and (min-width: 384px) and (max-width: 399px) and (orientation: portrait) {
  html {
    font-size: 375%;
  }
}
@media screen and (min-width: 400px) and (max-width: 413px) and (orientation: portrait) {
  html {
    font-size: 390.625%;
  }
}
@media screen and (min-width: 414px) and (max-width: 431px) and (orientation: portrait) {
  html {
    font-size: 404.3%;
  }
}
@media screen and (min-width: 432px) and (max-width: 479px) and (orientation: portrait) {
  html {
    font-size: 421.875%;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) and (orientation: portrait) {
  html {
    font-size: 468.75%;
  }
}
@media screen and (min-width: 640px) and (orientation: portrait) {
  html {
    font-size: 625%;
  }
}
html,
body {
  width: 100%;
  height: 100%;
}
.noSize {
  font-size: 0;
  text-indent: -9999em;
}
.flex {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@-webkit-keyframes Inleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes Inleft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(120px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(120px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes zoomInAndOut {
  0% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0.8);
  }
  50% {
    -moz-transform: scale(1.3);
  }
  100% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(0.8);
  }
  50% {
    -o-transform: scale(1.3);
  }
  100% {
    -o-transform: scale(0.8);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform-origin: center center;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: center center;
    transform: rotate(360deg);
  }
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
    opacity: 1;
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes shake {
  50% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }
  0%,
  100% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }
}
@-webkit-keyframes flip1 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
  }
  25% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  50% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flip1 {
  0% {
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
  }
}
@-webkit-keyframes flip2 {
  0% {
    -webkit-transform: perspective(400px) rotateY(-90deg);
  }
  25% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  50% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: perspective(400px) rotateY(-90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
  }
}
@-webkit-keyframes shine {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
}
@-webkit-keyframes gif {
  0% {
    background-position: 0%;
    opacity: 1;
  }
  100% {
    background-position: 200%;
    opacity: 1;
  }
}
@keyframes gif {
  0% {
    background-position: 0%;
    opacity: 1;
  }
  100% {
    background-position: 200%;
    opacity: 1;
  }
}
@-webkit-keyframes zoom2 {
  0% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
}
@keyframes zoom2 {
  0% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
}
@-webkit-keyframes matrix {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
}
@keyframes matrix {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomIn2 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes zoomIn2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes translateDown {
  0%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
}
@keyframes translateLeft {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
  }
}
.pop_video_bg {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.75;
  filter: alpha(opacity=75);
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.pop_video {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  z-index: 10000;
  display: none;
  width: 6.6rem;
  margin-left: -3.5rem;
}
.pop_hd {
  background: #94949466;
  width: 7rem;
}
.pop_hd .pop_hd_content {
  width: 6.5rem;
  left: 0.12rem;
  top: 0.14rem;
  position: absolute;
}
.pop_hd .pop_hd_content img {
  display: block;
  width: 100%;
}
.close_pv {
  position: absolute;
  right: -0.48rem;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  text-indent: -9999em;
  outline: 0;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/close-pv_87330efe.jpg) 0 0 no-repeat;
  background-size: auto 100%;
}
.close_pv:hover {
  background-position: -0.48rem 0;
}
@font-face {
  font-family: 'fzbysong';
  src: url('https://nie.res.netease.com/comm/js/nie/ref/fonts/fzbysong.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fzcysong';
  src: url('https://nie.res.netease.com/comm/js/nie/ref/fonts/fzcysong.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.m-contact {
  position: relative;
  box-sizing: border-box;
  padding: 3.64% 10%;
  background: #eff1f4;
  color: #909090;
  font-size: 12px;
}
.m-contact .box-contact {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  display: flex;
  align-items: center;
}
.m-contact .official-list {
  display: flex;
}
.m-contact .official-item {
  position: relative;
}
.m-contact .official-item .icon {
  width: 30px;
  height: 30px;
  background: center no-repeat;
  background-size: contain;
}
.m-contact .official-item .text {
  display: none;
}
.m-contact .official-item .qrcode {
  display: none;
  position: absolute;
  box-sizing: border-box;
  bottom: 100%;
  left: 50%;
  margin-left: -65px;
  padding: 10px 10px 15px;
  width: 130px;
  height: 135px;
  z-index: 9;
}
.m-contact .official-item .qrcode img {
  width: 100%;
}
.m-contact .official-item + .official-item {
  margin-left: 32px;
}
.m-contact .split {
  margin: 0 40px;
  height: 30px;
  border-right: 1px solid #767c90;
}
.m-contact .contact-list {
  flex: 1;
  display: flex;
  align-items: center;
}
.m-contact .share-btn {
  position: relative;
  padding-left: 30px;
  height: 30px;
  background-size: contain;
  cursor: pointer;
}
.m-contact .share-btn > span {
  display: none;
}
.m-contact .share-btn .share-wrap {
  box-sizing: border-box;
  width: 0;
  z-index: 9;
  overflow: hidden;
  transition: width 0.5s;
}
.m-contact .share-btn .share-wrap #pc-share {
  padding-left: 8px;
  width: 120px;
}
.m-contact .share-btn .share-wrap #pc-share .NIE-share-txt {
  display: none;
}
.m-contact .share-btn .share-wrap #pc-share .NIE-share-iconBtn {
  white-space: nowrap;
}
.m-contact .share-btn .share-wrap #pc-share .NIE-share-iconBtn a {
  line-height: 30px;
  color: #909090;
}
.m-contact .share-btn .share-wrap #pc-share .NIE-share-iconBtn a:hover {
  color: #afafaf;
}
.m-contact .share-btn .share-wrap #pc-share .NIE-share-iconBtn .morebtn {
  display: none;
}
.m-contact .share-btn:hover .share-wrap {
  width: 100px;
}
.m-contact .search {
  position: relative;
  margin-left: 20px;
  height: 25px;
  border: 1px solid #b7b7b7;
  border-radius: 13px;
}
.m-contact .search .btn-search {
  position: absolute;
  top: 0;
  left: 10px;
  width: 14px;
  height: 100%;
}
.m-contact .search input {
  padding-left: 32px;
  padding-right: 10px;
  width: 80px;
  height: 100%;
  background: none;
  transition: 0.5s width;
}
.m-contact .search input:focus,
.m-contact .search input.active {
  width: 150px;
}
.m-contact .service .text:after,
.m-contact .service-time .text:after {
  content: '\FF1A';
}
.m-contact .service a:hover,
.m-contact .service-time a:hover {
  border-bottom: 1px dashed;
}
.m-contact .service-time {
  margin-left: 40px;
}
.m-contact .flex-fill {
  flex: 1;
}
#NIE-share-m {
  font-size: 40px;
}
#NIE-share-m a i {
  background: #5f6881;
}
@media screen and (min-width: 960px) {
  .m-contact .official-item:hover .qrcode {
    display: block;
  }
}
/** width < 1400px **/
@media screen and (max-width: 1279px) {
  .m-contact .search {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .m-contact {
    padding: 0;
    background: #2a2a2a;
    border-bottom: 1px dashed #525252;
  }
  .m-contact .box-contact {
    display: block;
  }
  .m-contact .official-list {
    display: flex;
    justify-content: center;
    background: #5f6881;
    color: #ffffff;
  }
  .m-contact .official-item {
    box-sizing: border-box;
    padding: 20px 0;
    flex: 1;
  }
  .m-contact .official-item .official-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .m-contact .official-item .icon {
    width: 45px;
    height: 45px;
  }
  .m-contact .official-item .text {
    display: block;
    text-align: left;
    margin-left: 10px;
    font-size: 14px;
    font-family: fzbysong, serif;
    white-space: nowrap;
  }
  .m-contact .official-item .icon-wb {
    background-image: url(https://n.res.netease.com/pc/zt/20210416161703/img/m-icon-wb_e74992cd.png);
  }
  .m-contact .official-item .icon-wx {
    background-image: url(https://n.res.netease.com/pc/zt/20210416161703/img/m-icon-wx_5c580f5b.png);
  }
  .m-contact .official-item .icon-lt {
    background-image: url(https://n.res.netease.com/pc/zt/20210416161703/img/m-icon-luntan_b0c8ebdd.png);
  }
  .m-contact .official-item.wx {
    padding-right: 10px;
  }
  .m-contact .official-item.xz {
    display: none;
  }
  .m-contact .official-item + .official-item {
    margin-left: 0;
  }
  .m-contact .contact-list {
    box-sizing: border-box;
    justify-content: space-around;
    padding: 25px 0;
    color: #d7dde9;
    opacity: 0.4;
  }
  .m-contact .share-btn,
  .m-contact .service {
    display: inline-block;
    box-sizing: border-box;
  }
  .m-contact .share-btn {
    box-sizing: border-box;
    padding-left: 40px;
    width: auto;
    height: 35px;
    background: url(https://n.res.netease.com/pc/zt/20210416161703/img/m-icon-share_6b4faab6.png) left no-repeat;
    background-size: 35px;
  }
  .m-contact .share-btn > span {
    display: inline-block;
  }
  .m-contact .share-btn .share-wrap {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -15px;
  }
  .m-contact #pc-share-btn {
    line-height: 35px;
  }
  .m-contact .service {
    text-align: left;
    padding-left: 40px;
    height: 35px;
    background: url(https://n.res.netease.com/pc/zt/20210416161703/img/m-icon-service_b99435fe.png) left no-repeat;
    background-size: 35px;
  }
  .m-contact .service .text,
  .m-contact .service .tel {
    display: block;
  }
  .m-contact .service .text:after,
  .m-contact .service-time .text:after {
    display: none;
  }
  .m-contact .split,
  .m-contact .service-time,
  .m-contact .flex-fill {
    display: none;
  }
}
.m-copyright {
  position: relative;
  background: #2a2a2a;
  color: #888888;
}
.m-copyright a {
  color: #b39d76;
}
.m-copyright .pc-copyright {
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 40px;
}
.m-copyright .mobile-copyright {
  display: none;
  text-align: center;
  box-sizing: border-box;
  padding: 30px 0;
  font-size: 12px;
  line-height: 1.65;
}
@media screen and (max-width: 1023px) {
  .m-copyright .pc-copyright {
    display: none;
  }
  .m-copyright .mobile-copyright {
    display: block;
  }
}
.g-footer {
  width: 100%;
  margin-top: 0.8rem;
}
.footer-all {
  display: none;
}
body {
  color: red;
  font-size: 0.25rem;
}
#app {
  opacity: 0;
  height: 100%;
}
#forhorview {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  -webkit-opacity: 0.85;
  -moz-opacity: 0.85;
  opacity: 0.85;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
}
#forhorview p {
  color: #fff;
  position: relative;
  top: 35%;
  text-align: center;
  font-size: 0.3rem;
}
.NIE-share-m {
  opacity: 0;
  z-index: 1013!important;
}
.NIE-share_buttons a {
  font-size: 0.8rem !important;
}
.NIE-share_qrcode p {
  font-size: 0.32rem !important;
}
.NIE-share_qrcode div {
  width: 4.2rem !important;
  padding: 0.4rem 0 !important;
}
.NIE-share_qrcode div span {
  font-size: 0.8rem !important;
}
.NIE-share_qrcode div .NIE-btn-close {
  right: -0.3rem !important;
  top: -0.3rem !important;
}
.NIE-share_qrcode div .NIE-btn-close i {
  font-size: 0.4rem !important;
}
.NIE-share-guide {
  width: 7rem!important;
  height: 3rem!important;
  border: 4px solid #fff !important;
  padding-top: 0!important;
  -webkit-border-radius: 20px !important;
  -moz-border-radius: 20px !important;
  border-radius: 20px !important;
  -moz-background-clip: padding !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  display: box !important;
  /* OLD - Android 4.4- */
  display: -webkit-box !important;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box !important;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox !important;
  /* TWEENER - IE 10 */
  display: -webkit-flex !important;
  /* NEW - Chrome */
  display: flex !important;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 12版 */
  -webkit-flex-direction: column !important;
  -moz-flex-direction: column !important;
  -ms-flex-direction: column !important;
  -o-flex-direction: column !important;
  flex-direction: column !important;
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.NIE-share-guide p {
  font-size: 0.4rem !important;
}
.NIE-share-guide .arrow_line {
  display: none!important;
}
.NIE-share_link div p {
  font-size: 0.25rem !important;
}
.NIE-share_link div span {
  line-height: 0.4rem !important;
  font-size: 0.28rem !important;
}
.NIE-share_link div .NIE-btn-close {
  top: 0.28rem !important;
  font-size: 0.5rem !important;
}
.page-all {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-all .page-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/bg_2a8ed2fe.jpg) top center no-repeat;
  background-size: 100%;
}
.page-all .page-main .page-sel-cont {
  width: 100%;
  height: 1.4rem;
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.page-all .page-main .page-sel-cont .el-input {
  width: 2.63rem;
  height: 0.5rem;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/sel-bg_91797fe9.png) center no-repeat;
  background-size: 100%;
}
.page-all .page-main .page-sel-cont .el-input.is-focus {
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/sel-bg_on_1ae098bc.png) center no-repeat;
  background-size: 100%;
}
.page-all .page-main .page-sel-cont input {
  background: none;
  border: none;
  height: 0.5rem;
  line-height: 0.5rem;
  color: #d6ddee;
  font-size: 0.28rem;
  text-align: center;
}
.page-all .page-main .page-sel-cont .el-input__icon {
  line-height: 0.5rem;
  width: 0.29rem;
  height: 0.29rem;
  display: block;
  margin: 0.1rem 0.2rem 0 0;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/sel-icon_05f2544d.png) center no-repeat;
  background-size: 100%;
}
.page-all .page-main .page-sel-cont .el-input__icon:before {
  content: '';
  display: none;
}
.page-all .page-main .noData {
  color: #4f6c85;
  font-size: 0.3rem;
  text-align: center;
  margin-top: 3rem;
}
.page-all .page-main .video-content {
  width: 100%;
  height: 0;
  margin-top: 0.2rem;
  overflow: auto;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.page-all .page-main .video-content .video-item-outer {
  width: 50%;
  margin-bottom: 0.1rem;
}
.page-all .page-main .video-content .video-item-cont {
  position: relative;
  width: 2.98rem;
  margin: 0 auto;
  padding-top: 1px;
}
.page-all .page-main .video-content .video-item-cont .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.59rem;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/video-bg_f1cadbf9.png) center no-repeat;
  background-size: 100%;
}
.page-all .page-main .video-content .video-item-cont .video-item {
  position: relative;
  z-index: 5;
  width: 2.9rem;
  height: 1.59rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.page-all .page-main .video-content .video-item-cont .video-item .video-cont {
  width: 1.87rem;
  height: 1.52rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-all .page-main .video-content .video-item-cont .video-item .video-cont .btn-video-play {
  width: 0.57rem;
  height: 0.57rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/video-btn_532204d8.png) center no-repeat;
  background-size: 100%;
}
.page-all .page-main .video-content .video-item-cont .video-name {
  color: #485678;
  font-size: 0.24rem;
  width: 90%;
  text-align: center;
  margin: 0.04rem auto 0;
}
.page-all .page-main .btn-more {
  width: 3.03rem;
  height: 0.5rem;
  margin: 0.6rem auto 0;
  display: block;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/btn-more_43bb54ef.png) center no-repeat;
  background-size: 100%;
}
.head {
  position: absolute;
  width: 100%;
  height: 0.8rem;
  top: 0;
  z-index: 99;
  left: 0;
  background: #fff;
}
.head .head-cont {
  width: 6.97rem;
  height: 0.69rem;
  margin: 0.05rem 0 0 0.5rem;
  background: url(https://n.res.netease.com/pc/zt/20210416161703/img/logo_0f1511f9.png) center no-repeat;
  background-size: 100%;
}
.head .logo {
  width: 2rem;
  display: block;
  height: 100%;
}
.el-select-dropdown {
  min-width: auto !important;
  width: 2.1rem;
  margin-top: 0 !important;
  margin-left: 0.3rem !important;
  background-color: #34405f;
  border: #d7deef;
}
.el-select-dropdown .popper__arrow {
  display: none;
}
.el-select-dropdown .el-select-dropdown__item {
  color: #aab1c1;
}
.el-select-dropdown .el-select-dropdown__item.selected {
  color: #d7deef;
  background: none;
}
.page-footer {
  width: 100%;
}

