@charset "UTF-8";
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}

.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  -webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  -webkit-transition: padding 0.25s, max-height 0.25s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 3px #c4e6f5;
          box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #7ecff4;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  -webkit-box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
          box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}

@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}

@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}

@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}

@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}

@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}

@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}

.my-shopping .shipping-address:after, .my-shopping .shipping-address li .base-info:after, .shop-coupon .coupon-list:after, .shop-coupon .coupon-list li .coupon-main:after, .my-coupon .coupon-sort:after, .my-coupon .coupon-list:after,
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

table {
  table-layout: auto;
}

table tr:nth-child(odd) {
  background: none;
}

table tr td {
  border: none;
}

table tr:nth-child(even) {
  background: none;
}

a {
  color: #999;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.sweet-alert .sa-custom {
  width: 32px !important;
  height: 32px !important;
}

/*
*  会员页面样式，不能单独使用，基于app.css
*/
/*member-wrap*/
#login-bg .login-box {
  width: 360px;
  padding: 20px 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -180px;
  margin-top: -300px;
  background: #fff;
  border-radius: 4px;
}

#login-bg .container {
  width: 1200px;
  margin: 0 auto;
}

#login-bg .login-title {
  text-align: center;
  line-height: 80px;
  color: #3b3d3d;
  font-size: 23px;
}

#login-bg .login-box .form-group {
  margin-bottom: 20px;
}

#login-bg .login-box .input-outer {
  position: relative;
}

#login-bg .login-box .input-outer .input-txt {
  height: 50px;
  overflow: hidden;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
}

#login-bg .login-box .input-outer .input-code {
  width: 230px;
}

#login-bg .login-box .input-outer #countdown {
  width: 100px;
  cursor: pointer;
  line-height: 48px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  padding: 0;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  background: none;
  color: #787878;
  font-size: 12px;
  outline: none;
}

#login-bg .login-box .input-outer .err-bg {
  border-color: red;
}

#login-bg .login-box .input-outer .err-tip {
  color: red;
  padding-top: 10px;
  font-size: 14px;
  display: none;
}

#login-bg .login-box .input-outer .err-tip .icon {
  font-size: 14px;
}

#login-bg .login-box .input-outer .iconfont {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  z-index: 99;
  line-height: 50px;
  text-align: center;
}

#login-bg .login-box .input-outer input:-webkit-autofill {
  -webkit-text-fill-color: #787878;
  -webkit-transition: background-color 500000s ease-in-out 0s;
  transition: background-color 500000s ease-in-out 0s;
}

#login-bg .login-box .input-outer input:-webkit-autofill:focus {
  -webkit-text-fill-color: #787878;
  -webkit-transition: background-color 500000s ease-in-out 0s;
  transition: background-color 500000s ease-in-out 0s;
}

#login-bg .login-box .input-outer .text {
  position: relative;
  width: 100%;
  height: 50px;
  outline: none;
  display: block;
  text-indent: 50px;
  border: none;
  background: none;
  line-height: 50px;
  border-radius: 5px;
  z-index: 9;
  color: #787878;
  background: #fff;
}

#login-bg .login-box .btn-login {
  line-height: 52px;
  text-align: center;
  border-radius: 5px;
  background: #33c5fb;
  outline: none;
  color: #fff;
  width: 100%;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#login-bg .login-box .login-links {
  text-align: center;
  line-height: 70px;
  margin-bottom: 0 !important;
}

#login-bg .login-box .login-links a {
  color: #5a5a5a;
}

.login-foot {
  text-align: center;
  color: #787878;
  line-height: 24px;
  padding: 30px 0;
}

#login-bg .login-box .help-block {
  display: block;
  margin-top: 5px;
}

#login-bg .login-box .help-block strong {
  color: red;
}

#login-bg .login-box .btn-login:hover {
  background: #309ec7;
}

#login-bg .login-box .login-links a:hover {
  color: #33c5fb;
}

#login-bg .login-box .input-outer #countdown {
  line-height: 40px;
}

#login-bg .login-box .form-group {
  margin-bottom: 10px;
}

#login-bg .login-box .form-group .input-txt {
  height: 42px;
}

#login-bg .login-box .form-group .input-txt .text {
  height: 42px;
  line-height: 42px;
}

