copyright-official-website/src/components/onlineConsultant.html
2024-06-03 09:43:48 +08:00

81 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>在线咨询</title>
</head>
<style>
body {
width: 100%;
height: 100vh;
overflow: hidden;
background-color: #FFF;
}
.chatWindow {
display: flex;
flex-direction: column;
position: relative;
left: 15%;
top: 4%;
width: 70%;
height: 90%;
max-width: 1000px;
max-height: 720px;
box-shadow: 0 0 24px 0 rgba(15, 66, 76, .25);
}
.title {
height: 60px;
background-color: #fda633;
}
.content {
width: 100%;
height: 100%;
/* background-color: pink; */
}
.content .left {
display: flex;
flex-direction: column;
width: 648px;
height: 100%;
/* background-color: skyblue; */
border-right: 2px solid #ebeff0;
}
.left .boxTop {
height: 474px;
width: 100%;
border-bottom: 2px solid #ebeff0;
}
</style>
<body>
<div class="chatWindow">
<div class="title">
<div class="icon"></div>
<p></p>
</div>
<div class="content">
<div class="left">
<div class="boxTop"></div>
<div class="boxBottom">
</div>
</div>
<div class="right">
<div class="headline"></div>
<!-- 公告 -->
<div class="notice">
</div>
</div>
</div>
</div>
</body>
</html>