/**
 * 描述：购物车
 * 
 */
@charset "utf-8";
/*F码*/
#container-fcode {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#BF000000', endColorstr='#BF000000');
  background: rgba(0, 0, 0, 0.75);
}
#container-fcode .fcode-bg {
  position: absolute;
  z-index: auto;
  top: 50%;
  left: 50%;
  margin: -7rem auto auto -6rem;
  width: 12rem;
  height: 14rem;
  background-image: url(../images/fcode.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}
#container-fcode .fcode-bg .con {
  display: block;
  padding: 3rem 1rem 0 1rem;
  text-align: center;
  color: #ffea99;
}
#container-fcode .fcode-bg .con h3 {
  font-size: 0.72rem;
  line-height: 1.4rem;
  font-weight: 600;
  text-shadow: 0.05rem 0.05rem 0 rgba(71, 4, 5, 0.5);
}
#container-fcode .fcode-bg .con h5 {
  font-size: 0.6rem;
  line-height: 0.9rem;
  text-shadow: 0.05rem 0.05rem 0 rgba(71, 4, 5, 0.5);
}
#container-fcode .fcode-bg .con input[type='text'] {
  font-size: 0.8rem;
  line-height: 1.2rem;
  padding: 0.2rem;
  width: 9rem;
  height: 1.2rem;
  border: none;
  border-radius: 0.3rem;
  margin-top: 0.7rem;
  text-align: center;
}
#container-fcode .fcode-bg .con .submit {
  display: inline-block;
  background: #ffce55;
  font-size: 0.8rem;
  line-height: 1.6rem;
  width: 7rem;
  height: 1.6rem;
  margin: 0.8rem auto 0 auto;
  border-radius: 0.4rem;
  color: #e9573e;
  font-weight: 600;
  box-shadow: 0 0.1rem 0 rgba(150, 40, 4, 0.5);
}
#container-fcode.out {
  content: ' animation: optionBlockOut 1s ease-in-out forwards; -webkit-animation:optionBlockOut 1s ease-in-out forwards;';
}

@keyframes optionBlockOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes optionBlockOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}