#login-bg .login-box .form-group .input-txt .iconfont {
  height: 42px;
  width: 42px;
  line-height: 42px;
}

#login-bg .login-box .form-group .input-txt .iconfont img {
  height: 42px;
  width: 42px;
}

#login-bg .login-box .form-group {
  margin-bottom: 12px;
}

#login-bg .login-box .has-error .input-txt {
  border-color: red;
}

#login-bg .login-box .pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}

#login-bg .login-box .pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

#login-bg .login-box .pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}

.member-info .form-title {
  text-transform: Capitalize;
}

.member-info .mb-15 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.change-pwd .mb-15 {
  border: none;
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input::-moz-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

.password-reset .input-txt .text {
  text-indent: 10px !important;
}

.modal-header {
  display: block;
}

.modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-title {
  font-weight: normal;
  font-size: 18px;
}

#login-body {
  overflow: hidden;
  background-color: #7baee8;
}

@media (max-width: 768px) {
  #login-body {
    background: none;
  }
  #login-bg .container {
    width: 100%;
  }
  #login-bg .login-box {
    width: 90%;
    padding: 0;
    left: 5%;
    margin-left: 0;
  }
}

/*
*  购物车样式
*/
.order-list {
  width: 100%;
}

.my-cart {
  background: #fff;
}

.my-cart .list-information {
  width: 72%;
  float: left;
}

.my-cart .list-information .list-title {
  padding: 15px 0;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 1px #e1e1e1 solid;
  font-weight: bold;
}

.item_from_table .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  line-height: 28px;
  background-color: #f7f7f7;
  color: #999;
}

.item_from_table .th * {
  font-size: 14px;
}

.item_from_table .td_select, .item_from_table .td_price, .item_from_table .td_subtotal, .item_from_table .td_action {
  width: 10%;
}

.item_from_table .td-info {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item_from_table .td-info .prod-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item_from_table .th .td_product {
  width: calc(50% + 83px);
}

.item_from_table .td-info .img {
  text-align: center;
  width: 83px;
  height: 83px;
  display: inline-block;
}

.item_from_table .td_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
}

.item_from_table .td_product {
  width: 50%;
}

.item_from_table .td_quantity {
  width: 20%;
}

.item_from_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 14px;
}

.item_from_table .shop-info .img {
  text-align: center;
  width: 83px;
  height: 83px;
  display: inline-block;
}

.item_from_table .shop-info .wz {
  display: inline-block;
  vertical-align: middle;
  max-width: 250px;
}

.item_from_table .num {
  width: 70px;
  height: 45px;
  display: inline-block;
  border: 1px solid #dddddd;
  font-size: 14px;
  color: #333;
}

.item_from_table .num .num-left {
  width: 42px;
  line-height: 43px;
  float: left;
  border: none;
  border-right: 1px solid #ddd;
  background: transparent;
  outline: none;
  text-align: center;
}

.item_from_table .num .num-right {
  width: 26px;
  float: right;
  text-align: center;
  line-height: 18px;
}

.item_from_table .num .num-right button {
  background: none;
  outline: none;
  border: none;
}

