body {
  max-width: 1920px;
  --color: #e30057;
  font-size: 12px;
  margin: 0 auto;
}
.ui-message {
  min-width: 380px;
  border-width: 1px;
  border-style: solid;
  border-color: #EBEEf5;
  background-color: #edf2fc;
  transform: translateX(-50%);
  position: fixed;
  left: 50%;
  top:20px;
  transition: opacity .3s,transform .4s,top .4s;
  padding: 15px 15px 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}
.ui-message:before {
  margin-right: 6px;
}
.ui-message-center{
  justify-content: center;
}
.ui-message .message-content{
  margin-left: 16px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}
.ui-message .close-button{
  position: absolute;
  top:50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  /*background-image: url("../images/close.png");*/
  width: 12px;
  height: 12px;
  background-size: 100% 100%;
}
.ui-message-leave{
  opacity: 0;
  transform: translate(-50%,-100%);
}
.ui-message-enter{
  opacity: 1;
  transform: translate(-50%,-100%);
}
.ui-message-info{
  color: #909399;
}
.ui-message-success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}
.ui-message-success{
  color: #67c23c;
}
.ui-message-warning {
  background-color: #fdf6ec;
  border-color: #faecd8;
}
.ui-message-warning{
  color: #e6a23c;
}
.ui-message-error {
  background-color: #fef0f0;
  border-color: #fde2e2;
}
.ui-message-error{
  color: #f56c6c;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1400px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer {
  padding: 80px 0;
  background: #f8f8f8;
  color: #444;
}
#customer .customerBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#customer .customerBox .customerSidebar {
  width: 20%;
  margin-right: 30px;
  background: white;
  padding: 20px;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}
