Files
ClassContent/历届学生/front-end-team/项目练习/学生项目/陆旗/长安/index.html
2024-09-27 02:06:13 +08:00

169 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./clear.css">
<script src="./rem.js"></script>
</head>
<style>
body {
font-size: 0;
}
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
box-sizing: border-box;
z-index: 9999;
padding-top: 0.37rem;
position: relative;
padding-bottom: 0.3rem;
}
ul {
display: flex;
align-items: center;
justify-content: space-around;
position: relative;
}
li {
font-size: 0.3rem;
color: #333333;
position: relative;
}
li::after {
content: "";
position: absolute;
background-color: #999999;
width: 100%;
height: .02rem;
transform: scaleY(0.5);
display: inline-block;
bottom: 0;
left: 0;
}
ul::after {
content: "";
position: absolute;
background-color: #999999;
width: 100%;
height: .02rem;
transform: scaleY(0.5);
display: inline-block;
bottom: -0.18rem;
left: 0;
}
.content {}
.content ul {
padding-top: 0.3rem;
}
.content ul li {
width: 7.02rem;
}
.content li .title {
width: 7.02rem;
height: 3.9rem;
padding-bottom: 0.21rem;
position: relative;
}
.content li .title img {
width: 100%;
height: 100%;
}
.content .title .now {
width: 1.14rem;
height: 0.36rem;
font-size: 0.24rem;
background-color: #ff5f13;
border-radius: 0.04rem;
position: absolute;
right: 0.14rem;
top: 0.14rem;
display: flex;
align-content: center;
justify-content: center;
}
.content .title p {
font-size: 0.22rem;
color: #ffffff;
position: absolute;
right: 0.13rem;
bottom: 0.12rem;
border-radius: 0.04rem;
}
.text {
font-size: 0.3rem;
color: #333333;
}
</style>
<body>
<div class="header">
<ul>
<li>包河radio</li>
<li>包河TV</li>
<li>融媒直播</li>
</ul>
</div>
<div class="content">
<ul class="content_top">
<li>
<div class="title">
<img src="./changan.png" alt="">
<span class="now">正在直播</span>
<p>342252人在看</p>
</div>
<div class="text">"文字鬼才"马伯庸新书发布座谈会(标题一行就一行)</div>
</li>
</ul>
<ul class="content_top">
<li>
<div class="title">
<img src="./changan.png" alt="">
<span class="now">正在直播</span>
<p>342252人在看</p>
</div>
<div class="text">"文字鬼才"马伯庸新书发布座谈会(标题一行就一行)</div>
</li>
</ul>
<ul class="content_top">
<li>
<div class="title">
<img src="./changan.png" alt="">
<span class="now">正在直播</span>
<p>342252人在看</p>
</div>
<div class="text">"文字鬼才"马伯庸新书发布座谈会(标题一行就一行)</div>
</li>
</ul>
</div>
</body>
</html>