/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
body { font-family: 'Work Sans', sans-serif; margin: 0; padding: 0; background: #E3F2FD; color: #1A1A1A; } .wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wp-header { background: white; padding: 20px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; } .wp-header-inner { display: flex; justify-content: space-between; align-items: center; } .wp-logo { font-size: 28px; font-weight: 700; color: #1976D2; text-decoration: none; } .wp-nav { display: flex; gap: 30px; } .wp-nav a { color: #424242; text-decoration: none; font-weight: 500; transition: color 0.3s; } .wp-nav a:hover { color: #1976D2; } .wp-breadcrumbs { padding: 15px 0; font-size: 14px; color: #757575; } .wp-breadcrumbs a { color: #1976D2; text-decoration: none; } .wp-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: #1976D2; width: 0%; z-index: 1000; transition: width 0.1s; } .wp-hero { margin: 40px 0; text-align: center; } .wp-hero-img { width: 100%; max-width: 800px; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .wp-main { display: grid; grid-template-columns: 1fr 320px; gap: 40px; margin: 40px 0; } .wp-content { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); } .wp-article-header { margin-bottom: 30px; } .wp-category { display: inline-block; background: #1976D2; color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; } .wp-title { font-size: 36px; font-weight: 700; line-height: 1.3; margin: 15px 0; color: #212121; } .wp-meta { display: flex; gap: 20px; color: #757575; font-size: 14px; margin: 20px 0; flex-wrap: wrap; } .wp-meta-item { display: flex; align-items: center; gap: 6px; } .wp-lead { font-size: 18px; line-height: 1.7; color: #424242; margin: 25px 0; font-weight: 500; border-left: 4px solid #1976D2; padding-left: 20px; } .wp-text { font-size: 16px; line-height: 1.8; color: #424242; margin: 20px 0; } .wp-text h2 { font-size: 28px; font-weight: 700; margin: 35px 0 20px; color: #212121; } .wp-text h3 { font-size: 22px; font-weight: 600; margin: 30px 0 15px; color: #424242; } .wp-blockquote { background: #E3F2FD; border-left: 4px solid #1976D2; padding: 20px 25px; margin: 30px 0; font-style: italic; color: #424242; border-radius: 4px; } .wp-tags { display: flex; gap: 10px; margin: 30px 0; flex-wrap: wrap; } .wp-tag { background: #E3F2FD; color: #1976D2; padding: 8px 16px; border-radius: 20px; font-size: 14px; text-decoration: none; transition: background 0.3s; } .wp-tag:hover { background: #BBDEFB; } .wp-sidebar { position: sticky; top: 100px; } .wp-sidebar-block { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 25px; } .wp-sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: #212121; border-bottom: 3px solid #1976D2; padding-bottom: 10px; } .wp-sidebar-item { padding: 15px 0; border-bottom: 1px solid #E0E0E0; transition: transform 0.2s; } .wp-sidebar-item:last-child { border-bottom: none; } .wp-sidebar-item:hover { transform: translateX(5px); } .wp-sidebar-item a { text-decoration: none; color: #212121; display: block; } .wp-sidebar-item-title { font-weight: 600; font-size: 15px; margin-bottom: 5px; color: #1976D2; } .wp-sidebar-item-desc { font-size: 13px; color: #757575; line-height: 1.4; } .wp-form { background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%); padding: 30px; border-radius: 12px; margin: 40px 0; color: white; } .wp-form-title { font-size: 24px; font-weight: 700; margin-bottom: 10px; } .wp-form-desc { margin-bottom: 20px; opacity: 0.95; } .wp-form-group { margin-bottom: 15px; } .wp-input { width: 100%; padding: 12px 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: 8px; font-size: 15px; background: rgba(255,255,255,0.15); color: white; transition: border 0.3s; } .wp-input::placeholder { color: rgba(255,255,255,0.7); } .wp-input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.25); } .wp-btn { background: white; color: #1976D2; padding: 14px 32px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; transition: transform 0.2s, box-shadow 0.2s; } .wp-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); } .wp-related { margin: 40px 0; } .wp-related-title { font-size: 24px; font-weight: 700; margin-bottom: 25px; color: #212121; } .wp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .wp-related-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; } .wp-related-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .wp-related-content { padding: 20px; } .wp-related-card-title { font-size: 16px; font-weight: 600; color: #212121; margin-bottom: 8px; } .wp-related-card-desc { font-size: 14px; color: #757575; line-height: 1.5; } .wp-footer { background: white; padding: 40px 0 20px; margin-top: 60px; border-top: 1px solid #E0E0E0; } .wp-footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 30px; } .wp-footer-section h4 { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: #212121; } .wp-footer-links { list-style: none; padding: 0; margin: 0; } .wp-footer-links li { margin-bottom: 10px; } .wp-footer-links a { color: #757575; text-decoration: none; transition: color 0.3s; } .wp-footer-links a:hover { color: #1976D2; } .wp-footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #E0E0E0; color: #757575; font-size: 14px; } .wp-disclaimer { background: #FFF3E0; padding: 15px; border-radius: 8px; margin: 20px 0; font-size: 13px; color: #E65100; border-left: 4px solid #FF9800; } .wp-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; display: none; } .wp-cookie-banner.active { display: block; } .wp-cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; } .wp-cookie-text { flex: 1; font-size: 14px; color: #424242; } .wp-cookie-btn { background: #1976D2; color: white; padding: 12px 30px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; } .wp-success { text-align: center; padding: 60px 20px; } .wp-success-icon { width: 80px; height: 80px; background: #4CAF50; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; } .wp-success-title { font-size: 32px; font-weight: 700; margin-bottom: 15px; color: #212121; } .wp-success-text { font-size: 18px; color: #757575; max-width: 600px; margin: 0 auto; } .wp-policy { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin: 40px 0; } .wp-policy h1 { font-size: 36px; font-weight: 700; margin-bottom: 30px; color: #212121; } .wp-policy h2 { font-size: 24px; font-weight: 700; margin: 30px 0 15px; color: #424242; } .wp-policy p { font-size: 16px; line-height: 1.8; color: #424242; margin: 15px 0; } .wp-policy ul { margin: 15px 0; padding-left: 25px; } .wp-policy li { margin: 8px 0; line-height: 1.6; } @media (max-width: 968px) { .wp-main { grid-template-columns: 1fr; } .wp-sidebar { position: static; } .wp-related-grid { grid-template-columns: 1fr; } .wp-footer-content { grid-template-columns: 1fr; } .wp-cookie-content { flex-direction: column; text-align: center; } }