div+css实现三套主色调简洁的简历模板代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现三套主色调简洁的简历模板代码

代码标签: div css 三套 简洁 主色调 简历 模板 代码

下面为部分代码预览,完整代码请点击下载或在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>简洁大气简历模板</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .resume {
            width: 100%;
            max-width: 800px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .resume-header {
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .resume-body {
            padding: 0 40px 40px;
            position: relative;
            z-index: 2;
        }
        
        .name {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .title {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        
        .contact-icon {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }
        
        .section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 8px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
        }
        
        .experience-item, .education-item {
            margin-bottom: 20px;
        }
        
        .item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .item-title {
            font-weight: bold;
            font-size: 16px;
        }
        
        .item-date {
            font-size: 14px;
  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0