/*定义滚动条高宽及背景高宽分别对应横竖滚动条的尺寸*/

 ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #F5F5F5;
}


/*定义滚动条轨道*/

 ::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}


/*定义滑块*/

 ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(0, 225, 255);
}

html {
    overflow: scroll;
}

#nav {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 1px 12px 0 rgb(1 39 78 / 12%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 7.5px;
    box-sizing: border-box;
}

.navInside {
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 15px;
    float: left;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgb(92, 92, 92);
}

.navhover:hover {
    /* hover效果 */
    color: #74ebd5;
}

#hitokotoPosition {
    padding-top: 200px;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
}

#hitokoto {
    /* 一言样式 */
    font-family: 'Times New Roman', 宋体;
    text-decoration: none;
    color: #fff;
    text-shadow: 3px 3px 3px #222;
    font-size: 50px;
    text-align: center;
    /* hover动画 */
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

#hitokoto:hover,
#hitokoto:focus,
#hitokoto:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#hitokotoPositionFrom {
    float: right;
    padding-top: 50px;
    padding-right: 50px;
}

#hitokotoFrom {
    font-family: 'Times New Roman', 宋体;
    text-decoration: none;
    color: #fff;
    text-shadow: 2px 2px 2px #222;
    font-size: 20px;
}

#main {
    margin-top: 200px;
    width: 100% - 20px;
    padding: 20px;
    padding-top: 0px;
    background-color: #ffffff80;
    backdrop-filter: blur(3px);
    box-shadow: 0 1px 12px 0 rgb(1 39 78 / 12%);
}

#allCulumn {
    display: flex;
    margin: 0 auto;
    max-width: 1300px;
}

#culumn {
    margin-right: 20px;
}

#culumnContent {
    display: flex;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 12px 0 rgb(1 39 78 / 12%);
}

#appContent {
    display: flex;
    flex-direction: column;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 12px 0 rgb(1 39 78 / 12%);
}

#allCulumn>#culumn {
    flex: 1;
}

#allCulumn>#app {
    width: 300px;
}

#AboutIcon {
    display: flex;
    flex-wrap: wrap;
}

#AboutIconItems {
    display: flex;
    flex-direction: column;
    width: 50px;
    margin: 5px;
}

#AboutIcomItems img {
    margin: 0 auto;
}

#box {
    width: 220px;
    height: auto;
    position: absolute;
    color: #00000000;
    padding: 5px;
    z-index: 100000;
}

#box:hover {
    width: 220px;
    height: auto;
    position: absolute;
    color: #cccccc;
    background-color: #00000080;
    padding: 5px;
    z-index: 100000;
}

#FLCbtn {
    background-color: #00000080;
    float: left;
    padding: 5px;
    margin: 5px;
    font-size: large;
    color: #ccc;
}

#FLCbtn:hover {
    background-color: #00000090;
    color: #fff;
}

.FLClist ul {
    padding-inline-start: 0px;
}

.FLClist ul li {
    list-style: none;
    /* 去掉小圆点 */
}

.FLClist ul a {
    color: #ccc;
    text-decoration: none;
    /* 去掉下划线 */
}

.FLClist ul li {
    /*一级菜单的样式 */
    float: left;
    width: 100px;
    height: 50px;
    line-height: 50px;
    /* 行高等于高使文字垂直居中 */
    text-align: center;
    font-size: 20px;
    /*字体大小*/
    background-color: #00000090;
}

.FLClist ul li ul li {
    display: none;
    /* 隐藏二级菜单 */
}

.FLClist ul li:hover ul li {
    /* 鼠标经过时显示二级菜单 */
    display: block;
    /* 二级菜单转化为块级元素,使其独占一行 */
}

.FLClist ul li:hover {
    background-color: #000000;
    /* 鼠标经过时显示的背景颜色 */
}

.innerCulumn {
    border-top: 2px solid #ccc;
    height: calc(200vh - 100px);
    overflow-y: scroll;
}

.paraText {
    text-indent: 2em;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: large;
}

.cutText {
    font-size: small;
    margin-top: 10px;
    color: dimgrey;
}

#toup {
    display: none;
    position: fixed;
    background: #2e82ff30;
    color: #ffffff;
    box-shadow: -1px 1px 1px 1px rgb(0 0 0 / 30%);
    backdrop-filter: blur(10px);
    right: 0px;
    bottom: 230px;
    width: 25px;
    height: 68px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 30px;
    z-index: 10001;
}

p {
    word-wrap: break-word;
    word-break: break-all;
}

.nameBackground {
    position: absolute;
    z-index: 1;
    background-color: aqua;
    width: 5px;
    height: 25px;
    border-radius: 5px;
    border: 5px;
}

.name {
    color: #aaa;
    margin-left: 5px;
}

.time {
    color: #ccc;
    font-size: xx-small;
}

.commentBox {
    background-color: white;
    padding: 30px;
    padding-top: 1px;
    padding-bottom: 50px;
    border-radius: 5px;
    box-shadow: 0 1px 12px 0 rgb(1 39 78 / 12%);
}

.replyComment {
    margin-top: 20px;
    width: 500px;
    margin-left: 100px;
}