#customer .customerBox .customerSidebar dl {
  margin-top: 2em;
}
#customer .customerBox .customerSidebar dl dt {
  font-size: 14px;
  margin-bottom: .5em;
}
#customer .customerBox .customerSidebar dl dd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .customerBox .customerSidebar dl dd a:after {
  content: '';
  width: 200%;
  left: -50%;
  top: 0;
  height: 100%;
  background: #fafafa;
  z-index: -1;
  position: absolute;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .customerBox .customerSidebar dl dd a i.iconfont {
  margin-right: 5px;
}
#customer .customerBox .customerSidebar dl dd a:hover,
#customer .customerBox .customerSidebar dl dd a.active {
  color: white;
}
#customer .customerBox .customerSidebar dl dd a:hover:after,
#customer .customerBox .customerSidebar dl dd a.active:after {
  opacity: 1;
  background: var(--color);
}
#customer .customerBox .customerContent {
  width: 80%;
}
#customer .customerBox .customerContent .ContentBoxWhite {
  background: white;
  padding: 20px;
  margin-bottom: 30px;
}
#customer .customerBox .customerContent .ContentBoxWhite:last-child {
  margin-bottom: 0;
}
#customer h6.customerTitle {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
#customer h6.customerTitle.wrap {
  display: block;
}
#customer h6.customerTitle.wrap small {
  margin-left: 0;
  border-left: none;
  display: block;
  padding-left: 0;
  margin-top: .5em;
}
#customer h6.customerTitle small {
  font-size: 12px;
  font-weight: normal;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #666;
  line-height: 1;
}
#customer h6.customerTitle small a {
  margin-left: .5em;
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer h6.customerTitle small a:hover {
  color: var(--color);
}
#customer h6.customerTitle a.more {
  display: inline-block;
  line-height: 36px;
  height: 36px;
  padding: 0 20px;
  background: #333;
  color: white;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer h6.customerTitle a.more:hover {
  background: var(--color);
}
#customer h6.customerTitle.end {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#customer h6.customerTitle.end .btn a {
  font-weight: normal;
  line-height: 30px;
  height: 32px;
  padding: 0 15px;
  font-size: 12px;
  display: inline-block;
  border: 1px solid #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer h6.customerTitle.end .btn a:hover {
  border-color: var(--color);
  color: white;
  background: var(--color);
}
#customer .underline {
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}
#customer .customerText {
  font-size: 14px;
  line-height: 2;
  margin: 1em 0;
}
#customer .customerText strong {
  font-weight: bold;
}
#customer .customerText a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .customerText a:hover {
  color: var(--color);
}
#customer .assetsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
#customer .assetsList .Item {
  padding: 30px;
  position: relative;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .assetsList .Item:after {
  content: '';
  width: 1px;
  height: 30%;
  right: 0;
  top: 35%;
  background: #eee;
  position: absolute;
}
#customer .assetsList .Item strong {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: var(--color);
}
#customer .assetsList .Item span {
  font-size: 14px;
  opacity: .7;
}
#customer .assetsList .Item a {
  display: block;
  margin-top: 2em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 14px;
}
#customer .assetsList .Item a:hover {
  color: var(--color);
}
#customer .assetsList .Item:last-child:after {
  display: none;
}
#customer .assetsList .Item:hover {
  background: #f8f8f8;
}
#customer .assetsOrdersList .Item {
  padding: 30px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 20px;
}
#customer .assetsOrdersList .Item i {
  font-size: 40px;
  position: relative;
}
#customer .assetsOrdersList .Item i em {
  font-size: 20%;
  padding: 2px 5px;
  min-width: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 90%;
  top: -10%;
  border-radius: 100%;
  background: var(--color);
  color: white;
}
#customer .assetsOrdersList .Item span {
  font-size: 16px;
  display: block;
  margin-top: 1em;
  opacity: .7;
}
#customer .assetsOrdersList .Item:hover {
  background: #f8f8f8;
}
#customer .orderList {
  margin-top: 20px;
  padding: 10px;
  background: #fafafa;
  text-align: center;
}
#customer .orderList p {
  font-size: 12px;
}
#customer .orderList .orderHead,
#customer .orderList .orderMainBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
#customer .orderList .orderHead > div,
#customer .orderList .orderMainBox > div {
  padding: 0 10px;
}
#customer .orderList .orderMainInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#customer .orderList .orderHead {
  padding: 15px 20px;
}
#customer .orderList .orderHead p {
  font-size: 13px;
}
#customer .orderList .orderMain p {
  opacity: .8;
  line-height: 1.8;
  margin-bottom: .5em;
}
#customer .orderList .orderMain p:last-child {
  margin-bottom: 0;
}
#customer .orderList .orderMain .slide {
  margin-bottom: 10px;
  padding: 20px;
  background: white;
}
#customer .orderList .orderMain .slide .orderMainBox {
  margin-top: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .orderList .orderMain .slide .orderMainBox > div {
  position: relative;
}
#customer .orderList .orderMain .slide .orderMainBox > div:after {
  content: '';
  width: 2px;
  height: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  position: absolute;
  background: #eee;
}
#customer .orderList .orderMain .slide .orderMainBox > div:last-child:after {
  display: none;
}
#customer .orderList .orderMain .slide.child {
  background: #f3f3f3;
}
#customer .orderList .info {
  width: 36%;
  max-height: 180px;
  overflow-y: auto;
}
#customer .orderList .info.more .flex {
  padding: 10px;
}
#customer .orderList .info .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin-bottom: 1em;
}
#customer .orderList .info .flex:nth-child(even) {
  background: #fafafa;
}
#customer .orderList .info .flex:last-child {
  margin-bottom: 0;
}
#customer .orderList .info .img {
  width: 100px;
  height: 100px;
}
#customer .orderList .info .img a {
  display: block;
  background-size: cover;
  background-position: center center;
  border: 2px solid #FAFAFA;
}
#customer .orderList .info .MainInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  margin-left: 15px;
}
#customer .orderList .info .MainInfo h6 {
  font-size: 14px;
  font-weight: bold;
  opacity: .9;
  width: 100%;
}
#customer .orderList .info .MainInfo h6 small {
  display: block;
  font-weight: normal;
  font-size: 12px;
  margin-top: .5em;
}
#customer .orderList .info .MainInfo span {
  color: #666;
}
#customer .orderList .info .MainInfo span strong {
  font-size: 140%;
  color: var(--color);
}
#customer .orderList .money {
  width: 20%;
}
#customer .orderList .payment {
  width: 15%;
}
#customer .orderList .status {
  width: 15%;
}
#customer .orderList .operation {
  width: 14%;
}
#customer .orderList .operation a {
  color: #333;
  padding: 7px 10px;
  display: block;
  margin: 5px 0;
  border: 1px solid #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#customer .orderList .operation a:first-child {
  background: #333;
  color: white;
}
#customer .orderList .operation a:hover {
  background: var(--color);
  border-color: var(--color);
  color: white;
}
.m-page {
  margin-top: 20px;
  text-align: right;
}
.m-page a,
.m-page span {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  background: #fafafa;
  margin-left: .3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.m-page a.active,
.m-page a:hover {
  background: var(--color);
  color: white;
}
#customer .orderEmpty {
  padding: 6em 2em;
  text-align: center;
  font-size: 12px;
}
#customer .orderEmpty span {
  font-size: 2em;
  font-weight: bold;
  display: block;
  margin-bottom: 1em;
}
#customer .orderEmpty a {
  display: inline-block;
  line-height: 44px;
  height: 44px;
  padding: 0 30px;
  background: #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: white;
  font-size: 14px;
}
#customer .orderEmpty a:hover {
  background: var(--color);
}
#customer .coupon-banner {
  height: 160px;
  background-size: cover;
  background-position: center;
  display: block;
  color: var(--color);
  font-size: 30px;
  text-align: center;
  padding-top: 2em;
  font-weight: bold;
  line-height: 1;
}
#customer .couponAvailable {
  margin-top: 30px;
}
#customer .couponAvailable .optionsBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
#customer .couponAvailable .optionsBtn span {
  margin-right: 3em;
  padding-bottom: .3em;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
