@charset "utf-8";
/* flex布局 */
/* 子元素-平均分栏 */
.flex1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  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+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* 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;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.flex-sa {
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
.flex-sb {
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex-aic {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  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+ */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  /* 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;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
html {
  color: #000;
}
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 {
  margin: 0;
  padding: 0;
}
body {
  font: 19px Microsoft YaHei, Arial, sans-serif;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
section,
header,
article,
time,
nav,
footer,
figure,
figcaption {
  display: block;
  margin: 0;
  padding: 0;
}
input:focus,
a:focus {
  outline: none;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
button,
input,
textarea,
select {
  font-family: Microsoft YaHei, Arial, sans-serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
  vertical-align: middle;
}
button,
input,
textarea,
select {
  *font-size: 100%;
}
textarea {
  resize: none;
}
legend {
  color: #000;
}
a {
  vertical-align: baseline;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/*functions*/
.clear {
  display: block;
  float: none;
  clear: both;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  background: none;
  border: 0;
  font-size: 0;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
input[type="button"],
input[type="submit"],
input[type="text"],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.wrapper {
  position: relative;
  width: 7.5rem;
  height: 100%;
  min-height: 12.06rem;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.hide {
  display: none;
}
.loadings {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 3000;
}
.loadings div {
  width: 300px;
  height: 300px;
  background: url("../img/loading.png") no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -150px;
  -webkit-animation: rotate 2s linear 0s infinite;
}
.loading p {
  font-size: 20px;
  color: #e47ba0;
}
.music-rotate {
  -webkit-animation: rotate 2s linear 0s infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
.XY50 {
  -webkit-transform: translate(-50%, -50%);
}
div {
  box-sizing: border-box;
}
* {
  outline: none;
}
img {
  vertical-align: top;
  pointer-events: none;
}
.xy50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
.page {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.content-box {
  width: 100%;
  height: 16.24rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
}
.center {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.ab {
  position: absolute;
}
.ggskin_hotspot {
  -webkit-animation: fadeIn 1s linear 0s both;
}
body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ggskin_image {
  cursor: pointer;
}
.name-text div {
  background: #51abc3 !important;
  height: auto !important;
  border-radius: 6px!important;
  color: #fff !important;
  font-size: 14px!important;
  cursor: pointer!important;
  border: none!important;
  white-space: normal !important;
}
.en .name-text {
  font-size: 11px !important;
  line-height: 11px !important;
  white-space: normal;
  /* Default value */
}
.main-box {
  pointer-events: none;
}
.main-box .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
}
.main-box .img-box img {
  width: 100%;
  min-width: 1920px;
}
.main-box .logo-img {
  left: 40px;
  top: 40px;
}
.main-box .see-box,
.main-box .vote-box {
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  color: #51abc3;
  padding-left: 60px;
  padding-right: 15px;
  pointer-events: auto;
  cursor: pointer;
}
.main-box .see-box .icon-img,
.main-box .vote-box .icon-img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
}
.main-box .see-box {
  left: 50px;
  top: 222px;
}
.main-box .vote-box {
  left: 50px;
  top: 273px;
}
.main-box .operate-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 70px;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}
.main-box .operate-box .img-item-box {
  padding: 0 40px;
  position: relative;
}
.main-box .operate-box .img-item-box .prev-btn,
.main-box .operate-box .img-item-box .next-btn {
  top: 50%;
  margin-top: -20px;
}
.main-box .operate-box .list-box {
  padding: 8px 0 0;
  text-align: center;
  font-size: 0;
  white-space: nowrap;
}
.main-box .operate-box .list-box .item-box {
  display: inline-block;
  width: 65px;
  height: 65px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.main-box .operate-box .list-box .item-box img {
  width: 65px;
  height: 100%;
  position: relative;
  z-index: 2;
}
.main-box .operate-box .list-box .item-box .name-text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  line-height: 18px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  z-index: 3;
  overflow: hidden;
}
.main-box .operate-box .list-box .item-box:after {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  background: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
.main-box .operate-box .list-box .item-box:last-child {
  margin-right: 0;
}
.main-box .operate-box .list-box .item-box:hover:after {
  background: #51abc3;
}
.main-box .operate-box .list-box .item-box.selected:after {
  background: #51abc3;
}
.main-box .operate-box .warehouse-list,
.main-box .operate-box .warehouse-list1 {
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.main-box .operate-box .warehouse-list::-webkit-scrollbar,
.main-box .operate-box .warehouse-list1::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.main-box .operate-box .warehouse-list .warehouse-item,
.main-box .operate-box .warehouse-list1 .warehouse-item {
  padding: 0 20px;
  line-height: 40px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.main-box .operate-box .warehouse-list .warehouse-item.selected,
.main-box .operate-box .warehouse-list1 .warehouse-item.selected {
  background: #51abc3;
}
.main-box .operate-box .warehouse-list .warehouse-item:hover,
.main-box .operate-box .warehouse-list1 .warehouse-item:hover {
  background: #51abc3;
}
.main-box .operate-box .warehouse-list .warehouse-item span,
.main-box .operate-box .warehouse-list1 .warehouse-item span {
  white-space: nowrap;
}
.main-box .operate-box .warehouse-list1 {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.main-box .operate-box .warehouse-list1 > div {
  display: inline-block;
}
.main-box .prev-btn {
  width: 40px;
  height: 40px;
  background: url("../img/arrow.png") center center no-repeat;
  background-size: 20px 20px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.main-box .next-btn {
  width: 40px;
  height: 40px;
  background: url("../img/arrow.png") center center no-repeat;
  background-size: 20px 20px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
}
.main-box .url-box,
.main-box .url1-box {
  padding: 0 40px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.main-box .swiper-slide .warehouse-list {
  white-space: nowrap;
  text-align: center;
}
.main-box .swiper-slide .warehouse-item {
  display: inline-block;
}
.main-box .swiper-horizontal > .swiper-scrollbar,
.main-box .swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 2px;
}
.main-box .swiper-button-next,
.main-box .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: url("../img/arrow.png") center center no-repeat;
  margin-top: -25px;
}
.main-box .swiper-button-next:after,
.main-box .swiper-button-prev:after {
  display: none;
}
.main-box .swiper-button-next {
  right: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-box .swiper-button-prev {
  left: 0px;
}
.main-box .bottom-btn-box {
  zoom: 0.8;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.main-box .bottom-btn-box > div {
  position: relative;
  pointer-events: auto;
  margin-right: 1px;
  cursor: pointer;
}
.main-box .bottom-btn-box > div img:nth-child(2) {
  display: none;
}
.main-box .bottom-btn-box .selected img:nth-child(1) {
  display: none;
}
.main-box .bottom-btn-box .selected img:nth-child(2) {
  display: block;
}
.lang {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
  pointer-events: auto;
  color: white;
  cursor: pointer;
  font-size: 16px;
}
.lang .active {
  color: #369eac;
}
.en#app {
  font: 17px Microsoft YaHei, Arial, sans-serif;
}
/*# sourceMappingURL=index.css.map */