@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    /* display: grid; */
    width: 100%;
    place-items: center;
	margin:20px 0 0;
	background-color: #f5f5f5;
}

::selection{
    color: #fff;
    background: #007bff;
}

::-webkit-scrollbar{
    width: 3px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ddd;
}
::-webkit-scrollbar-thumb:hover{
    background: #ccc;
}

.wrapper{
	width: 80%;
	margin: 0 auto;
    /* width: 700px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid lightgrey;
    border-top: 0px; */
}
.wrapper .title{
    /* background: #007bff; */
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid lightgrey;
    border-radius: 5px 5px 0 0;
}
.wrapper .form{
    padding: 25px 25px;
    min-height: 740px;
    max-height: 740px;
    overflow-y: auto;
}
.wrapper .form .inbox{
    width: 100%;
    display: flex;
    align-items: baseline;
	margin-top: 15px;
}
.wrapper .form .user-inbox{
    justify-content: flex-end;
    margin: 13px 0;
}
.wrapper .form .inbox .icon{
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    background: #efefef;
}
.wrapper .form .inbox .icon img{
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    background: #efefef;
}

.wrapper .form .inbox .msg-header{
    max-width: 85%;
    margin-left: 10px;
}

.wrapper .form .inbox .msg-header p a{
    /* text-decoration: none; */
    color: #000;
    transition: all .2s;
}

.form .inbox .msg-header p{
    color: #000;
    background: #efefef;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    word-break: break-all;
}
.form .user-inbox .msg-header p{
    color: #fff;
    background: #007bff;
}
.wrapper .typing-field{
    display: flex;
    height: 60px;
    width: 100%;
    align-items: center;
	float: left;
    /* justify-content: space-evenly; */
    background: #c0c5c9;
    border-top: 1px solid #d9d9d9;
    border-radius: 0 0 5px 5px;
}
.wrapper .typing-field .input-data{
    height: 40px;
    width: 83.6%;
    position: relative;
    margin-left: 10px;
}
.wrapper .typing-field .input-data input{
    height: 100%;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0 80px 0 15px;
    border-radius: 3px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s ease;
}
.typing-field .input-data input:focus{
    border-color: rgba(0,123,255,0.8);
}
.input-data input::placeholder{
    color: #999999;
    transition: all 0.3s ease;
}
.input-data input:focus::placeholder{
    color: #bfbfbf;
}
.wrapper .typing-field .input-data button{
    position: absolute;
    right: 5px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    opacity: 1;
    pointer-events: none;
    border-radius: 3px;
    background: #007bff;
    border: 1px solid #007bff;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.wrapper .typing-field .feedback button{
    margin: 40px 0 0 10px;
    height: 38px;
    width: 85px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    opacity: 1;
    border-radius: 8px;
    background: #cb441c;
    border: 1px solid #a92e0a;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.wrapper .typing-field .input-data input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
.typing-field .input-data button:hover{
    background: #006fef;
}

.chatlist{width: 65%; border-radius: 5px;height: auto;background: white; /* border: 1px solid lightgrey; */ float: left; }

.login{width: 33%; border-radius: 5px; height: 260px; background: white; float: right; margin: 0 0 20px 20px; text-align: center; background: #fff no-repeat linear-gradient(180deg,#dcefff,hsla(0,0%,100%,0) 99%); background-size: 100% 250px; position: sticky; top: 0; left: 0; z-index: 10;}

.datalist{width: 33%; border-radius: 5px; height: 260px; background: white; float: right; margin: 0 0 20px 20px; }
.adimg{width: 33%; border-radius: 5px; height: 260px; float: right; margin: 0 0 20px 20px; }

.login .endtime{
	font-weight: 400;
    line-height: 28px;
    color: #999;
	font-size: 14px;
	display: block; 
}

.login .msgview{
	font-weight: 400;
    line-height: 30px;
    color: #d81e06;
	font-size: 14px;
	display: block; 
    cursor: pointer;
}

.login .aui-head-user {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
}

.login .aui-head-user-hd {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 1px solid #f4f8fb;
    border-radius: 100%;
}

.login .aui-head-user-hd img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 100%;
    border: 2px solid #f4f8fb;
}

.login .aui-head-user-bd {
    color: #77777;
    font-size: 0.9rem;
    position: relative;
	line-height: 45px;
}

.login .ubutton{
    display: inline-block;
    width: 80px;
    height: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #ffffff;
    color: #a1a1a1;
    text-align: center;
    font-size: 12px;
    line-height: 32px;
    cursor: pointer;
	margin:10px 5px 10px;
}

.login-top{font-size: 18px; line-height: 60px; box-sizing: border-box;color: #333333;margin-bottom: 20px; text-align: center}
.datalist-top{font-size: 18px; line-height: 60px; box-sizing: border-box;color: #333333;margin-bottom: 0px; text-align: center}
.login-center{width: 100%;box-sizing: border-box;padding: 0 40px;margin-bottom: 0px;display: inline-block}
.login-center-img{width: 20px;height: 20px;float: left;margin-top: 18px;}
.login-center-img>img{width: 100%;}
.login-center-input{float: left;width: 240px;margin-left: 5px;height: 40px;position: relative; margin-top: 10px; }
.login-center-input input{z-index: 2;transition: all 0.5s;padding-left: 10px;color: #333333;width: 100%;height: 40px;border: 0;/* border-bottom: 1px solid #cccccc; */border-top: 1px solid #ffffff;border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;box-sizing: border-box;outline: none;position: relative;}
.login-center-input input:focus{border: 1px solid dodgerblue;}
.login-center-input-text{background: white;padding: 0 5px;position: absolute;z-index: 0;opacity: 0;height: 20px;top: 50%;margin-top: -10px;font-size: 14px;left: 5px;color: dodgerblue;line-height: 20px;transition: all 0.5s;-moz-transition: all 0.5s;	/* Firefox 4 */-webkit-transition: all 0.5s;	/* Safari 和 Chrome */-o-transition: all 0.5s;	/* Opera */}
.login-center-input input:focus~.login-center-input-text{top: 0;z-index: 3;opacity: 1;margin-top: -15px;}
.login.active{-webkit-animation: login-small 0.8s ; animation: login-small 0.8s ;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}

.login-button{cursor: pointer; width: 100px; height: 40px;line-height: 40px;background-color: dodgerblue;border-radius: 5px; margin-left: -40px; margin-top: 15px; color: white; display: inline-block; }

.regtext{font-size: 14px; text-align: right; line-height: 40px; margin-left: 20px; color: #b4b8bb; display: inline-block; }
.regtext a{color: #9d9fa1;}

.datalist .normallist {
    padding: 10px 20px 0;
}

.normallist {
    font-size: 14px;
    line-height: 36px;
    position: relative;

    height: 200px; /* 你可以根据需要调整高度 */
    overflow-y: auto;
}

        /* 隐藏默认的滚动条 */
        .normallist::-webkit-scrollbar {
            width: 3px; /* 对于垂直滚动条 */
        }

        /* 滚动条轨道 */
        .normallist::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        /* 滚动条滑块 */
        .normallist::-webkit-scrollbar-thumb {
            background: #96bed1;
            border-radius: 10px; /* 圆角 */
        }

        .normallist::-webkit-scrollbar-thumb:hover {
            background: #759eb1; /* 滑块在悬停时的颜色 */
        }

.normallist li {
    padding-left: 14px;
    background: url(../images/dot.png) left -55px no-repeat;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.normallist li a {
    text-decoration: none;
    color: #333;
    transition: all .2s;
}


.adimg img {
    width: 100%;
	height: 240px;
	border-radius: 5px;cursor: pointer;
}
