.header {
    width: 100%;
    height: 62px;
    background-color: #fff;
    margin: 15px 0;
    padding: 16px 16px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.header .book {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    text-align: center;
}
.header .book img {
    width: 24px;
    height: 8px;
}
.header .rightBox {
    width: 88%;
    display: flex;
    justify-content: flex-start;
}
.header .rightBox .btn {
    font-size: 12px;
    color: #fff;
    background-color: #3560FF;
    width: 60px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 3px;
    margin:0 10px;
}
.header  .inputBox {
    width: 65%;
    height: 29px;
    border-radius: 29px;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.header  .inputBox img {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 16px;
}
.header  .inputBox input{
    width: 100%;
    height: 100%;
    padding-left: 16%;
    background: #F5F5F5;
    box-sizing: border-box;
    color: #666666;
    border-radius: 15px;
  
    font-size: 12px;
}
.header .screen {
    width: 75px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    background-color: #F6F7FC;
    font-size: 12px;
    color: #3560FF;
   
    border-radius: 3px;

}
.header .screen img {
    display: inline-block;
    width: 9px;
    height: 5.5px;
    margin-left: 5px;
}
.listBox {
    width: 90%;
    margin: 0 auto;
    padding-top: 8px;
    display: flex;
    justify-content: flex-start;
    /* justify-content: space-between; */
    flex-wrap:  wrap;
}
.listBox li {
    background-color: #fff;
    width: 30%;
    margin: 0 5px 15px;
    box-sizing: border-box;
    /* margin-bottom: 15px; */
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.listBox li .bookImg {
    width: 100%;
    height: 142px;
}
.listBox li .bookImg img {
    width: 100%;
    height: 100%;
}
.listBox li p {
    
    font-size: 14px;
    width: 100%;
    padding: 2px 3px;
    box-sizing: border-box;
    box-sizing: border-box;
}
.listBox li .new {
    color: #ED2B0E;
}
.listBox li .old{
   color: #A2B0B7; 
   text-decoration:line-through;
}
.listBox li  .school {
    font-size: 14px;
    color: #000;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow:hidden;
}
/* 弹窗 */
.dialog {
    background-color:#fff;
    left:0;
    position:absolute;
    bottom:0;
    width:100%;
    height: 556px;
    z-index:99999;
    display:none;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    padding: 15px;
    box-sizing: border-box;
}
.dialog .title {
    text-align: center;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}
.dialog .title span {
    color: #666666;
    font-size: 12px;
    float: right;
}
.dialog .smallTitle {
    width: 80px;
    font-size: 15px;
    color: #010101;
    font-weight: bold;
    text-align: center;
}
.dialog .smallTitle img {
    width: 24px;
    height: 8px;
}
.dialog .list {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.dialog .list span {
    width: 30%;
    height: 30px;
    font-size: 13px;
    color: #333333;
    background-color: #F6F7FB;
    text-align: center;
    line-height: 30px;
    margin-right: 12px;
    margin-bottom: 9px;
    border-radius: 5px;
    box-sizing: border-box;
}
.dialog .list .active {
    color: #3560FF;
    border: 1px solid #3560FF;
}
.dialog  .btn {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}
.dialog  .btn .reset {
    width: 30%;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin-right: 10px;
    background-color: #F6F7FB;
    border-radius: 5px;
}
.dialog  .btn .reset img {
    width: 12.5px;
    height: 12.5px;
    margin-right: 5px;
}
.dialog  .btn .sure {
    width: 60%;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background-color: #3560FF;
    border-radius: 5px;
}


.shop_icon {
    position: absolute;
    bottom: 25px;
    right: 5px;
    width: 20px;
    height: 20px;
}
.shop_icon img {
    width: 100%;
    height: 100%;
}