body {
    /*background-color: #FBF7EC;*/
}

:root {
    --color: #43929F;
    --color-light: #9CD4E1;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    width: 100%;
    height: 100%;
    max-width: 100%;
    font-size: 14px;
}

body {
    height: 100%;
}

.container-full {
    width: 100%;
}

.container.pd{
    padding: 15px 0;
}

#app {
    width: 100%;
    height: 100%;
}

#app .el-container {
    width: 100%;
    height: 100%;
}

.el-main {
    padding: 0;
    background-color: #F0F0EE;
    position: relative;
    overflow: unset;
}

* {
    box-sizing: border-box;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.pd15 {
    padding: 15px;
}

.pd20 {
    padding: 20px;
}

.mr15 {
    margin-right: 15px;
}

*, a, li, img, input {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: none;
}

a {
    color: inherit;
}

/*去除未被访问的a标签的下划线*/
a:link {
    text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
    text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
    text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
    text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
    text-decoration: none;
}

.info-text {
    color: #666;
}

.empty-tip {
    color: #999;
    width: 100%;
    text-align: center;
}


.pagination {
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.pagination > li {
    display: inline;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: var(--color);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;

    /*border-radius: 50%;*/
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    border-color: var(--color-light);
    color: #fff;
}


.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background: var(--color-light);
}

.pagination > li > a, .pagination > li > span {
    color: var(--color-light);
}

.pagination > li > a, .pagination > li > span {
    color: var(--color-light);
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.ratio-image {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    position: relative;
}

.ratio-image .ratio-item {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.btn, .btn:hover, .btn:focus {
    display: inline-block;
    background: var(--color);
    color: #fff;
    height: 30px;
    border-radius: 4px;
    line-height: 30px;
    padding: 0 15px;
    font-size: 13px;
    cursor: pointer;
    border-color: var(--color);
}

.v-tag {
    background: var(--color-light);
    color: #fff;
}

.btn.circle, .btn.circle:hover, .btn.circle:focus {
    border-radius: 15px;
}

.btn.info, .btn.info:hover, .btn.info:focus {
    background: #4F4B4A;
    border-color: #4F4B4A;
}

.btn.plain, .btn.plain:hover, .btn.plain:focus {
    background: #fff;
    border-color: var(--color);
    color: var(--color);
}

.btn + .btn {
    margin-left: 10px;
}

.flex {
    display: flex;
    align-items: flex-start;
}

.flex.between {
    justify-content: space-between;
}

.flex.center {
    align-items: center;
}

.flex-center{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.share-btn > a {
    margin-right: 8px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('../image/share.png');
}

.share-btn > a, .share-btn > a.qq {
    background-position: -14px -4px;
}

.share-btn > a.qzone {
    background-position: -54px -4px;
}

.share-btn > a.sina {
    background-position: -93px -4px;
}

.share-btn > a.tieba {
    background-position: -133px -4px;
}

.share-btn > a.douban {
    background-position: -175px -4px;
}

.share-btn > a.icon-code, .icon-code {
    background-image: url("../image/icon-code.png");
    width: 32px;
    height: 32px;
    background-position: 0px 0px;
    background-size: 100% 100%;
    opacity: .8;
}

.share-item {
    display: flex;
    align-items: center;
}

.share-item .name {
    width: 50px;
}

.share-item + .share-item {
    margin-top: 15px;
}


.book-item .cover-box {
    position: relative;
    line-height: 0;
}

.book-item .cover-box .icon-qr {
    position: absolute;
    left: 0;
    right: 0;
    background: url('../image/icon-qrcode.png') no-repeat;
    background-size: 100%;
    width: 50px;
    height: 50px;
    z-index: 9;
    opacity: 1;
    transition: all 0.3s;
}

/*.book-item .cover-box:hover .icon-qr {
    opacity: 1;
}*/

.book-item .qrcode-img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
    transition: all .5s;
    opacity: 0;
    display: flex;
}

.book-item .cover-box .icon-qr:hover + .qrcode-img-box /*,.book-item .qrcode-img-box:hover*/
{
    opacity: 1;
}

.book-item .qrcode-img-box img {
    width: 85%;
}

.second-page-banner {
    width: 100%;
}

.block-box {
    background: #fff;
    padding: 15px;
}

.beian {
    height: 18px;
    margin-right: 5px;
}

.share-box .left {
    flex: 1;
    margin-right: 15px;
}

.v-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    padding: 6px;
    background-size: calc(100% - 12px);
    background-repeat: no-repeat;
    background-position: center center;
}

.v-icon.icon-share {
    background-image: url("../image/icon-share2.png");
}

.v-icon.icon-like {
    background-image: url("../image/icon-like.png");
}

.v-icon.icon-liked {
    background-image: url("../image/icon-liked.png");
}

.v-icon.icon-user {
    background-image: url("../image/icon-user.png");
}

.v-icon.icon-category {
    background-image: url("../image/icon-category.png");
}

.el-upload__tip {
    line-height: 1.2;
}

.el-row{
    flex-wrap: wrap; display: flex;
}

.el-pagination{
    display: flex;
    justify-content: center;
}

.disabled .el-upload.el-upload--picture-card {
    display: none !important;
}

.disabled .el-button--success.is-plain {
    display: none !important;
}