/*购物车*/
#cart-list-wp {
  margin-bottom: 2.5rem;
}
.wtm-cart-container {
  display: block;
  clear: both;
  background-color: #fff;
  margin-bottom: 0.5rem;
  border: solid #eee;
  border-width: 0.05rem;
}
.wtm-cart-store {
  display: block;
  border-bottom: solid 0.05rem #eee;
}
.wtm-cart-store dt {
  position: relative;
  z-index: 1;
  display: block;
  height: 0.9rem;
  padding: 0.5rem;
  font-size: 0.7rem;
  line-height: 0.9rem;
  font-weight: 600;
}
.wtm-cart-store dt .store-check {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.2rem;
}
.wtm-cart-store dt i.icon-store {
  display: inline-block;
  width: 0.8rem;
  height: 0.9rem;
  margin-right: 0.2rem;
  vertical-align: middle;
  background: url(../images/store_b.png) no-repeat 50% 50%;
  background-size: 90%;
  opacity: 0.8;
}
.wtm-cart-store dt .handle {
  display: block;
  height: 0.9rem;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border-left: solid 0.05rem #eee;
  background-color: #fcfcfc;
}
.wtm-cart-store dt .handle a {
  color: #555;
  line-height: 0.9rem;
  font-size: 0.6rem;
}
.wtm-cart-store dt .handle a i {
  display: inline-block;
  vertical-align: top;
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.1rem;
}
.wtm-cart-store dt .handle a.voucher i {
  background-image: url(../images/mcc_08_b.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 75%;
  opacity: 0.65;
}

.wtm-cart-store dd {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  height: 0.9rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.55rem;
  line-height: 0.9rem;
  border-top: solid 0.05rem #eee;
  color: #555;
}
.wtm-cart-store dd .arrow-down {
  position: absolute;
  z-index: 1;
  top: 0.15rem;
  right: 0.3rem;
  display: block;
  width: 0.8rem;
  height: 0.9rem;
  background-image: url(../images/arrow_down_b.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50%;
  opacity: 0.5;
}
.wtm-cart-store dd img {
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.1rem;
}
.wtm-cart-store dd em {
  position: absolute;
  z-index: 1;
  top: 0.3rem;
  left: 0.5rem;
  display: block;
  height: 0.5rem;
  padding: 0.1rem 0.2rem;
  background: #36c88e;
  font-size: 0.45rem;
  line-height: 0.5rem;
  color: #fff;
  border-radius: 0.1rem;
}
.wtm-cart-store dd span {
  display: block;
  clear: both;
  margin: 0 0.5rem 0 2rem;
}
.wtm-cart-item {
  background-color: #fff;
  border-bottom: solid 0.05rem #eee;
}
.wtm-cart-item li {
  display: block;
  position: relative;
  z-index: 1;
  margin-left: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: solid #eee 0.05rem;
}
.wtm-cart-item li:last-child {
  border: none;
}
.wtm-cart-item li .goods-check {
  position: absolute;
  top: 1.2rem;
}
.wtm-cart-item li .goods-pic {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.2rem;
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 1.1rem;
  border: solid 0.05rem #eee;
  border-radius: 0.2rem;
}
.wtm-cart-item li .goods-pic a {
  display: block;
  width: 100%;
  height: 100%;
}
.wtm-cart-item li .goods-pic a img {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
}
.wtm-cart-item li .goods-content {
  display: block;
  vertical-align: top;
  height: 2.2rem;
  margin: 0 2rem 0 4.5rem;
  position: relative;
  z-index: 1;
}
.wtm-cart-item li .goods-content dt.goods-name {
  display: block;
}
.wtm-cart-item li .goods-content dt.goods-name a {
  display: block;
  height: 1.4rem;
  font-size: 0.55rem;
  color: #111;
  line-height: 0.7rem;
  overflow: hidden;
}
.wtm-cart-item li .goods-content dd.goods-type {
  overflow: hidden;
  white-space: nowrap;
  width: 70%;
  height: 0.9rem;
  font-size: 0.45rem;
  line-height: 0.9rem;
  color: #999;
  text-overflow: ellipsis;
}
.wtm-cart-item li .goods-del {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0.3rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.wtm-cart-item li .goods-del a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/del_b.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 60%;
  opacity: 0.4;
}
.wtm-cart-item li .goods-subtotal {
  display: block;
  /*height: 1rem;*/
  margin: 0 0.5rem 0 4.5rem;
  line-height: 1rem;
  font-size: 0.6rem;
  position: relative;
  z-index: 1;
}
.wtm-cart-item li .goods-subtotal .goods-price {
  color: #ff1558;
  font-size: 0.55rem;
  font-weight: 600;
}
.wtm-cart-item li .goods-subtotal .goods-price em {
  font-size: 0.6rem;
}
.wtm-cart-item li .goods-subtotal .goods-sale {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.1rem;
}
.wtm-cart-item li .goods-subtotal .goods-sale em {
  display: inline-block;
  vertical-align: top;
  height: 0.7rem;
  padding: 0 0.1rem;
  margin-top: 0.1rem;
  font-size: 0.45rem;
  color: #fff;
  line-height: 0.7rem;
  background-color: #ff1558;
  border-radius: 0.15rem;
}
.wtm-cart-item li .goods-subtotal .goods-sale em i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.1rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #ff1558 url(../images/mobile_w.png) no-repeat 50% 50%;
  background-size: 80%;
}
.wtm-cart-item li .value-box {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.wtm-cart-item li .goods-num {
  font-size: 0.5rem;
  line-height: 1rem;
  position: absolute;
  z-index: 1;
  top: 2.7rem;
  right: 1rem;
}
.wtm-cart-item li .goods-num em {
  font-size: 0.6rem;
  font-weight: 600;
  margin: 0 0.2rem;
}
.wtm-cart-item li .goods-gift {
  display: block;
  clear: both;
  padding: 0.2rem;
  margin: 0.4rem 0.5rem 0 0;
  border: dashed 1px #eee;
  background-color: #fcfcfc;
}
.wtm-cart-item li .goods-gift span {
  display: block;
  font-size: 0.55rem;
  line-height: 0.9rem;
  height: 0.9rem;
  border-bottom: solid 0.05rem #eee;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  color: #888;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wtm-cart-item li .goods-gift span:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wtm-cart-item li .goods-gift span em {
  display: inline-block;
  height: 0.5rem;
  vertical-align: middle;
  padding: 0.1rem 0.2rem;
  margin-right: 0.2rem;
  background: #bbb;
  font-size: 0.5rem;
  line-height: 0.5rem;
  color: #fff;
  border-radius: 0.1rem;
}

.wtm-cart-item .buy-item .goods-pic {
  left: 0;
}
.wtm-cart-item .buy-item .goods-content {
  margin: 0 0.5rem 0 3.5rem;
}
.wtm-cart-item .buy-item .goods-subtotal {
  margin: 0 0.5rem 0 3.5rem;
}
.wtm-cart-item .buy-item .notransport {
  position: absolute;
  z-index: 3;
  top: 0;
  left: -0.5rem;
  right: 0;
  bottom: 0;
  display: none;
  text-align: center;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#E5F5F5F5', endColorstr='#E5F5F5F5');
  background: rgba(245, 245, 245, 0.9);
}
.wtm-cart-item .buy-item .notransport p {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  line-height: 1rem;
  color: #ff1558;
}

.wtm-cart-bottom {
  position: fixed;
  z-index: 7;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-top: solid 0.05rem #eee;
}
.wtm-cart-bottom .all-check {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  left: 0.5rem;
}
.wtm-cart-bottom .total {
  display: block;
  float: left;
  text-align: right;
  width: 75%;
}
.wtm-cart-bottom .total-money {
  height: 1rem;
  margin-right: 1rem;
  padding: 0.5rem 0;
  font-size: 0;
  line-height: 1rem;
}
.wtm-cart-bottom .total-money dt {
  display: inline-block;
  font-size: 0.6rem;
}
.wtm-cart-bottom .total-money dd {
  display: inline-block;
  font-size: 0.55rem;
  color: #ff1558;
  font-weight: 600;
}
.wtm-cart-bottom .total-money dd em {
  font-size: 0.9rem;
}
.wtm-cart-bottom .check-out {
  display: block;
  float: right;
  width: 25%;
  height: 2rem;
  background-color: #ff1558;
}
.wtm-cart-bottom .check-out a {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: #fff;
  line-height: 2rem;
}

.wtm-cart-bottom.no-login {
  height: 5rem;
}
.wtm-cart-bottom.no-login .cart-nologin-tip {
  text-align: center;
  padding: 0.8rem;
  font-size: 0.6rem;
  line-height: 1rem;
  color: #ed5564;
}
.wtm-cart-bottom.no-login .cart-nologin-btn {
  display: block;
  text-align: center;
}
.wtm-cart-bottom.no-login .cart-nologin-btn .btn {
  padding: 0.2rem 0.8rem;
}

.wtm-cart-block {
  background: #fff;
  display: block;
}
.wtm-cart-block a {
  display: block;
  overflow: hidden;
}
.wtm-cart-block i.icon-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0.5rem;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  background-image: url(../images/arrow_right_b.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  opacity: 0.5;
}
.wtm-cart-block h3 {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  left: 0.5rem;
  display: block;
  width: 5rem;
  height: 1rem;
  font-size: 0.7rem;
  line-height: 1rem;
  color: #555;
}
.wtm-cart-block h3 i {
  display: inline-block;
  vertical-align: middle;
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.1rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  opacity: 0.7;
}
.wtm-cart-block h3 i.pay {
  background-image: url(../images/mcc_01.png);
}
.wtm-cart-block h3 i.invoice {
  background-image: url(../images/mcc_08_b.png);
}
.wtm-cart-block h3 i.mobile {
  background-image: url(../images/mobile_b.png);
}
.wtm-cart-block .current-con {
  display: block;
  margin: 0 1.5rem 0 6rem;
  padding: 0.5rem 0;
  text-align: right;
  font-size: 0.6rem;
  color: #333;
  font-weight: 600;
  height: 0.8rem;
}
.wtm-cart-block .tip-con {
  display: block;
  margin: 0 0.5rem 0 5rem;
  padding: 0.5rem 0;
  text-align: right;
  font-size: 0.5rem;
  color: #ff1558;
  line-height: 0.9rem;
}
.wtm-cart-block .inp-tel {
  display: block;
  width: 80%;
  height: 1.2rem;
  padding: 0.2rem;
  margin: 0.1rem auto 0 auto;
  border: solid #ff1558 0.05rem;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2rem;
  background-color: #fef6f7;
  color: #000;
}

/*购物车默认收货人地址*/
.wtm-cart-add-default {
  position: relative;
  z-index: 1;
  width: 100%;
}
.wtm-cart-add-default a {
  color: #555;
}
.wtm-cart-add-default i.icon-add {
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0.5rem;
  display: block;
  width: 0.8rem;
  height: 0.9rem;
  background-image: url(../images/location_b.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}
.wtm-cart-add-default dl {
  margin: 0 0 0 1.6rem;
  padding: 0.5rem 0;
}
.wtm-cart-add-default dt {
  display: block;
  height: 0.9rem;
  font-size: 0.7rem;
  line-height: 0.9rem;
}
.wtm-cart-add-default dt span {
  margin-left: 0.3rem;
  font-weight: 600;
}
.wtm-cart-add-default dd {
  display: block;
  min-height: 0.9rem;
  max-height: 1.6rem;
  font-size: 0.6rem;
  line-height: 0.9rem;
}

/*购物车选择地址*/
.wtm-cart-add-list {
  background: #fff;
}
.wtm-cart-add-list li {
  position: relative;
  z-index: 1;
  display: block;
  border-bottom: solid #eee 0.05rem;
}
.wtm-cart-add-list li i {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0.5rem;
  display: none;
  width: 0.7rem;
  height: 0.7rem;
  background-image: url(../images/ok.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}
.wtm-cart-add-list li.selected i {
  display: block;
}
.wtm-cart-add-list dl {
  margin: 0 0 0 0.5rem;
  padding: 0.5rem 0;
  color: #666;
}
.wtm-cart-add-list li.selected dl {
  margin-left: 1.8rem;
}
.wtm-cart-add-list dt {
  display: block;
  height: 0.9rem;
  margin-bottom: 0.2rem;
  font-size: 0.6rem;
  line-height: 0.9rem;
}
.wtm-cart-add-list dt span {
  margin-right: 0.3rem;
  font-size: 0.7rem;
  color: #111;
}
.wtm-cart-add-list dt span:last-child {
  font-weight: 600;
}
.wtm-cart-add-list dt sub {
  display: inline-block;
  background-color: #ff1558;
  font-size: 0.45rem;
  line-height: 0.6rem;
  padding: 0 0.1rem;
  margin-left: 0.1rem;
  border-radius: 0.1rem;
  color: #fff;
}
.wtm-cart-add-list dd {
  display: block;
  min-height: 0.7rem;
  max-height: 1.4rem;
  font-size: 0.55rem;
  line-height: 0.7rem;
}

.wtm-cart-subtotal {
}
.wtm-cart-subtotal dl {
  position: relative;
  z-index: 1;
  height: 1rem;
  padding: 0.4rem 0 0;
  font-size: 0;
}
.wtm-cart-subtotal dt {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  left: 0.4rem;
  display: block;
  width: 50%;
  height: 1rem;
  font-size: 0.6rem;
  line-height: 1rem;
}
.wtm-cart-subtotal dd {
  height: 1rem;
  margin: 0 0.5rem 0 50%;
  text-align: right;
  font-size: 0.6rem;
  line-height: 1rem;
}
.wtm-cart-subtotal .message {
  position: relative;
  z-index: 1;
  display: block;
  height: 1.6rem;
  padding-top: 0.4rem;
}
.wtm-cart-subtotal .message input[type='text'] {
  display: block;
  width: 91%;
  height: 0.9rem;
  padding: 2%;
  margin: 0 2.5%;
  background-color: #f0f0f0;
  border: none;
  border-radius: 0.2rem;
  line-height: 0.9rem;
  font-size: 0.6rem;
}
.wtm-cart-subtotal .store-total {
  padding: 0.5rem;
  text-align: right;
  font-size: 0.6rem;
  line-height: 0.9rem;
}
.wtm-cart-subtotal .store-total span {
  font-size: 0.45rem;
  color: #ff1558;
}
.wtm-cart-subtotal .store-total span em {
  font-size: 0.6rem;
  font-weight: 600;
}

.wtm-cart-num {
  display: block;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.6rem;
  color: #000;
  line-height: 1rem;
}
.wtm-cart-num em {
  font-size: 1rem;
  color: #ff1558;
  font-weight: 600;
  display: inline-block;
  vertical-align: sub;
  margin: 0 0.2rem;
}
.wtm-inp-cart ul {
  background-color: transparent;
}
.wtm-inp-cart ul li {
  height: auto;
  margin: 0;
  background-color: transparent;
}
.wtm-inp-cart ul li .input-box {
  margin: 0;
}
.wtm-inp-cart ul li .input-box p {
  font-size: 0.55rem;
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  right: 0.5rem;
  color: #555;
}
.wtm-inp-cart ul li .input-box p em {
  font-size: 0.6rem;
  font-weight: 600;
  color: #000;
}
.wtm-inp-cart ul li .input-box .txt {
  margin-left: 0.5rem;
}
.wtm-inp-cart ul li .input-box .inp {
  width: 45%;
  background-color: #f5f5f5;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0.5rem 0 0.25rem;
  border-radius: 0.2rem;
}
.wtm-inp-cart ul li .input-box .select {
  float: right;
  width: auto;
  text-align: right;
  margin-right: 1.1rem;
}
.wtm-inp-cart ul li .input-box .arrow-down {
  right: 0.35rem;
}
.wtm-inp-cart .pay-btn {
  display: block;
  margin: 0.5rem 0 1rem 0;
}

/*购物车使用优惠券 积分低用*/
#rptVessel .input-box,
#points_show .input-box {
  display: block;
  height: 1.95rem;
  margin: 0 0 0 0.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  line-height: 1.95rem;
}
#rptVessel .input-box input[type='checkbox'],
#points_show .input-box input[type='checkbox'] {
  display: none;
}
#rptVessel .input-box p,
#points_show .input-box p {
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  right: 0.5rem;
  display: block;
  height: 0.9rem;
  font-size: 0.6rem;
  color: #000;
  line-height: 0.9rem;
}

#points_show .input-box p em {
  font-size: 0.6rem;
  font-weight: 600;
  color: #ff1558;
}
#points_show .input-box {
  color: #333;
}
.buy-point-input input[type='text'] {
  border: 1px solid #ccc;
  width: 2rem;
  height: 0.6rem;
  padding: 0.2rem;
}
.points_height {
  height: 3.95rem;
}

