
        * {
            margin: 0;
            padding: 0;
        }
        
        ::-webkit-scrollbar{width:4px;height:4px;background-color: #00000040;}
        ::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.2);border-radius:10px;}
        ::-webkit-scrollbar-track{background-color:transparent; }

        [v-cloak]{
            display: none;
        }
        
        [type="text"]{
            border-color: #c6c6c6;
        }
        
        ol,ul{
            margin-left: 20px;
            padding: 0px;
            margin-top: -24px;
        }
        ul{
            list-style: disc;
        } 
        ol{
            list-style: decimal;
        }
        
        .main{
            width: 100%;
            height: 100vh;
            background-color: rgba(239,240,240,1);
            display: flex;
            justify-content: space-between;
        }
        
        .aside{
            width: 100px;
            height: 100%;
            background-color: black;
            padding: 20px 10px;
        }
        .asideItem{
            width: 80px;
            height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            margin-top: 10px;
            color: rgba(255,255,255,.8);
            cursor: pointer;
        }
        .asideItem:hover{
            color: rgba(16,163,127,1);
        }
        .asideItem:nth-child(3){
            color: rgba(16,163,127,1);
        }
        .userImg{
            width: 48px;
            height: 48px;
            border-radius: 6px;
            overflow: hidden;
        }
        .loginBtn{
            width: 90%;
            height: 28px;
            border: 1px solid #2f7a77;
            color: white;
            border-radius: 14px;
            line-height: 28px;
            text-align: center;
            user-select: none;
            font-size: 12px;
        }
        .loginBtn:hover{
            border: 1px solid white;
        }
        
        
        
        .asideTwo{
            width: 250px;
            min-width: 200px;
            height: 100%;
            border-radius: 0 10px 10px 0;
            background-color: rgb(247,247,247);
            padding: 20px 20px 80px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .writeItemBox{
            width: calc(100% + 14px);
            height: calc(100vh - 140px);
            overflow: auto;
            padding-right: 4px;
        }
        .writeItem{
            width: 100%;
            height: 100px;
            background-color: rgba(200,200,200,.3);
            border-radius: 8px;
            margin-top: 10px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            padding: 10px 20px;
            font-size: 16px;
            position: relative;
            transition: all 0.1s linear;
        }
        .writeItem:hover{
            border: 2px solid rgba(34,166,242, .2);
        }
        .selectwrite{
            border: 2px solid rgba(34,166,242, 1);
        }
        .itemBottom{
            width: 100%;
            height: 1.25rem;
            position: absolute;
            bottom: 0;
            left: 0;
            border-top: 1px solid white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #aaaaaa;
            font-size: 12px;
            padding: 0 20px;
        }
        .el-collapse{
            border: none;
        }
        .el-collapse-item__header{
            border: none;
            background-color: transparent;
            position: relative;
            padding-left: 16px;
        }
        .el-collapse-item__header::before{
            content: '';
            width: 6px;
            height: 24px;
            background-color: rgba(34,166,242, 1);
            position: absolute;
            left: 0;
        }
        
        .asideVip{
            width: 82%;
            height: 50px;
            background: linear-gradient(30deg, #f7debe, #eba953);
            border-radius: 10px;
            position: absolute;
            bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        
        
        .chatArea{
            /*flex: 1;*/
            width: 50%;
            min-width: 300px;
            height: calc(100vh - 60px);
            min-height: 600px;
            /*background-color: rgba(240,245,254,.6);*/
            margin: auto;
            margin-top: 40px;
            border-radius: 30px;
            /*box-shadow: 0 0 10px 0 lightgray;*/
            position: relative;
            padding: 30px;
        }
        
        .chatBox_HistoryBox{
            width: 100%;
            height: calc(100vh - 200px);
            min-height: calc(600px - 160px);
            box-shadow: 0 5px 10px -10px gray;
            overflow: auto;
        }
        .chatBox_History{
            width: 100%;
            height: auto;
            display: flex;
            margin: 20px 0;
            padding: 5px;
            position: relative;
        }
        .chatBox_History_img{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            box-shadow: 0 0 5px 0 gray;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .chatBox_History_content{
            width: auto;
            max-width: 80%;
            height: auto;
            background-color: white;
            color: #1E1F24;
            border-radius: 10px;
            padding: 16px 12px;
            margin-left: 20px;
            white-space: pre-wrap;
            letter-spacing: 1px;
        }
        .tempIssues:hover{
            background-color: rgba(235,238,243,1);
        }
        
        .chatBox_History_img02{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            box-shadow: 0 0 5px 0 gray;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .chatBox_History_content02{
            width: auto;
            max-width: 80%;
            height: auto;
            background-color: rgba(34,166,242,1);
            font-size: 14px;
            color: white;
            border-radius: 10px;
            padding: 16px 12px;
            box-shadow: 0 0 5px 0 lightgray;
            margin-left: auto;
            margin-right: 20px;
        }
        
        
        
        
        
        .userInputBox{
            width: calc(100% - 60px);
            height: 60px;
            background-color: white;
            border-radius: 30px;
            box-shadow: 0 0 10px 0 lightgray;
            position: absolute;
            left: 30px;
            bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 60px;
            /*margin-left: 5%;*/
        }
        .userInput{
            width: 100%;
            border: none;
            color: rgba(0,0,0,.8);
        }
        .userInput:focus{
            box-shadow: none;
        }
        .chatSend{
            width: 40px;
            position: absolute;
            right: 16px;
            cursor: pointer;
            transition: all 0.1s linear;
        }
        .chatSend:hover{
            transform: scale(0.8);
        }
        
        
        .userCenterShade{
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: rgba(0,0,0,.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99;
        }
        .userCenterShade_box{
            width: 500px;
            height: 320px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            padding: 5px 10px 20px 20px;
        }
        .el-icon-close:hover{
            color: red;
            cursor: pointer;
        }
        .userMsgBox{
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            margin-top: 40px;
            position: relative;
        }
        .userAvatar{
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
        }
        .userNameID{
            font-family: '楷体';
        }
        .userVip{
            height: 50px;
            background: linear-gradient(30deg, #f7debe, #eba953);
            border-radius: 12px;
            position: relative;
        }
        .nowVip{
            width: 70px;
            height: 26px;
            background: rgb(255,232,181);
            color: #9A5B12;
            line-height: 26px;
            text-align: center;
            border-radius: 13px;
            cursor: pointer;
        }
        
        
        
        
        @media screen and (max-width: 1100px) {
            .chatArea {
                width: 100%;
            }
        }
        @media screen and (max-width: 850px) {
            .chatBox_History_content02{
                position: absolute;
                left: 65px;
            }
        }