.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated-quickly {
  -webkit-animation-duration: .5s;
  animation-duration: .5s; }

.animated-backwards {
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes fadeInLeft {
  from {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInLeft {
  from {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeOutRight {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes fadeOutRight {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes jackInTheBox {
  from {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes jackInTheBox {
  from {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox; }

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    visibility: hidden;
    opacity: 0; } }
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    visibility: hidden;
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  20% {
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01); }
  40% {
    -webkit-transform: scale3d(0.98, 0.98, 0.98);
    transform: scale3d(0.98, 0.98, 0.98); }
  60% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01); }
  80% {
    -webkit-transform: scale3d(0.99, 0.99, 0.99);
    transform: scale3d(0.99, 0.99, 0.99); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  20% {
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01); }
  40% {
    -webkit-transform: scale3d(0.98, 0.98, 0.98);
    transform: scale3d(0.98, 0.98, 0.98); }
  60% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01); }
  80% {
    -webkit-transform: scale3d(0.99, 0.99, 0.99);
    transform: scale3d(0.99, 0.99, 0.99); }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.loading {
  animation: loading .75s linear infinite; }

html, body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; }

body {
  background: #f0f2f5;
  font-family: "-apple-system, BlinkMacSystemFont, " PingFang SC "," Helvetica Neue ",STHeiti," Microsoft Yahei ",Tahoma,Simsun,sans-serif;";
  font-size: 12px;
  overflow-x: hidden; }

ul, li {
  padding: 0; }

ul, p {
  margin: 0; }

li {
  list-style-type: none; }

a {
  color: #222; }

a:hover, a:focus {
  color: #333;
  text-decoration: none; }

.hhh {
  height: 30px; }

.head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  line-height: 80px; }
  .head .col-md-3 {
    padding-left: 5%; }
  .head .col-md-9 {
    padding-right: 5%; }
  .head .logo {
    display: block;
    height: 80px;
    background-image: url("../../images/logo-pc.png");
    background-repeat: no-repeat;
    background-size: 200px;
    margin-left: 10px;
    width: 200px; }
  .head .phone-service {
    display: none;
    position: absolute;
    right: 62px;
    top: 11px;
    color: #ff9700;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center; }
    .head .phone-service img {
      width: 100%; }
  .head .phone-mune-btn {
    position: absolute;
    display: block;
    top: 16px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url("../../images/phone-nav.png"); }
  .head .mune {
    float: right; }
    .head .mune .btn-group {
      top: 38px; }
    .head .mune .iteam {
      float: left;
      position: relative;
      z-index: 15; }
      .head .mune .iteam .link {
        display: block;
        padding: 0 12px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 2px;
        color: #fff; }
      .head .mune .iteam .button {
        padding: 5px 15px;
        background: #ff9700;
        color: #fff;
        border-radius: 3px; }
      .head .mune .iteam .button:hover {
        opacity: 0.85; }
      .head .mune .iteam .link:hover {
        color: #ff9700; }
      .head .mune .iteam .login-menu {
        line-height: 3; }
  .head .head-tab {
    visibility: hidden;
    line-height: normal;
    padding: 10px 0 10px 15px; }
    .head .head-tab li {
      display: inline-block;
      vertical-align: middle;
      padding: 20px 10px; }
      .head .head-tab li.active a {
        color: #ff9700; }

.sub-menu {
  position: fixed;
  width: 66%;
  top: 0;
  z-index: 2000000001;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f1f1f1;
  transition: all 0.64s ease 0s; }
  .sub-menu .top-box {
    line-height: 60px;
    background-color: #ff9700; }
    .sub-menu .top-box .stt {
      display: inline-block;
      font-size: 18px;
      color: #fff;
      margin-left: 8.2%; }
    .sub-menu .top-box .close {
      display: inline-block;
      width: 17px;
      height: 17px;
      background: url(../../images/ico_37.png) no-repeat center;
      margin-right: 7.8%;
      margin-top: 22px;
      cursor: pointer; }
  .sub-menu .list-wrap ul {
    width: 100%; }
  .sub-menu .list-wrap li {
    line-height: 60px;
    width: 100%;
    border-bottom: 1px solid #f2f2f2; }
    .sub-menu .list-wrap li .col-box {
      display: block;
      width: 84%;
      padding: 0 7.8% 0 8.2%;
      position: relative; }
  .sub-menu .list-wrap .tit {
    font-size: 16px;
    color: #666; }
  .sub-menu .list-wrap .point {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 12px;
    background: url(../../images/ico_38.png) no-repeat center;
    margin-top: 26px; }
  .sub-menu .list-wrap .other {
    padding: 0 26px;
    border-top: 1px solid #dedede; }
    .sub-menu .list-wrap .other .btn-s1 {
      display: block;
      text-align: center;
      border-radius: 5px;
      background: #ff9700;
      color: #fff;
      font-size: 16px;
      padding: 8px 0;
      margin-top: 20px; }
    .sub-menu .list-wrap .other .btn-s2 {
      display: block;
      text-align: center;
      border-radius: 5px;
      background: #fff;
      color: #666;
      border: 1px solid #999;
      font-size: 16px;
      padding: 8px 0;
      margin-top: 20px; }
  .sub-menu .sec-sub-list {
    position: absolute;
    top: 60px;
    width: 100%; }
    .sub-menu .sec-sub-list .return-fir {
      display: block;
      width: 100%;
      padding: 0 7.8% 0 8.2%;
      line-height: 60px;
      background-color: #ff9700; }
      .sub-menu .sec-sub-list .return-fir p {
        padding-left: 18px;
        color: #fff;
        font-size: 18px;
        background: url(../../images/ico_42.png) no-repeat left center; }
    .sub-menu .sec-sub-list .boxs {
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transition: all 0.4s ease 0s;
      background-color: #fff;
      min-height: 500px; }
    .sub-menu .sec-sub-list ul, .sub-menu .sec-sub-list li {
      width: 100%; }
    .sub-menu .sec-sub-list li {
      line-height: 60px;
      border-bottom: 1px solid #f2f2f2; }
      .sub-menu .sec-sub-list li a {
        display: block;
        width: 84%;
        padding: 0 7.8% 0 8.2%;
        font-size: 16px;
        color: #666; }

.right-sub-menu.show {
  right: 0;
  transition: all 0.44s ease 0s; }

.left-sub-menu.show {
  left: 0;
  transition: all 0.44s ease 0s; }

.left-sub-menu {
  left: -100%; }
  .left-sub-menu .sec-sub-list {
    left: -100%; }
    .left-sub-menu .sec-sub-list .boxs.show {
      left: 100%; }

.right-sub-menu {
  right: -100%; }
  .right-sub-menu .sec-sub-list {
    right: -100%; }
    .right-sub-menu .sec-sub-list .boxs.show {
      left: -100%; }

.body-wrap.left {
  transform: translateX(-66%); }

.body-wrap.right {
  transform: translateX(66%); }

.body-wrap {
  width: 100%;
  position: relative;
  transition: all 0.5s ease 0s; }

.fix-mune {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  animation: fixshow 1s;
  box-shadow: 5px 0 7px rgba(0, 0, 0, 0.2);
  height: 60px;
  line-height: 60px; }
  .fix-mune .phone-service {
    display: block; }
  .fix-mune .head-tab {
    visibility: visible; }
  .fix-mune .logo {
    background-size: 180px;
    background-position: 0 -78px;
    height: 60px; }
  .fix-mune .mune .btn-group {
    top: 21px; }
  .fix-mune .mune .iteam .link {
    color: #222; }
  .fix-mune .phone-mune-btn {
    top: 12px;
    width: 35px;
    height: 35px;
    background-size: 35px; }

.big-img {
  width: 100%; }

.foot {
  border-top: 1px solid #dedede;
  padding: 30px;
  background: #fff;
  line-height: 30px; }
  .foot .foot-logo {
    padding-bottom: 10px; }
    .foot .foot-logo img {
      width: 108px; }
  .foot .title {
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600; }
  .foot .list {
    padding-top: 0; }
    .foot .list .item {
      display: block; }

.mini-column-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 151, 0, 0.9);
  color: #fff;
  text-align: center;
  border-radius: 25px;
  line-height: 50px;
  z-index: 99; }

.mini-column-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999; }
  .mini-column-box .closed {
    position: absolute;
    top: 20px;
    right: 20px; }
  .mini-column-box .info-box {
    position: absolute;
    top: 20%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9); }
    .mini-column-box .info-box .mune {
      padding: 20px; }
      .mini-column-box .info-box .mune .iteam {
        display: block;
        line-height: 50px;
        border-bottom: 1px solid #dedede;
        font-size: 1.2em;
        text-align: center; }

.kefu-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 57px;
  right: 5px;
  z-index: 98;
  color: #fff;
  border: 1px solid #dadee7;
  line-height: 39px;
  text-align: center; }
  .kefu-btn img {
    width: 70%; }

.kefu-show {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99; }
  .kefu-show .weixin-show {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 80%;
    text-align: center;
    color: #fff; }
    .kefu-show .weixin-show .img1 {
      width: 70%; }
    .kefu-show .weixin-show .text {
      padding-top: 15px; }
  .kefu-show .closed {
    color: #fff;
    padding: 15px; }
    .kefu-show .closed span {
      font-size: 40px; }

.swiper-button-prev {
  display: none; }

.swiper-pagination-bullet-active {
  background: #ff9700; }

@keyframes fixshow {
  from {
    top: -70px; }
  to {
    top: 0; } }
.btn-warning {
  background: #ff9700;
  color: #fff; }

.btn-default {
  background: #fff;
  border-color: #999; }

.right-bar {
  position: fixed;
  right: 0px;
  bottom: 100px;
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
  width: 90px;
  text-align: center;
  z-index: 9; }
  .right-bar .iteam {
    display: block;
    border-bottom: 1px solid #e6e6e6; }
    .right-bar .iteam .iconfont {
      display: block;
      font-size: 30px;
      padding-top: 20px; }
    .right-bar .iteam .name {
      line-height: 30px; }

.phone-img {
  width: 100%; }

.swiper-button-next {
  display: none; }

.dropdown-menu {
  border-top: 2px solid #5bc0de;
  border-bottom: 2px solid #ff9700;
  padding: 0;
  top: 97%; }

.dropdown-submenu a {
  color: #555 !important;
  border-bottom: 1px solid #eeeeee;
  padding: 7px 20px !important; }

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.part-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05) url("../../images/loading.gif") no-repeat center;
  background-size: 30px;
  z-index: 9999; }

.logo-pic {
  height: 30px; }

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000000001;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden; }

.m-pure-btn {
  background: transparent;
  -webkit-appearance: none;
  border: none; }
  .m-pure-btn:focus {
    outline: none; }

body.dialog-open {
  position: fixed;
  width: 100%; }

/*less  mobiscroll */
.mbsc-ios .mbsc-fr-btn-cont {
  border-bottom: 1px solid #eaeaea;
  line-height: 30px; }
.mbsc-ios .mbsc-fr-btn {
  font-size: 14px;
  color: #999;
  font-family: "-apple-system, BlinkMacSystemFont, " PingFang SC "," Helvetica Neue ",STHeiti," Microsoft Yahei ",Tahoma,Simsun,sans-serif;"; }
.mbsc-ios .mbsc-fr-btn-s .mbsc-fr-btn {
  color: #ff9700;
  font-weight: normal;
  font-size: 16px; }
.mbsc-ios .mbsc-sc-lbl {
  color: #999;
  font-size: 14px; }
.mbsc-ios .mbsc-sc-itm-sel {
  color: #ff9700; }
.mbsc-ios .mbsc-fr-persp {
  z-index: 2000000001; }

.mbsc-sc-whl-gr-c {
  width: 90%; }

.m-loading {
  position: fixed;
  z-index: 2000000002;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2); }
  .m-loading > .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    background: url("../../images/mobile/loading2.png");
    background-size: contain; }

.m-part-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2); }
  .m-part-loading > .spinner {
    position: absolute;
    top: 15px;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #000;
    border-radius: 5px;
    margin-left: -40px;
    background: url("../../images/loading.gif");
    background-size: contain; }

.typing_loader {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-animation: typing 1s linear infinite alternate;
  -moz-animation: Typing 1s linear infinite alternate;
  animation: typing 1s linear infinite alternate;
  margin: 46px auto;
  /* Not necessary- its only for layouting*/
  position: absolute;
  top: 50%;
  left: 50%; }

@-webkit-keyframes typing {
  0% {
    background-color: black;
    box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px rgba(0, 0, 0, 0.2); }
  25% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0px 0px 0px black, 24px 0px 0px 0px rgba(0, 0, 0, 0.2); }
  75% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px black; } }
@keyframes typing {
  0% {
    background-color: black;
    box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px rgba(0, 0, 0, 0.2); }
  25% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0px 0px 0px black, 24px 0px 0px 0px rgba(0, 0, 0, 0.2); }
  75% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0px 0px 0px rgba(0, 0, 0, 0.2), 24px 0px 0px 0px black; } }
.warning-tips {
  position: fixed;
  display: block;
  width: 200px;
  height: auto;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -75px;
  background-color: grey;
  border-radius: 5px;
  padding: 20px 15px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  z-index: 998; }

/*.class_qidian_wpa {
  z-index: 999!important;
}*/
.no-product {
  padding: 10px 0 30px;
  text-align: center; }
  .no-product .pic img {
    height: 80px; }
  .no-product .text {
    padding-top: 10px;
    font-size: 16px;
    color: #999; }

.store-message {
  border: 1px solid #ededed;
  padding: 10px;
  margin: 10px 0px;
  background: #fff; }

.logisticsSelector {
  background: #f0f0f0;
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: scroll;
  z-index: 2000000002;
  display: none; }
  .logisticsSelector header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    line-height: 50px;
    text-align: center; }
    .logisticsSelector header .name {
      font-size: 16px; }
    .logisticsSelector header .btn-cancel {
      width: 80px;
      color: #999; }
    .logisticsSelector header .btn-true {
      width: 80px;
      color: #ff9700; }
  .logisticsSelector .logistics-content {
    max-height: 350px;
    overflow: auto;
    background: #fff;
    margin-top: 10px; }
    .logisticsSelector .logistics-content:last-child {
      margin-bottom: 10px; }
    .logisticsSelector .logistics-content .name {
      background: #f9f9f9;
      padding: 10px;
      border-bottom: 1px solid #eaeaea; }
      .logisticsSelector .logistics-content .name img {
        height: 25px; }
    .logisticsSelector .logistics-content ul {
      margin: 0 15px; }
      .logisticsSelector .logistics-content ul .selected {
        color: #ff9700;
        font-weight: 600; }
      .logisticsSelector .logistics-content ul li {
        border-bottom: 1px solid #eaeaea;
        padding: 10px 5px;
        font-size: 14px; }

.store-banner {
  height: 200px;
  background: #fff; }
  .store-banner .banner-img {
    height: 250px;
    background-size: auto 250px;
    background-position: center;
    background-repeat: no-repeat; }

.red {
  color: #e50000; }

#page {
  transition: 1s 0s height ease; }

.store-name {
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  background: #fff;
  color: #ff9700;
  position: relative; }
  .store-name span {
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 20px;
    color: #ccc; }

.store-nav {
  position: relative;
  z-index: 5;
  height: 36px;
  width: 100%;
  background: #fff; }
  .store-nav .addr {
    height: 36px;
    margin: 0 auto;
    display: block; }
  .store-nav #nav {
    border-bottom: 1px solid #ebebeb; }
    .store-nav #nav .swiper-slide span {
      margin: 0 5px;
      text-align: center;
      display: block;
      line-height: 2.5;
      font-size: 14px;
      color: #999; }
    .store-nav #nav .bar {
      width: 50px;
      height: 3px;
      position: absolute;
      bottom: 0px; }
      .store-nav #nav .bar .color {
        width: 36px;
        margin: 0 auto;
        height: 3px;
        background: #ff9700; }

.banner img {
  width: 100%;
  display: block; }

.banner .swiper-pagination {
  left: auto;
  right: 7px;
  bottom: 7px;
  width: auto;
  padding: 2px 7px;
  border-radius: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3); }

.store-page {
  height: 100%; }
  .store-page .slidepage {
    height: 100%; }
  .store-page .scroll {
    height: 100%; }
  .store-page .store-page-iteam {
    padding-bottom: 1px; }
    .store-page .store-page-iteam .title {
      line-height: 60px;
      display: flex;
      padding: 0 10px;
      justify-content: space-between;
      border-bottom: 1px solid #eaeaea;
      margin-bottom: 15px;
      align-items: center; }
      .store-page .store-page-iteam .title .left {
        font-size: 14px;
        color: #000;
        font-weight: 600; }
        .store-page .store-page-iteam .title .left .iconfont {
          font-size: 24px;
          color: #ff9700;
          padding-right: 8px;
          font-weight: 300; }
        .store-page .store-page-iteam .title .left * {
          vertical-align: middle; }
      .store-page .store-page-iteam .title .right {
        text-align: right;
        color: #ff9700; }
    .store-page .store-page-iteam .area-btn {
      border-bottom: 0px;
      margin-bottom: 0; }
    .store-page .store-page-iteam .info-box {
      background: #fff;
      padding: 10px 0;
      font-family: Sans-serif;
      margin-top: 10px; }
      .store-page .store-page-iteam .info-box .min-title {
        padding: 8px 10px;
        font-size: Helvetica, Helvetica Neue, Arial;
        font-weight: 600;
        color: #333; }
      .store-page .store-page-iteam .info-box .h20 {
        height: 20px; }
      .store-page .store-page-iteam .info-box .tiplist {
        padding: 0 10px;
        color: #666; }
        .store-page .store-page-iteam .info-box .tiplist li {
          padding: 7px 10px;
          border-bottom: 1px dashed #ededed;
          letter-spacing: 1px; }
          .store-page .store-page-iteam .info-box .tiplist li b {
            color: #333; }
    .store-page .store-page-iteam .info-box:last-child {
      margin-bottom: 34px; }

.pro-choice .left {
  padding-top: 7px;
  line-height: 18px; }
  .pro-choice .left .tip {
    font-size: 12px;
    padding-bottom: 5px;
    color: #999;
    font-weight: 500; }

.store-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 15;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 75%, transparent 100%); }

.flex-table {
  width: 100%;
  position: relative; }
  .flex-table .thead {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 20%;
    z-index: 99; }
    .flex-table .thead .name {
      position: relative;
      height: 47px; }
      .flex-table .thead .name .bottom {
        position: relative;
        top: 2px;
        font-size: 13px; }
      .flex-table .thead .name .top {
        position: relative;
        top: -7px;
        font-size: 13px; }
      .flex-table .thead .name b {
        color: #eaeaea;
        font-size: 30px;
        font-weight: 100; }
  .flex-table .list, .flex-table .th, .flex-table .td, .flex-table .name {
    height: 47px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center; }
  .flex-table .list, .flex-table .name {
    border-right: 1px solid #eaeaea; }
  .flex-table .th, .flex-table .list, .flex-table .name {
    color: #999;
    background: #f7f7f7; }
  .flex-table .th, .flex-table .name {
    border-top: 1px solid #eaeaea; }
  .flex-table .td, .flex-table .th {
    border-right: 1px solid #eaeaea; }
  .flex-table .active {
    background: rgba(255, 151, 0, 0.2); }
    .flex-table .active .td {
      border-left: 1px solid #eaeaea;
      border-right: 1px solid #eaeaea; }
    .flex-table .active .th {
      background: rgba(255, 151, 0, 0.2);
      border-left: 1px solid #eaeaea;
      border-right: 1px solid #eaeaea; }
  .flex-table .hover {
    background: rgba(255, 151, 0, 0.2); }

.flex-table3 {
  border-collapse: collapse;
  width: 100%; }
  .flex-table3 th {
    border: 1px solid #eaeaea;
    padding: 8px 5px;
    background: #f7f7f7;
    text-align: center; }
  .flex-table3 td {
    border: 1px solid #eaeaea;
    padding: 8px 5px;
    text-align: center; }

.pot {
  color: #ff9700; }

.border-no {
  border: 0; }

.flex-table2 {
  margin: 0 10px;
  display: flex;
  padding: 17px 10px 15px 10px;
  justify-content: space-between;
  line-height: 15px;
  border-bottom: 1px solid #eaeaea; }
  .flex-table2 .text-left .name {
    font-size: 14px;
    color: #000; }
  .flex-table2 .text-left .tip {
    margin-top: 5px;
    color: #999; }
  .flex-table2 .text-right {
    width: 150px; }
    .flex-table2 .text-right .price {
      font-size: 16px;
      color: #ff9700;
      font-weight: 500;
      margin-bottom: 4px; }
    .flex-table2 .text-right .unit {
      color: #bbbbbb; }

.info-box .flex-table2:last-child {
  border-bottom: 0; }

.slidescroll {
  height: auto; }

.area-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  background: #fff; }
  .area-box .store-name {
    position: fixed;
    background: #fff;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ededed; }
  .area-box .area-table {
    margin-top: 70px; }
    .area-box .area-table table {
      margin: 15px 0;
      width: 100%; }
      .area-box .area-table table th {
        background: #f7f7f7;
        border: 1px solid #ededed;
        padding: 10px;
        text-align: center;
        color: #666; }
      .area-box .area-table table td {
        border: 1px solid #ededed;
        padding: 10px;
        line-height: 20px;
        position: relative; }
        .area-box .area-table table td b {
          position: absolute;
          right: 0;
          top: 6px;
          background: #ededed;
          padding: 5px; }
        .area-box .area-table table td i {
          display: inline-block;
          width: 90px;
          font-style: normal; }

.loading2 {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2); }
  .loading2 .loading2-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90px;
    border-radius: 10px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: #fff; }
    .loading2 .loading2-inner .car {
      margin-top: 9px; }
      .loading2 .loading2-inner .car img {
        width: 100%; }
    .loading2 .loading2-inner .text {
      padding-top: 10px;
      text-align: center; }
    .loading2 .loading2-inner .wheel-left, .loading2 .loading2-inner .wheel-right {
      width: 13px;
      height: 13px;
      position: absolute;
      top: 30px; }
      .loading2 .loading2-inner .wheel-left img, .loading2 .loading2-inner .wheel-right img {
        width: 100%;
        animation: myfirst 3s linear infinite; }
    .loading2 .loading2-inner .wheel-left {
      left: 20px; }
    .loading2 .loading2-inner .wheel-right {
      right: 24px; }
    .loading2 .loading2-inner .line {
      position: absolute;
      top: 46px;
      left: -100%;
      width: 300%;
      border-bottom: 1px dashed #999;
      animation: myline 5s linear infinite; }
@keyframes myfirst {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }
@keyframes myline {
  0% {
    left: -100%; }
  100% {
    left: -20%; } }

/*# sourceMappingURL=m.store.css.map */
