css布局实现大气的项目验收报告代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现大气的项目验收报告代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>项目验收报告</title> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.6.4.0.css"> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Noto Sans SC', 'Roboto', sans-serif; background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%); color: #333; line-height: 1.6; padding: 20px; min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; } header { text-align: center; padding: 40px 20px; background: linear-gradient(120deg, #1a6dcc, #0d4a9e); color: white; border-radius: 12px 12px 0 0; box-shadow: 0 10px 30px rgba(13, 74, 158, 0.2); position: relative; overflow: hidden; } header::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); transform: rotate(30deg); } h1 { font-size: 2.8rem; margin-bottom: 10px; position: relative; text-shadow: 0 2px 4px rgba(0,0,0,0.2); } .subtitle { font-size: 1.2rem; font-weight: 300; max-width: 700px; margin: 0 auto 20px; opacity: 0.9; } .report-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 30px; background: rgba(255, 255, 255, 0.15); padding: 20px; border-radius: 10px; backdrop-filter: blur(10px); position: relative; z-index: 1; } .info-item { text-align: center; min-width: 180px; } .info-item i { font-size: 2rem; margin-bottom: 10px; color: #ffd43b; } .info-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 5px; opacity: 0.8; } .info-value { font-size: 1.2rem; font-weight: 500; } .content-section { background: white; padding: 40px; margin-top: 20px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .content-section:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); } .........完整代码请登录后点击上方下载按钮下载查看
网友评论0