.item_from_table .num .num-right .num-add {
  height: 23px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.item_from_table .num .num-right .num-minus {
  cursor: pointer;
}

.item_from_table .tr-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item_from_table .remove {
  border: 1px #e5e5e5 solid;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  text-decoration: none;
  font-size: 14px;
  color: #757575;
  display: inline-block;
}

.item_from_table .total-price {
  color: #fa830f;
}

.my-cart .list-summary {
  width: 25%;
  padding: 0 19px;
  float: right;
}

.no-content-icon {
  text-align: center;
  line-height: 50px;
  color: #999;
}

.no-content-icon i {
  font-size: 50px;
}

.list_summary_title {
  padding: 15px 0;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 1px #e1e1e1 solid;
  font-weight: bold;
}

.product_price_container .product_price_info > div {
  line-height: 40px;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
}

.product_price_container .product_price_info .product_price_title {
  color: #999;
  float: left;
}

.product_price_container .product_price_info .product_price_value {
  color: #999;
  float: right;
}

.product_price_container .product_price_info label {
  font-weight: normal;
}

.product_price_container .product_price_info strong {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: lighter;
  color: #333;
}

.button_info .now-pay {
  height: 39px;
  line-height: 39px;
  margin-top: 10px;
  padding: 0;
  text-align: center;
  border: 0;
  display: block;
  position: relative;
  background-color: #e53935;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.button_info .now-pay:hover {
  background-color: #AE0000;
}

.button_info .btn_continue {
  line-height: 18px;
  margin-top: 18px;
  text-decoration: underline;
  font-size: 16px;
  color: #757575;
  height: 39px;
  padding: 0;
  text-align: center;
  border: 0;
  display: block;
  position: relative;
}

.button_info .btn_continue:hover {
  color: #AE0000;
}

@media (max-width: 999px) {
  .my-cart .list-information, .my-cart .list-summary {
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .my-cart .list-information .list-title {
    font-size: 16px;
    padding: 12px 0;
    margin-bottom: 0;
  }
  .item_from_table .th, .list_summary_title {
    display: none;
  }
  .item_from_table .tr {
    padding: 20px 0;
  }
  .product_price_container {
    padding-top: 20px;
  }
  .item_from_table .td_product {
    width: 90%;
  }
  .item_from_table .shop-info .img {
    width: 73px;
    height: 73px;
  }
  .item_from_table .shop-info .wz {
    vertical-align: top;
    max-width: 100%;
  }
  .item_from_table .td_price {
    display: none;
  }
  .item_from_table .td_subtotal, .item_from_table .td_action {
    width: 100%;
    padding-left: 10px;
    line-height: 26px;
  }
  .item_from_table .td-info .prod-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
  .item_from_table .td_quantity {
    width: auto;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

/*
*  订单结算样式
*/
.my-shopping {
  padding: 20px 20px 45px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
}

.my-shopping .shipping-title {
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 15px;
  position: relative;
}

.my-shopping .shipping-title .address_button {
  height: 60px;
  line-height: 60px;
  color: #a9a9a9;
  position: absolute;
  right: 0;
  top: 0;
}

.my-shopping .shipping-title .address_button a {
  margin: 0 20px;
  color: #666;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
}

.my-shopping .shipping-title .address_button a:hover {
  color: #f21f3d;
}

.address-form .input-group {
  margin-bottom: 20px;
  position: relative;
  display: block;
  width: 100%;
}

.address-form .input-group p {
  margin: 0;
  line-height: 16px;
  color: #f00;
}

.address-list {
  display: none;
}

.address-form .input-group .input-title {
  display: block;
  font-size: 14px;
  color: #6c6c6c;
  line-height: 30px;
}

.address-form .input-group .input-title i {
  color: red;
  font-style: normal;
}

.address-form .input-group .input-text {
  width: 100%;
  height: 42px;
  border: 1px solid #cbcbcb;
  padding-left: 15px;
  font-size: 14px;
  color: #6c6c6c;
  border-radius: 5px;
}

.address-form .input-group .null {
  border-color: #f00;
}

.address-form .input-group textarea.input-text {
  height: 120px;
  resize: none;
  padding-top: 5px;
}

.address-form .radio-group {
  margin-bottom: 10px;
  line-height: 30px;
}

.address-form .radio-group .input-title {
  font-size: 14px;
  color: #6c6c6c;
}

.address-form .radio-group .radio-style {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #6c6c6c;
  margin-right: 20px;
  cursor: pointer;
}

.address-form .radio-group .radio-style input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.address-form .radio-group .radio-style i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cacaca;
  border-radius: 50%;
}

.address-form .radio-group .radio-style input[type="radio"]:checked + i {
  position: relative;
  border-color: #2c8ee9;
}

.address-form .radio-group .radio-style input[type="radio"]:checked + i:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 9px;
  height: 9px;
  background: #2c8ee9;
  border-radius: 50%;
}

.address-form .upload-group {
  margin-bottom: 10px;
  font-size: 14px;
  color: #6c6c6c;
}

.address-form .upload-group i {
  font-style: normal;
}

.address-form .input-btn {
  display: inline-block;
  width: 100px;
  line-height: 36px;
  border-radius: 5px;
  background: #555;
  color: #fff;
  font-size: 16px;
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
}

.address-form #cancel_address {
  color: #898989;
  background-color: #eee;
  margin-right: 10px;
}

.address-form .select-group {
  margin: 0 -1% 20px -1%;
}

.address-form .select-group .input-text {
  height: 42px;
  border: 1px solid #cbcbcb;
  padding-left: 15px;
  font-size: 12px;
  color: #6c6c6c;
  border-radius: 5px;
}

.address-form .select-group select {
  width: 31.3333%;
  margin: 0 1%;
  float: left;
}

.w33 {
  width: 32%;
  position: relative;
}

.w100 {
  width: 100%;
  position: relative;
}

.address-form .phone {
  margin: 0 2%;
}

.shipping-title.shipping-title-cart {
  position: relative;
}

.shipping-title.shipping-title-cart a {
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 12px;
  line-height: 16px;
}

.details-list .itemFrom {
  width: 100%;
}

.details-list table th {
  text-indent: 10px;
  line-height: 42px;
  font-size: 14px;
  background-color: #f8f8f8;
  font-weight: normal;
}

.details-list table .product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.details-list table .product-img .text {
  padding-top: 25px;
  padding-left: 10px;
}

.details-list .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  line-height: 28px;
  background-color: #f7f7f7;
  color: #333;
  font-size: 14px;
}

