/* * {
    -ms-user-select: none; 
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
} */
* {
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    
}


.main-wr {
    width: 100%;
    height: 100%;
}
.main-wr .main-top{
    display: flex;
    height: 50px;
    line-height: 48px;
    background-color: #213448;
    color : white;
}
.main-wr .main-top > div {
    display: inline-block;
    width: 50px;
    height: 50px;
}
.main-wr .main-top > div:nth-child(1){
    width: 150px;
    text-align: center;
    color : white;
    font-style: italic;
    font-weight: 900;
}
.main-wr .main-top > div img {
    width: 100%;
    height: 100%;
}


.login {
    position: absolute;
    top : 0;
    right: 100px;
    width: initial !important;
    padding : 0 20px;

    text-align: center;
    color : white;
    font-style: italic;
    font-weight: 900;
    cursor: pointer;
}
.login:hover {
    color : #e3e3e3;
}
.login:active {
    color : white;
}


.main-wr .main-content {
    display: flex;
    height: calc(100% - 50px);
}

.main-wr .main-left{
    width: 50px;
    height: 100%;
    background-color: #213448;
    color : white;
    display: flex;
    flex-direction: column;
}
.main-wr .main-left * {
    color : white;
}
.main-wr .main-left > div {
    border : 0.1px solid white;
    width: 100%;
    height: 50px;
    line-height: 49px;
    text-align: center;
    font-size: 11px;
}

.main-wr .main-right{
    flex : 1;
    overflow: auto;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow: hidden;
    overflow-y: scroll; */
}

.text-header {
    width: calc(100% - 50px);
    margin: 0 auto;
}

.text-edit {
    position: relative;
    border: 0.1px solid #213448;
    width: calc(100% - 50px);
    min-height: calc(100% - 100px);
    padding-bottom: 10px;
    display: flex;
    margin: 0 auto;
}
.text-edit > div {
    display: flex;
    flex : 1;
    max-width: 1200px;
    border: .1px solid #ccc;
    padding : 10px;
    margin : 0 auto;
}
.text-edit > div:focus {
    outline: 1px solid rgba(0,112,201,.5);
}
.text-edit > div > div {
    flex : 1;
    border: .1px solid #ccc;
    padding : 10px;
}
.text-edit > div > div:focus {
    outline: 1px solid rgba(0,112,201,.5);
}

.update-count {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 11px;
    border : 0 !important;
}


