/* 
  主题：三农自媒体短视频矩阵与乡村振兴电商平台
  主色调：#D4A017（麦田丰收金），辅助色：#4CAF50（生态田园绿）
  背景色：#FFFDF7（稻草纸色），卡片色：#FFFFFF（白瓷碗白），正文色：#3E2723（泥土深棕）
*/
:root {
  --color-gold: #D4A017;
  --color-green: #4CAF50;
  --color-bg: #FFFDF7;
  --color-card: #FFFFFF;
  --color-text: #3E2723;
  --color-text-light: #795548;
  --color-border: #EFEBE0;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 12px rgba(62, 39, 35, 0.05);
  --shadow-hover: 0 12px 24px rgba(62, 39, 35, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-text); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Layout */
.ccabe10a3 { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cd5a56745 { padding: 60px 0; }
.ccf84f537 { font-size: 2rem; font-weight: 700; margin-bottom: 40px; text-align: center; position: relative; }
.ccf84f537::after {
  content: ''; display: block; width: 60px; height: 4px; background: var(--color-gold);
  margin: 16px auto 0; border-radius: 2px;
}

/* Header & Nav */
.c84042eec { background: var(--color-card); box-shadow: var(--shadow-card); position: sticky; top: 0; z-index: 100; }
.cb2344e74 { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.ca7d192be { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: bold; color: var(--color-green); }
.ca7d192be img { height: 40px; width: 40px; }
.c0c09face { display: flex; gap: 32px; }
.c0c09face a { font-weight: 500; font-size: 1.1rem; }
.c0c09face a:hover, .c0c09face a.c27f87b68 { color: var(--color-gold); }
.cfe3effa2 { display: flex; gap: 16px; align-items: center; }

/* Buttons */
.c4b2c60c1 {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px;
  border-radius: 30px; font-weight: 600; cursor: pointer; transition: var(--transition);
  border: none; outline: none; text-align: center;
}
.c425f450f {
  background: var(--color-gold); color: #fff;
  /* 竹编/草绳纹理质感模拟 */
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.1) 4px, rgba(255,255,255,0.1) 8px);
}
.c425f450f:hover { background-color: #C08B0F; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3); color: #fff; }
.c283393da { border: 2px solid var(--color-green); color: var(--color-green); background: transparent; }
.c283393da:hover { background: var(--color-green); color: #fff; }

/* Hero */
.cfa9c025a { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; }
.cb4f77a5e { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.c92515752 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,253,247,0.95) 0%, rgba(255,253,247,0.7) 40%, transparent 100%); z-index: 0; }
.c006d1047 { position: relative; z-index: 1; max-width: 500px; }
.ce33a2fd5 { font-size: 3.5rem; font-weight: 800; color: var(--color-text); line-height: 1.2; margin-bottom: 20px; }
.ce33a2fd5 span { color: var(--color-gold); }
.c780c8616 { font-size: 1.25rem; color: var(--color-text-light); margin-bottom: 32px; }

/* SVG Animation - 麦穗摇摆 */
.c9d629c8a { position: absolute; bottom: 0; right: 10%; height: 150px; opacity: 0.8; transform-origin: bottom center; animation: sway 4s ease-in-out infinite alternate; }
@keyframes sway { 0% { transform: rotate(-5deg); } 100% { transform: rotate(5deg); } }

/* Cards & Grids */
.c20bdb98b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.c85ced81b { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c32f4eab4 { background: var(--color-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); border: 1px solid var(--color-border); }
.c32f4eab4:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cefbfc4b1 { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.cefbfc4b1.cd009c098 { aspect-ratio: 9/16; }
.cefbfc4b1.landscape { aspect-ratio: 16/9; }
.cf80bfc9f { padding: 20px; }
.cf5b72969 { font-size: 1.25rem; font-weight: bold; margin-bottom: 8px; }
.c04c5e7aa { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c38d9f6c3 { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--color-text-light); }
.c75817069 { color: #E53935; font-size: 1.5rem; font-weight: bold; }

/* 农产品卡片泥土翻开动画模拟 */
.c469debd2 .c2a104c96 { position: relative; overflow: hidden; }
.c469debd2 .c2a104c96::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 20px;
  background: var(--color-text); opacity: 0; transition: var(--transition); transform: translateY(100%);
}
.c469debd2:hover .c2a104c96::after { opacity: 0.8; transform: translateY(0); }

/* Live Section */
.cb7ec83bf { position: absolute; top: 16px; left: 16px; background: #E53935; color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; display: flex; align-items: center; gap: 6px; z-index: 2; }
.cb7ec83bf::before { content: ''; display: block; width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

/* Data Screen */
.ca9f9caad { background: #2E1B15; color: white; padding: 80px 0; position: relative; overflow: hidden; }
.c0d322de6 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.cf2916ffe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; text-align: center; }
.c8075d16d .c7c8059da { font-size: 3rem; font-weight: 800; color: var(--color-gold); margin-bottom: 8px; font-family: monospace; }
.c8075d16d .c80778830 { font-size: 1.1rem; color: #EFEBE0; }

/* Origin Story */
.c4a760ec3 { display: flex; gap: 40px; align-items: center; }
.c85d7dac8 { flex: 1; border-radius: var(--radius-lg); overflow: hidden; }
.c97b7582c { flex: 1; }
.c97b7582c h3 { font-size: 2rem; margin-bottom: 20px; }
.c97b7582c p { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 24px; }
.c1bb6d75a { border-left: 2px solid var(--color-gold); padding-left: 24px; margin-top: 30px; }
.c5bb8da1a { position: relative; margin-bottom: 24px; }
.c5bb8da1a::before { content: ''; position: absolute; left: -31px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--color-gold); border: 3px solid var(--color-bg); }
.c5bb8da1a h4 { font-size: 1.1rem; margin-bottom: 4px; }

/* Page Header */
.c9b8ee503 { height: 300px; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; color: white; }
.c9b8ee503::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); z-index: 1; }
.c9b8ee503 img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: 0; }
.c29c365ba { position: relative; z-index: 2; }
.c4ccf889a { font-size: 3rem; font-weight: bold; margin-bottom: 16px; }

/* Content Area */
.c72f209a7 { display: flex; gap: 40px; padding: 60px 0; }
.ce2d23aab { flex: 3; background: var(--color-card); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.c6eee3e01 { flex: 1; }
.cb77d611c { background: var(--color-card); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); margin-bottom: 24px; }
.cc3c2d29b { font-size: 1.25rem; font-weight: bold; margin-bottom: 16px; border-bottom: 2px solid var(--color-border); padding-bottom: 8px; }

/* Article Typography */
.c7bd33848 h2 { font-size: 1.8rem; margin: 32px 0 16px; color: var(--color-green); }
.c7bd33848 h3 { font-size: 1.4rem; margin: 24px 0 12px; }
.c7bd33848 p { margin-bottom: 16px; font-size: 1.1rem; color: var(--color-text); }
.c7bd33848 ul, .c7bd33848 ol { margin-bottom: 16px; padding-left: 24px; }
.c7bd33848 li { margin-bottom: 8px; font-size: 1.1rem; }
.c7bd33848 blockquote { border-left: 4px solid var(--color-gold); padding: 16px 24px; background: #FFF8E1; margin: 24px 0; font-style: italic; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Breadcrumb */
.c711bdca3 { padding: 20px 0; font-size: 0.95rem; color: var(--color-text-light); }
.c711bdca3 a { color: var(--color-green); }
.c711bdca3 a:hover { color: var(--color-gold); }

/* Footer */
.c185c43a6 { background: #3E2723; color: #EFEBE0; padding: 60px 0 20px; margin-top: 60px; }
.c7b5a866d { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cc85fa278 { font-size: 1.25rem; font-weight: bold; color: var(--color-gold); margin-bottom: 20px; }
.c408f095c li { margin-bottom: 12px; }
.c408f095c a { color: #EFEBE0; }
.c408f095c a:hover { color: var(--color-gold); }
.c1c0013cb { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; }

/* Preloader - 种子发芽 */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-bg); z-index: 9999; display: flex; justify-content: center; align-items: center; flex-direction: column; transition: opacity 0.5s; }
.cd67305ef { width: 40px; height: 40px; border-radius: 50%; background: var(--color-text); position: relative; animation: sprout 2s infinite; }
@keyframes sprout { 0% { transform: scale(1); background: var(--color-text); } 50% { transform: scale(1.2) translateY(-10px); background: var(--color-green); border-radius: 50% 50% 0 50%; } 100% { transform: scale(1); background: var(--color-text); } }
.cb23f4c99 { margin-top: 20px; font-weight: bold; color: var(--color-green); }

/* Custom Components */
/* 1. 乡村直播间实时预告日历 */
.c8f629953 { background: #FFF8E1; border-radius: var(--radius-md); padding: 20px; }
.cfbd853d5 { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--color-border); align-items: center; }
.c1e7cd5dd { font-weight: bold; color: var(--color-gold); min-width: 60px; }
.c9ebab929 { flex: 1; }
.cebd08a02 { font-weight: bold; }
.cccd18bbf { font-size: 0.85rem; color: var(--color-text-light); }

/* 2. 农产品溯源地图占位 */
.trace-map { height: 400px; background: #E8F5E9; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-direction: column; border: 2px dashed var(--color-green); }
.trace-map-icon { font-size: 3rem; margin-bottom: 16px; }

/* 3. 短视频爆款选题生成器 */
.c2d776231 { background: linear-gradient(135deg, #E8F5E9 0%, #FFF8E1 100%); padding: 30px; border-radius: var(--radius-lg); text-align: center; }
.ccb24e07f { display: flex; max-width: 600px; margin: 20px auto; gap: 10px; }
.ccb24e07f input { flex: 1; padding: 12px 20px; border-radius: 30px; border: 1px solid var(--color-border); outline: none; font-size: 1rem; }

/* 4. 土特产尝鲜盲盒配置器 */
.cde52dcfa { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 30px 0; }
.ce6266231 { padding: 15px 30px; border: 2px solid var(--color-border); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); background: var(--color-card); font-weight: bold; }
.ce6266231:hover, .ce6266231.c27f87b68 { border-color: var(--color-gold); background: #FFF8E1; color: var(--color-gold); }

/* Mobile Responsive */
@media (max-width: 992px) {
  .c85ced81b { grid-template-columns: repeat(2, 1fr); }
  .c20bdb98b { grid-template-columns: repeat(2, 1fr); }
  .c4a760ec3 { flex-direction: column; }
  .c72f209a7 { flex-direction: column; }
  .c7b5a866d { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cb2344e74 { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .c0c09face { width: 100%; justify-content: center; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
  .cfa9c025a { height: 500px; }
  .ce33a2fd5 { font-size: 2.5rem; }
  .cf2916ffe { grid-template-columns: repeat(2, 1fr); }
  .ccb24e07f { flex-direction: column; }
}
@media (max-width: 480px) {
  .c85ced81b, .c20bdb98b { grid-template-columns: 1fr; }
  .cf2916ffe { grid-template-columns: 1fr; }
  .c7b5a866d { grid-template-columns: 1fr; }
  .ce33a2fd5 { font-size: 2rem; }
  .cd5a56745 { padding: 40px 0; }
}