.details-list .th .td_product {
  width: calc(50% + 110px);
}

.details-list .th .td_price, .details-list .th .td_quantity {
  width: 15%;
}

.details-list .th .td_subtotal {
  width: 20%;
}

.details-list .itemFrom .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
  font-size: 14px;
}

.details-list .itemFrom .tr .td-img {
  padding-right: 10px;
}

.details-list .itemFrom .tr .td-img a {
  display: block;
  width: 100px;
}

.details-list .itemFrom .tr .td-img img {
  width: 100%;
}

.details-list .itemFrom .prod-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.details-list .itemFrom .td_product {
  width: 50%;
}

.details-list .itemFrom .td_price, .details-list .itemFrom .td_quantity {
  width: 15%;
}

.details-list .itemFrom .td_subtotal {
  color: #fa830f;
}

.my-shopping .details-price {
  text-align: right;
  padding: 0 15px;
  line-height: 60px;
  font-size: 16px;
  border-top: 1px solid #e1e1e1;
}

.my-shopping .details-price .total-price {
  font-size: 24px;
  font-weight: bold;
}

.my-shopping .order-send {
  text-align: right;
}

.my-shopping .order-send a {
  display: inline-block;
  background: #f16056;
  width: 180px;
  line-height: 40px;
  color: #FFF;
  text-align: center;
  border-radius: 3px;
  font-size: 18px;
}

.address-content #add-form {
  display: none;
}

.address-list .list-item {
  float: left;
  margin: 0 1% 16px 1%;
  width: 31.333%;
  height: 162px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  padding: 20px 16px;
  line-height: 16px;
  overflow: hidden;
}

.address-list li a.edit_address_info {
  text-decoration: underline;
  color: #999;
  float: right;
}

.address-list .list-item:hover, .address-list .list-item.current {
  border-color: #eb3e3e;
}

.address-list li p a {
  text-decoration: underline;
  color: #999;
  float: right;
}

.address-list li p.address {
  line-height: 22px;
  max-height: 88px;
  overflow: hidden;
}

.address-item li {
  position: relative;
}

.address-item li a.edit-address {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  color: #666;
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  overflow: hidden;
  padding: 0 20px;
  text-decoration: none;
  cursor: pointer;
  border: 1px #e5e5e5 solid;
}

.address-item li a.edit-address:hover {
  background-color: #f6f6f6;
}

#edit-form {
  display: none;
}

@media (max-width: 999px) {
  .address-form .w33 {
    width: 100%;
  }
  .address-form .phone {
    margin: 20px 0;
  }
  .details-list .th {
    display: none;
  }
  .details-list .itemFrom .prod-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .details-list .itemFrom .td_product {
    width: 100%;
  }
  .details-list .itemFrom .td_price, .details-list .itemFrom .td_quantity {
    width: 100%;
  }
  .details-list .itemFrom .tr .td-img a {
    width: 80px;
  }
  .my-shopping .shipping-title .address_button {
    position: relative;
    height: 30px;
    line-height: 30px;
  }
  .my-shopping .shipping-title {
    height: auto;
  }
  .my-shopping .shipping-title .address_button a {
    margin: 0 5px 0 0;
  }
  .shipping-title.shipping-title-cart a {
    position: relative;
    right: 0;
    top: 0;
    line-height: 24px;
    display: block;
  }
  .address-list .list-item {
    width: 48%;
  }
}

