@charset "UTF-8";

.logo-view{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.7rem;
    background: #444444;
    padding: 0 0.3rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}
.logo-view .logo{
    background: #fff;
    border-radius: 5px;
    height: 0.54rem;
    padding: 0.05rem 0.18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.logo-view .logo img{
    display: inline-block;
    height: 0.42rem;
}
.logo-view .search-view{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #292929;
    width: 2.6rem;
    height: 0.4rem;
    border-radius: 0.2rem;
    cursor: pointer;
    padding: 0 0.2rem;
    box-sizing: border-box;
    font-size: 0.16rem;
    color: #ffffff;
}
.logo-view .search-view .search-icon{
    display: inline-block;
    width: 0.23rem;
    height: 0.23rem;
    background: url("../pics/icon-search.png") center no-repeat;
    background-size: auto 0.22rem;
}


.btn-view{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.5rem;
    padding: 0 0.25rem;
    background: #444444;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}

.btn-view .left-btns,
.btn-view .middle-btns,
.btn-view .right-btns{
    display: flex;
    align-items: center;
    height: 0.5rem;
}
/* left-btns */
.btn-view .left-btns .btn-look,
.btn-view .left-btns .btn-books,
.btn-view .left-btns .btn-autoplay{
    width: 0.45rem;
    height: 100%;
    cursor: pointer;
    background-size: auto 0.21rem!important;
}
.btn-view .left-btns .btn-look{
    background: url("../pics/icon1.png") center no-repeat;
}
.btn-view .left-btns .btn-books{
    background: url("../pics/icon2.png") center no-repeat;
}
.btn-view .left-btns .btn-autoplay{
    background: url("../pics/icon3.png") center no-repeat;
}
.btn-view .left-btns .btn-autoplay.on{
    background: url("../pics/icon3-1.png") center no-repeat;
}
.btn-view .left-btns .btn-look:hover{
    background: #696969 url("../pics/icon1.png") center no-repeat;
}
.btn-view .left-btns .btn-books:hover{
    background: #696969 url("../pics/icon2.png") center no-repeat;
}
.btn-view .left-btns .btn-autoplay:hover{
    background: #696969 url("../pics/icon3.png") center no-repeat;
}
.btn-view .left-btns .btn-autoplay.on:hover{
    background: #696969 url("../pics/icon3-1.png") center no-repeat;
}
/* left-btns end */

/* middle-btns */
.btn-view .middle-btns .prev-book,
.btn-view .middle-btns .prev-page,
.btn-view .middle-btns .next-page,
.btn-view .middle-btns .next-book{
    width: 0.45rem;
    height: 100%;
    cursor: pointer;
    background-size: auto 0.21rem!important;
}
.btn-view .middle-btns .prev-book,
.btn-view .middle-btns .prev-page{
    margin-left: 0.1rem;
}

.btn-view .middle-btns .next-page,
.btn-view .middle-btns .next-book{
    margin-right: 0.1rem;
}
.btn-view .middle-btns .current-page{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    font-size: 0.2rem;
    color: #ffffff;
    font-family: Arial;
    margin: 0 0.5rem 0 0.5rem;
}

.btn-view .middle-btns .prev-book{
    background: url("../pics/icon4.png") center no-repeat;
}
.btn-view .middle-btns .prev-page{
    background: url("../pics/icon5.png") center no-repeat;
}
.btn-view .middle-btns .next-page{
    background: url("../pics/icon6.png") center no-repeat;
}
.btn-view .middle-btns .next-book{
    background: url("../pics/icon7.png") center no-repeat;
}

.btn-view .middle-btns .prev-book:hover{
    background: #696969 url("../pics/icon4.png") center no-repeat;
}
.btn-view .middle-btns .prev-page:hover{
    background: #696969 url("../pics/icon5.png") center no-repeat;
}
.btn-view .middle-btns .next-page:hover{
    background: #696969 url("../pics/icon6.png") center no-repeat;
}
.btn-view .middle-btns .next-book:hover{
    background: #696969 url("../pics/icon7.png") center no-repeat;
}
/* middle-btns end */

/* left-btns */
.btn-view .right-btns .btn-playAudio,
.btn-view .right-btns .btn-share,
.btn-view .right-btns .btn-fullScreen{
    width: 0.45rem;
    height: 100%;
    cursor: pointer;
    background-size: auto 0.21rem!important;
}
.btn-view .right-btns .btn-playAudio{
    background: url("../pics/icon8.png") center no-repeat;
}
.btn-view .right-btns .btn-playAudio.off{
    background: url("../pics/icon8-2.png") center no-repeat;
}
.btn-view .right-btns .btn-share{
    background: url("../pics/icon9.png") center no-repeat;
}
.btn-view .right-btns .btn-fullScreen{
    background: url("../pics/icon10.png") center no-repeat;
}
.btn-view .right-btns .btn-fullScreen.on{
    background: url("../pics/icon11.png") center no-repeat;
}

.btn-view .right-btns .btn-playAudio:hover{
    background: #696969 url("../pics/icon8.png") center no-repeat;
}
.btn-view .right-btns .btn-playAudio.off:hover{
    background: #696969 url("../pics/icon8-2.png") center no-repeat;
}
.btn-view .right-btns .btn-share:hover{
    background: #696969 url("../pics/icon9.png") center no-repeat;
}
.btn-view .right-btns .btn-fullScreen:hover{
    background: #696969 url("../pics/icon10.png") center no-repeat;
}
.btn-view .right-btns .btn-fullScreen.on:hover{
    background: #696969 url("../pics/icon11.png") center no-repeat;
}
/* left-btns end */

.prev-page-button,
.next-page-button{
    width: 0.55rem;
    height: 0.75rem;
    position: absolute;
    top: 50%;
    z-index:10;
    transform: translateY(-50%);
    background-size: auto 0.42rem!important;
    cursor: pointer;
    transition: all 0.3s;
}
.prev-page-button{
    background: url('../pics/left-btn.png') center no-repeat;
    left: 10px;
}
.next-page-button{
    background: url('../pics/right-btn.png') center no-repeat;
    right: 10px;
}
.prev-page-button.hover,
.next-page-button.hover{
    background-size: auto 0.5rem!important;
}

.btn-view .middle-btns .pageHide,
.pageHide{
    opacity: 0.3;
    cursor: initial;
}


/* 规格 */
.rules{
    position: absolute;
    right: 0.3rem;
    bottom: 1rem;
    z-index: 99;
}
.rules.last{
    right: calc(500px - 0.88rem);
}
.rules .item{
    width: 0.55rem;
    height: 0.40rem;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.14rem;
    margin-top: 0.18rem;
    cursor: pointer;
}
.rules .chooseColors{
    color: #ffffff;
    background: #ed028c;
}
.rules .chooseRules{
    color: #333;
    background: #fff;
}
/* 规格 end */

.closeView{
    width: 0.35rem;
    height: 0.35rem;
    background: url("../pics/closeView.png") center no-repeat;
    background-size: auto 0.32rem;
    cursor: pointer;
}

/* 选择颜色 */
.colors-view{
    height: 1.2rem;
    background: #fff;
    width: 100%;
    position: absolute;
    bottom: -200px;
    left: 0;
    z-index: 998;
}
.colors-view .closeView{
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
}
.colors-list{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.colors-list ul{
    display: flex;
    align-items: center;
    height: 100%;
}
.colors-list ul li{
    margin: 0 0.15rem;
    cursor: pointer;
}
.colors-list ul li .color-item{
    width: 0.6rem;
    height: 0.6rem;
    margin-bottom: 0.05rem;
    border: 1px rgb(190,190,190) solid;
    border-radius: 0.1rem;
}
.colors-list ul li .name{
    line-height: 0.26rem;
    font-size: 0.16rem;
    color: #605a53;
    text-align: center;
}
/* 选择颜色 end */

.rules-mask,
.browser-mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0);
    z-index: 1000;
    display: none;
}
.browser{
    background: #776150;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 0.45rem 0.35rem 0.2rem;
    opacity: 0;
}
.browser .swiper-container{
    padding-bottom: 0.2rem;
}
.browser .swiper-pagination{
    top: auto;
    bottom: 0;
    background: transparent;
    height: 0.12rem;
    border-radius: 0.12rem;
    overflow: hidden;
}
.swiper-pagination-progress .swiper-pagination-progressbar{
    background: #dac9bb;
    border-radius: 0.12rem;
}
.browser ul li{
    cursor: pointer;
}
.browser .pic-view{
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.browser .pic-view img{
    display: inline-block;
    /*width: 100%;*/
    max-width: 100%;
    max-height: 100%;
}
.browser .pic-name{
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.16rem;
    color: #ffffff;
}

.zoom-icon-out{
    top: 0.2rem!important;
}

/* 搜索 */
.search-form{
    position: absolute;
    top: 50%;
    left: -500px;
    width: 3.4rem;
    height: calc(100vh - 2rem);
    background: #fff;
    border-radius: 8px;
    transform: translateY(-50%);
    z-index: 999;
    padding: 0.25rem 0.15rem;
    box-sizing: border-box;
}
.search-form .form-title{
    font-size: 0.2rem;
    height: 0.24rem;
    margin-bottom: 0.25rem;
}
.search-form .closeView{
    position: absolute;
    right: 0.15rem;
    top: 0.15rem;
}

.form-view{
    height: calc(100% - 0.5rem);
}
.form-view .search-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 0.4rem;
    border-radius: 0.2rem;
    border: 1px #d7d7d7 solid;
    padding: 0.05rem 0.2rem 0.05rem 0.3rem;
    margin-bottom: 0.2rem;
}
.form-view .search-input input{
    width: calc(100% - 0.4rem);
    border: none;
    height: 0.3rem;
    font-size: 0.15rem;
}
.form-view .search-input .submit-btn{
    width: 0.3rem;
    height: 0.3rem;
    background: url("../pics/icon-search2.png") center no-repeat;
    background-size: auto 0.23rem;
    cursor: pointer;
    border: none;
}
.form-view .result{
    height: calc(100% - 0.6rem);
}
.form-view .result .title{
    font-size: 0.16rem;
    color: #444444;
    margin-bottom: 0.14rem;
    height: 0.24rem;
}
.form-view .result-list{
    height: calc(100% - 0.38rem);
    overflow: auto;
    padding-right: 0.05rem;

    /*三角箭头的颜色*/
    scrollbar-arrow-color: #bfbfbf;
    /*滚动条滑块按钮的颜色*/
    scrollbar-face-color: #bfbfbf;
    /*滚动条整体颜色*/
    scrollbar-highlight-color: #EFEFEF;
    /*滚动条阴影*/
    scrollbar-shadow-color: #EFEFEF;
    /*滚动条轨道颜色*/
    scrollbar-track-color: #EFEFEF;

}
/*修改滚动条样式*/
.form-view .result-list::-webkit-scrollbar{
    width:5px;
    height:10px;
}
.form-view .result-list::-webkit-scrollbar-track{
    background: #EFEFEF;
    border-radius:2px;
}
.form-view .result-list::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:10px;
}
.form-view .result-list::-webkit-scrollbar-thumb:hover{
    background: #444444;
}
/*滚动条的上下两端的按钮*/
.form-view .result-list::-webkit-scrollbar-button{
    height: 0;
    background-color: #EFEFEF;
}

