html,body{
    padding:0;
    margin: 0;
    width:100%;
    height:100%;
    font-family: 微软雅黑;
    font-size: 14px;
}
ul,li,img{
    padding:0;
    margin: 0;
}

#mapContainer{
    /* width:100%;
    height:100%; */
	width: calc(100% - 260px);
	height: calc(100vh - 110px);
	position: fixed;
	top:110px;
	left: 260px;
	z-index: 10;
}

.nav-top{
    position: fixed;
    top:0;
    left: 0;
    height: 110px;
    width: 100%;
    /* background-color: rgba(3,21,24,0.7); */
	background-color: #038ae8;
	color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	z-index: 99;
}
.nav-top-left {
	padding-left: 40px;
}
.nav-top .page-logo {
	padding-top: 5px;
}
.nav-top .page-logo h3 {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2;
}
.nav-top .page-logo p {
	font-size: 10px;
	line-height: 1.2;
}
.nav-top-left .nav-left-ul {
	margin-top: 15px;
}
.nav-top-left .nav-left-ul li {
	display: inline-block;
	padding: 0 15px;
	margin-right: 18px;
}
.nav-top-left .nav-left-ul li a {
	color: #fff;
	text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 13px;
}
.nav-top-right {
	padding-top: 30px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.nav-top-right .logout {
	margin-right: 20px;
	padding: 5px 10px;
}
.nav-top-right .login-user {
	margin-right: 35px;
	display: flex;
	height: 50px;
	align-items: center;
	flex-wrap: nowrap;
	align-content: center;
}
.login-user .headimg {
	width: 40px;height: 40px;
	border: 3px solid #fff;
	border-radius: 50%;
	background-color: #5FB878;
	overflow: hidden;
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	cursor: pointer;
}
.login-user .info {
	padding-left: 10px;
	line-height: 22px;
}
.login-user .info p.name {
	font-size: 14px;
	cursor: pointer;
}
.login-user .info p.name span,.login-user .info p.time{
	font-size: 12px;
}

.left-side {
	position: fixed;
	bottom:0;
	left: 0;
	height: calc(100% - 110px);
	width: 260px;
	z-index: 99;
}
.left-side h5 {
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	padding: 0 15px;
	height: 40px;
	background-color: #d4e7fb;
}
.left-side .channel-wrap {
	height: 40%;
	background-color: #f5f9ff;
}
.left-side .member-wrap {
	height: 60%;
	background-color: #f5f9ff;
}
.left-side .chat-wrap {
	height: 60%;
	/* background-color: #f0f7fe; */
}
.left-side .member-box {
	overflow-y: scroll;
	height: calc(100% - 40px);
}
.member-box .search-box {
	margin: 10px 10px 0;
	border: 1px solid #b0c3da;
	border-radius: 16px;
	background-color: #fff;
	padding: 5px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.member-box .search-box input {
	border: none;
	width: 170px;
}
.left-side .member-box li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
}
.member-box .info {
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}
.member-box .headimg {
	width: 36px;height: 36px;
	border-radius: 50%;
	background-color: #5FB878;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	color: #fff;
	margin-right: 10px;
	cursor: pointer;
}
.member-box .btns a {
	padding-left: 5px;
}
.left-side .chat-log-box {
	height: calc(100% - 135px - 40px);
	overflow-y: scroll;
	background-color: #f0f7fe;
}
.chat-log-box li {
	margin-bottom: 10px;
}
.chat-log-box li p.user {
	font-size: 12px;
	color: #acafc0;
}
.chat-log-box li p.user .time {
	margin-left: 5px;
}
.chat-log-box li p.cont {
	padding-top: 4px;
	color: #686f7f;
	font-size: 14px;
	line-height: 1.2;
}
.chat-log-box li p.my {
	color: #1182d0;
}
.chat-log-box li p img {
	max-width: 150px !important;
	height: auto;
	max-height: 150px !important;
	border: 2px solid #fff;
	border-radius: 8px;
}
.chat-wrap .reply-form-box {
	background-color: #f5f9ff;
	padding: 0 15px;
	height: 135px;
	overflow: hidden;
}
.chat-wrap .reply-form-box textarea {
	width: 100%;
	min-height: 70px !important;
	border: 2px solid #d3dbe8;
	border-radius: 10px;
	margin-top: 10px;
}
.chat-wrap .reply-form-box .btn-box {
	padding-top: 7px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.reply-form-box .btn-box .send-bt {
	display: inline-block;
	color: #fff;
	background-color: #01b910;
	text-align: center;
	font-size: 14px;
	padding: 0 23px;
	height: 28px;
	line-height: 28px;
	border-radius: 18px;
}
.reply-form-box .btn-box .icon-bt {
	display: inline-block;
	height: 28px;
	line-height: 28px;
	color: #9bb3d0;
	margin-right: 7px;
}

.right-side {
	position: fixed;
	top: 110px;
	right: 0;
	height: calc(100% - 110px);
	width: 430px;
	z-index: 99;
	background-color: rgba(32, 29, 29, 0.5);
}

.video-list {
	/* border-top: 2px solid #a9c1dc; */
	/* border-left: 2px solid #a9c1dc; */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
}
.video-list .video-box {
	/* border-bottom: 2px solid #a9c1dc; */
	/* border-right: 2px solid #a9c1dc; */
	width: 100%;
	height: 223px;
	/* background: url("../img/camera.png") no-repeat;
	background-position: center;
	background-color: #d6e6f6; */
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin: 10px;
	border: 1px solid rgba(0,0,0,0.5);
	overflow: hidden;

}

.video-box .camera-name {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 超出部分显示省略号 */
	position: absolute; 
	top: 0; left: 0; 
	background: rgba(0,0,0,0.5); 
	color: white; 
	padding: 5px 10px;
}

.tools-btn-wrap {
	position: fixed;
	top: 120px;
	left: 275px;
	width: 70px;
}
.tools-btn-wrap a {
	width: 68px;
	text-align: center;
	margin-top: 12px;
	display: block;
}
.tools-btn-wrap a img {
	width: 100%;height: auto;
}

.mic-wrap {
	position: fixed;
	bottom: 60px;
	left: 50%;
	width: 320px;
	margin-left: -160px;
	z-index: 99;
}
.mic-wrap .mic-bt {
	width: 45px;height: 45px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.4);
	line-height: 43px;
}
.mic-wrap .mic-bt img{
	width: 16px;height: auto;
}
.mic-wrap .voice-bt {
	display: inline-block;
	width: 200px;
	height: 45px;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.4);
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	margin: 0 10px;
}


.info-window-content {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.info-window-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.right-btns {
	margin-right: 25px;
	height: 55px;
	display: flex;
}

.control-btn {
	color: #fff;
	margin: 0 10px;
	text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
.control-btn:hover {
	color: #fff;
}