body {
    background: #F5F5F5;
}

.store_page {
    padding: 0 .16rem;
}

.store_page .navbar {
    display: flex;
    height: .44rem;
    align-items: center;
}

.store_page .navbar p {
    display: flex;
    align-items: center;
    flex: 1;
}

.store_page .navbar p>span {
    flex: 1;
    font-size: .2rem;
    text-align: center;
    padding-right: .18rem;
}

.store_page .navbar p a span {
    font-size: .2rem;
}

.store_page .search_index {
    margin-top: .1rem;
}

.store_page .search_index .search_for {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
}

.store_page .search_index .search_for span {
    padding-left: .1rem;
    font-size: .24rem;
    color: #EEEEEE;
}

.store_page .search_index .search_for input {
    border: 0;
    border-radius: 30px;
}

.store_page .search_index .screen {
    display: flex;
    /* align-items: center; */
    /* margin-right: 20px; */
    margin-top: .12rem;
}

.store_page .search_index .screen .al_left {
    font-size: 18px;
    border-radius: 4px;
    margin-right: 20px;
}

.store_page .search_index .screen .active{
    border-bottom: 4px solid #009A44;
}

.store_page .search_index .screen .screen_list {
    display: flex;
    align-items: center;
    /* column-gap: .3rem; */
    position: absolute;
    right: 24px;
}

.store_page .search_index .screen .screen_list p {
    color: #999999;
    font-size: 18px;
 margin-left: 0.3rem;

}

.options_list {
    display: flex;
    /* row-gap: .1rem; */
    flex-direction: column;
    margin-top: .12rem;
}
.options_list .item{
    margin-bottom: 0.1rem;
    box-shadow: 0px 0px 7px 1px #d8d5d5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: .08rem;
    border-radius: 8px;
}

.options_list .item a {
    display: flex;
    flex-direction: column;
    background: white;
    /*padding: .08rem;*/
    border-radius: 8px;
}
.options_list .item a:visited{
    color: #009A44;
}

.options_list .item a .top {
    display: flex;
    flex-direction: column;
    row-gap: .08rem;
    padding: .1rem 0;
    border-bottom: 1px solid #EAEAEA;
}
.options_list .item a .top .title {
    display: flex;
    /* align-items: center; */
}
.options_list .item a .top .title div{
    display: flex;
    align-items: center;
    font-size: 18px;
    justify-content: space-between;
    width: 100%;
}

.options_list .item a .top .span_p {
    display: flex;
    align-items: center;
    /* column-gap: .1rem; */
}

.options_list .item a .top .span_p span {
    padding: .04rem .08rem;
    color: #ABACAB;
    background: #F2F0F1;
    margin-right: 0.1rem;

}

.options_list .item a .top .title div p:nth-child(2n+1) {
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.options_list .item a .top .title div p:nth-child(2n) {
    color: #009A44;
    font-weight: bold;
    font-size: 16px;
}

.options_list .item a .bottom {
    padding-top: .08rem;
}

.options_list .item a .bottom p {
    display: flex;
    justify-content: space-between;
    color: #999999;
    font-size: 15px;
}

#loading {
    font-family: "微软雅黑";
    text-align: center;
    font-size: 13px;
    color: #666;
    line-height: 20px;
    display: none;
    padding: .04rem;
}

#loading img {
    height: 20px;
    vertical-align: -20%;
    opacity: 0.8;
    margin-right: 4px;
}

#loading img {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation: rotate 2s linear infinite;
    -moz-animation: rotate 2s linear infinite;
    -o-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(-359deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }
    to {
        -o-transform: rotate(-359deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(-359deg)
    }
}

.books {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 400px;
    animation: animationup 0.1s ease-in-out;
    background: #fff;
    display: none;
    padding-bottom: 17.8vw;
}

.books .search_box {
    padding: .15rem .1rem;
}

.books .search_box .actions {
    display: flex;
    padding-bottom: .1rem;
}

.books .search_box .actions p {
    flex: 1;
    display: flex;
    justify-content: space-between;
    color: #009A44;
    font-size: 15px;
}

.books .search_box .search_top {
    display: flex;
    align-items: center;
    border: 1px solid #EEEEEE;
    border-radius: 20px;
    background: white;
}

.books .search_box .search_top .key {
    white-space: nowrap;
    padding: 0 .1rem;
    border-right: 1px solid #EEEEEE;
    color: #ABACAB;
}

.books .search_box .search_top .layui-input {
    border: 0;
}