/* 搜索 end */

/* 规格 */
.rules-mask{
    display: none;
    background: rgba(0,0,0,0.3);
}
.rules-mask .closeView{
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
    cursor: pointer;
}
.rules-mask .rules-browser{
    width: 3.9rem;
    height: 4.85rem;
    background: #fff;
    border-radius: 0.1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 0.25rem;
}
.rules-browser .rules-swiper{
    width: 100%;
    height: 100%;
    /*background: #eee;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.rules-browser .rules-swiper img{
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
}
/* 规格 end */


/* 分享 */
.share-mask{
    position: fixed;
    z-index: 999;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,0.4);
    left: 0;
    top: 0;
    display: none;
}
.share-view{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4.2rem;
    height: 3rem;
    transform: translate(-50%,-50%);
    padding: 0.2rem 0.24rem;
    background: #444444;
    border: 1px #6d6d6d solid;
}
.share-view .share-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 0.23rem;
    margin-bottom: 0.3rem;
}
.share-view .share-top .share-title{
    padding-left: 0.3rem;
    font-size: 0.18rem;
    color: #fff;
    background: url("../pics/icon9.png") left center no-repeat;
    background-size: auto 0.2rem;
}
.share-view .share-top .share-close{
    width: 0.23rem;
    height: 0.23rem;
    background: url("../pics/share/chacha.png") center no-repeat;
    background-size: auto 0.23rem;
    cursor: pointer;
}