#customer .couponAvailable .optionsBtn span.active,
#customer .couponAvailable .optionsBtn span:hover {
  color: var(--color);
}
#customer .couponAvailable .optionRet {
  margin-top: 20px;
}
#customer .couponAvailable .optionRet .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
#customer .couponAvailable .optionRet .list .slide {
  padding: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#customer .couponAvailable .optionRet .list .slide .box {
  border: 1px solid #eee;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-info {
  padding: 15px;
  width: -webkit-calc(100% - 130px);
  width: -moz-calc(100% - 130px);
  width: calc(100% - 130px);
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-info h6 {
  font-size: 2em;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--color);
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-info span {
  display: block;
  font-size: 13px;
  opacity: .7;
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-info p {
  font-size: 12px;
  opacity: .6;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px #999 dashed;
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-button {
  width: 130px;
  min-height: 130px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../images/coupon-bg-pink.png") center center no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-button a {
  display: block;
  line-height: 30px;
  height: 30px;
  border-radius: 18px;
  background: #f8e6be;
  width: 100%;
  text-align: center;
  color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .couponAvailable .optionRet .list .slide .box .coupon-item-button a:hover {
  opacity: .8;
}
#customer .couponAvailable .optionRet .list .slide .box.used {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
#customer .couponAvailable .optionRet .list .slide .box.used .coupon-item-info {
  opacity: .5;
}
#customer .couponAvailable .optionRet .list .slide .box.used .coupon-item-info h6 {
  color: inherit;
}
#customer .couponAvailable .optionRet .list .slide .box.used .coupon-item-info span,
#customer .couponAvailable .optionRet .list .slide .box.used .coupon-item-info p {
  opacity: 1;
}
#customer .couponAvailable .optionRet .list .slide .box.used .coupon-item-button {
  background-image: url("../images/coupon-bg-used.png");
}
#customer form.disblas input,
#customer form.disblas textarea {
  line-height: 24px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  font-size: 12px;
  display: block;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer form.disblas input:focus,
#customer form.disblas textarea:focus {
  border-color: var(--color);
}
#customer form.disblas input[type="date"] {
  cursor: pointer;
  cursor: hand;
}
#customer form.disblas input[type="submit"] {
  width: auto;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--color);
  color: white;
  border: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer form.disblas input[type="submit"]:hover {
  background: #333;
}
#customer form.disblas.flex li {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer form.disblas.flex li label {
  width: 120px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 13px;
}
#customer form.disblas.flex li:last-child {
  margin-bottom: 0;
}
#customer .editPersonal {
  margin-top: 30px;
}
#customer .editPersonal strong {
  font-size: 14px;
  font-weight: bold;
  opacity: .8;
  margin-bottom: 1em;
  display: block;
}
#customer .editPersonal .editPersonalForm {
  max-width: 600px;
}
#customer .editPersonal .editPersonalForm .Gender {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#customer .editPersonal .editPersonalForm .Gender span {
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1em;
  cursor: pointer;
  cursor: hand;
}
#customer .editPersonal .editPersonalForm .Gender span.active {
  color: white;
}
#customer .editPersonal .editPersonalForm .Gender span.active i.iconfont:before {
  content: "\e6ef";
}
#customer .addressList {
  margin-top: 30px;
}
#customer .addressList ul {
  margin: -10px;
}
#customer .addressList ul li {
  padding: 10px;
}
#customer .addressList ul li .box {
  padding: 20px;
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .addressList ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .addressList ul li .box:before {
  content: "\e9fb";
  font-family: iconfont;
  color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4em;
  padding-left: 1em;
  padding-top: .5em;
  background: var(--color);
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, var(--color)), color-stop(50%, transparent));
  /* 兼容Safari4-5, chrome1-9 */
  background: -moz-linear-gradient(-45deg, var(--color) 50%, transparent 50%);
  /* firefox */
  background: -webkit-linear-gradient(45deg, var(--color) 50%, transparent 50%);
  /* chrome */
  /* opera */
  /* ie */
  background: -webkit-linear-gradient(135deg, var(--color) 50%, transparent 50%);
  background: -moz-linear-gradient(135deg, var(--color) 50%, transparent 50%);
  background: linear-gradient(-45deg, var(--color) 50%, transparent 50%);
  /* firefox */
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .addressList ul li .box h6 {
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}
#customer .addressList ul li .box h6 small {
  font-weight: normal;
}
#customer .addressList ul li .box p {
  padding: 1em 0;
  opacity: .8;
}
#customer .addressList ul li .box .btn {
  margin-top: 1em;
}
#customer .addressList ul li .box .btn a {
  margin-right: 1em;
  opacity: .8;
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .addressList ul li .box .btn a:hover {
  color: var(--color);
}
#customer .addressList ul li .box:hover {
  background: #f8f8f8;
}
#customer .addressList ul li .box.active {
  background: none;
  border-color: var(--color);
}
#customer .addressList ul li .box.active:after {
  opacity: 0.03;
}
#customer .addressList ul li .box.active:before {
  opacity: 1;
}
#customer .favoriteList {
  margin-top: 30px;
}
#customer .favoriteList .slide {
  border-bottom: 1px solid #eee;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .favoriteList .slide > div {
  padding: 0 10px;
}
#customer .favoriteList .slide .img {
  width: 130px;
  height: 130px;
  padding: 0;
}
#customer .favoriteList .slide .img a {
  display: block;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#customer .favoriteList .slide .info {
  width: 100%;
}
#customer .favoriteList .slide .del {
  width: 100px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}
