bootstrap自适应大气高科技ai公司官网首页代码
代码语言:html
所属分类:布局界面
代码描述:bootstrap自适应大气高科技ai公司官网首页代码,包含关于我们、核心产品、我们的优势、团队风采、联系我们等板块,点击可滚动到相应板块栏目。
代码标签: bootstrap 自适应 大气 高科 技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科技公司 - 智能工具平台</title> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.5.3.0.css"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap-icons.1.8.1.css"> <style> :root { --primary-color: #1890ff; --secondary-color: #6c63ff; --card-bg: linear-gradient(145deg, #ffffff 70%, #f0f6ff 100%); --card-shadow: 0 10px 40px rgba(24, 144, 255, 0.1); --text-dark: #333; --text-light: #666; --bg-light: #f8f9fa; --bg-white: #ffffff; --btn-hover-bg: #096dd9; --footer-bg: #212529; } html { scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; color: var(--text-dark); background-color: var(--bg-white); overflow-x: hidden; } section[id] { scroll-margin-top: 80px; } /* Navigation */ .navbar { background: transparent; position: fixed; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.3s ease; } .navbar.scrolled { background-color: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .navbar-brand { font-weight: bold; color: white; font-size: 24px; transition: color 0.3s ease; } .navbar.scrolled .navbar-brand { color: var(--primary-color); } .navbar-toggler { border: none; } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(24, 144, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .nav-link { color: rgba(255, 255, 255, 0.9); font-weight: 500; padding: 8px 16px; margin: 0 5px; transition: all 0.3s ease; position: relative; } .navbar.scrolled .nav-link { color: var(--text-dark); } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: white; transition: all 0.3s ease; transform: translateX(-50%); } .navbar.scrolled .nav-link::after { background: var(--primary-color); } .nav-link:hover, .nav-link.active { color: white; } .navbar.scrolled .nav-link:hover { color: var(--primary-color); } .nav-link:hover::after, .nav-link.active::after { width: 70%; } .btn-login { background-color: var(--primary-color); color: white; border-radius: 20px; padding: 8px 25px; font-size: 14px; border: none; transition: background-color 0.3s ease; } .btn-login:hover { background-color: var(--btn-hover-bg); } /* Hero Section */ .hero-section { height: 100vh; background: linear-gradient(135deg, #1a237e, #0d47a1, #0288d1); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; } .hero-content { position: relative; z-index: 10; text-align: center; color: white; max-width: 800px; padding: 0 20px; } .hero-content h1 { font-size: 48px; font-weight: bold; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); } .hero-content p { font-size: 18px; line-height: 1.8; margin-bottom: 30px; text-shadow: 0 1px 5px rgba(0,0,0,0.2); opacity: 0.9; } .btn-primary-custom { background-color: white; color: var(--primary-color); border: none; padding: 12px 30px; border-radius: 30px; font-size: 16px; font-weight: bold; margin: 10px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .btn-outline-custom { border: 2px solid white; color: white; background-color: transparent; padding: 12px 30px; border-radius: 30px; font-size: 16px; font-weight: bold; margin: 10px; transition: all 0.3s ease; } .btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); } .btn-outline-custom:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-3px); } .svg-container { position: absolute; width: 100%; height: 100%; top: 0; left: 0; } /* Animations */ .floating { animation: float 6s ease-in-out infinite; } .rotating { animation: rotate 20s linear infinite; } .pulse { animation: pulse 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } @keyframes rotate { 100% { transform: rotate(360deg); } } @keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } } @keyframes spin { 100% { transform: rotate(360deg); } } /* Common Section Styles */ .section-padding { padding: 80px 0; } .section-title { font-size: 32px; font-weight: bold; margin-bottom: 60px; color: var(--text-dark); text-align: center; letter-spacing: 1px; } /* Feature Section */ .feature-section { background-color: var(--bg-light); } .card-tech { background: var(--card-bg); border-radius: 16px; box-shadow: var(--card-shadow); transition: all 0.3s ease; padding: 30px 25px; text-align: center; overflow: hidden; height: 100%; display: flex; flex-direction: column; } .card-tech:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(24, 144, 255, 0.2); } .card-tech .icon-bg { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .card-tech h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); } .card-tech p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; } .card-tech .btn-try { background-color: var(--primary-color); color: white; border: none; padding: 8px 18px; font-size: 13px; border-radius: 20px; text-decoration: none; display: inline-block; transition: background-color 0.3s ease; margin-top: auto; } .card-tech .btn-try:hover { background-color: var(--btn-hover-bg); } /* Advantage Section */ .advantage-section { background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa); position: relative; overflow: hidden; } .advantage-section::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(24, 144, 255, 0.05) 0%, rgba(24, 144, 255, 0) 70%); border-radius: 50%; top: -150px; left: -150px; z-index: 0; } .advantage-section::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(108, 99, 255, 0.05) 0%, rgba(108, 99, 255, 0) 70%); border-radius: 50%; bottom: -200px; right: -200px; z-index: 0; } .advantage-item { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: 16px; padding: 30px 25px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; z-index: 1; border: 1px solid rgba(255, 255, 255, 0.8); overflow: hidden; text-align: center; } .advantage-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(24, 144, 255, 0.05), rgba(108, 99, 255, 0.05)); z-index: -1; opacity: 0; transition: opacity 0.4s ease; } .advantage-item:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(24, 144, 255, 0.1); border-color: rgba(24, 144, 255, 0.2); } .advantage-item:hover::before { opacity: 1; } .icon-adv { font-size: 36px; color: var(--primary-color); margin-bottom: 20px; position: relative; } .icon-adv::after { content: ''; position: absolute; width: 50px; height: 50px; background: radial-gradient(circle, rgba(24, 144, 255, 0.1) 0%, rgba(24, 144, 255, 0) 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; } .advantage-item h5 { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: var(--text-dark); position: relative; } .advantage-item h5::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); border-radius: 3px; } .advantage-item p { font-size: 15px; color: var(--text-light); line-height: 1.7; } /* Workflow Section */ .workflow-section { background-color: var(--bg-light); } .workflow-step { text-align: center; position: relative; padding: 20px; } .workflow-step .step-number { width: 50px; height: 50px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin: 0 auto 20px; box-shadow: 0 4px 10px rgba(24, 144, 255, 0.3); } .workflow-step h5 { font-size: 18px; font-weight: 600; margin-bottom: 10px; } .workflow-step p { font-size: 14px; color: var(--text-light); } .workflow-connector { display: none; } /* How It Works Section */ .how-it-works-section { background-color: var(--bg-white); position: relative; overflow: hidden; } .how-it-works-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, rgba(24, 144, 255, 0.1), rgba(108, 99, 255, 0.1)); z-index: 0; } .step-item { padding: 30px 20px; position: relative; transition: transform 0.3s ease; margin-bottom: 20px; } .step-item:hover { transform: translateY(-5px); } .step-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 32px; box-shadow: 0 10px 20px rgba(24, 144, 255, 0.2); position: relative; z-index: 1; } .step-icon::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, 0.6); animation: spin 15s linear infinite; z-index: -1; } .step-item h5 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); } .step-item p { color: var(--text-light); font-size: 14px; line-height: 1.6; } /* Testimonial Section */ .testimonial-section { background-color: var(--bg-light); position: relative; overflo.........完整代码请登录后点击上方下载按钮下载查看
网友评论0