@media (max-width: 625px) {
  .address-list .list-item {
    width: 98%;
  }
}

/*
*  订单支付样式
*/
.my-pay .pay-title {
  text-align: center;
  padding: 30px 0 10px;
}

.my-pay .pay-title i {
  color: #f21f3d;
  font-size: 58px;
}

.my-pay .pay-content {
  text-align: center;
  padding-bottom: 30px;
}

.my-pay .pay-content p {
  font-size: 14px;
  line-height: 40px;
}

.my-pay .pay-content p:not(.first) {
  display: inline-block;
  padding: 0 10px;
}

.my-pay .pay-content .first {
  font-size: 18px;
}

.my-pay .pay-content p span {
  color: #f21f3d;
}

.my-pay .pay-content p span.prices {
  font-size: 20px;
}

.my-pay .pay-list {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.my-pay .pay-list li {
  float: left;
  padding-right: 30px;
}

.my-pay .pay-list li:last-child {
  padding-right: 0;
}

.my-pay .pay-list li a {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 5px;
}

.my-pay .shipping-title {
  color: #000;
  font-size: 18px;
  line-height: 48px;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}

.resume-form {
  padding: 20px;
  text-align: left;
  display: none;
}

.modal-weixin-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
  padding-bottom: 15px;
}

.modal-weixin-content #weixin-pay-code {
  text-align: center;
}

.modal-weixin-content .weixin-title .closes {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #757575;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 10;
  border-radius: 15px;
}

.modal-weixin-content .weixin-title .closes span {
  font-size: 22px;
}

.modal-weixin-content .weixin-msg {
  text-align: center;
}

.modal-weixin-content .weixin-msg span {
  color: #ff6700;
  padding: 0 6px;
}

@media (max-width: 768px) {
  .my-pay .pay-content {
    text-align: left;
  }
  .my-pay .pay-content p:not(.first) {
    display: block;
    padding: 0;
    line-height: 27px;
    margin: 10px 0;
  }
  .my-pay .pay-title i {
    font-size: 44px;
  }
  .my-pay .pay-content .first {
    text-align: center;
  }
  .my-pay .pay-list li {
    padding-right: 10px;
  }
}

/*
*  我的订单样式
*/
.my-order .order-sort {
  margin-bottom: 20px;
}

.my-order .order-sort li {
  display: inline-block;
  width: 160px;
  font-size: 16px;
  text-align: center;
  color: #2a2a2a;
  background: #f8f8f8;
  margin: 0 0 10px 10px;
  line-height: 22px;
  padding: 7px 0;
}

.my-order .order-sort li a {
  display: block;
  color: #2a2a2a;
}

.my-order .order-sort li:hover, .my-order .order-sort li.active {
  background: #AE0000;
}

.my-order .order-sort li:hover a, .my-order .order-sort li.active a {
  color: #fff !important;
}

.i-block {
  display: inline-block !important;
}

.order-action {
  border-left: 1px solid #ececec;
}

.orders_list_table .orders_item {
  padding: 32px 0;
  border-top: 1px solid #e3e3e3;
}

.orders_list_table .orders_item .list_oid {
  color: #000000;
  font-size: 13px;
}

.orders_list_table .orders_item .list_oid span.number {
  margin-left: 40px;
}

.orders_list_table .orders_item .list_opl {
  margin-top: 40px;
}