#customer .favoriteList .slide .del a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .favoriteList .slide .del a:hover {
  color: var(--color);
}
#customer .favoriteList .slide .add {
  width: 140px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}
#customer .favoriteList .slide .add a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .favoriteList .slide .add a:hover {
  color: var(--color);
}
#customer .favoriteList .slide h6 {
  font-size: 14px;
  font-weight: bold;
}
#customer .favoriteList .slide .star {
  color: var(--color);
  margin: .3em 0;
  font-size: 110%;
}
#customer .favoriteList .slide .price {
  font-size: 13px;
  margin-top: 1em;
}
#customer .favoriteList .slide .status {
  width: 200px;
}
#customer .favoriteList .slide .btn {
  width: 200px;
}
#customer .favoriteList .slide .btn a {
  display: block;
  line-height: 36px;
  height: 38px;
  border: 1px solid #999;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .favoriteList .slide .btn a:hover {
  color: white;
  background: var(--color);
  border-color: var(--color);
}
#customer .messageList {
  margin-top: 30px;
}
#customer .messageList li {
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #E5E5E5;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#customer .messageList li .icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-right: 8px;
}
#customer .messageList li .msg {
  width: 100%;
}
#customer .messageList li .msg time {
  color: #606060;
  font-weight: normal;
}
#customer .messageList li .msg h6 {
  font-size: 115%;
  font-weight: bold;
  margin-bottom: .3em;
  color: #333;
}
#customer .messageList li .msg .text {
  color: #606060;
  font-weight: 300;
}
#customer .messageList li:last-child {
  margin-bottom: 0;
}
#customer .viewList {
  margin: 30px 0;
}
#customer .viewList .viewProgress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#customer .viewList .viewProgress .item {
  opacity: .5;
}
#customer .viewList .viewProgress .item i.iconfont {
  font-size: 300%;
  text-align: center;
  margin-bottom: .5em;
}
#customer .viewList .viewProgress .item.active {
  color: #333;
  font-weight: bold;
  opacity: 1;
}
#customer .viewContent {
  padding: 20px;
  background: #eee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .viewContent .viewInfo {
  width: 80%;
}
#customer .viewContent .viewInfo h6 {
  font-size: 14px;
  font-weight: bold;
}
#customer .viewContent .viewInfo p {
  font-size: 14px;
  margin-top: .5em;
}
#customer .viewContent .viewBtn {
  width: 20%;
  padding: 0 1%;
}
#customer .viewContent .viewBtn a {
  display: block;
  line-height: 36px;
  height: 36px;
  text-align: center;
  border: 1px solid #333;
  color: #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-bottom: 10px;
}
#customer .viewContent .viewBtn a:last-child {
  margin-bottom: 0;
}
#customer .viewContent .viewBtn a.on {
  background: #333;
  color: white;
}
#customer .viewContent .viewBtn a:hover {
  background: var(--color);
  color: white;
  border-color: var(--color);
}
#customer .orderInfo.customerText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
}
#customer .orderInfo.customerText p {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#customer .orderInfo.customerText p span {
  min-width: 140px;
}
#customer .orderInfo.customerText.right p {
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .orderInfo.customerText.right p span {
  text-align: right;
  padding-left: 1em;
  min-width: 100px;
}
#customer .orderInfo.customerText.right p span.total {
  font-size: 150%;
  color: var(--color);
  font-weight: bold;
}
#customer #YQContainer {
  position: relative;
  z-index: 1;
}
#customer #YQContainer fieldset {
  border: 1px solid #eee;
}
#customer #nocheck {
  position: absolute;
  z-index: -1;
  right: 3%;
  top: 5%;
  display: none;
}
#customer #ischeck {
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  margin-right: 15px;
  font-size: 16px;
  padding: 0 5px;
}
#customer #YQContainer .layui-field-box {
  max-height: 500px;
  overflow: auto;
  font-size: 12px;
  padding: 15px;
  color: #666;
  text-align: center;
}
#customer #YQContainer .layui-elem-field legend {
  display: inline-block;
  width: auto;
  margin-left: 20px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 300;
}
#customer #YQContainer .layui-elem-field legend span {
  font-size: 80%;
}
#customer #YQContainer .layui-elem-field legend span span {
  opacity: .5;
}
#customer #YQContainer .layui-elem-field legend em {
  margin-left: 5px;
}
#customer #YQContainer .layui-elem-field legend i.fa:before {
  float: right;
  margin: 0 8px;
}
#customer #YQContainer .layui-elem-field legend i.fa {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
#customer #YQContainer .layui-elem-field legend i.fa:hover {
  color: var(--color);
}
#customer #progressOrder li {
  opacity: .7;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer #progressOrder:hover li,
