/* @keyframes loadPoint0 {0%{opacity: 0;}20%{opacity: 1;}100%{opacity: 1;}}
@keyframes loadPoint1 {20%{opacity: 0;}40%{opacity: 1;}100%{opacity: 1;}}
@keyframes loadPoint2 {40%{opacity: 0;}60%{opacity: 1;}100%{opacity: 1;}}
@keyframes loadPoint3 {60%{opacity: 0;}80%{opacity: 1;}100%{opacity: 1;}}
@keyframes loadPoint4 {80%{opacity: 0;}100%{opacity: 1;}100%{opacity: 1;}}
.loadPointBox .point0{animation: loadPoint0 5s ease infinite;-webkit-animation:loadPoint0 5s ease infinite;-moz-animation:loadPoint0 5s ease infinite;-o-animation:loadPoint0 5s ease infinite;}
.loadPointBox .point1{animation: loadPoint1 5s ease infinite;-webkit-animation:loadPoint1 5s ease infinite;-moz-animation:loadPoint1 5s ease infinite;-o-animation:loadPoint1 5s ease infinite;}
.loadPointBox .point2{animation: loadPoint2 5s ease infinite;-webkit-animation:loadPoint2 5s ease infinite;-moz-animation:loadPoint2 5s ease infinite;-o-animation:loadPoint2 5s ease infinite;}
.loadPointBox .point3{animation: loadPoint3 5s ease infinite;-webkit-animation:loadPoint3 5s ease infinite;-moz-animation:loadPoint3 5s ease infinite;-o-animation:loadPoint3 5s ease infinite;}
.loadPointBox .point4{animation: loadPoint4 5s ease infinite;-webkit-animation:loadPoint4 5s ease infinite;-moz-animation:loadPoint4 5s ease infinite;-o-animation:loadPoint4 5s ease infinite;} */
/* @font-face { font-family: SourceHanSansCN; src:url('https://book.yunzhan365.com/resourceFiles/editor/fonts/SourceHanSansCN.ttf'); }  */
html, body {
	margin: 0;
	padding: 0;
	font-family: SourceHanSansCN, arial, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #333;
    background:#fff;
	background: transparent;
	overflow: hidden;
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	height: 100%;
	width: 100%;
}
ul, p {
	margin: 0;
	padding: 0;
	list-style: none;
}

label {
	display: inline-block;
	width: 82px;
	font-size: 13px;
	line-height: 30px;
	text-align: left;
}

a {
    outline: none;
    color: #0BA2C5;
    text-decoration: underline;
}

a:hover {
    color: #00ceff;
}

input, textarea {
	outline: 0;
	padding: 6px 20px;
	font-family: arial, sans-serif;
	border-radius: 2px;
	box-sizing: border-box;
	background: #eee;
	border: 1px solid #ddd;
	/*width: 280px;*/
	width: 100%;
}
/* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(204, 204, 204, 1);
    background-clip: padding-box;
    min-height: 28px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(170, 170, 170, 1);
} */

.edit-phone::-webkit-scrollbar, .edit-phone ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    overflow-y:overlay;
}
.edit-phone::-webkit-scrollbar-thumb, .edit-phone ::-webkit-scrollbar-thumb {
    background-color: rgba(150, 150, 150, 0.2);
    background-clip: padding-box;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
    cursor: pointer;
}
.edit-phone::-webkit-scrollbar-thumb:hover, .edit-phone ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(150, 150, 150, 0.5);
}

