管理系统
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>管理系统</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width:100%;
height:100%;
}
.bg{
width: 1800px;
height: 800px;
background-color: aliceblue;
display:flex;
flex-direction: row;
}
.zuo {
width: 300px;
height: 800px;
background-color: rgba(33, 32, 31, 0.805);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: aliceblue;
}
.you{
width: 1300px;
height: 800px;
background-color: aliceblue;
display: flex;
flex-direction: column;
}
.ding{
width: 1300px;
height: 50px;
background-color: rgb(179, 174, 174);
display: flex;
align-items: center;
}
.leirong{
width: 1300px;
height: 700px;
background-color:white;
}
.di{
width: 1300px;
height: 50px;
background-color: rgb(179, 174, 174);
display: flex;
align-items: center;
justify-content: center;
}
.zuo1 {
height: 80px;
width: 300px;
background-color: rgb(31, 34, 37);
display: flex;
align-items: center;
justify-content: center;
}
.zuo2{
height: 80px;
}
.zuo3{
height: 80px;
}
.zuo4{
height: 80px;
}
.zuo5{
height: 80px;
}
.zuo6{
height: 80px;
}
.zuo7{
height: 80px;
}
.zuo8{
height: 80px;
}
.zuo9{
height: 80px;
}
.zuo10{
height: 80px;
}
.zuo p button:hover{
background-color: #45aafd;
font-weight: 600;
}
.zuo p button{
width: 300px;height: 80px;
}
</style>
</head>
<body>
<div class="bg">
<div class="zuo">
<div class="zuo1">
<div class="zuo11"><p>云端中国城</p></div>
</div>
<div class="zuo2"><p><button>首页</button></p></div>
<div class="zuo3"><p><button>设置</button></p></div>
<div class="zuo4"><p><button>用户管理</button></p></div>
<div class="zuo5"><p><button>用户管理</button></div>
<div class="zuo6"><p><button>主播认证</button></div>
<div class="zuo7"><p><button>直播管理</button></p></div>
<div class="zuo8"><p><button>视频管理</button></p></div>
<div class="zuo9"><p><button>财务管理</button></div>
<div class="zuo10"><p><button>道具管理</button></p></div>
</div>
<div class="you">
<div class="ding">
<div><p>云端中国城后台管理系统</p></div>
</div>
<div class="leirong"></div>
<div class="di">
<div class="di1"><p>云端中国城.成都</p><p>2025.gonganwang</p></div>
</div>
</div>
</div>
</body>
</html>
管理员登录系统
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
*{
margin:0;
padding:0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
body{
background: linear-gradient(135deg,#abdcff,#f7e40e);
display: flex;
flex-direction: column;
}
.header{
width: 100%;height: 72px;
display: flex;
justify-content: center;
}
.main{
width: 100%;flex: 1;background-color:linear-gradient(135deg,#abdcff,#f7e40e);
}
.header .content{
width:1200px;height: 72px;
display: flex;
align-items: center;
}
.header .content img{width: 100px;height: 30px;}
.main{
display: flex;
justify-content: center;
align-items: center;
}
.login-box{
width: 400px;
height: 240px;
background-color: rgba(255,255,255,0.8);
box-shadow: #888 10px 10px 20px;
border-radius: 10px;
}
.header{
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 18px;
letter-spacing: 3px;
border-bottom: solid 1 px #eee;
}
.login{
height: 180px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.login p {
height: 40px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.login p input{
width: 260px;
height: 32px;
}
.login p button{
outline: none;
border: none;
width: 300px;
height: 32px;
border-radius: 16px;
background-color: #abdcff;
color: white;
}
.login p button:hover{
background-color: #45aafd;
font-weight: 600;
}
</style>
</head>
<body>
<div class="header">
<div class="content">
<img src="./小鹅通.png" alt="">
</div>
</div>
<div class="main">
<div class="login-box">
<div class="header">管理员登录</div>
<div class="login">
<p>
<label for="zhanghao">账号:</label>
<input type="text" name="zhanghao" id="zhanghao"
placeholder="请输入账号">
</p>
<p>
<label for="mima">密码:</label>
<input type="password" name="mima" id="mima"
placeholder="请输入密码">
</p>
<p>
<button>登录</button>
</p>
</div>
</div>
</div>
</body>
</html>