#customer #progressOrder:hover li:first-child {
  opacity: .7 !important;
}
#customer #progressOrder li:first-child,
#customer #progressOrder:hover li:hover {
  opacity: 1 !important;
}
#customer #YQContainer .layui-field-box {
  max-height: 500px;
  overflow: auto;
}
#customer .detailsList .slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
#customer .detailsList .slide .img {
  width: 120px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 120px;
}
#customer .detailsList .slide .img a {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#customer .detailsList .slide .info {
  padding: 0 15px;
  font-size: 12px;
  color: #666;
}
#customer .detailsList .slide .info h6 {
  font-size: 16px;
  font-weight: bold;
}
#customer .detailsList .slide .btn {
  width: 200px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}
#customer .detailsList .slide .btn .price {
  color: var(--color);
  font-size: 160%;
  font-weight: bold;
}
#customer .detailsList .slide .btn .price del {
  font-size: 140%;
  color: var(--color);
}
#customer .ContentDetails {
  margin-top: 20px;
}
#customer .ContentDetails fieldset {
  font-size: 14px;
  border: none;
  border-top: 1px solid #eee;
  position: relative;
}
#customer .ContentDetails fieldset em {
  position: absolute;
  padding: 0 15px;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: white;
}
#customer .ContentDetails.onepage fieldset {
  margin: .6em 0;
}
#customer .ContentDetails.onepage fieldset em {
  left: 0;
  padding-left: 0;
}
#customer .ContentDetails.onepage .layui-form-item>.layui-input-block:first-child {
  margin-left: 0;
}
#customer .ContentDetails.onepage .layui-form-item .layui-form-radio {
  line-height: 1;
}
#customer .ContentDetails.onepage .layui-form-item .layui-form-radio>i {
  font-size: 16px;
}
#customer .ContentDetails.onepage .orderList {
  padding: 0;
}
#customer .ContentDetails.onepage .orderList .info .img {
  width: 70px;
  height: 70px;
}
#customer .ContentDetails.onepage .orderList .slide {
  padding: .5em;
}
#customer .ContentDetails.onepage .orderList .slide:nth-child(even) {
  /*margin-bottom: 1em;*/
  background: white;
}
#customer .ContentDetails.onepage .orderList .slide:last-child {
  margin-bottom: 0;
}
#customer .ContentDetails.onepage .orderList .info .MainInfo span {
  font-size: 12px;
}
#customer .ContentDetails.onepage .orderList .info .MainInfo span strong {
  font-size: 120%;
}
#customer .ContentDetails.onepage .customerText p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#customer .ContentDetails.onepage .customerText span {
  font-size: 120%;
  color: black;
}
#customer .ContentDetails.onepage .customerText span.red {
  color: var(--color);
  font-weight: bold;
}
#customer .ContentDetails.onepage .agree {
  margin-bottom: 2em;
  font-size: 12px;
  color: #666;
}
#customer .ContentDetails.onepage .agree input {
  cursor: pointer;
  cursor: hand;
  margin-right: .5em;
}
#customer .ContentDetails.onepage .addressList {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f8f8f8;
  padding: 5px 0;
}
#customer .ContentDetails.onepage .addressList .layui-form-item {
  display: block;
  margin: 5px 10px;
  background: white;
  padding: 10px;
}
#customer .ContentDetails.onepage .addressList .layui-form-item.wid-50 {
  width: 47%;
}
#customer .ContentDetails.onepage .addressList .layui-form-label {
  padding: 0 0 5px;
}
#customer .ContentDetails.onepage .payments .layui-form-item {
  align-items: center;
}
#customer .ContentDetails.onepage .payments .layui-form-item .layui-form-radio {
  margin-top: 0;
  width: 100%;
}
#customer .ContentDetails.onepage .addressList .layui-form-label,
#customer .ContentDetails.onepage .addressList .layui-input-block{
  display: block;
  width: 100%;
  text-align: left;
  float: none;
  margin-left: 0;
}
#customer .ContentDetails.onepage .addressList .layui-input-block.flex {
  display: flex;
  justify-content: space-between;
}
#customer .ContentDetails.onepage .addressList .layui-input-block.flex input {
  width: 48%;
}
#customer .ContentDetails .table {
  font-size: 14px;
  margin-top: 1.5em;
}
#customer .ContentDetails .table p {
  padding: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#customer .ContentDetails .table p:nth-child(odd) {
  background: #fafafa;
}
#customer .ContentDetails .table p .red {
  font-size: 120%;
  color: var(--color);
}
#customer .XShistoryList {
  margin-top: 30px;
}
#customer .XShistoryList ul li {
  margin-bottom: 15px;
  padding: 15px;
  background: #fafafa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .XShistoryList ul li i.iconfont {
  font-size: 300%;
  color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: .5em;
  line-height: 1;
}
#customer .XShistoryList ul li i.iconfont.icon-user {
  opacity: .7;
}
#customer .XShistoryList ul li .content {
  font-size: 14px;
  width: 100%;
}
#customer .XShistoryList ul li .content .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #666;
}
#customer .XShistoryList ul li .content .top h6 {
  font-size: 120%;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#customer .XShistoryList ul li .content .top h6 small {
  margin-left: .5em;
  font-size: 80%;
  opacity: .7;
  font-weight: normal;
}
#customer .XShistoryList ul li:hover {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#customer .XShistoryList ul li:hover .content h6 {
  color: var(--color);
}
#customer .refundList {
  margin-top: 30px;
}
#customer .layui-form {
  font-size: 12px;
}
#customer .layui-form .layui-form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#customer .layui-form .layui-form-item.wrap {
  flex-wrap: wrap;
}
#customer .layui-form .layui-form-item .layui-form-radio {
  /*width: 100%;*/
}
#customer .layui-form .layui-form-item .airwallexform {
  width: 100%;
  margin: 1em 0;
  max-width: 600px;
}
#customer .layui-form .layui-form-item label {
  width: 160px;
  padding: 9px 5px;
}
#customer .layui-form .layui-form-item .layui-input-block {
  margin-left: 10px;
  width: 100%;
}
#customer .ui.container {
  max-width: 1230px;
}
#customer .customerContentFlex {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
#customer .customerContentFlex:first-child {
  margin-top: 0;
}
#customer .customerContentFlex a {
  color: #333;
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#customer .customerContentFlex a:hover {
  color: var(--color);
}
#customer .customerContentFlex a.text-grey:hover {
  text-decoration: underline;
}
#customer fieldset.line {
  border: none;
  height: 1px;
  background: #eee;
  display: block;
  margin: 1em 0;
  position: relative;
}
#customer fieldset.line em {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  padding: 0 1em;
  background: white;
}
#customer fieldset.line.center em {
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
#customer .outerLogin {
  display: flex;
  margin-top: 18px;
}
#customer .outerLogin a {
  width: 50%;
  margin: 0 .5em;
  font-size: 14px;
  background: #eee;
  line-height: 36px;
  height: 36px;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