.share-section{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.share-code{
    width: 1.1rem;
}
.share-code .code-pic{
    width: 1.1rem;
    height: 1.1rem;
    background: #fff;
    padding: 0.05rem;
}
.share-code .code-pic{
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-code .code-pic .pic img{
    display: block;
    width: 100%;
    height: 100%;
}
.share-code .choose-code li{
    width: 100%;
    color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.45rem;
    height: 0.45rem;
    font-size: 0.14rem;
}
.share-code .choose-code li.on{
    background: #666666;
}


.share-section .share-links{
    width: 2.4rem;
    font-size: 0.16rem;
    color: #ffffff;
}
.share-links ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}
.share-links ul li{
    width: 25%;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
    text-align: center;
    cursor: pointer;
}
.share-links ul li .share-icon{
    display: inline-block;
    width: 0.42rem;
    height: 0.42rem;
    background-size: 100% 100% !important;
}
.share-links ul li .qq{
    background: url("../pics/share/qq.png") center no-repeat;
}
.share-links ul li .qzone{
    background: url("../pics/share/qzone.png") center no-repeat;
}
.share-section ul li .douban{
    background: url("../pics/share/doupan.png") center no-repeat;
}
.share-links ul li .tieba{
    background: url("../pics/share/tieba.png") center no-repeat;
}
.share-links ul li .weibo{
    background: url("../pics/share/weibo.png") center no-repeat;
}
.share-links ul li .copy{
    background: url("../pics/share/copy.png") center no-repeat;
}
.share-links ul li .code{
    background: url("../pics/share/code.png") center no-repeat;
}
.share-links ul li:active{
    border-radius: 0.1rem;
    background: #666666;
}

.copy-link{
    display: flex;
    height: 0.42rem;
    width: 100%;
    align-items: center;
}
.copy-link .link-input{
    width: calc(100% - 0.86rem);
    height: 0.42rem;
    background: #7c7c7c;
    color: #fff;
    font-size: 0.14rem;
    border: none;
    padding: 0 0.1rem;
}
.copy-link .copy-btn{
    width: 0.86rem;
    height: 0.42rem;
    color: #333333;
    background: #ededed;
    border: none;
    cursor: pointer;
    font-size: 0.15rem;
}
.copy-link .copy-btn:active{
    background: #999999;
    color: #fff;
}

/* 分享 end */

.pic-point{
    /*position: absolute;*/
    /*width: 20px;*/
    /*height: 20px;*/
    cursor: pointer;
    /*background: #fff;*/
    /*background: rgba(255,255,255,0.4) url("../pics/shouzhi.png") center no-repeat;*/
    background: url("../pics/shouzhi.png") center no-repeat;
    background-size: 80% 80%;
    /*border-radius: 50%;*/
    overflow: hidden;
    /*box-shadow: 0 0 10px 3px rgba(0,0,0,0.5);*/
    animation: scaleSize 1s infinite ;
}

@keyframes scaleSize {
    0%{
        transform: scale(1);
    }
    25%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1.2);
    }
    75%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}









