div+css布局实现pc端ai科技工具类网站代码
代码语言:html
所属分类:布局界面
代码描述:div+css布局实现pc端ai科技工具类网站代码
代码标签: div css 布局 pc端 ai 科技 工具类 网站 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Studio - 领先的人工智能技术平台</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
body {
background: #0a0a0a;
color: #ffffff;
line-height: 1.6;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
padding: 1.5rem 10%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-size: 2rem;
font-weight: bold;
background: linear-gradient(45deg, #00ff88, #00b4ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-links {
display: flex;
gap: 2.5rem;
}
.nav-links a {
color: #ffffff;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(45deg, #00ff88, #00b4ff);
transition: width 0.3s;
}
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0