.mainInput {
    height: 240px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.avatar {
    position: absolute;
    margin-left: -90px;
    height: 70px;
    width: 70px;
    border-radius: 50px;
}

.userAvatar {
    position: absolute;
    margin-left: 10px;
    height: 70px;
    width: 70px;
    border-radius: 50px;
}

.ol {
    margin-left: 100px;
}

.emotion {
    height: 40px;
    width: 40px;
    margin-bottom: -5px;
}

.replyBox {
    margin-top: 20px;
}

.langInput {
    position: relative;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    outline-color: rgb(153, 153, 255);
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    margin-left: 100px;
    margin-top: 20px;
    width: 700px;
    height: 100px;
    resize: none;
}

.replyLangInput {
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    outline-color: rgb(153, 153, 255);
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    margin-left: 100px;
    margin-top: 20px;
    width: 600px;
    height: 100px;
    resize: none;
}

.userInput {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #DCDFE6;
    outline-color: rgb(153, 153, 255);
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    height: 40px;
    width: 200px;
}

.userPlaceholder {
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: rgb(153, 153, 255);
    border: 1px solid #DCDFE6;
    box-sizing: border-box;
    color: white;
    display: inline-block;
    height: 40px;
    margin-left: 100px;
    width: 50px;
}

.userQQInput {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #DCDFE6;
    outline-color: rgb(153, 153, 255);
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    height: 40px;
    width: 200px;
}

.userQQPlaceholder {
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: rgb(153, 153, 255);
    border: 1px solid #DCDFE6;
    box-sizing: border-box;
    color: white;
    display: inline-block;
    height: 40px;
    width: 50px;
}

.getQQBtn {
    height: 40px;
    width: 80px;
    border: 2px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.publishBtn {
    position: relative;
    margin-left: 388px;
    height: 40px;
    width: 80px;
    border: 2px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.publishBtn:hover {
    background-color: rgb(153, 153, 255);
    color: white;
}

.publishReplyBtn {
    height: 40px;
    width: 80px;
    border: 2px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.exitReplyBtn {
    height: 40px;
    width: 80px;
    border: 2px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.exitReplyBtn:hover {
    background-color: rgb(153, 153, 255);
    color: white;
}

.publishReplyBtn:hover {
    background-color: rgb(153, 153, 255);
    color: white;
}

.replyBtn {
    margin-top: 7px;
    color: #aaa;
    height: 20px;
    width: 80px;
    border: 0px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.replyBtn:hover {
    background-color: rgb(153, 153, 255);
    color: white;
}

.getQQBtn:hover {
    background-color: rgb(153, 153, 255);
    color: white;
}

.hr {
    position: relative;
    border-radius: 20px;
    border: 2px solid rgb(153, 153, 255);
    margin-top: 20px;
    margin-bottom: 20px;
}


/* emoji */

.Emotion-body {
    display: none;
    position: relative;
    margin-left: 280px;
    margin-top: -30px;
    left: 0;
    right: 0;
    max-width: 500px;
    min-width: 500px;
    color: #4a4a4a;
    background-color: #ffffff;
    border: 1px solid rgba(144, 147, 153, 0.31);
    top: 2em;
    border-radius: 4px;
    z-index: 1000;
}

.Emotion-bar {
    height: 40px;
    width: 100%;
    border-top: 1px solid rgba(144, 147, 153, 0.31);
    border-radius: 0 0 4px 4px;
}

.Emotion-items {
    height: calc(200vh - 100px);
    overflow-y: scroll;
}

.Emotion-item {
    height: 45px;
}

.Emotion-item-emoji {
    font-size: 30px!important;
}

.owo .Emotion-packages {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.Emotion-package-active {
    background-color: var(--leonus-purple)!important;
    color: #000;
}

.li1 {
    border-radius: 10px;
    list-style-type: none;
    display: inline-block;
    line-height: 45px;
    font-size: 14px;
    padding: 0 10px;
    cursor: pointer;
}

.li1:hover {
    box-shadow: 0px 0px 10px #4a4a4a;
}

.ul1 {
    padding: 0px;
    padding-left: 0px!important;
    margin: 0px!important;
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.btnFocus {
    margin: 0;
    margin-right: -3px;
    font-size: medium;
    width: 100px;
    height: 40px;
    color: #ffffff;
    border: 1px solid white;
    border-radius: 0px 10px 10px 0;
    background-color: rgb(153, 153, 255);
}

.btnUnfocus {
    margin: 0;
    margin-right: -3px;
    font-size: medium;
    width: 100px;
    height: 40px;
    color: #000;
    border: 0px;
    border-right: 1px solid rgba(144, 147, 153, 0.31);
    border-radius: 0px 10px 10px 0;
}

.btnUnfocus :hover {
    color: #ffffff;
    background-color: rgb(153, 153, 255);
}

.emojiBtn {
    position: relative;
    height: 40px;
    width: 80px;
    border: 2px solid rgb(153, 153, 255)!important;
    border-radius: 16px!important;
}

.emojiBtn:hover {
    color: #ffffff;
    background-color: rgb(153, 153, 255);
}

.footer {
    background-color: #F2F2F2;
    color: #616161;
    font-size: xx-small;
    text-align: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}