.orders_list_table .orders_item .list_opl .opl_item {
  float: left;
  padding: 0;
  width: 13%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orders_list_table .orders_item .list_opl .detail {
  width: 48%;
}

.orders_list_table .orders_item .list_opl .detail .list {
  margin-top: 25px;
}

.orders_list_table .orders_item .list_opl .detail .list:first-child {
  margin-top: 0;
}

.orders_list_table .orders_item .list_opl .detail .pic {
  float: left;
  margin-right: 28px;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.orders_list_table .orders_item .list_opl .detail .pic img, .orders_list_table .orders_item .list_opl .detail .pic span {
  display: inline-block;
  vertical-align: middle;
}

.orders_list_table .orders_item .list_opl .detail .desc {
  float: left;
  width: calc( 100% - 106px);
  font-size: 13px;
  color: #999999;
}

.orders_list_table .orders_item .list_opl .detail .p_price {
  float: left;
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #222222;
  font-weight: 600;
}

.orders_list_table .orders_item .list_opl .detail .p_price i {
  font-weight: normal;
}

.orders_list_table .orders_item .list_opl .opl_item.o_price {
  font-size: 14px;
  color: #222222;
  font-weight: 600;
}

.orders_list_table .orders_item .opl_item .order-btn {
  display: block;
  width: 100px;
  margin: 0 auto;
  line-height: 30px;
  text-align: center;
}

.orders_list_table .orders_item .opl_item .order-btn i {
  font-size: 22px;
}

.orders_list_table .orders_item .opl_item .order-btn:hover i {
  color: #e53935;
}

.orders_list_table .orders_item .opl_item .order-btn.pay {
  background: #ff7e08;
  color: #fff;
  border-radius: 3px;
}

.orders_list_table .orders_item .opl_item .order-btn.pay:hover {
  background: #008f36;
}

.orders_list_table .orders_item .opl_item .order-btn.cancel {
  background: #ebebeb;
  color: #000;
  border-radius: 3px;
  margin-top: 10px;
}

.orders_list_table .orders_item .opl_item .order-btn.cancel:hover {
  background: #008f36;
  color: #fff;
}

.orders_list_table .orders_item .list_opl .opl_item.o_status {
  font-size: 14px;
}

@media (max-width: 768px) {
  .orders_list_table .orders_item .list_opl .detail {
    padding-right: 0;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
  }
  .orders_list_table .orders_item .list_opl .opl_item {
    float: none;
    margin-top: 25px;
    width: 100%;
    text-align: right;
  }
  .orders_list_table .orders_item .list_opl .detail .pic {
    margin-right: 16px;
    width: 63px;
    height: 63px;
  }
  .orders_list_table .orders_item .list_opl .detail .desc {
    line-height: 23px;
    font-size: 13px;
  }
  .orders_list_table .orders_item .list_opl .detail .desc .name {
    text-align: left;
  }
  .orders_list_table .orders_item .list_opl .detail .p_price {
    margin-top: 10px;
    font-size: 13px;
  }
  .orders_list_table .orders_item .opl_item .order-btn {
    display: inline-block;
  }
  .my-order .order-sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .my-order .order-sort li {
    display: inline-block;
    width: 20%;
    font-size: 14px;
    margin: 0 5px;
  }
  .orders_list_table .orders_item .list_opl .opl_item.o_status {
    display: none;
  }
  .orders_list_table .orders_item .list_oid span {
    display: block;
    line-height: 24px;
  }
  .orders_list_table .orders_item .list_oid span.number {
    margin-left: 0;
  }
  .orders_list_table .orders_item .list_opl {
    margin-top: 10px;
  }
}

/*
*  收货地址样式
*/
.member-address .add-address {
  border-radius: 5px;
  border: 1px solid #AE0000;
  font-size: 16px;
  color: #AE0000;
  line-height: 30px;
  width: 160px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
}

.member-address .add-address:hover {
  background: #AE0000;
  color: #fff;
}

.member-address .address-lists .add_item {
  float: left;
  margin: 0 0 19px 2%;
  padding: 0 16px;
  width: 49%;
  height: 204px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.member-address .address-lists .add_item:nth-child(odd) {
  margin-left: 0;
  clear: both;
}

.member-address .address-lists .add_item.default {
  border-color: #eb3e3e;
}

.member-address .address-lists .add_item .rows.top {
  height: 64px;
  line-height: 64px;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.member-address .address-lists .add_item .rows.top b {
  font-weight: bold;
}

.member-address .address-lists .add_item .rows.top .phone {
  margin-left: 12px;
  font-size: 14px;
  color: #666666;
}

.member-address .address-lists .add_item .addr_detail {
  margin-top: 10px;
  line-height: 24px;
  font-size: 14px;
  color: #666666;
  max-height: 96px;
  overflow: hidden;
}

.member-address .address-lists .add_item .options {
  padding: 0 12px 0 20px;
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.member-address .address-lists .add_item .options .user_action_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.member-address .address-lists .add_item .options .default_edit {
  font-size: 0;
}

.member-address .address-lists .add_item .options .default_edit i {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dadada;
  border-radius: 50px;
  position: relative;
}

.member-address .address-lists .add_item.default .options .default_edit i {
  border-color: #eb3e3e;
  background-color: #eb3e3e;
}

.member-address .address-lists .add_item.default .options .default_edit i:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.member-address .address-lists .add_item .options .default_edit a {
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #333333;
}

.member-address .address-lists .add_item .options ul {
  width: auto;
  font-size: 0;
  text-align: right;
}

.member-address .address-lists .add_item .options ul li {
  display: inline-block;
  font-size: 14px;
}

.member-address .address-lists .add_item .options ul li a {
  display: block;
  font-size: 14px;
  text-decoration: underline;
}

.member-address .address-lists .add_item .options ul li a[name=del] {
  margin-right: 15px;
  color: #f16056;
}

.member-address .address-lists .add_item .options ul li a[name=edit] {
  color: #333333;
}

@media (max-width: 768px) {
  .member-address .address-lists .add_item {
    margin-left: 0;
    margin-top: 14px;
    margin-bottom: 0;
    padding: 0 15px;
    width: 100%;
    height: auto;
  }
  .member-address .address-lists .add_item .rows.top {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .member-address .address-lists .add_item .addr_detail {
    max-height: 100%;
    padding-top: 16px;
    padding-bottom: 50px;
    min-height: 66px;
    line-height: 22px;
    font-size: 14px;
  }
  .member-address .address-lists .add_item .options {
    bottom: 20px;
  }
  .member-address .address-lists .add_item .options ul li a[name=del] {
    color: #333;
  }
}

.member-address .address-lists {
  width: 100%;
}

.member-address .address-lists thead {
  background: #f8f8f8;
}

.member-address .address-lists thead th {
  text-align: center;
  padding: 10px 0;
}

.member-address .address-lists thead th span {
  display: block;
  line-height: 22px;
  font-size: 16px;
  color: #737373;
  font-weight: normal;
}

.member-address .address-lists thead th:not(:last-child) span {
  border-right: 1px solid #dfdfdf;
}

.member-address .address-lists tbody td {
  border-bottom: 1px solid #ededed;
  padding: 15px 10px;
  line-height: 22px;
  font-size: 14px;
  color: #323232;
  text-align: center;
}

.member-address .address-lists tbody a {
  display: inline-block;
  color: #5187e7;
}

.member-address .address-lists tbody a:hover {
  text-decoration: underline;
}

.member-address .address-lists tbody .edit-btn + .delete-btn:before {
  content: '|';
  color: #b8b8b8;
  margin-right: 5px;
}

.member-address .address-lists tbody .set-default,
.member-address .address-lists tbody .default-btn {
  text-align: center;
  margin-left: 10px;
}

.member-address .address-lists tbody .set-default {
  color: #7baee8;
}

.member-address .address-lists tbody .default-btn {
  color: #AE0000;
  cursor: default;
}

.member-address .address-lists tbody .default-btn:hover {
  text-decoration: none;
}

.member-address .address-form {
  display: none;
}

.member-wrap .success {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.member-wrap .success .txt {
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .modal-dialog {
    margin: 10% auto;
  }
}

/*
*  个人中心样式
*/
.user-border {
  padding: 20px 10px;
  border-bottom: 1px solid #e3e3e3;
}

.user-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.user-header .icon-yonghu {
  display: block;
  width: 88px;
  height: 88px;
  line-height: 88px;
  margin: 8px;
  text-align: center;
  font-size: 46px;
  color: #9f9fa1;
  background-color: #e1e1e3;
  border-radius: 50px;
}

.user-header .text {
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 29px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.user-header .text .email {
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
}

.user-cart .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  line-height: 44px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.user-cart .title strong {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.user-cart .view_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  text-decoration: none;
  color: #555;
}

@media (max-width: 768px) {
  .user-header {
    display: block;
  }
}
