@charset "utf-8";

.editor {
    max-width: 50rem;
    z-index: 9;
    height: auto;
    margin: 0 auto;
    text-align: center;
    width: 92%;
    position: relative;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-property: max-width, max-height;
    margin-top: 0.5rem;
    overflow: hidden;
}

.zoomin{
    width: 96%;
    position: fixed;
    top: 0rem;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.zoomout{
    width: 92%;
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    transform: translateX(0);
}

.zoomin_c{
    min-height: 50% !important;
    max-height: 90% !important;
}

.zoomout_c{
    min-height: 12rem !important;
    max-height: 22rem !important;
}

#editform {
    overflow: hidden;
}

.e_tips {
    float: right;
    font-size: .6rem;
    color: #949494;
    user-select: none;
    display: none;
    transition: all .1s ease-in-out;
    opacity: 1;
    margin-bottom: 0.4rem;
}

.e_tips>a {
    color: #5DA8FF;
}

.e_tips i {
    margin-bottom: -.14rem;
    cursor: pointer;
}

#e_content {
    width: 100%;
    outline: none;
    border: 0;
    min-height: 12rem;
    max-height: 22rem;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: .4rem;
    resize: none;
    text-align: left;
    overflow: auto;
}

.e_zoom {
    float: right;
    position: relative;
    margin-top: -2.8rem;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    user-select: none;
}


.e_tools {
    margin-top: .4rem;
}

.e_tool {
    padding: .2rem .5rem;
    margin: .4rem;
    border-radius: .4rem;
    font-size: 1rem;
    font-weight: 800;
    user-select: none;
    cursor: pointer;
}

.files {
    color: #fdc152;
    float: left;
    line-height: 2.65rem;
    margin-right: .5rem;
    font-size: 1.6rem;
    text-shadow: 0px 0px 0px #ffffff;
    cursor: pointer;
}

.files img {
    width: 2rem;
}

.stick {
    float: left;
    color: #949494;
}

.hidden {
    float: left;
    color: #949494;
}

.stickUnCheckd,
.hiddenUnCheckd {
    color: #949494;
}

.tag {
    float: left;
    color: #949494;
    position: relative;
}

.tag>input {
    width: 4.5rem;
    outline: none;
    border: 0;
    font-size: .9rem;
    padding: 0;
    text-align: center;
    color: #949494;
}

.tag img {
    position: absolute;
    left: .1rem;
    margin-top: 0.27rem;
    width: .9rem;
}

.e_addnote {
    float: right;
    padding: 0.35rem 0.8rem;
    margin-top: .35rem;
    border-radius: .4rem;
    color: #5DA8FF;
    font-size: .8rem;
    user-select: none;
    cursor: pointer;
    box-shadow: 0 0 2px 2px #5da8ff14;
}

#editform {
    height: inherit;
}

.uploads {
    position: absolute;
    width: 16rem;
    height: 16rem;
    padding: .4rem;
    box-sizing: border-box;
    border-radius: .4rem;
    box-shadow: 0 0 1rem #00000024;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    line-height: normal;
    bottom: 3rem;
    min-height: auto;
    transform-origin: left bottom;
    transition-duration: .2s;
    transition-timing-function: ease;
    transition-property: transform, bottom, left;
    transform: scale(0);
    z-index: 20;
}

.up_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .2rem;
    transform: scale(1);
    transition: transform .2s;
    transform-origin: left;
}

.up_item img {
    height: 2.5rem;
}

.up_item p {
    color: #949494;
    font-size: .8rem;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    margin: 0;
    padding-left: 0.4rem;
    box-sizing: border-box;
}

.up_item p span {
    font-size: .6rem;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.up_item i {
    font-size: .8rem;
    padding: .8rem;
    transform: translateX(0.5rem);
}

.up_item div {
    width: 0%;
    position: absolute;
    height: 2.5rem;
    background-color: #e7f9ff;
    z-index: -1;
}

.up_upload {
    width: auto;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    user-select: none;
    border: 1px dashed #cfcfcf;
    border-radius: .4rem;
}

.up_upload>p {
    font-size: .8rem;
    color: #949494;
    width: 100%;
    line-height: 3rem;
    text-align: center;
}

.up_upload>input {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}

.loadingR {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}