.icon{
    background-image:url(../images/icon.png);
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
}
.btn.disabled{
    cursor: default !important;
    opacity: 0.75 !important;
    /* background:#eee !important; */
    display:none !important;
}
input::-ms-clear, input::-ms-reveal{
    display: none;
}
/*  buttons  */
.button-pure {
    background-color: rgb(248, 248, 248);
    border: 1px solid rgb(211, 211, 211);
    color: rgb(51, 51, 51);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 4px 10px;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    position: relative;
}
.button-pure.disabled {
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    background: #EEE;
    border: 1px solid #DDD;
    text-shadow: 0 1px 1px white;
    color: #CCC;
    cursor: default;
}
.button-pure:not(.disabled):hover {
    background-color: #f0f0f0;
}
.button-pure:not(.disabled):active {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.button-pure-blue {
    background: #0076FE;
    border-color: #0076FE;
    color: #FFF;
}
.button-pure-blue:not(.disabled):hover{
    background: #3391fe;
    border-color: #3391fe;
}

.button-pure-green {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #FFF;
}
.button-pure-green:not(.disabled):hover{
    background-color: #57AD57;
    border-color: #4DA04D;
}
.button-pure-red {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #FFF;
}
.button-pure-red:not(.disabled):hover{
    background-color: #CC4C48;
    border-color: #C54A46;
}
.button-pure-orange {
    background-color: #FF9300;
    border-color: #EC8800;
    color: #FFF;
}
.button-pure-orange:not(.disabled):hover{
    background-color: #f18d05;
    border-color: #E78500;
}

.button-pure-sky-blue {
    background-color: #00a1cb;
    border-color: #0092B8;
    color: #FFF;
}
.button-pure-sky-blue:not(.disabled):hover {
    background-color: #0097BE;
    border-color: #007E9E;
}

/****alert****/

.alert-success {
    min-width: 380px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: #ebeef5;
    color: #5cb85c;
    position: fixed;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    background-color: #edf2fc;
    text-align: center;
    border-radius:4px;
    padding:12px 15px;
    font-size: 16px;
    transition: all 0.25s;
    opacity:0;
    z-index: 999999
}
.alert-success.phone{
    min-width: 260px;
    max-width: 100%;
}
.alert-success.error{
    color: #e67b6d;
    background-color: #f5cec9;
}
.alert-success.show {
    opacity:1;
    -webkit-transform: translate(-50%,15px);
    -moz-transform: translate(-50%,15px);
    -ms-transform: translate(-50%,15px);
    transform: translate(-50%,15px)
}

/**common**/
.stage{
    overflow: hidden;
}
.progress{
    z-index:5;
    border-radius: 5px;
    background:rgba(192,192,192,0.15);
    width: 12px;
    height: 5px;
    position: absolute;
    bottom: 0;
    right: 70px;
    cursor: pointer;
}
.progressBar{
    background:transparent;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.progressBarEnter{
    pointer-events: none;
    background:rgba(0,0,0,0.35);
    width: 6px;
    height: 100%;
    position: absolute;
    right: 3px;
    top: 0;
    border-radius: 2px;
}
.row {
    position: relative;
    padding: 10px 0
}

.text-center {
    text-align: center
}

.main-container{
    z-index: 1;
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
}
.two-rows{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/***topBar***/
.btn{
    transition:all 0.25s;
    -webkit-transition:all 0.25s;
}
.btn:hover{
    opacity:0.75;
}
.btn-bg{
    transition:all 0.25s;
    -webkit-transition:all 0.25s;
    opacity:1;
    border-radius:4px;
}

.btn-bg:hover{
    opacity:1;
    background:rgba(0,0,0,0.15);
}

.btn-bg:active{
    opacity:1;
    background:rgba(11,11,11,0.25);
}

.toolButton .btn-bg{
    margin-left:10px;
    transition:all 0.25s;
    -webkit-transition:all 0.25s;
    opacity:1;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
}
.silvery .toolButton .btn-bg{
    background:#EEEEEE;
}
.toolButton .btn-bg:hover{
    opacity:1;
    background:rgba(0,0,0,0.7);
}
.silvery .toolButton .btn-bg:hover{
    background:#dddddd;
}
.toolButton .btn-bg:active{
    opacity:1;
    background:rgba(11,11,11,0.95);
}
/***centerBar***/
.centerBar .crumbItem:hover{
    color:#81B4E4;
}
.titleSortBtn{
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
}
.timeSortBtn{
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
}
.normalBar .btn{
    background-color: #fff;
    color:#666;
}

.normalBar .btn:hover{
    opacity: 1;
	background-color: #eeeeee;
}

.normalBar .crumbItem:hover{
    color:#A8784B;
}

.whiteBar .btn{
    background-color: #797774;
    color:#fff;
}
.whiteBar .btn:hover{
    opacity: 1;
    background-color: #666;
}

.grayBar .btn{
    background-color: #f4f4f4;
    color:#797774;
}
.grayBar .btn:hover{
    opacity: 1;
    background-color: #eee;
}

/**********fold-center-bg***************/
.arrow-box{
	display: inline-block;
    position: relative;
    width: 10px;
    height: 42px;
    left: 5px;
}

.top-arrow{
	position: absolute;
	left: 0;
	top: 13px;
	border: 5px solid #666666;
	border-left-color: transparent;
	border-right-color: transparent;
	border-top-width: 0;
	border-left-width: 4px;
    border-right-width: 4px;
}
.top-arrow.active{
	border-bottom-color: #2b85ea;
}

.bottom-arrow{
	position: absolute;
	left: 0;
	bottom: 13px;
	border: 5px solid #666666;
	border-left-color: transparent;
	border-right-color: transparent;
	border-bottom-width: 0;
	border-left-width: 4px;
    border-right-width: 4px;
}
.bottom-arrow.active{
	border-top-color: #2b85ea;
}

.container-swiper{
    overflow: hidden;
    position: absolute;
    right: 0;
    padding: 0 55px;
    box-sizing: border-box;
    top: 130px;
    z-index: 2;
}

.centerSwiper{
    position: absolute;
    top: 0px;
    width: 100%;
    transition: all 0.3s ease 0s;
    -webkit-transition:all 0.25s;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
}

.shelf{
    position: relative;
    z-index: 1;
    text-align: center;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    width: 352px;
    height: 200px;
}

.shelfBg{
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 85px;
    bottom: -20px;
}
.shelf-title{
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.shelf-title-text {
    color: #111;
    padding: 0 20px;
    position: relative;
    height: 24px;
    line-height: 24px;
}
.shelf-side-border{
    width: 45px;
    height: 1px;
    /* background: #333; */
    top: 12px;
    position: absolute;
}
.shelf-side-border.left{
    left: -49px;
}
.shelf-side-border.right{
    right: -49px;
}

/**********centerBar-bookSort***********/
.folder-text{
    position: relative;
    z-index: 2;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.fold-center-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.fold-bg-left{
    width:20px;
    height: 100%;
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: url(./img/folderTitle/red/left.png); */
    background-position: center right;
}
.fold-bg-center{
    background-size: contain;
    background-image: url(./img/folderTitle/red/center.png);
    position: absolute;
    left: 19px;
    right: 19px;
    height: 100%;
}
.fold-bg-right{
    width: 20px;
    height: 100%;
    position: absolute;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: url(./img/folderTitle/red/right.png); */
    background-position: left center;
}
/*********/
.large.shelf-title, .phone .large.shelf-title{
    top:0;
    font-weight: bold;
}
.large .shelf-side-border.left{
    top:15px;
    left: -65px;
}
.large .shelf-side-border.right{
    top:15px;
    right: -65px;
}
.large .shelf-side-border{
    width: 55px;
    height: 2px;
}
.large .folder-text, .large .shelf-title-text{
    height:32px;
    line-height: 32px;
}
.large .fold-bg-left,.large .fold-bg-right{
    width:32px;
}
.large .fold-bg-center{
    left: 31px;
    right:31px;
}
.yellow .large .fold-bg-left,.yellow .large .fold-bg-right{
    width:12px;
}
.yellow .large .fold-bg-center{
    left:10px;
    right:11px;
    z-index: 1;
}

.shelf .items .item{
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin: 6px 20px;
    bottom: 8px;
    width: 86px;
    height: 160px;
}

.item .backfolder{
    z-index: 1;
    position: absolute;
    bottom: 50px;
    width: 86px;
    height: 116px;
    background: url(./phoneImg/backFolder.png) bottom center no-repeat;
    background-size: contain;
}

.item .overFolder{
    z-index: 3;
    position: absolute;
    bottom: 50px;
    width: 86px;
    height: 116px;
    background: url(./phoneImg/overFolder.png) bottom center no-repeat;
    background-size: contain;
}

.newBookContainer .shotBox .markBook{
    box-shadow:0 4px 12px #666;
    -webkit-box-shadow:0 4px 12px #666;
}
.newBookContainer .shotBox:hover .markBook{
    box-shadow:0 4px 12px #333;
    -webkit-box-shadow:0 4px 12px #333;
}

.leftBtn,.rightBtn{
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    opacity: 0.75;
}

.wood1 .leftBtn, .wood2 .leftBtn{
    /* left:75px; */
    background-color: #333;
}
.wood2 .rightBtn, .wood2 .rightBtn{
    /* right:75px; */
    background-color: #333;
}
.leftBtn:hover,.rightBtn:hover{
    opacity: 1;
}
.leftBtn.disabled,.rightBtn.disabled{
    display: none;
    opacity: 0;
}
.phone .leftBtn.disabled,.phone .rightBtn.disabled{
    display: block;
    opacity: 0.25;
}

/****floderListForm****/
.list-item:hover{
    background:rgba(11,11,11,0.05);
}
/* .list-item.collapse{
}
.list-item.expand{
    background:rgba(11,11,11,0.05);
} */

.list-icon{
    position: relative;
    width: 16px;
    height: 16px;
    float: left;
    padding: 2px;
}
.collapse .list-icon{
    background-position:-517px -391px;
}
.expand .list-icon{
    background-position:-538px -391px;
}
.list-search-icon{
    background-position: -560px -390px;
}
.list-search-close{
    background-position:-336px -367px;
}
.list-search-close:hover{
    background-position:-336px -385px;
}
/****floderItem****/
.folderItem .folderImg{
    transition:all 0.25s;
    -webkit-transition:all 0.25s;
    box-shadow: 0 0 4px #888;
    -webkit-box-shadow: 0 0 4px #888;
}
.folderItem:hover .folderImg{
    box-shadow: 0 0 8px #666;
    -webkit-box-shadow: 0 0 8px #666;
}

/******BookItem*****/
.bookItem:hover .bookItem-title,.folderItem:hover .bookItem-title{
	visibility: visible;
    opacity: 1;
    top:-42px;
}
.bookItem:hover .qrImg{
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}
.qrImg{
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index:1;
    background-position: -11px -191px;
}

.qrImg:hover ~ .item-QrBox{
    visibility: visible;
    opacity: 1;
}

.item-QrBox{
    top:0;
    pointer-events: none;
    z-index:3;
    background:rgba(11,11,11,0.5);
    position:absolute;
    transition:all 0.25s;
    opacity:0;
    visibility:hidden;
}

.bookItem-title{
    top:0;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: all 0.25s;
	-webkit-transition: all 0.25s;
}

.bookItem .downloadBtn{
    opacity: 0.75;
    display:none;
    z-index:0;
}

.bookItem:hover .downloadBtn{
    z-index:1;
    display:block;
}
.bookItem .downloadBtn:hover{
    opacity: 1;
    display:block;
}
.thumbImg{
    /* transition:all 0.25s;
    -webkit-transition:all 0.25s; */
    cursor: pointer;
    left:50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: 1;
    position: absolute; /*relative会导致图片上移动*/
    bottom: 0;
    box-shadow: #888 0px 0px 4px 0;
    -webkit-box-shadow: #888 0px 0px 4px 0;
}
.no-shadow{
    box-shadow:none;
}
.shotBox:hover .thumbImg{
    box-shadow: #333 0px 0px 8px 0;
    -webkit-box-shadow: #333 0px 0px 8px 0;
}

.shotImgBox:hover .thumbImg{
    box-shadow: #333 0px 0px 8px 0;
    -webkit-box-shadow: #333 0px 0px 8px 0;
}

.loading-img{
    position:absolute;
    z-index:2;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:url(../image/loading.gif) center center no-repeat;
    background-color:#f1f1f1;
}

.folderCover{
    transition: all 0.25s;
    box-shadow: 0px 0px 2px #666;
    -webkit-box-shadow: 0px 0px 2px #666;
}
.folderShotBox::after{
    content: "";
    height: 100%;
    background-image: url(../image/t-left.png);
    background-size: 10px 2px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
}
.folderCover:hover{
    box-shadow: #666 0px 0px 8px 0;
    -webkit-box-shadow: #666 0px 0px 8px 0;
}

.book-label-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    display: block;
    width: 100%;
    max-width: 50px;
}
.book-price {
    background: url(../image/price-label.png) 0 -100px no-repeat;
    width: 74px;
    height: 33px;
    /* top: 10px; */
    position: absolute;
    color: #fff;
    font-size: 12px;
    line-height: 36px;
    text-indent: 2px;
    left: -5px;
    z-index: 4;
    text-align: left;
    white-space: nowrap;
}
/**download**/
.book-download-panel {
    color:#666;
    position: relative;
    padding: 20px 4px;
    text-align: center;
}
.book-download-content {
    overflow: hidden;
}
.book-download-item {
    position: relative;
    width: 120px;
    float: left;
    margin-right:20px;
}
.book-download-item:last-child{
    margin:0;
}
.book-download-item .icon{
    margin-top:30px;
    width:42px;
    height:42px;
}

.book-download-item .pdf{background-position: -266px -233px;}
.book-download-item .zip{background-position: -328px -233px;}
.book-download-item .exe{background-position: -390px -233px;}
.book-download-item .mac{background-position: -452px -233px;}
.download-mask .download-icon{background-position: -213px -225px;}

.book-download-img {
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background-color: #f3f8ff;
    color: #9cc8f8;
}
.download-mask {
    position: absolute;
    z-index: 11;
    left:0;
    top:0;
    cursor: pointer;
    text-align: center;
    width: 120px;
    height: 120px;
    /* display: none; */
    opacity: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    visibility: hidden;
    border-radius: 24px;
    color:#fff;
    background-color: #4997ee;
}
.book-download-item .download-mask .icon{
    margin-top:24px;
}
.book-download-img:hover .download-mask{
    /* display: block; */
    opacity: 1;
    visibility: visible;
}

.book-download-text {
    font-size: 12px;
    margin-top: 10px;
    line-height: 24px;
}
.book-download-btn {
    font-weight: bold;
    position: relative;
    padding: 2px 15px;
    font-size: 14px;
}

/* shareForm */
.row-label {
    font-size: 13px;
    text-align: left;
    position: absolute;
    line-height: 30px;
    width: 50px;
}
.row-label.l-32 {
    line-height: 32px;
}
.row-content {
    position: relative;
    width: 100%;
    padding-left: 52px;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.row-content.pd-right {
    padding-right: 52px;
}
.share-copy-btn {
    position: absolute;
    right: 0;
    width: 52px;
    font-size: 13px;
    line-height: 28px;
    top: 10px;
    border: 1px solid #1A79C2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    background: #1B7FCC;
    color: #FFF;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.share-copy-btn:hover {
    background: #1C79C0;
    border-color: #1970B2;
}
.share-copy-btn:active {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.share-qr-container.p-0 {
    width: 148px;
    height: 148px;
    padding: 0;
}
.share-qr-container {
    width: 128px;
    height: 128px;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 10px;
    margin: 10px 20px;
    vertical-align: middle;
}
.share-qr-container > img {
    max-width: 100%;
    max-height: 100%;
}
.share-url-input {
    width: 100%;
    padding: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0;
}
.share-social-buts > a {
    margin-right: 8px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../image/share_cn2.png);
    background-position: -14px -4px;
}

.share-social-buts > a.linkedin {
    background-position: -217px -4px;
}
.share-social-buts > a.qqf-space {
    background-position: -14px -4px;
}
.share-social-buts > a.qq-space {
    background-position: -54px -4px;
}
.share-social-buts > a.sina {
    background-position: -93px -4px;
}
.share-social-buts > a.tie-ba {
    background-position: -133px -4px;
}
.share-social-buts > a.dou-bai {
    background-position: -175px -4px;
}

.share-h5-buts a{
    width: 54px;
    height: 54px;
    margin: 0;
    margin-top: -5px;
    font-size: 12px;
    color: #333;
    background: url(../phoneImg/new-icon.png) 0 0 / auto 50px no-repeat;
    background-size: auto;
    display: inline-block;
    /* line-height: 142px; */
    text-decoration: none;
    /* margin-bottom: 5px; */
}

.share-h5-icon.linkedin {
    background-position: -266px -322px;
}
.share-h5-icon.reddit {
    background-position: -322px -322px;
}
.share-h5-icon.facebook {
    background-position: 5px -322px;
}

.share-h5-icon.twitter {
    background-position: -45px -322px;
}

.share-h5-icon.instagram {
    background-position: -98px -322px;
}

.share-h5-icon.pinterest{
    background-position: -150px -322px;
}

.share-h5-icon.email {
    background-position: -202px -322px;
}
/*LightBox*/
.light-box-container{
    background: rgba(0,0,0,0.5);
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
}

.light-box-background{
    position: absolute;
    left: 0;
    top: 0;
    bottom:0;
    right:0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.light-box {
    background: white;
    position: absolute;
    border-radius:4px;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%,-50%); */
    z-index: 2;
}

.light-box-title {
    font-weight: bold;
    padding: 20px;
    overflow: hidden;
    max-height: 40px
}

.light-box-cancel-button {
    position: absolute;
	top: 12px;
	right: 9px;
	cursor: pointer;
	font-weight: bold;
	height: 16px;
	width: 16px;
	padding:10px;
	opacity: 0.95;
	text-align: center;
}

.light-box-panel {
    overflow: hidden;
	padding: 0 20px 20px;
	position: relative;
}

.light-box.iframe{
    background: white;
    position: absolute;
    border-radius:0;
    left: 0;
    top: 0;
    bottom:0;
    right:0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

.light-box.iframe .light-box-title{
    padding:10px;
}

.light-box.iframe .light-box-cancel-button{
    top: 2px;
	right: 1px;
}

/****bookdetail***/
.detailContainer{
    width: 175px;
    position: relative;
    float: right;
    margin-bottom: 15px;
}
.book-detail-book-container {
	position: relative;
	float:left;
	width:140px;
	height:170px;
	top: 0;
	left: 37px;
}
.book-detail-book-shelf{
    z-index:0;
    width: 200px;
    height: 60px;
    position: absolute;
    bottom: -10px;
    left: -56px;
}

.book-detail-title {
	max-height: 42px;
	font-weight: bold;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.book-detail-info {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bold;
}
.book-custom-info{
    margin-bottom: 5px;
	font-size: 12px;
	font-weight: 500;
    color: #0076FE;  
    max-height: 40px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.book-detail-desc {
	font-size: 13px;
    margin-bottom: 5px;
    max-height: 88px;
	width: 100%;
	overflow: auto;
}

.book-detail-time{
    position:absolute;
    width:100%;
    bottom:10px;
    left:0;
    text-align: center;
	font-size: 12px;
	color: #666;
}

.view-button{
	width: 100%;
    margin: 6px 0;
	position:relative;
	cursor: pointer;
	text-align: center;
}
/***limit-icon***/
.limit-icon{
    width: 24px;
    height: 24px;
    right:5px;
    top: 5px;
    z-index: 4;
    position:absolute;
    background-image: url(../image/limitIcon.png);
    background-repeat: no-repeat;
}
.lmt-ip{
    background-position: -10px -10px;
}
.lmt-pass{
    background-position: -78px -10px;
}
.lmt-phone{
    background-position: -44px -10px;
}
.lmt-pub-wechat{
    background-position: -146px -10px;
}
.lmt-sale{
    background-position: -112px -10px;
}
.lmt-wechat{
    background-position: -180px -10px;
}
/***skin1***/
.skin1{
    background: linear-gradient(to bottom, #cfcfcf, #efefef, #c0c0c0);
}
.skin1 .toolButton .btn-bg, .glass .toolButton .btn-bg,.metal .toolButton .btn-bg{
    background-color: #ffffff;
}
.skin1 .toolButton .btn-bg:hover,.glass .toolButton .btn-bg:hover,.metal .toolButton .btn-bg:hover{
    background-color: #eeeeee;
}
.skin1 .light-box-title, .skin1 .book-detail-title{
    color: #391D0A;
}
.skin1 .light-box-title, .skin1 .book-detail-title{
    color: #391D0A;
}
.skin1 .book-detail-info, .skin1 .book-detail-desc{
    color: #836C5E;
}

/**metal**/
.metalBar .btn{
    background-color: #fff;
    color: rgba(131,108,94,1);
}

/**silvery**/
.silvery{
    background: #FDFDFD;
}

/**new1*/
.new1 .toolButton .btn-bg{
    background-color: rgba(255, 241, 219, 0.10);
}
.new1 .toolButton .btn-bg:hover{
    background-color: rgba(255, 241, 219, 0.20);
}
.new1 .grayBar .btn {
    background-color: rgba(255, 241, 219, 0.10);
    color: rgba(255, 241, 219, 0.80);
}
.new1 .grayBar .btn:hover{
    background-color: rgba(255, 241, 219, 0.20);
    color: rgba(255, 241, 219, 0.80);;
}
.new1 .searchInput::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #FFF1DB;
}
.new1 .searchInput{
    color: #29322B;
}
/**new2*/
.new2 .toolButton .btn-bg,.new3 .toolButton .btn-bg,.wood1 .toolButton .btn-bg,.wood2 .toolButton .btn-bg{
    background-color: rgba(235,235,235,1);
}
.new2 .toolButton .btn-bg:hover,.new3 .toolButton .btn-bg:hover,.wood1 .toolButton .btn-bg:hover,.wood2 .toolButton .btn-bg:hover{
    background-color: rgba(255,255,255,0.4);
}
.new2 .grayBar .btn, .new3 .grayBar .btn, .wood1 .grayBar .btn, .wood2 .grayBar .btn {
    background-color: rgba(255,255,255,0.5);
    color: #666666;
}
.new2 .grayBar .btn:hover,.new3 .grayBar .btn:hover, .wood1 .grayBar .btn:hover, .wood2 .grayBar .btn:hover {
    background-color: rgba(255,255,255,0.4);
    color: #322D29;
}
.new2 .searchInput::-webkit-input-placeholder, .new3 .searchInput::-webkit-input-placeholder, .wood1 .searchInput::-webkit-input-placeholder, .wood2 .searchInput::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #999999;
}
.new2 .searchInput, .new3 .searchInput, .wood1 .searchInput, .wood2 .searchInput{
    color: #29322B;
}

.wood1 .progress{
    right: 6px;
}
.wood1 .shelf-title-text{
    height: 18px;
    line-height: 18px;
}
.wood1 .folder-text{
    height: 18px;
    line-height: 18px;
}
/**new2*/
.wood2 .progress{
    right: 0px;
}
.wood2 .progressBar{
    right: -3px;
}
/*modern1*/
.modern1 .searchInput::-webkit-input-placeholder,.modern2 .searchInput::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: rgba(255, 255, 255, 1);
}
.modern1 .searchInput,.modern2 .searchInput{
    color: #fff;
    border-radius: 6px;
}

.modern1.pc .table-item, .modern2.pc .table-item, .modern3.pc .table-item, .modern4.pc .table-item{
    font-weight: 400;
}

.modern1 .progress, .modern2 .progress, .modern3 .progress, .modern4 .progress{
    right: 0;
}

.modern1 .shelf-title-text, .modern2 .shelf-title-text, .modern3 .shelf-title-text, .modern4 .shelf-title-text{
    padding: 0 10px;
}

.modern1 .toolButton .btn-bg, .modern2 .toolButton .btn-bg{
    background-color: rgba(63, 64, 67, 0.5);
    border-radius: 6px;
}
.modern1 .toolButton .btn-bg:hover, .modern2 .toolButton .btn-bg:hover{
    background-color: rgba(63, 64, 67, 0.95);
}
.modern1 .grayBar .btn, .modern2 .grayBar .btn  {
    background-color: rgba(63, 64, 67, 0.5);
    color: #fff;
}
.modern1 .grayBar .btn:hover,.modern2 .grayBar .btn:hover{
    background-color: rgba(63, 64, 67, 0.95);
    color: #fff;
}
.modern1 .titleSortBtn, .modern2 .titleSortBtn, .modern3 .titleSortBtn, .modern4 .titleSortBtn{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.modern1 .timeSortBtn, .modern2 .timeSortBtn, .modern3 .timeSortBtn, .modern4 .timeSortBtn{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

/**modern3*/
.modern3 .searchInput::-webkit-input-placeholder,.modern4 .searchInput::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: rgba(255, 255, 255, 1);
}
.modern3 .searchInput,.modern4 .searchInput{
    color: #fff;
    border-radius: 6px;
}

.modern3 .toolButton .btn-bg{
    background-color: rgba(128, 98, 68, 0.5);
    border-radius: 6px;
}
.modern4 .toolButton .btn-bg{
    background-color: rgba(63, 64, 67, 0.5);
    border-radius: 6px;
}
.modern3 .toolButton .btn-bg:hover{
    background-color: rgba(128, 98, 68, 0.95);
}
.modern4 .toolButton .btn-bg:hover{
    background-color: rgba(63, 64, 67, 0.95);
}
.modern3 .grayBar .btn{
    background-color: rgba(128, 98, 68, 0.5);
    color: #fff;
}
.modern4 .grayBar .btn  {
    background-color: rgba(63, 64, 67, 0.5);
    color: #fff;
}
.modern3 .grayBar .btn:hover{
    background-color: rgba(128, 98, 68, 0.95);
    color: #fff;
}
.modern4 .grayBar .btn:hover{
    background-color: rgba(63, 64, 67, 0.95);
    color: #fff;
}

.table-list{
    position: relative;
    /* color:#fff;
    background:#fff; */
    float: left;
    z-index: 9;
}
.table-item, .table-opt-item, .table-more-item{
    display: inline-block;
    text-align: center;
    line-height: 34px;
    height: 34px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 4px;
    padding:0 5px;
    box-sizing: border-box;
    width:100%;
}
.table-item .active{
    cursor: default;
}
.table-top-arrow{
    width:20px;
    height:20px;
    float:right;
    margin:7px 7px 7px 0;
    cursor: pointer;
}
.arrow-icon{
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-right: none;
    border-bottom: none;
    margin-top: 3px;
    display: block;
    margin-left: 5px;
    transform: rotate(225deg);
    transition: transform 0.2s;
}
.open .arrow-icon{
    margin-top:8px;
    transform: rotate(45deg);
}
.top-list{
    height: 34px;
    padding: 4px;
    border-radius: 32px;
    font-size:18px;
    margin-top:5px;
    box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
    -webkit-box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
}
.top-list .table-item{
    border-radius: 32px;
    font-weight: bold;
}
.table-opt-list{
    display: none;
    position: relative;
    border-radius: 4px;
    color:#333;
    margin-top:5px;
    box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
    -webkit-box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
}
.top-list .table-item:hover, .table-opt-list .table-item:hover, .table-more-item:hover{
    background:rgba(255, 255, 255, 0.3000);
}
.select .top-list .table-item:hover{
    background:none;
}
.table-opt-title{
    border-top-left-radius:4px;
    border-top-right-radius:4px;
    font-weight: bold;
    width:100%;
    height: 28px;
    line-height: 28px;
    text-align: center;
}
.opt-outer{
    display:none;
    position: relative;
    margin-top:5px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
    -webkit-box-shadow: 0 0 4px 0px rgba(56, 44, 36, 0.3500);
}
.opt-stage{
    position: relative;
    background:#fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.opt-outer .progress{
    right:0;
}
.opt-outer .progressBarEnter{
    background-color: rgba(0,0,0,0.25);
}

.opt-stage .table-opt-list{
    display: block;
    margin-top:0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.select .table-item{
    border-radius: 0;
}
/*phone****/
.phone .table-list{
    position: absolute;
    font-size: 12px;
    top:20px;
    text-align: left;
}
.show-new .table-list{
    top:70px;
}
.phone .table-item,.phone .table-opt-item{
    width:72px;
    height:26px;
    line-height: 26px;
}
.phone .select .table-item, .phone .select .table-opt-item{
    width:100%;
}
.phone .top-list{
    height:26px;
    margin:0;
    font-size: 14px;
}
.phone .table-top-arrow{
    margin:3px 5px;
}
.phone .opt-stage{
    overflow-x: hidden;
    overflow-y: auto;
}
.phone .table-opt-list {
    font-size: 12px;
}
.phone .table-item:hover{
    background:none;
}
/**blue**/
.blue .top-list{
    background:#89B4DB;
    color:rgba(255, 255, 255, 0.6000);
}
.blue .table-opt-title{
    background-color: #89B4DB;
    color:#fff;
}
.blue .table-opt-list{
    background:#fff;
    color:rgba(51, 57, 64, 1);
}
.blue .top-list .active{
    background:#D6E7F5;
    color:#6085A7;
}
.blue .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/**red**/
.red .top-list{
    background:rgba(206,137,121,0.5);
    color:rgba(117, 61, 13, 1);
}
.red .table-opt-title{
    background-color: rgba(206,137,121,0.5);
    color:#fff;
}
.red .table-opt-list{
    background:#fff;
    color:rgba(117, 61, 13, 1);
}
.red .top-list .active{
    background:rgba(255, 255, 255, 0.6000);
    color:rgba(117, 61, 13, 1);
}
.red .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/**normal**/
.normal .top-list{
    background:rgba(223,184,141,0.5);
    color:rgba(117, 61, 13, 0.6000);
}
.normal .table-opt-list{
    background:#fff;
    color:rgba(117, 61, 13, 1);
}
.normal .table-opt-title{
    background:rgba(223,184,141,1);
    color:rgba(117, 61, 13, 1);
}
.normal .top-list .active{
    background:rgba(255, 255, 255, 0.6000);
    color:rgba(117, 61, 13, 1);
}
.normal .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/**white**/
.white .arrow-icon{
    border-color: rgba(153, 153, 153, 1);
}
.white .top-list{
    background:rgba(217, 217, 217, 0.5000);
    color:rgba(102, 102, 102, 0.6000);
}
.white .table-opt-title{
    color:rgba(102, 102, 102, 1);
    background-color: #ECECEC;
}
.white .table-opt-list{
    background:#fff;
    color:rgba(51, 57, 64, 1);
}
.white .top-list .active{
    background:rgba(255, 255, 255, 0.6000);
    color:rgba(117, 61, 13, 1);
}
.white .table-opt-list .active{
    background:rgba(245, 245, 245, 1);
}

/********novelty**********/
.novelty .top-list{
    background:rgba(40, 62, 82, 1);
    color:rgba(255, 255, 255, 0.6000);
}
.novelty .table-opt-title{
    color:#fff;
    background-color: rgba(40, 62, 82, 1)
}
.novelty .table-opt-list{
    background:#fff;
    color:rgba(51, 57, 64, 1);
}
.novelty .top-list .active{
    background:rgba(208, 175, 93, 1);
    color:rgba(255, 255, 255, 1);
}
.novelty .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/********yellow**********/
.yellow .top-list{
    background:rgba(157, 121, 87, 1);
    color:rgba(255, 255, 255, 0.6000);
}
.yellow .table-opt-title{
    color:#fff;
    background-color: rgba(157, 121, 87, 1);
}
.yellow .table-opt-list{
    background:#fff;
    color:rgba(117, 61, 13, 1);
}
.yellow .top-list .active{
    background:rgba(205, 185, 138, 1);
    color:rgba(255, 255, 255, 1);
}
.yellow .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/********skin1**********/
.skin1 .table-opt-title{
    color:#333;
    background-color: #E7E9EB;
}
.skin1 .top-list{
    color:#333;
}
.skin1 .top-list .active{
    background:rgba(183,144,102,0.5);
    /* background-color:rgba(246, 242, 239, 1); */
    color:rgba(255, 255, 255, 1);
}
.skin1 .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/********glass**********/
.glass .top-list{
    background:rgba(221,229,229,0.6);
    color:rgba(42, 64, 59, 1);
}
.glass .table-opt-title{
    color:#fff;
    background-color: #AFCFCD;
}
.glass .table-opt-list{
    background:#fff;
    color:rgba(42, 64, 59, 1);
}
.glass .top-list .active{
    background:rgba(77,172,147,0.5);
    color:rgba(255, 255, 255, 1);
}
.glass .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}

/********metal**********/
.metal .top-list{
    background:#F4EAD1;
    color:rgba(103,66,51,1);
}
.metal .table-opt-title{
    color:#fff;
    background-color: rgba(244, 230, 180, 1);
}
.metal .table-opt-list{
    background:#fff;
    color:rgba(103,66,51,1);
}
.metal .top-list .active{
    background:rgba(237,123,0,0.5);
    color:rgba(255, 255, 255, 1);
}
.metal .table-opt-list .active{
    background:rgba(246, 242, 239, 1);
}
/********silvery*******/
.silvery .arrow-icon{
    border-color: rgba(68, 68, 68, 1);
}
.silvery .top-list .active{
    background:rgba(68, 68, 68, 0.8);
    color:rgba(255, 255, 255, 1);
}
.silvery .table-opt-list .active{
    background:rgba(68, 68, 68, 0.8);
    color:rgba(255, 255, 255, 1);
}
/***more-folder-button***/
.pc .more-folder-books{
  transition: box-shadow 0.2s;
}
.pc .more-folder-books:hover{
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
}
.skin1 .more-folder-books{
    background: #D9A56B;
    color:#391D0A;
}
.white .more-folder-books{
    background: #F9F2E9;
    color:#391D0A;
}
.glass .more-folder-books{
    background: #3BAC92;
    color:#fff;
}
.yellow .more-folder-books{
    background: #CDB98A;
    color:#391D0A;
}
.white .more-folder-books{
    background: #7F7F7F;
    color:#fff;
}
.novelty .more-folder-books{
    background: #2A4056;
    color:#fff;
}
.metal .more-folder-books{
    background: #E79533;
    color:#fff;
}
.blue .more-folder-books{
    background: #79A8D5;
    color:#fff;
}
.silvery .more-folder-books{
    background: #444444;
    color:#fff;
}

/***new1**/
.new1 .top-list{
    background:rgba(181, 92, 18, 0.50);
    color:#FFF1DB;
}
.new1 .table-opt-title{
    color:#FFF1DB;
    background: rgba(181, 92, 18, 0.75);
}
.new1 .table-opt-list{
    background:#fff;
    color:#753D0D;
}
.new1 .table-opt-list .table-item:hover{
    background:#F6F2EF;
}
.new1 .top-list .active{
    background:#B55C12;
    color:#FFF1DB;
}
.new1 .table-opt-list .table-item.active{
    background:rgba(181, 92, 18, 0.75);
    color:#FFF1DB;
}
/***new2**/
.new2 .top-list{
    background:rgba(38, 117, 112, 0.50);
    color:#ffffff;
}
.new2 .table-opt-title{
    color:#ffffff;
    background: rgba(38, 117, 112, 0.75);
}
.new2 .table-opt-list{
    background:#ffffff;
    color:#292F32;
}
.new2 .table-opt-list .table-item:hover{
    background:#EFF6F5;
}
.new2 .top-list .active{
    background:#267570;
    color:#ffffff;
}
.new2 .table-opt-list .table-item.active{
    background:#267570;
    color:#ffffff;
}

/***new3**/
.new3 .top-list{
    background:rgba(104, 131, 159, 0.50);
    /* color:rgba(255, 255, 255, 0.60); */
    color:#fff;
}
/* .new3 .top-list .selected{
    color:#ffffff;
} */
.new3 .table-opt-title{
    color:#ffffff;
    background: rgba(104, 131, 159, 0.75);
}
.new3 .table-opt-list{
    background:#ffffff;
    color:#292F32;
}
.new3 .table-opt-list .table-item:hover{
    background:#EFF6F5;
}
.new3 .top-list .active{
    background:#68839F;
    color:#ffffff;
}
.new3 .table-opt-list .table-item.active{
    background:#68839F;
    color:#ffffff;
}

/***wood1**/
.wood1 .top-list{
    background:rgba(206, 152, 121, 0.50);
    color:#FFF1DB;
}
.wood1 .table-opt-title{
    color:#FFF1DB;
    background: rgba(206, 152, 121, 0.75);
}
.wood1 .table-opt-list{
    background:#fff;
    color:#753D0D;
}
.wood1 .table-opt-list .table-item:hover{
    background:#F6F2EF;
}
.wood1 .top-list .active{
    background:#753D0D;
    color:#FFF1DB;
}
.wood1 .table-opt-list .table-item.active{
    background:rgba(206, 152, 121, 0.75);
    color:#FFF1DB;
}
/***wood2**/
.wood2 .top-list{
    background:rgba(165, 112, 87, 0.85);
    color:#FFF1DB;
}
.wood2 .table-opt-title{
    color:#FFF1DB;
    background: rgba(206, 152, 121, 0.75);
}
.wood2 .table-opt-list{
    background:#fff;
    color:#855B48;
}
.wood2 .table-opt-list .table-item:hover{
    background:#F6F2EF;
}
.wood2 .top-list .active{
    background:#855B48;
    color:#FFF1DB;
}
.wood2 .table-opt-list .table-item.active{
    background:rgba(206, 152, 121, 0.75);
    color:#FFF1DB;
}

/***modern系列**/
/**更多时候的内部item统一样式*/
.modern1 .table-opt-list, .modern2 .table-opt-list, .modern3 .table-opt-list, .modern4 .table-opt-list{
    background:#fff;
    color:#333;
}

.modern1 .top-list, .modern2 .top-list{
    background: rgba(63, 64, 67, 0.4);
    color:#fff;
    border-radius: 6px;
}
.modern1 .opt-outer, .modern2 .opt-outer{
    background: rgba(63, 64, 67,1);
    color: #fff;
}

.modern3 .top-list{
    background: rgba(127, 98, 68, 0.4);
    color:#fff;
    border-radius: 6px;
}
.modern3 .opt-outer{
    background: rgba(127, 98, 68, 1);
    color: #fff;
}

.modern4 .top-list{
    background: rgba(18, 27, 49, 0.4);
    color:#fff;
    border-radius: 6px;
}
.modern4 .opt-outer{
    background: rgba(18, 27, 49, 1);
    color: #fff;
}
/*modern系列外部item样式*/
.modern1 .top-list .table-item,
.modern2 .top-list .table-item,
.modern3 .top-list .table-item,
.modern4 .top-list .table-item {
    opacity:0.75;
    font-weight: 400;
    border-radius: 6px;
}

.modern1.pc .table-opt-list .table-item:hover,
.modern2.pc .table-opt-list .table-item:hover,
.modern3.pc .table-opt-list .table-item:hover,
.modern4.pc .table-opt-list .table-item:hover {
    background:#f1f1f1;
}

.modern1 .table-opt-list .table-item.active,
.modern2 .table-opt-list .table-item.active,
.modern3 .table-opt-list .table-item.active,
.modern4 .table-opt-list .table-item.active {
    background:#E7E7E7;
    color:#333333;
    opacity:1;
}

.modern1 .top-list .table-item.active,
.modern2 .top-list .table-item.active,
.modern3 .top-list .table-item.active,
.modern4 .top-list .table-item.active {
    background: rgba(255, 255, 255, 0.2000);
    opacity:1;
}
/**下拉框型*/
.modern1 .top-list .selected,
.modern2 .top-list .selected,
.modern3 .top-list .selected,
.modern4 .top-list .selected {
    opacity:1;
}
/**modern系列top调整*/
.modern1.show-new .table-list,
.modern2.show-new .table-list,
.modern3.show-new .table-list,
.modern4.show-new .table-list{
    top:0;
}
.main-container{
	z-index: 1;
	overflow-y: overlay;
	overflow-x: hidden;
	/* overflow-y: auto; */
	-webkit-overflow-scrolling:touch;
	position: absolute;
}
.phoneScroll{
	/* overflow-y: auto;*/
	overflow-y:overlay;
	-webkit-overflow-scrolling:touch;
}

/* ::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	overflow-y:overlay;
} */
.phoneScroll ::-webkit-scrollbar{
	width: 6px;
	height: 6px;
	overflow-y:overlay;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(150, 150, 150, 0.5);
	background-clip: padding-box;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
	background-color: rgba(150, 150, 150, 0.5);
}
/****phone*****/
/* .pc.main-container{
	z-index: 1;
	overflow-y: overlay;
	overflow-x: hidden;
	-webkit-overflow-scrolling:touch;
	position: absolute;
}
.pc .phoneScroll{
	overflow-y: overlay;
	-webkit-overflow-scrolling:touch;
} */

.pc::-webkit-scrollbar, .pc ::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	overflow-y:overlay;
}
.pc::-webkit-scrollbar-thumb, .pc ::-webkit-scrollbar-thumb {
	background-color: rgba(150, 150, 150, 0.2);
	background-clip: padding-box;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	cursor: pointer;
}
.pc::-webkit-scrollbar-thumb:hover, .pc ::-webkit-scrollbar-thumb:hover {
	background-color: rgba(150, 150, 150, 0.5);
}

img{
	-webkit-touch-callout: default;
}
.phone .shelf-title{
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translate(-50%);
	/* max-width: 80%; */
	max-width: 100%;
}

/*BookDetailPanel*/
.phone .book-detail-container {
	position: relative;
	left: 40px;
	padding-left: 180px;
	width: 215px;
	min-height: 153px;
	line-height: 22px;
}

.phone .book-detail-book-container {
	position: absolute;
	top: 0;
	margin: auto;
	left: 0px;
	width: 86px;
	height: 116px;
	right: 0px;
}

.phone .detailContainer{
	margin-bottom: 0;
}

.phone .book-detail-book-container > img {
	position: absolute;
	top: 100%;
	margin-left: -91px;
	left: 50%;
	margin-top: -8px;
}

.phone .book-detail-book-container > .phone .book-img-wrapper {
	top: 0 !important;
	position: relative;
}

.phone .book-detail-title {
	max-height: 42px;
	font-weight: bold;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.phone .book-detail-info {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bold;
}

.phone .book-detail-desc {
	font-size: 13px;
	margin-bottom: 5px;
	max-height: 58px;
	width: 100%;
	overflow: auto;
}

.phone .book-detail-time {
	text-align: left;
	margin-bottom:5px;
	bottom:0;
	color:inherit;
	font-size: 12px;
	position: relative;
	color:#666;
}

.phone .view-button{
	width: 100%;
	margin:0;
	position:relative;
	cursor: pointer;
	text-align: center;
}

.phone .book-detail-view-button {
	position: relative;
	border: 1px solid #1B7FCC;
	color: white;
	font-size: 14px;
	width: 70px;
	height: 26px;
	line-height: 26px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
	cursor: pointer;
	display: inline-block;
	border-radius: 2px;
	background: #1B7FCC;
	text-align: center;
}

.phone .book-detail-addToCart-button{
	position: absolute;
	margin-left:7px;
	border: 1px solid #FA7F07;
	color: white;
	font-size: 12px;
	width: 70px;
	height: 26px;
	line-height: 26px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
	background: #FA7F07;
	text-align: center;
}

.phone .book-detail-buyNow-button{
	position: absolute;
	margin-left:85px;
	border: 1px solid #EF3C25;
	color: white;
	font-size: 12px;
	width: 70px;
	height: 26px;
	line-height: 26px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
	background: #EF3C25;
	text-align: center;
}

.phone .book-detail-view-button:hover {
	background-color: #218EE2;
}

.phone .book-detail-view-button:active {
	background-color: #1871B6;
}

.phone .book-detail-book-shelf {
	width: 182px;
	height: 60px;
	position: absolute;
	top: 100%;
	margin-top: -10px;
	left: 50%;
	margin-left: -91px;
}

.phone .book-detail-preview-button {
	position: absolute;
	border: 1px solid #14A05C;
	color: white;
	font-size: 14px;
	width: 70px;
	height: 26px;
	line-height: 26px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
	cursor: pointer;
	border-radius: 2px;
	background: #16A05C;
	text-align: center;
	top: -5px;
	right: -80px;
	z-index: 10;
}

.phone .book-detail-preview-button:hover {
	background-color: #1EA664;
}

.phone .book-detail-preview-button:active {
	background-color: #0C9453;
}

/*LightBox*/
.phone .light-box-background {
    background: rgba(11,11,11,0.5);
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.phone .light-box {
	border-radius:4px;
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    /* display: none; */
    opacity: 1;
    z-index: 99999999;
    overflow: hidden;
}

.phone .light-box-cancel-button {
    position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-weight: bold;
	height: 16px;
	width: 16px;
	padding:10px;
	opacity: 0.95;
	text-align: center;
}

.phone .light-box-cancel-button:hover {
    opacity: 0.75;
}

.phone .light-box-cancel-button:active {
	opacity: 1;
}

.phone .light-box-title {
	position: relative;
	padding: 20px;
	font-weight: bold;
	font-size:15px;
	border-radius: 0;
}

.phone .light-box-panel {
	padding: 20px;
	position: relative;
}

/**/
.phone-book-label {
	position: absolute;
	right: -6px;
	top: -1px;
	width: auto;
	max-width: 55px;
}

.phone-price-label {
	background: url(../image/price-label.png) no-repeat center center;
	width: 74px;
	height: 33px;
	background-position: 0px -100px;
	bottom: 5px;
	position: absolute;
	color: white;
	font-size: 12px;
	line-height: 36px;
	text-indent: 2px;
	left: -5px;
	z-index: 4;
	text-align: left;
	white-space: nowrap;
}

.button {
	position:relative;
	text-align: center;
	display: inline-block;
	padding: 5px 12px;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
	font-size: 14px;
	line-height: 16px;

	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}

.button-block {
	display: block;
}

.button-large {
	padding: 10px 0px;
}

.button-rounded {
	border-radius: 2px;
}
.mobile-view-button{
	position:relative;
	width:244px;
	cursor: pointer;
	text-align: center;
}
.button-gray {
	background: #666;
	color: white;
	border: 1px solid #616161;
}

.button-gray:hover {
	background: #5F5F5F;
}

.button-gray:active {
	background: #555;
}

.button-blue {
	color: white;
	background: #0076FE;
}

.button-blue:hover {
	background: #0868d7;
}

.button-blue:active {
	background: #0752a9;
}

.button-green{
	border: 1px solid #16A05C;
	color: white;
	background: #16A05C;
}

.button-green:hover{
	background: #1EA664;
}

.button-green:active{
	background: #0C9453;
}

.topIcon{
	width:18px;
	height:18px;
	background-position: -573px -40px;
}

/*****TopBar******/
.topBar-menuBox{
	z-index: 111;
    position: absolute;
    top: 40px;
    right: 0;
    width: 108px;
    border-radius: 4px;
	color:#322D29;
	background:#fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.topBar-btn{
	cursor: pointer;
	position:relative;
	left:0;
	top:0;
	height: 16px;
	margin-left:10px;
	float:left;
	line-height: 16px;
	width:16px;
	padding:10px;
	border-radius:5px;
	text-align: left;
}
.phone .top-share-btn{
	line-height: 16px;
	width:16px;
	border-radius:5px;
	position: absolute;
	left:auto;
	right: 10px;
	top: 10px;
	padding: 8px;
	height: 16px;
}
.topBar-btn.active{
	/* background:rgba(0,0,0,0.3); */
}

.topBar-menuBox .topBar-btn{
	position: relative;
	height: auto;
	float: inherit;
	line-height: 16px;
	width: auto;
	padding: 15px 0;
	margin:0 10px;
	background: transparent;
	border-radius:0;
}

.topBar-btn .topBar-btn-title{
	display:none;
}

.topBar-btn .topBar-menuBox  .topBar-btn-title{
	margin-left: 10px;
	display: inline-block;
	max-width: 62px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	vertical-align: top;
}
.topBar-icon{
	position: relative;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: text-top;
}
.menu-btn{
	padding:9px;
	width:18px;
	height:18px;
}
.menu-btn .menuIcon{
	width:18px;
	height:18px;
}
/****MobileFloderListForm****/
.phone .list-item:hover{
    background:transparent;
}

/****silvery****/
.silvery-btn{
	width:20px;
	height:20px;
	padding:8px;
}
.silvery-btn .topBar-icon{
	width:20px;
	height:20px;
}
.share-bg,.share-panel {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9998;
    top: 0;
    left: 0
}

.share-bg {
    background: 0 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.share-bottom {
    position: fixed;
    z-index: 9999;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform: translate(0px,100%);
    -moz-transform: translate(0px,100%);
    -ms-transform: translate(0px,100%);
    transform: translate(0px,100%);
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s ;
    -ms-transition: -ms-transform .3s ;
    transition: transform .3s ;
}

.share-panel.show .share-bottom {
    -webkit-transform: translate(0px,0);
    -moz-transform: translate(0px,0);
    -ms-transform: translate(0px,0);
    transform: translate(0px,0)
}

.share-panel.hide .share-bottom {
    /* -webkit-transition: -webkit-transform .2s;
    -moz-transition: -moz-transform .2s ;
    -ms-transition: -ms-transform .2s;
    transition: transform .2s;  */
}

.share-panel.show .share-bg {
    background: rgba(0,0,0,.4)
}

.share-box,.share-qrcode-box {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ececec;
    padding: 0 0 17px
}

.share-lists>li {
    float: left;
    width: 20%
}
/**old**/
/* .share-icon {
    font-size: 12px;
    color: #333;
    width: 50px;
    height: 60px;
    margin-top: 20px;
    background: url(../phoneImg/ico_share_bottom2.png) 0 0/auto 50px no-repeat;
    display: inline-block;
    line-height: 126px;
    text-decoration: none;
    margin-bottom: 5px
} */
/***new***/
.share-icon {
    font-size: 12px;
    color: #333;
    width: 54px;
    height: 54px;
    margin-top: 15px;
    background: url(../phoneImg/new-icon.png) 0 0/auto 50px no-repeat;
    background-size: auto;
    display: inline-block;
    line-height: 142px;
    text-decoration: none;
    margin-bottom: 5px
}

.share-icon:active,.share-icon:hover {
    color: inherit
}

.share-icon.sina {
    background-position: -224px -180px
}

.share-icon.qzone {
    background-position: -82px -180px
}

.share-icon.weixin {
    background-position: -11px -180px
}

.share-icon.qqfri {
    background-position: -295px -261px;
}

.share-icon.frigro {
    background-position: -100px 0
}

.share-icon.curl {
    background-position: -11px -259px
}

.share-icon.qrcode {
    background-position: -83px -259px
}

.share-icon.tieba {
    background-position: -153px -180px
}

.share-icon.doubai {
    background-position: -295px -180px
}

.share-icon.facebook {
    background-position: 5px -316px;
}

.share-icon.twitter {
    background-position: -45px -316px;
}

.share-icon.instagram {
    background-position: -98px -316px;
}

.share-icon.pinterest{
    background-position: -150px -316px;
}

.share-icon.email {
    background-position: -202px -316px;
}

.share-icon.linkedin {
    /* background-position: -266px -316px; */
    background-position: -153px -261px;
}

.share-icon.reddit {
    background-position: -322px -316px;
}

.h5-icon.share-icon.curl {
    background-position: 4px -370px;
}

.h5-icon.share-icon.qrcode {
    background-position: -54px -370px;
}
.h5-icon.share-icon.linkedin {
    background-position: -266px -316px;
}
.share-close {
    height: 50px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #333;
    line-height: 50px;
    display: block;
    text-decoration: none
}

.share-close:active,.share-close:hover {
    color: inherit
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden
}

.share-weixin-box,.share-weixin-kernel {
    padding: 15px;
    height: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 150px;
    z-index: 9999
}

.share-weixin-info {
    position: relative;
    width: 100%;
    background: #fff
}

.share-weixin-info>ul {
    padding: 10px 15px;
    color: #5a5a78;
    font-size: 16px;
    overflow: hidden
}

.share-weixin-info li {
    line-height: 34px;
    width: 100%!important;
    text-align: left!important
}

.share-weixin-info img {
    display: inline-block;
    vertical-align: -7px;
    margin: 0 5px
}


.share-weixin-mask:before {
    border: 8px solid transparent;
    content: " ";
    position: absolute;
    border-top-color: #fff;
    left: 50%;
    margin-left: -8px;
    top: -15px
}

.share-weixin-kernel {
    top: 15px;
    bottom: auto
}

.share-weixin-text {
    position: relative;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    color: #333;
    line-height: 28px
}

.share-weixin-text:before {
    border: 11px solid transparent;
    content: " ";
    position: absolute;
    border-bottom-color: #fff;
    top: -21px;
    border-right-color: #fff;
    right: 0
}

.share-qrcode-content {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.share-qrcode-code>img,.share-qrcode-wx>img {
    -webkit-touch-callout: default;
    width: 100%;
    height: 100%
}

.share-qrcode-control {
    position: relative;
    line-height: 0;
    font-size: 0;
    padding-top: 13px
}

.share-qrcode-tab {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    width: 65px;
    border: 1px solid #E2E2E2;
    cursor: pointer;
    color: #666
}

.share-qrcode-tab[data-class=qr_code] {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: none
}

.share-qrcode-tab[data-class=wx_code] {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: none
}

.share-qrcode-box.qr_code .share-qrcode-tab[data-class=qr_code],.share-qrcode-box.wx_code .share-qrcode-tab[data-class=wx_code] {
    background-color: #2B85EA;
    border-color: #2B85EA;
    color: #fff
}

.share-qrcode-box.qr_code .share-qrcode-code,.share-qrcode-box.wx_code .share-qrcode-wx {
    display: block
}

.share-qrcode-box {
    text-align: center;
    padding-top: 20px
}

.share-qrcode-title {
    font-size: 19px;
    color: #333;
    line-height: 26px;
    padding-bottom: 18px
}

.share-qrcode-code,.share-qrcode-wx {
    width: 150px;
    height: 150px;
    line-height: 0;
    font-size: 0;
    position: absolute;
    left: 0;
    display: none
}

.share-qrcode-code.active,.share-qrcode-wx.active {
    display: block
}

.share-qrcode-tip {
    font-size: 12px;
    color: #666;
    line-height: 18px;
    padding-top: 8px
}

/* .share-lists>li {
    float: left;
    width: 25%
}

.share-icon {
    font-size: 12px;
    color: #333;
    width: 50px;
    height: 60px;
    margin-top: 20px;
    background: url(../phoneImg/ico_share_bottom2.png) 0 0/auto 50px no-repeat;
    display: inline-block;
    line-height: 126px;
    text-decoration: none;
    margin-bottom: 5px
}

.share-icon:active,.share-icon:hover {
    color: inherit
}

.share-icon.sina {
    background-position: 0 0
}

.share-icon.qzone {
    background-position: -200px 0
}

.share-icon.weixin {
    background-position: -50px 0
}

.share-icon.frigro {
    background-position: -100px 0
}

.share-icon.qqfri {
    background-position: -150px 0
}

.share-icon.curl {
    background-position: -300px 0
}

.share-icon.qrcode {
    background-position: -350px 0
}

.share-icon.tieba {
    background-position: -400px 0
}

.share-icon.doubai {
    background-position: -450px 0
} */
.searchBox input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #ffffff;
}
.searchBox input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #ffffff;
}
.searchBox input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
    color: #ffffff;
}
.searchBox input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
    color: #ffffff;
}
.searchBox input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #ffffff;
}
/**********new-bookcase**********/
.new-pc{
  border-bottom: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  /* top:45px; */
  top: 3.75em;
}
.new-pc ::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	overflow-y:overlay;
}
.new-pc ::-webkit-scrollbar-thumb {
	background-color: rgba(150, 150, 150, 0.2);
	background-clip: padding-box;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	cursor: pointer;
}
.new-pc ::-webkit-scrollbar-thumb:hover {
	background-color: rgba(150, 150, 150, 0.5);
}

.content-blur{
  filter: blur(15px);
  -webkit-filter: blur(15px);
}
.new-top-btn{
  cursor:pointer;
	position:relative;
	left:0;
	top:0;
	height: 24px;
	margin-left:10px;
	float:right;
	line-height: 24px;
	width:24px;
	padding:6px;
	border-radius:5px;
	overflow: hidden;
}
.new-icon{
  display:inline-block;
	width:24px;
	height:24px;
	background-image: url(../phoneImg/new-icon.png);
}
.message-icon{
	background-position: -12px -15px;
}
.new-share-icon{
	background-position: -46px -15px;
}
.advance1,.advance2{
  background-color: rgba(246, 246, 246, 1);
}
/***********home-about*************/
.home-about *{
  box-sizing: border-box;
}
.home-about{
  box-shadow: 0 2px 6px 2px rgb(0 0 0 / 10%);
  box-sizing: border-box;
  color: #444;
  padding: 20px 25px 0;
  width: 85%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 72px;
  position: relative;
  z-index: 3;
  font-size: 1em;;
}
.home-about-content{
  box-sizing: border-box;
  color: #444;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  display: flex;
  position: relative;
  align-items: center;
}
.logo-box{
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  margin-bottom:16px;
  text-align: center;
}
.new-about-title{
  width: 174px;
  height: 22px;
  line-height: 22px;
  font-weight: bold;
  display: inline-block;
  flex: 4;
  margin-left: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.one-type .new-about-title{
  margin:0;
}
.new-logo {
  width:97px;
  height: 22px;
  display: inline-block;
  flex: 2;
  margin-right: 6px;
}
.one-type .new-logo{
  margin:0;
  width: 157px;
  height: 34px;
}
.new-about-desc{
  height: 5.3em;
  width: 100%;
  /* font-size: 12px; */
  padding-top: 1.8em;

  /* text-overflow: ellipsis;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  z-index: 1;
  position: relative; */
}
.about-desc-html{
  height: 3em;
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  overflow-y: overlay;
  z-index: 1;
  position: relative;
  margin: 0 -5px;
}
.about-desc-bg{
  position: absolute;
  left:0;
  width:100%;
  height:6.2em;
  bottom:0;
  background-image: url(../phoneImg/advance1/topAboutBottom.png);
  background-position: bottom center;
  background-size: 100% 75%;
  background-repeat: no-repeat;
}

/**********popBox*********/
.pop-close{
  cursor: pointer;
  background-position: -62px -120px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -36px;
  z-index: 10;
  right: 5px;
}
/******message******/
.message{
  box-sizing: border-box;
  border-radius: 8px;
  padding: 30px 30px 20px;
  position: absolute;
  /* width: 343px; */
  width:28em;
  left: 50%;
  top: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
}
.message *{
  box-sizing: border-box;
}
.message .bg{
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.concat-us{
  position: absolute;
  transform: translate(-50%, -8px);
  left: 50%;
  top: 0;
}
.concat-us img{
  height: 3em;
}
.concat-us p{
  font-size: 1.2em;
  position: absolute;
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 2.22em;
  letter-spacing: 0.08em;
}
.about-msg {
  padding: 0;
  height: auto;
  display: inline-block;
}
.about-msg .item{
  padding-left: 25px;
  position: relative;
  margin-top: 3px;
  color: #444;
  text-decoration: none;
  display: block;
  max-width: 15em;
}
.num-item{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about-msg .item:first-child{
  margin-top: 0;
}
.about-icon{
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top:1px;
}
.about-code{
  padding-left: 20px;
  border-left: 1px solid #eee;
  display: inline-block;
  margin-left: 20px;
  margin-right: 0;
}
.only-qrcode {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.about-code img{
  width: 80px;
  height: 80px;
  display: inline-block;
  top: 3px;
  position: relative;
}
.aboutWechat{
  background-position: -10px -81px;
}
.aboutPhone{
  background-position: -35px -81px;
}
.aboutEmail{
  background-position: -58px -81px;
}
.aboutAddress{
  background-position: -82px -81px;
}

/***************content-title*******************/
.table-box{
  /* font-size:18px; */
  background:rgba(246, 246, 246, 1);
  margin: 0;
  position: relative;
  padding-left: 16px;
  /* padding-right:16px; */
}
.show-detail{
  padding-right:0;
}
.table-box:first-child{
  margin-top: 0;
}
.table-box .title{
  font-size: 1.5em;
  font-weight: bold;
  color: #333333;
  padding: 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.show-detail .title{
  margin-right: 16px;
}
/*************newbookitem***********/
.markbook{
  height: 12.1em;
  /* border-right: 1px solid #ddd; */
  border-radius: 6px;
}
.markbook .detail-box{
  margin-left: 10.3em;
  margin-right: 1.36em;
  margin-top: 1.3em;
}
.markbook .newbook-desc{
  line-height: 1.4em;
}
/* .markbook .thumbImg{
  max-width: 7.8em;
  max-height: 10.5em;
} */
.markbook .newThumbBox{
  width: 7.8em;
  height: 10.5em;
  border-radius: 4px;
  position: absolute;
  left: 0.8em;
  top: 0.8em;
  box-shadow: 0 0 4px #bbb;
  -webkit-box-shadow: 0 0 4px #bbb;
  background-color: #fff;
  cursor:pointer;
}
.advance2 .markbook .newThumbBox{
  left: 1.2em;
  top: 1.2em;
}
.newbook-title{
  font-weight:bold;
  color:#29303D;
  font-size:1.4em;
  margin-bottom: 0.5em;
}

.newbook-desc{
  color:#7F8798;
  font-size:1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.new-read-book{
  cursor: pointer;
  margin-top: 1em;
  border-radius: 4px;
  background-color: #505E7C;
  color:#fff;
  text-align: center;
  font-weight: bold;
  width: 6em;
  height: 2em;
  line-height: 2em;
  font-size:1em;
}
.left-arrow{
  width: 10px;
  height: 10px;
  background-position: -130px -84px;
  margin-left: 3px;
}

/**************NewBookdetail*************/
.new-detial-panel{
  color:#fff;
  overflow-y: auto;
  margin: 0 auto;
}
.new-detail-shot{
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translate(-50%,0);
  margin-top: 11.75em;
  /* border: 1px solid #fff; */
  border-radius: 8px;
  text-align: center;
  /* box-shadow: 1px 3px 8px rgba(0,0,0,0.32);
  -webkit-box-shadow: 1px 3px 8px rgba(0,0,0,0.32); */
}
.new-detail-shot img {
  border-radius: 0.68em;
  /* max-width: 192px;
  max-height: 258px; */
  max-width: 16em;
  max-height: 21.5em;
  vertical-align: bottom;
}

.new-detail-info{
  background-color: rgba(0,0,0,0.44);
  height: 1.8em;
  line-height: 1.8em;
  padding: 0 0.5em;
  color: #fff;
  display: inline-block;
  border-radius: 0.6em;
  margin-bottom: 0;
  position: absolute;
  bottom: 9px;
  right: 7px;
  font-size: 1em;
}
.new-detail-container {
  margin-top: 1.8em;
  position: relative;
  text-align: center;
}
.detail-view {
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  margin: 2em auto 2.6em auto;
  line-height: 2.6em;
  width: 9.5em;
  height: 2.6em;
  border-radius: 2em;
  /* background: linear-gradient(180deg,#6C6E78,#4A4E5C); */
  background:#323D53;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-book-detail-title{
  font-weight: bold;
  font-size: 1.57em;
  line-height: 1em;
}
.split-arrow{
  font-size:1.2em;
  font-weight:bold;
  margin-bottom:1em;
}
.new-book-detail-time {
  font-size:1em;
  margin-top:0.5em;
}
.new-book-detail-count {
  font-size:1em;
  margin-top:1em;
}
.new-book-detail-desc{
  text-align: left;
  font-size:1.2em;
  line-height: 1.4em;
  padding: 0 2.8em;
  max-height: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-bottom: 1.42em;
}
.read-icon{
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: -80px -14px;
  margin-top: 0.1em;
  margin-right: 8px;
}

/****************new-book-stage******************/
.new-stage{
  padding: 0 16px;
}
.new-bookItem{
  cursor: pointer;
  display: inline-block;
  z-index:1;
  position:relative;
  /* margin-right:14px; */
  margin-bottom:20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(12, 26, 62, 0.20);
  -webkit-box-shadow: 0 2px 4px rgba(12, 26, 62, 0.20);
  /* width: 8.5em;
  height: 12.2em; */
  width: 31%;
  height: 13em;
  margin-right:3.5%;
}
.new-bookItem:nth-child(3n+3){
  margin-right:0;
}
.show-detail .new-bookItem{
  width: 100%;
  margin-bottom:30px;
  margin-right:0;
  box-shadow: none;
}

.new-bookItem .detail-box{
  height: 100%;
  top: 0;
  vertical-align: top;
  padding: 12px 0;
  box-sizing: border-box;
  position: absolute;
  right: 0px;
  left: 9.5em;
}
.new-bookItem:hover .qrImg{
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.qrImg:hover ~ .item-QrBox{
  visibility: visible;
  opacity: 1;
}
.item-detail:last-child{
  margin-bottom: 20px;
}
.item-detail{
  width:100%;
  height: 9.5em;
}
.newbook-shot{
  width:100%;
  height:100%;
}
.item-detail .newbook-shot{
  width:7.4em;
  border-radius: 4px;
}
.folder-box{
  /* padding-left: 5px; */
}
.folder-enter-shot{
  background-size:contain;
  background-position: center;
  display:inline-block;
  background-repeat: no-repeat;
  box-shadow: 0 0 2px #cdcdcd;
  width: calc(50% - 3px);
  height: calc(50% - 3px);
}
.show-detail .folder-box{
  padding: 0;
  margin-right: 16px;
}
.folder-icon{
  width: 44px;
  height: 36px;
  background-position: -11px -110px;
  box-shadow: none;
  background-size: auto;
}

/*********media*******/
/* body{ */
  /* line-height: 1.5em; */
/* } */
/* @media screen and (max-width: 250px){
  .new-bookItem{
    height:7.2em;
  }
}
@media screen and (min-width: 251px) and (max-width: 299px){
  .new-bookItem{
    height:8.2em;
  }
} */
@media screen and (max-width: 290px) {
  body{
    font-size: 10px;
  }
  .message{
    width: 22em;
  }
  .home-about{
    width: 92%;
  }
}
@media screen and (min-width: 301px) and (max-width: 374px) {
  .home-about{
    width: 92%;
  }
}
@media screen and (min-width: 375px) and (max-width: 420px) {
  .home-about{
    width: 90%;
  }
}
@media screen and (min-width: 421px) {
  body{
    font-size: 14px;
  }
}

/**advance2**/
.advance2 .home-about{
  margin-top: 106px;
}
.advance2 .about-desc-html{
  height: 4.4em;
  overflow-y: overlay;
}
.table-box .title{
  margin-right:16px;
}
/* .advance2 .table-box .title{
  margin-right:16px;
} */
.advance2 .about-icon{
  width: 18px;
  height: 18px;
  top: 0;
}
.title-bg{
  position:relative;
  top:-0.2em;
  width:1em;
  height:1.2em;
  display:inline-block;
}
.title-left-bg{
  background:url(../phoneImg/advance2/titleLeft.svg) center center no-repeat;
  background-size:contain;
}
.title-text{
  max-width:90%;
  line-height:1.5em;
  display:inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.title-right-bg{
  background:url(../phoneImg/advance2/titleRight.svg) center center no-repeat;
  background-size:contain;
}
.advance2 .title-text{
  max-width: calc(100% - 2em);
  /* display: inline-block;
  position: relative;
  line-height: 1em;
  top: -0.2em; */
}
/* .advance2 .about-desc-html{
  -webkit-line-clamp: 3;
} */
.page-num{
  color:#AF9D8E;
}
.advance2 .markbook .newbook-desc{
  max-height: 4.4em;
  margin-top: 3em;
  color:#896D55;
}
.advance2 .newbook-desc-enter{
  max-height: 4.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  z-index: 1;
}
.advance2 .markbook{
  height:auto;
  border-radius: 8px;
}
.advance2 .markbook .newbook-title{
  color:#896D55;
}
.advance2 .markbook .detail-box{
  margin-top:3em;
}
.advance2 .new-read-book{
  border-radius: 27px;
  background: #B58253;
}
.advance2 .item-detail .folder-enter-shot{
  background-size:contain;
  background-position: center;
  display:inline-block;
  background-repeat: no-repeat;
  box-shadow: 0 0 2px #cdcdcd;
  width: 22%;
  height: 100%
}
/* .advance2 .item-detail .folder-icon{
  background-size:contain;
  background-position: center;
  display:inline-block;
  background-repeat: no-repeat;
  box-shadow: 0 0 2px #cdcdcd;
  width: 22%;
  height: 100%
} */
.advance2 .new-bookItem{
  box-shadow:none;
  border-radius: 6px;
}
.advance2 .new-bookItem .newbook-shot {
  border-radius: 6px;
}
.advance2 .folder-box .newbook-shot {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.advance2 .folder.item-detail .newbook-shot {
  border-radius: 6px;
}
.bottom-icon{
  cursor: pointer;
}
.advance2 .new-about-title{
  font-size: 20px;
}
.new-title{
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 5px;
  position:absolute;
  left:0;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  text-align: center;
  width:100%;
  bottom:0;
  color:#fff;
  background:#505E7C;
  margin: 0;
  font-weight: normal;
}

.aboutAddress .msg {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.advance1 .topBar-btn,.advance2 .topBar-btn{
  float: right;
}
.advance-more{
  min-width: 50px;
  position: absolute;
  top:14px;
  right:16px;
  overflow: hidden;
  max-width: 86px;
  border-left: 12px solid #EAEEF6;
  border-right: 12px solid #EAEEF6;
  border-radius: 16px;float:right;
  text-align:center;
  cursor:pointer;
  font-size:14px;
  color:#353C48;
  background: #EAEEF6;
  height:32px;
  line-height:32px;
  transition: all 0.2s;
}
.advance-more:hover{
  border-left: 12px solid #e3edfb;
  border-right: 12px solid #e3edfb;
  background: #e3edfb;
}