 * {
    margin: 0;
    padding: 0
}
li{ list-style: none;}
html,
body {
    height: 100%;
}

a {
    color: #333;
    text-decoration: none;
}
.banner {
    height: 20%;
    background-color: skyblue;
}

.wrap {
    height: 80%;
    display: flex;
}

.nav {
    width: 20%;
    background-color: #f5f5f5;
}

.nav span {
    display: block;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.nav .active {
    background-color: #fff;
    font-weight: bold;
}

.content {
    width: 80%;
    box-sizing: border-box;
    padding-left: 10px;
    height: 100%;
    overflow: auto;
}
#detail {
    width: 90%;
    margin: auto;
    padding-top: 70px;
    box-sizing: border-box;
    padding-left: 10px;
    height: 100%;
    overflow: auto;
}

.info-list {
    display: none;
}

.info-list li {
    text-align: center;
    padding: 10px;
}

.info-list li {
    width: 25%;
    float: left;
}

.info-list li .img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    padding-top: 100%;
}

.info-list li .right h3 {
    font-size: 16px;
    margin: 0;
    padding-bottom: 10px;
}

.info-list li p {
    font-size: 12px;
    color: #999;
    margin: 0;
    padding-bottom: 3px;
}

.cancel {
    display: none;
}

.foot {
    background-color: #ccc;
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #fff;
    z-index: 10;
}

.order {
    width: 80%;
    height: 45px;
    line-height: 45px;
    background-color: #565656;
    box-sizing: border-box;
    padding: 0 10px;
    padding-left: 65px;
    position: relative;
}

.order .icon {
    position: absolute;
    left: 10px;
    width: 50px;
    height: 50px;
    top: -11px;
    background: url(./icon.png) no-repeat center;
    background-size: contain;
}

.order i {
    color: #01d560;
    font-size: 14px;
    padding: 2px;
    font-style: normal;
}

.submit-btn {
    width: 20%;

    text-align: center;
    height: 45px;
    line-height: 45px;
    background-color: #01d560;
}

.detail-box,
.order-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.detail-box .info {
    position: absolute;
    width: 100%;
    height: 90%;
    bottom: 0;
    background-color: #fff;
    transform: translateY(100%);
    transition: 0.3s;
}

.info-img {
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./img.png);
    position: relative;
}

.info-img i {
    position: absolute;
    font-size: 16px;
    right: 10px;
    top: 10px;
}

.info-price {
    padding: 10px 20px;
    border-top: 1px #f5f5f5 solid;
}

.info-price div {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-price div input {
    width: 90%;
    border: 1px #ccc solid;
    padding: 5px;
    border-radius: 4px;
}

.btn-box {
    text-align: center;
}

.btn-box .btn {
    width: 70%;
}

#list1 {
    display: block;
}

.order-list {
    position: absolute;
    bottom: 36px;
    width: 100%;
}

.order-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    font-size: 14px;
}

.order-list .bar {
    background-color: bisque;
}

.red {
    color: crimson;
    font-size: 16px;
}

.small {
    color: #999;
    font-size: 10px;
    text-decoration: line-through;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .slider .slider-pointer {
    position: absolute;
    bottom: 5px;
    color: #fff;
    list-style: none;
    padding: 0;
    z-index: 999;
  }
  .slider .slider-pointer li {
    display: inline-block;
    margin: 0 15px;
    width: 10px;
    height: 10px;
    border-radius: 15px;
    background-color: #ffffff;
    opacity: 0.85;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 320ms ease;
  }
  .slider .slider-pointer li:hover {
    background-color: #e30006;
  }
  .slider .slider-pointer li.active {
    background-color: #b00005;
  }
  .slider .slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .slider .slider-inner .item {
    width: 100%;
    height: 100%;
    float: left;
  }
  .slider .slider-inner .img {
    width: 100%;
    height: 100%;
  }
  .slider .slider-control {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 999;
    border-radius: 30px;
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    background-color: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    top: 40%;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 320ms ease;
  }
  .slider .slider-control:hover {
    opacity: 0.65;
    background-color: #b00005;
  }
  .slider .slider-control:active {
    opacity: 0.85;
  }
  .slider .slider-control.prev {
    display: none;
    left: 20px;
  }
  .slider .slider-control.next {
    display: none;
    right: 20px;
  }
  .slider:hover .slider-control.prev {
    display: block;
    left: 20px;
  }
  .slider:hover .slider-control.next {
    display: block;
    right: 20px;
  }

  .back_bar{
	background-color: #faa514;
    color: #fff;
    z-index: 99;
    text-align: center;
    position: fixed;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    width: 100%;
}
.back_bar img{
	position: absolute;
    height: 18px;
    top: 16px;
    left: 15px;
    }
  .list-inline li,.list-inline a{display: none;}
  .list-inline .next-page{text-align: center;display: block !important; border: 1px #eee solid;background-color: #eee;}
  .next-page a{display: block;}