/*支付密码帮助*/
.input-box-help {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.6rem;
  display: block;
  width: 2.2rem;
  height: 1.5rem;
  text-align: center;
  font-size: 0.55rem;
  color: #000;
}
.input-box-help i {
  display: block;
  vertical-align: top;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto 0.1rem auto;
  text-align: center;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: #bbb;
  font-weight: bold;
  border: solid 0.05rem #ccc;
  border-radius: 100%;
}

/*在线支付方式选择*/
.wtm-pay {
  display: block;
}
.wtm-pay .spacing-div {
  position: relative;
  z-index: 1;
  display: block;
  height: 1rem;
  margin: 0 0.5rem 1rem 0.5rem;
  border-bottom: solid #eee 0.05rem;
}
.wtm-pay .spacing-div span {
  position: absolute;
  z-index: 1;
  bottom: -0.3rem;
  left: 50%;
  display: block;
  width: 5rem;
  margin-left: -2.5rem;
  text-align: center;
  font-size: 0.55rem;
  line-height: 0.6rem;
  height: 0.6rem;
  background-color: #fff;
  color: #888;
}
.wtm-pay .pay-sel {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.wtm-pay label {
  float: left;
  width: 50%;
  height: 2rem;
  padding: 0.25rem 0;
  text-align: center;
  border: none !important;
}
.wtm-pay label input[type='radio'] {
  display: none;
}
.wtm-pay label span {
  display: inline-block;
  width: 5rem;
  height: 1.5rem;
  margin: 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  opacity: 0.5;
}
.wtm-pay label.checked span {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  filter: gray;
  opacity: 1;
}

.wtm-pay label span.wxpay {
  background-image: url(../images/wxpay.jpg);
}
.wtm-pay label span.paypal {
  background-image: url(../images/paypal.jpg);
}
.wtm-pay label span.alipay {
  background-image: url(../images/alipay.jpg);
}
.wtm-pay label span.cny {
  background-image: url(../images/rmbpay.png);
}