.books .search_box .search_top .iconfont {
    font-size: 24px;
    padding: 0 .1rem;
}

.books .search_res {
    display: none;
}

.books .search_res .result_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: .1rem;
}

.books .search_res .result_list .res {
    padding: .04rem .1rem;
}

.books .res_lits {
    display: flex;
    align-items: flex-start;
    height: 378px;
}

.books .res_lits .parent {
    width: 35%;
    height: 100%;
}

.books .res_lits .parent ul {
    overflow: scroll;
    height: 92%;
    border-right: 1px solid #EEEEEE;
}

.books .res_lits .parent ul li {
    padding: .05rem 0;
    text-align: center;
    font-size: 15px;
}

.books .res_lits .parent ul .active {
    color: #009A44;
    background: #F5F7FA;
}

.books .res_lits .children ul .active {
    background: #F5F7FA;
}
.books .res_lits .children ul .active>a {
    color: #009A44;
}

.books .res_lits .children {
    width: 65%;
    /* height: 100%; */
    overflow: scroll;
    height: 90%;
}

.books .res_lits .children ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: .1rem;
    padding: 0 .1rem;
   
}

.books .res_lits .children ul li {
    padding: .05rem .05rem;
    text-align: center;
    font-size: 15px;
}

@keyframes animationup {
    0% {
        bottom: -500px;
    }
    20% {
        bottom: -400px;
    }
    40% {
        bottom: -300px;
    }
    60% {
        bottom: -200px;
    }
    80% {
        bottom: -100px;
    }
    100% {
        bottom: 0;
    }
}

.extract {
    position: fixed;
    bottom: 48px;
    left: 0;
    right: 0;
    z-index: 2;
    height: 400px;
    animation: animationup 0.1s ease-in-out;
    background: #fff;
    display: none;
    padding: 0.2rem 0 0.4rem 0;
    overflow: scroll;
}

.extract>div {
    margin-bottom: .12rem;
    display: flex;
    flex-direction: column;
    padding: 0 .2rem;
}

.extract>div .title {
    font-size: 16px;
}

.extract>div .flex {
    margin-top: 10px;
    display: flex;
    /* column-gap: 5px; */
    flex-wrap: wrap;
    /* row-gap: 10px; */
}

.extract>div .flex span {
    padding: 2px 20px;
    background: #EEEEEE;
    color: #ABACAB;
    margin-right: 5px;
    margin-bottom: 10px;
}

.extract>div .flex .checked {
    border: 1px solid #009A44;
    color: #009A44;
    background: white;
}

.extract .botton_box {
    position: fixed;
    bottom: 48px;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    column-gap: 10px;
}

.extract .botton_box .box {
    width: 100%;
    display: flex;
    column-gap: 10px;
    padding: 0 10px;
}

#reset {
    flex: 3;
    border: 1px solid #009A44;
    border-radius: 20px;
    height: 30px;
    line-height: 30px;
    color: #009A44;
    background: white;
    text-align: center;
}

#sumbit {
    flex: 5;
    border: 1px solid #009A44;
    border-radius: 20px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: white;
    background: #009A44;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .5);
    display: none;
}


.zy{
    color: #787878;
    font-size: 15px;
}
.zddd{
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.banner{
    width: 100%;
    border-radius: 8px;
    margin-top: 5px;
}

.options_list .item .top {
    padding: 0 0.08rem 0.08rem;
}

.options_list .item .top .title {
    display: flex;
    align-items: center;
    padding: 0.08rem 0;
}

.options_list .item .top .title div p:nth-child(2n+1) {
    width: 2.8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.options_list .item .top .title div {
    font-size: 18px;
}

.options_list .item .mod {
    color: #666;
    font-size: 14px;
    padding-bottom: 0.08rem;
} 

.options_list .item .zy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.options_list .item .zy span:first-child {
    color: #009A44;
}
.options_list .item .zy span:last-child {
    color: rgb(254, 108, 0);
}
.options_list .item .bottom {
    border-top: 1px solid #eee;
}

.options_list .item .bottom p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    padding: 0.08rem 0.08rem 0;
}

.options_list .item .bottom p a {
    color: #666;
    display: inline-block;
}

.options_list .item .bottom p a .list-vip {
    height: 0.17rem;
    vertical-align: text-bottom;
}

.desc-info {
    background: #fff;
    padding: 0.08rem;
    margin-bottom: 0.2rem;
    box-shadow: 0px 0px 7px 1px #d8d5d5;
    border-radius: 0.08rem;
    color: #777;
    font-size: 14px;
}