html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.main {
    padding: 20px;
    padding-bottom: 90px;
    margin: 0 auto;
    width: 80%;
    display: none;
}


.layui-submit {
    position: fixed;
    bottom: 20px;
}

.layui-input-left {
    float: left;
    width: 80%;
}

.layui-input-rigth {
    float: right;
}

.shadow-lg {
    box-shadow: 2px 2px 7px 7px rgb(0 0 0 / 2%);
    border: 0 solid #d9d9e3;
    border-radius: 5px;
    width: 80%;
}

    .shadow-lg .input-text {
        box-shadow: 2px 2px 7px 7px rgb(0 0 0 / 2%);
        border: 0 solid #d9d9e3;
        max-height: 200px;
        height: 54px;
        overflow-y: scroll;
        font-size: 16px;
        border-radius: 5px;
        padding: 10px 70px 10px 10px;
    }

.send-text {
    position: absolute;
    right: 11px;
    top: 16px;
    cursor: pointer;
}

.send-history {
    position: absolute;
    right: 9px;
    top: 46px;
    cursor: pointer;
}

.input-chat-msg {
    min-height: 84px;
    padding: 12px 34px 8px 8px;
    box-shadow: 2px 2px 7px 7px rgb(0 0 0 / 2%);
    border: 0 solid #d9d9e3;
    max-height: 200px;
    overflow-y: scroll;
    font-size: 16px;
    border-radius: 5px;
    resize: none;
    overflow-y: scroll;
    scrollbar-width: none;
}

    .input-chat-msg::-webkit-scrollbar {
        width: 2px;
        height: 6px;
    }

    .input-chat-msg::-webkit-scrollbar-thumb {
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        background-color: #c3c3c3;
    }

    .input-chat-msg::-webkit-scrollbar-track {
        background-color: transparent;
    }

.head1 {
    position: absolute;
    top: 0px;
    left: -34px;
    width: 24px;
    height: 24px;
    background: #FF69B4;
    color: #fff;
    text-align: center;
    line-height: 24px;
}

.head11 {
    position: absolute;
    top: 28px;
    left: -34px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

.head2 {
    position: absolute;
    top: 0px;
    right: -34px;
    width: 24px;
    height: 24px;
    background: #5FB878;
    color: #fff;
    text-align: center;
    line-height: 24px;
}

.head22 {
    position: absolute;
    top: 28px;
    right: -34px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

    .head11:hover, .head22:hover {
        cursor: pointer;
    }

    .head11 i, .head22 i {
        font-size: 26px;
    }

.layui-elem-quote-l {
    border-left: 5px solid #FF69B4;
    position: relative;
    margin-bottom: 10px;
    padding: 14px 8px;
    line-height: 1.6;
    border-radius: 0px 8px 8px 0px;
    background-color: #FAFAFA;
    box-shadow: 0px 0px 4px 0px #ccc;
    overflow-wrap: break-word;
}

.layui-elem-quote-r {
    margin-bottom: 10px;
    position: relative;
    padding: 14px 8px;
    line-height: 1.6;
    border-right: 5px solid #5FB878;
    border-radius: 8px 0px 0px 8px;
    background-color: #FAFAFA;
    box-shadow: 0px 0px 6px 0px #ccc;
    overflow-wrap: break-word;
}

    .layui-elem-quote-r:after {
        content: "";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

.my_area {
    width: 100%;
}

.my_content {
    float: right;
    max-width: 100%;
}

blockquote {
    margin-top: 18px;
}

.blinker {
    -webkit-animation-name: blinker;
    animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
    animation-timing-function: cubic-bezier(1, 0, 0, 1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    display: inline-block;
    width: 2px;
    margin-left: 2px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: #000;
    height: 15px;
    line-height: 15px;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}




table {
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    width: 100%;
    overflow: auto;
    word-break: normal;
    word-break: keep-all;
    margin:8px;
}

    table th {
        font-weight: bold;
    }

    table th,
    table td {
        padding: 6px 13px;
        border: 1px solid #ddd;
    }

    table tr {
        background-color: #fff;
        border-top: 1px solid #ccc;     
        text-align:left;
    }

        table tr:nth-child(2n) {
            background-color: #f8f8f8;
        }

.send-upload {
    position: absolute;
    left: 2px;
    top: -27px;
    cursor: pointer;
}