#customer .outerLogin a i {
  margin-right: .5em;
}
#customer .success {
  font-size: 14px;
  padding: 25px 0;
  text-align: center;
  line-height: 1.8;
  color: #999;
}
#customer .success .iconfont {
  font-size: 6em;
  color: #00ad5f;
  margin: 10px auto;
  display: block;
  line-height: 1;
}
#customer .success a {
  text-decoration: underline;
  color: var(--color);
}
#customer .success a.common_style_black {
  display: inline-block;
  line-height: 38px;
  height: 40px;
  padding: 0 25px;
  color: white;
  background: var(--color);
  border-radius: 3px;
  margin-top: 20px;
  text-decoration: unset;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#customer .success a.common_style_black:hover {
  background: #00ad5f;
}
#customer #time {
  cursor: pointer;
  cursor: hand;
}
#customer .customerBox .cartInfo {
  width: 20%;
  flex-shrink: 0;
  margin-left: 30px;
  background: white;
  padding: 20px;
}
#customer .customerBox .cartInfo .carInfoList {
  font-size: 14px;
  margin: 2em 0;
}
#customer .customerBox .cartInfo .carInfoList p {
  display: flex;
  justify-content: space-between;
  padding: 1em 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}
#customer .customerBox .cartInfo .carInfoList p span {
  font-size: 120%;
  margin-left: .5em;
}
#customer .customerBox .cartInfo .carPay a {
  display: block;
  padding: 10px;
  font-size: 1.6em;
  text-align: center;
  color: white;
  background: #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#customer .customerBox .cartInfo .carPay a:hover {
  background: var(--color);
}
#customer .layui-row {
  display: flex;
  flex-wrap: wrap;
}
#customer .qtyflex {
  display: flex;
}
#customer .qtyflex input {
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  text-align: center;
  padding: 0 5px;
}
#customer .qtyflex button {
  padding: 0;
  width: 24px;
  flex-shrink: 0;
}
#customer .qtyflex button i {
  font-size: 12px;
}
#customer .qtyflex button:hover {
  border-color: #d2d2d2;
  color: var(--color);
}
@media screen and (max-width: 1000px) {
  #customer .customerBox .customerSidebar {
    margin-right: 0;
    padding: 10px;
    width: 100%;
    position: static;
  }
  #customer .customerBox .customerContent {
    width: 100%;
    margin-top: 20px;
  }
  #customer .customerBox {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #customer .customerBox .customerContent .ContentBoxWhite {
    padding: 10px;
  }
  #customer {
    padding: 60px 0;
  }
  #customer .underline {
    padding-bottom: .5em;
  }
  #customer .customerBox .customerSidebar dl dt {
    font-size: 13px;
  }
  #customer .customerBox .customerSidebar dl dd a {
    padding: 4px 0;
  }
  #customer .customerBox .customerSidebar dl {
    margin-top: 1.5em;
  }
  #customer h6.customerTitle {
    font-size: 14px;
  }
  #customer .layui-form .layui-form-item label {
    padding: 3px;
    text-align: left;
    width: 100%;
  }
  #customer .layui-form .layui-form-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #customer .layui-form .layui-form-item .layui-form-radio > i {
    font-size: 14px;
  }
  #customer .layui-form .layui-form-item .layui-form-radio {
    margin-top: 0;
  }
  #customer .layui-form .layui-form-item .layui-input-block {
    margin-left: 0;
    min-height: auto;
  }
}
#customer .APPLY {
  display: flex;
}
#customer .APPLY span {
  width: 55px;
  background: #222;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  cursor: hand;
}
div.layui-layer-tips {
  background: white;
  font-size: 12px;
  color: black;
  -moz-box-shadow: 0 0 8px rgba(0,0,0,.1);
  -o-box-shadow: 0 0 8px rgba(0,0,0,.1);
  box-shadow: 0 0 8px rgba(0,0,0,.1);
}
.layui-layer-tips div.layui-layer-content {
  padding: 0;
  color: inherit !important;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background: inherit;
  padding: 5px 10px;
}
.layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT {
  border-right-color: white !important;
}
.layui-layer-tips div.layui-layer-btn {
  padding: 0;
}
.layui-layer-tips .layui-layer-btn a {
  padding: 0 10px;
  line-height: 22px;
  height: 22px;
  margin: 0;
}
.layui-layer-tips .layui-layer-btn a:first-child {
  margin-right: 1em;
}