.text-taps {
    position: absolute;
    top : 0;
    left : 50%;
    width: 100%;
    height: 50px;

    transform: translate(-50%, 0%);
    border-bottom: 1px solid #213448;
    background-color: white;
    
    z-index: 9;
}
.text-taps label span { color: #b22929; }

.text-left {
    margin-top: 51px;
    /* min-width: 540px; */
    max-width: 540px;
    margin : 51px auto;
}
.text-right {
    margin-top: 51px;
    /* min-width: 540px; */
    /* max-width: 540px; */
}
.text-content > div {
    min-height: 27px;
    line-height: 25px;
    padding : 0 2px;
    margin-bottom: 2px;
    font-weight: 300;
}

.text-content > div > span {
    padding : 0 2.3px;
}
.text-right > div:hover > span {
    background: #e1f0f6;
}



.text-content > div > span > span {
    display: inline-block;    
    padding : 0 2.3px;
}
.text-content > div > span > span:first-child{
    padding : 0;
    padding-right: 2px;
}
.text-right > div > span > span:hover {
    background: #7cbcff;
}


.text-content .selection {
    background: #e1f0f6;
}
.text-right .selection span.blue {
    background: #7cbcff;
}

.text-content .removed-line {
    background: #feafaf;
}
.text-content .removed-line * {
    color: #b22929;
}

.text-content .added-line {
    background: #7cbcff;
}


.text-lines {
    border : 0 !important;
    min-width: 100px;
    max-width: 100px;
    padding : 0 !important;
    margin-top: 50px;
}
.text-lines canvas {
    width: 100%;
    height: 100%;
}





.text-page {
    display: inline-block;
}
.text-page * {
    display: inline-block;
    border-radius: 5px;
    font-size: 15px;
    color: #b22929;
    margin : 0 5px;
}
.text-page input {
    border : 1px solid #e1f0f6;
    border-bottom: 1px solid #ccc;
    width: 50px;
    text-align: center;
    padding: 5px 5px;
}
.text-page button {
    border : 1px solid #e1f0f6;
    background : none;
    padding: 5px 25px;
    cursor: pointer;
}
.text-page button:hover {
    background: #e1f0f6;
}
.text-page button:active {
    background: white;
}


.text-btns > *{
    display: inline-block;
    border-radius: 5px;
    font-size: 15px;
    color: #b22929;
}

.save-file {
    border: 1px solid #e1f0f6;
    padding: 5px 25px;

    text-indent: 999px;
    overflow: hidden;
    max-width: 65px;

    background: none;
    background-image: url('/images/icons/file-save.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;

    cursor: pointer;
}
.refresh {
    border: 1px solid #e1f0f6;
    padding: 5px 25px;

    text-indent: 999px;
    overflow: hidden;
    max-width: 65px;

    background: none;
    background-image: url('/images/icons/refresh.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;

    cursor: pointer;
}

.view {
    border: 1px solid #e1f0f6;
    padding: 5px 25px;

    text-indent: 999px;
    overflow: hidden;
    max-width: 65px;

    background: none;
    background-image: url('/images/icons/view.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;

    cursor: pointer;
}
.write {
    border: 1px solid #e1f0f6;
    padding: 5px 25px;

    text-indent: 999px;
    overflow: hidden;
    max-width: 65px;

    background: none;
    background-image: url('/images/icons/write.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;

    cursor: pointer;
}

.icons {
    filter: invert(1);
    cursor: pointer;
    max-width: 65px;
    text-indent: 999px;
    overflow: hidden;
}
.home {
    background: none;
    background-image: url('/images/icons/home.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.user {
    background: none;
    background-image: url('/images/icons/user.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.file-folder {
    background: none;
    background-image: url('/images/icons/file-folder.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.my-write {
    background: none;
    background-image: url('/images/icons/write.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.my-cover {
    background: none;
    background-image: url('/images/icons/bookcover.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.my-stats {
    background: none;
    background-image: url('/images/icons/stats.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.love-folder {
    background: none;
    background-image: url('/images/icons/love-folder.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.note {
    background: none;
    background-image: url('/images/icons/icon-note.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}




.icons:hover {
    filter: invert(0.8);
}
.icons:active {
    filter: invert(0.9);
}


.file-zone {
    position: relative;
    border : 1px solid #709cff;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.file-zone::before {
    content: '';

    border-radius: 10px;

    position: absolute;
    top : 50%;
    left : 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 90%;
    /* background: rgba(0, 0, 0, 0.1); */
    background-color: #b22929;
}

.file-zone::after {
    content: ' ';
    position: absolute;
    top : 50%;
    left : 50%;
    transform: translate(-50%, -50%);

    font-size: 22px;
    color : white;
    width: 100px;
    height: 100px;
    background-image: url('/images/icons/folder.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    
    filter: drop-shadow(2px 4px 6px black) invert(1);
}











.detail-content {
    text-align: justify;
    min-width: 600px;
    max-width: 600px;
    min-height: 100%;
    margin: 0 auto;
    background-color: white;
}
.detail-content .dt {
    text-align: right;
}
.detail-content .dt * {
    color : #888;
    font-size: 13px;
}
.detail-content h1 {
    text-align: center;
    padding : 50px 10px;
}
.detail-content .writer {
    text-align: right;
}
.detail-content p {
    padding : 10px;
}

.print {
    page-break-after: always;
    size: 21cm 29.7cm;
    margin: 30mm 45mm 30mm 45mm;
}







.purchase-list {
    position: fixed;
    top : 50%;
    left : 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: none;
}

.g-coin {
    position: relative;
    text-align: right;
    font-weight: 600;
    color: #ffc75e;
    text-shadow: 1px 1px 0 rgba(255, 83, 124, 1);

}
.g-coin::after {
    content: '';
    position: absolute;
    top: 7px;
    left: -21px;
    width: 30px;
    height: 30px;

    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/images/icons/binance.png);
}


.icon-question {
    background-size: 22px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-image: url(/images/icons/question.png) !important;
    filter: invert(1);
}

.ads-banner {
    position: relative;
    height: 600px;
}
.ads-title {
    position: absolute;
    top : 150px;
    left : calc(50% - 250px);
    transform: translate(-50%, 0);
    font-size: 52px;
    color : #b22929;

    font-style: italic;
    font-weight: 900;
    text-shadow: 1px 1px #709cff;
}
.ads-desc {
    position: absolute;
    top : 250px;
    left : calc(50% - 250px);
    transform: translate(-50%, 0);
    font-size: 22px;
    font-weight: 400;
}
.ads-desc p {
    padding : 20px;
}
.ads-desc p span {
    font-size: 52px;
    color : #feafaf;

    font-style: italic;
    font-weight: 900;
    text-shadow: 1px 1px #709cff;

}

.banner-10 {
    width: 100%;
    height: 100%;
    background-image: url('/images/banner/animebanner10.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.bd-list {
    cursor: pointer;
    font-size: 12px;
    letter-spacing: -1px;
}
.bd-list > span {
    font-size: 12px;
    letter-spacing: -1px;
}
.bd-list > span:nth-child(1) {
}
.bd-list > span:nth-child(1)::after {
    content: ' ) ';
}
.bd-list > span:nth-last-child(1) {
    color : #b22929;
    font-size: 11px;
}

.bd-list:hover {
    outline: 1px solid #709cff;
}
.bd-list:active {
    outline: 1px solid #7cbcff;
}


@media (max-width: 576px) {
    .main-wr .main-right {
        overflow-x: hidden;
    }


    .n-today ul li {
        width: 100%;
    }
    .n-wr-width > div ul.today li .my-book-cover > div:nth-child(1) {
        background-position: center !important;
    }

    .login {
        right: 10px;
        max-width: 100px;
    }

    .ads-title {
        top : 50px;
        left : calc(50%);
        transform: translate(-50%, 0);
        font-size: 29px;
        letter-spacing: -1px;
        width: 80%;
    }
    .ads-desc {
        top : 150px;
        left : calc(50%);
        transform: translate(-50%, 0);
        font-size: 22px;
        font-weight: 400;
        width: 80%;
        
    }
    .ads-desc p {
        border-radius: 20px;
        background: rgba(255, 255, 255, .7);
        margin-bottom: 10px;
        font-size: 15px;
    }
    .ads-desc p span {
        font-size: 25px;
        color : #b22929;
    }

    .banner-10 {
        background-position: right;
        background-size: cover;
    }
}



@media (min-width: 576px) and (max-width: 768px) {
   
}

