:root {
  --main-color: #b11823;
  --sub-color: #cb333b;
}
.checkboxDiv {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}
.checkboxDiv input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  border: solid 1px #aeaeae;
}
.checkboxDiv input[type="checkbox"] {
  accent-color: var(--sub-color);
}
.reduceAdd,
.productReduceAdd {
  line-height: 3rem;
  height: 3.2rem;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  position: relative;
}
.reduceAdd .add,
.productReduceAdd .add,
.reduceAdd .reduce,
.productReduceAdd .reduce {
  display: inline-block;
  margin: 0 0.4rem;
  width: 3rem;
  height: 100%;
  position: relative;
  border: 1px #b9b9b9 solid;
  background-color: #f7f7f7;
  cursor: pointer;
  z-index: 0;
}
.reduceAdd .add:before,
.productReduceAdd .add:before,
.reduceAdd .reduce:before,
.productReduceAdd .reduce:before,
.reduceAdd .add:after,
.productReduceAdd .add:after,
.reduceAdd .reduce:after,
.productReduceAdd .reduce:after {
  content: "";
  display: block;
  background-color: #000;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.reduceAdd .add:hover,
.productReduceAdd .add:hover,
.reduceAdd .reduce:hover,
.productReduceAdd .reduce:hover {
  border-color: #242424;
  background-color: #242424;
}
.reduceAdd .add:hover:before,
.productReduceAdd .add:hover:before,
.reduceAdd .reduce:hover:before,
.productReduceAdd .reduce:hover:before,
.reduceAdd .add:hover:after,
.productReduceAdd .add:hover:after,
.reduceAdd .reduce:hover:after,
.productReduceAdd .reduce:hover:after {
  background-color: #fff;
}
.reduceAdd .reduce:before,
.productReduceAdd .reduce:before {
  width: 1rem;
  height: 0.2rem;
}
.reduceAdd .reduce:after,
.productReduceAdd .reduce:after {
  display: none;
}
.reduceAdd .add:before,
.productReduceAdd .add:before {
  width: 1rem;
  height: 0.2rem;
}
.reduceAdd .add:after,
.productReduceAdd .add:after {
  width: 0.2rem;
  height: 1rem;
}
.reduceAdd input,
.productReduceAdd input {
  font-family: var(--font-family-2);
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 3rem;
  height: 3.2rem;
  width: 6rem;
  font-weight: 400;
  border: 1px #b9b9b9 solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  background: #fff;
  color: #333;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.reduceAdd input::-webkit-outer-spin-button,
.productReduceAdd input::-webkit-outer-spin-button,
.reduceAdd input::-webkit-inner-spin-button,
.productReduceAdd input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.reduceAdd input:focus,
.productReduceAdd input:focus {
  -webkit-box-shadow: 0 0 10px 0 var(--sub-color);
          box-shadow: 0 0 10px 0 var(--sub-color);
  border-color: var(--sub-color);
  z-index: 9;
}
.common-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 3.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #c6c6c6;
}
.common-search {
  position: relative;
  max-width: 64rem;
  width: 100%;
}
.common-search .text-input {
  width: 100%;
  color: #666;
  font-size: 2.1rem;
  background: #fff;
  height: 5.5rem;
  padding-right: 10rem;
  padding-left: 2.5rem;
  line-height: 5.3rem;
  border: solid 1px #d6d5d3;
  font-family: var(--font-family-1);
}
.common-search .btn {
  top: 0;
  right: 0;
  width: 8rem;
  height: 5.5rem;
  line-height: 5rem;
  position: absolute;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background: var(--sub-color);
}
.common-search .btn svg {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  vertical-align: middle;
}
.common-search .btn:hover {
  background: var(--main-color);
}
.orders {
  background: #f7f7f7;
  padding-top: 5.5rem;
  padding-bottom: 8rem;
}
.orders .list {
  padding-top: 4rem;
}
.orders .list li {
  background: #fff;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.orders .list li .order-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  padding-bottom: 1.2rem;
  padding-right: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #ebebeb;
}
.orders .order-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2rem;
  padding-right: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.orders .order-list .div-1 {
  width: 75%;
}
.orders .order-list .div-1 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.orders .order-list .div-1 dt {
  width: 21%;
}
.orders .order-list .div-1 dd {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--font-family-2);
  padding-left: 7rem;
}
.orders .order-list .div-1 dd .title-1 {
  color: #555;
}
.orders .order-list .div-1 dd .title-2 {
  font-size: 3.2rem;
  line-height: 4rem;
  margin-top: 2rem;
}
.orders .order-list .div-1 dd .price {
  font-size: 3.2rem;
  color: var(--sub-color);
}
.orders .order-list .div-2,
.orders .order-list .div-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.orders .order-list .div-2 {
  width: 10%;
}
.orders .order-list .div-2 span {
  text-align: center;
  padding: 0 1rem;
  min-width: 5rem;
  background: #f7f7f7;
  line-height: 3rem;
  height: 3.2rem;
  display: inline-block;
  border: solid 1px #b9b9b9;
}
.orders .order-list .div-3 {
  width: 15%;
}
.orders .order-list .btn-1,
.orders .order-list .btn-2,
.orders .order-list .btn-3 {
  font-family: var(--font-family-2);
  font-size: 2rem;
  width: 100%;
  color: #fff;
  display: block;
  text-align: center;
  height: 4.4rem;
  line-height: 4.4rem;
  background: #0da318;
}
.orders .order-list .btn-2 {
  background: var(--sub-color);
}
.orders .order-list .btn-3 {
  color: #333;
  background: #f7f7f7;
}
@media (max-width: 1024px) {
  .orders {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .orders .index-title {
    font-size: 30px;
    line-height: 30px;
    text-align: left;
    padding-bottom: 20px;
  }
  .orders .common-box {
    display: block;
  }
  .orders .list {
    padding-top: 0px;
  }
  .orders .order-list {
    padding-right: 0;
  }
  .orders .order-list .div-1 dd {
    padding-left: 15px;
  }
  .orders .order-list .div-1 dd .title-2 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }
  .orders .order-list .div-1 dd .price {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .orders .list li .order-form {
    display: block;
  }
  .orders .order-list {
    display: block;
  }
  .orders .order-list .div-1 {
    width: 80%;
    float: left;
  }
  .orders .order-list .div-2 {
    width: 15%;
    float: right;
  }
  .orders .order-list .div-3 {
    width: 100%;
  }
}
.shoppingEnd {
  padding: 17rem 0;
  text-align: center;
}
.shoppingEnd .icon svg {
  width: 14rem;
  height: 14rem;
}
.shoppingEnd .title-1,
.shoppingEnd .title-2 {
  font-weight: normal;
  font-family: var(--font-family-2);
}
.shoppingEnd .title-1 {
  font-size: 8.4rem;
  line-height: 9rem;
  padding-top: 2.5rem;
}
.shoppingEnd .title-2 {
  font-size: 3.2rem;
  padding-top: 1rem;
}
.shoppingEnd .index-button {
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .shoppingEnd {
    padding: 120px 0 50px 0;
  }
  .shoppingEnd .title-1 {
    font-size: 40px;
    line-height: 40px;
  }
  .shoppingEnd .title-2 {
    font-size: 18px;
  }
}
.shopping-list .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 192rem;
}
.shopping-list .left {
  width: 54%;
  padding-bottom: 3rem;
  padding-right: 4.5rem;
  padding-top: 6rem;
  padding-left: 17rem;
}
.shopping-list .left .index-title {
  font-size: 5.5rem;
  text-align: left;
}
.shopping-list .left .index-title .num {
  color: #fff;
  margin-left: 1rem;
  margin-top: 0.4rem;
  vertical-align: top;
  padding: 0 1.5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 3.8rem;
  display: inline-block;
  background: var(--sub-color);
}
.shopping-list .right {
  width: 46%;
  color: #000;
  font-size: 2.4rem;
  font-family: var(--font-family-2);
  padding-left: 5rem;
  background: #f7f7f7;
  padding-top: 6rem;
  padding-right: 17rem;
}
.shopping-list .right .text-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: solid 1px #d6d6d6;
}
.shopping-list .right .text-1 .price {
  color: var(--sub-color);
}
.shopping-list .right .text-1:first-child {
  border-top: 0;
}
.shopping-list .right .button {
  margin-top: 4rem;
  font-size: 2.9rem;
  font-size: 2.8;
  height: 7.8rem;
  line-height: 7.6rem;
  text-align: center;
  border: solid 1px var(--sub-color);
}
.shopping-list .right .button a {
  display: block;
  color: var(--sub-color);
  -webkit-transition: 334ms ease;
  transition: 334ms ease;
}
.shopping-list .right .button:hover a {
  color: #fff;
  background: var(--sub-color);
}
.shopping-list .right .button-2 {
  margin-top: 5rem;
}
.shopping-list .right .button-2 svg {
  margin-right: 1rem;
  vertical-align: top;
  fill: var(--sub-color);
}
.shopping-list .right .button-2 i {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 1rem;
  margin-left: 1rem;
  vertical-align: top;
  display: inline-block;
  border-left: solid 0.4rem #333333;
  border-bottom: solid 0.4rem #333333;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.shopping-list .right .button-2:hover i {
  border-color: var(--main-color);
}
@media (max-width: 1024px) {
  .shopping-list {
    padding: 120px 0 50px 0;
  }
  .shopping-list .container {
    display: block;
  }
  .shopping-list .left,
  .shopping-list .right {
    width: 100%;
    padding: 0;
  }
  .shopping-list .right {
    padding: 30px;
    margin-top: 30px;
  }
  .shopping-list .left .index-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 30px;
  }
  .shopping-list .left .index-title .num {
    margin-top: 0;
  }
}
.cart-index .toolbar {
  padding-top: 2rem;
  border-bottom: solid 1px #dadada;
  padding-bottom: 1.3rem;
  color: #262b30;
}
.cart-index .toolbar span {
  padding-left: 1rem;
  font-family: var(--font-family-2);
}
.listOrder {
  color: #333;
  overflow: hidden;
}
.listOrder a {
  color: #666;
}
.listOrder a:hover {
  color: var(--main-color);
}
.listOrder dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.listOrder .item:first-child {
  border-top: 0;
}
.listOrder .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 0;
  border-top: 1px solid #dadada;
  background: #fff;
}
.listOrder .item dd {
  width: 30%;
}
.listOrder .item dd .pic {
  margin-left: 1rem;
}
.listOrder .item dt {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 2rem;
  font-family: var(--font-family-2);
}
.listOrder .item dt .title-1 {
  color: #555;
}
.listOrder .item dt .title-2 {
  font-size: 3.2rem;
  line-height: 4rem;
  margin-top: 1.5rem;
}
.listOrder .item dt .title-2 a {
  color: #000;
}
.listOrder .item dt .title-2 a:hover {
  color: var(--main-color);
}
.listOrder .item dt .text-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.listOrder .item dt .price {
  font-size: 3.2rem;
  color: var(--sub-color);
}
.listOrder .item.checkedItem .manjian {
  background-color: #f48719;
  color: #fff;
}
.listOrder .item.checkedItem .manjian:after {
  content: "";
  background: #f30;
  background: url(../images/icon/arrow.png) 0 0 no-repeat;
}
@media (max-width: 1024px) {
  .listOrder .item dt .title-2 {
    font-size: 16px;
    line-height: 20px;
  }
  .listOrder .item dt .price {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .listOrder .item dt .title-2 {
    margin-top: 5px;
  }
  .listOrder .item dt .text-bot {
    display: block;
  }
  .listOrder .reduceAdd {
    margin-top: 10px;
  }
}
.pop-up {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}
.pop-up .bg {
  top: 50%;
  left: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  background: #fff;
  padding: 5.5rem;
  max-width: 78rem;
  position: absolute;
}
.pop-up .bg .close {
  right: 3rem;
  top: 3rem;
  position: absolute;
}
.pop-up .bg .close svg {
  width: 3rem;
  height: 3rem;
}
.pop-up .bg .close:hover svg {
  fill: var(--sub-color);
}
.pop-up .index-title {
  text-align: center;
}
.pop-up .form li {
  margin-top: 1.5rem;
}
.pop-up .form li a {
  color: var(--sub-color);
}
.pop-up .form li input[type="checkbox"] {
  accent-color: var(--sub-color);
}
.pop-up .form li .form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pop-up .form li .form-flex .form-1 {
  width: 49%;
}
.pop-up .form li .form-flex-2 .form-1 {
  width: 100%;
}
.pop-up .form li .button {
  font-size: 2.4rem;
  line-height: 6rem;
  height: 6rem;
  color: #fff;
  display: block;
  text-align: center;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  background: var(--sub-color);
  font-family: var(--font-family-2);
}
.pop-up .form li .button:hover {
  background: var(--main-color);
}
.pop-up .title {
  color: #08060b;
  display: block;
  padding-bottom: 1rem;
  font-size: 2.5rem;
}
.pop-up .title i {
  color: var(--sub-color);
  font-style: normal;
}
.pop-up .text-input,
.pop-up .text-select,
.pop-up .text-textarea {
  width: 100%;
  color: #666;
  font-size: 1.8rem;
  font-family: var(--font-family-1);
  background: #fcfcfb;
  padding: 0 2.6rem;
  border-radius: 0.5rem;
  height: 6.2rem;
  line-height: 6rem;
  border: solid 1px #d6d5d3;
}
.pop-up .text-textarea {
  padding: 2rem 2.6rem;
  line-height: 2.4rem;
  height: 12rem;
}
.pop-up .form-2 {
  margin-top: 1rem;
}
@media (max-width: 737px) {
  .pop-up .index-title {
    font-size: 24px;
  }
  .pop-up .bg {
    height: 100%;
    overflow: auto;
    max-width: 100%;
    padding: 30px 20px;
  }
  .pop-up .form li .form-flex {
    display: block;
    margin-top: 0!important;
  }
  .pop-up .form li .form-flex .form-1 {
    width: 100%!important;
    margin-top: 10px!important;
  }
}