@media screen and (max-width: 1500px){
  #customer .ui.container {
    width: 1000px;
  }

}
@media screen and (max-width: 1050px){
  #customer .ui.container {
    width: 700px;
  }
  #customer {
    padding: 40px 0;
  }
  #customer .assetsOrdersList .Item,
  #customer .assetsList .Item{
    width: 25%;
    margin-top: 10px;
    padding: 15px;
  }
  #customer .assetsList .Item {
    margin-top: 0;
  }
  #customer .assetsOrdersList .Item i {
    font-size: 30px;
  }
  #customer .assetsOrdersList .Item span {
    font-size: 14px;
  }
  #customer .assetsList .Item strong {
    font-size: 24px;
  }
  #customer .assetsList .Item a {
    margin-top: 1em;
  }
  #customer .assetsList {
    margin-top: 10px;
  }
  #customer .orderList,#customer .orderList .info {
    zoom: .8;
  }
  #customer .orderList .orderMain .slide .orderMainBox {
    margin-top: 8px;
  }
  #customer .orderList .orderMain .slide,#customer .orderList .orderHead {
    padding: 10px;
  }
  #customer .customerBox .cartInfo {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

}

@media screen and (max-width: 700px){
  #customer .ui.container {
    width: 100%;
  }
  #customer .viewList .viewProgress {
    zoom: .7;
  }
  #customer .viewContent .viewInfo {
    width: 100%;
  }
  #customer .viewContent .viewBtn {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }
  #customer .viewContent {
    display: block;
  }
  #customer .orderInfo.customerText p {
    width: 100%;
    justify-content: space-between;
  }
  #customer .orderInfo.customerText p span {
    min-width: auto;
    margin-right: 5px;
  }
  .ui-message {
    min-width: auto;
    width: 90%;
  }
  #customer .orderList .money,
  #customer .orderList .operation{
    width: 32%;
  }
  #customer .orderList .orderHead > div, #customer .orderList .orderMainBox > div {
    padding: 0 5px;
  }
  #customer .messageList li {
    font-size: 11px;
  }
  #top_box .top-fr-icon-box > li > a span {
    display: inline;
  }
  .top-fr-icon-box > li, #top_box .currency_box {
    margin-right: 5px;
  }
  #top_box .top-fr-icon-box li > a > i, #top_box .top-fr-icon-box > li, #top_box .top-fr-icon-box > li > i, #top_box .top-fr-icon-box > li > a, #top_box .top-fr-icon-box > li .a {
    font-size: 12px;
  }
  #top_box .header-mobile-menu {
    padding: 2px 0;
  }
  #customer .orderList .orderMainBox {
    flex-wrap: wrap;
  }
  #customer .orderList .status {
    width: 15% !important;
  }
  #customer .orderList .orderMain .slide .orderMainBox > div {
    max-width: 85%;
    margin: 5px 0;
  }
  #customer .orderList .payment {
    width: 35%;
  }
  #customer .qtyflex input {
    min-width: 40px !important;
  }
  #customer .customerBox .customerContent .ContentBoxWhite {
    margin-bottom: 12px;
  }
  #customer .customerBox .cartInfo .carPay a {
    font-size: 1.2em;
  }
  #customer .orderEmpty span {
    font-size: 1.4em;
  }
  #customer .orderEmpty a {
    line-height: 36px;
    height: 36px;
  }
  #customer .orderEmpty {
    padding: 3em 1em;
  }
}
.content-404 {
  text-align: center;
  padding: 50px 15px;
  background: #f8f8f8;
}
.content-404 p {
  font-size: 14px;
  margin: 2em 0;
}
.customerFAQ ul li {
  display: flex;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.customerFAQ ul li .img {
  width: 15%;
  flex-shrink: 0;
  margin-right: 15px;
}
.customerFAQ ul li .content h6 {
  font-size: 16px;
  margin-bottom: 1em;
}
.customerFAQ ul li .content .text {
  font-size: 14px;
  line-height: 1.6;
  opacity: .6;
}
#customer .customerBox .customerContent .ContentBoxWhite .share ul li {
  margin-right: 1em;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #eee;
  color: #666;
  font-size: 14px;
  display: inline-block;
}
.product_list_2020 .common_pro_list1 li .pro_content,.product_list_2020 .plist_refine_down {
  font-size: 12px;
}
.product_list_2020 .common_pro_list1 li .discount {
  font-size: 12px;
}
.optionsZh {
  padding: 25px 15px;
  box-sizing: border-box;
}
.optionsZh * {
  box-sizing: border-box;
}
.layui-layer-content .optionsZh div.img {
  width: 35%;
  display: inline-block;
  vertical-align: middle;
  margin-right: -5px;
}
.layui-layer-content .optionsZh div.img img {
  max-width: 100%;
}
.optionsZh .img h6 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
}
.layui-layer-content .optionsZh .content {
  width: 65%;
  vertical-align: middle;
  padding-left: 5%;
  display: inline-block;
}
.optionsZh .content span.price {
  font-size: 18px;
  font-weight: bold;
  color: red;
}
.optionsZh .content .ophtml {
  margin: 20px 0;
}
.optionsZh .content .ophtml h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: .5em;
  display: block;
}
.optionsZh .content .ophtml ul {
  margin: -5px;
}
.optionsZh .content .ophtml ul li {
  padding: 5px;
  display: inline-block;
}
.optionsZh .content .ophtml ul li.noclick a{
  opacity: .7;
}
.optionsZh .content .ophtml ul li b {
  display: none !important;
  left: 10px !important;
  border: none;
  top: 100% !important;
  padding: 5px 10px !important;
  bottom: auto !important;
  opacity: 1 !important;
  white-space: nowrap !important;
}
.optionsZh .content .ophtml ul li:hover b {
  display: block !important;
}
.optionsZh .content .ophtml a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid #eee;
  font-size: 12px;
  cursor: pointer;
  cursor: hand;
}
.optionsZh .content .ophtml .btn {
  padding: 0;
}
.combined .combinedList ul li .SubShop a.link {
  padding: .3em;
}
.combined .combinedList ul li .changeOptions {
  display: block;
  padding: 5px;
  text-align: center;
}
.optionsZh .content .ophtml a.current {
  background: var(--color);
  color: white;
  border-color: var(--color);
}
.optionsZh .content .opButton {
  text-align: right;
}
.optionsZh .content .opButton button {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 5px;
  background: var(--color);
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  cursor: hand;
}
.combined .combinedList ul li .changeOptions {
  text-align: center;
  cursor: pointer;
  cursor: hand;
  font-size: 14px;
  color: var(--color);
}