/* 
  主题：三农自媒体短视频矩阵与乡村振兴电商平台
  主色调：#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 */
.c2fb87c12 { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cfd900c33 { padding: 60px 0; }
.c0f5983e2 { font-size: 2rem; font-weight: 700; margin-bottom: 40px; text-align: center; position: relative; }
.c0f5983e2::after {
  content: ''; display: block; width: 60px; height: 4px; background: var(--color-gold);
  margin: 16px auto 0; border-radius: 2px;
}

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

/* Buttons */
.c7226f5d2 {
  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;
}
.caf2eeec0 {
  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);
}
.caf2eeec0:hover { background-color: #C08B0F; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3); color: #fff; }
.cf73b899a { border: 2px solid var(--color-green); color: var(--color-green); background: transparent; }
.cf73b899a:hover { background: var(--color-green); color: #fff; }

/* Hero */
.c16685c3b { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; }
.c5157645d { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.c4f1a24f1 { 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; }
.cf501fbbd { position: relative; z-index: 1; max-width: 500px; }
.cc9b9e4c6 { font-size: 3.5rem; font-weight: 800; color: var(--color-text); line-height: 1.2; margin-bottom: 20px; }
.cc9b9e4c6 span { color: var(--color-gold); }
.c72bc9ec7 { font-size: 1.25rem; color: var(--color-text-light); margin-bottom: 32px; }

/* SVG Animation - 麦穗摇摆 */
.c90d443a8 { 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 */
.c312a21ef { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cf810915d { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c0e1769fc { 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); }
.c0e1769fc:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.ce1befef5 { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ce1befef5.cd288e880 { aspect-ratio: 9/16; }
.ce1befef5.landscape { aspect-ratio: 16/9; }
.c0c8e66d7 { padding: 20px; }
.c4214a225 { font-size: 1.25rem; font-weight: bold; margin-bottom: 8px; }
.cdd55b9d1 { 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; }
.ce973039c { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--color-text-light); }
.c3f1cf3c8 { color: #E53935; font-size: 1.5rem; font-weight: bold; }

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

/* Live Section */
.cb4215519 { 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; }
.cb4215519::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 */
.c378b4f94 { background: #2E1B15; color: white; padding: 80px 0; position: relative; overflow: hidden; }
.c42883d82 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.c5935c83d { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; text-align: center; }
.c2f04fc64 .c55324496 { font-size: 3rem; font-weight: 800; color: var(--color-gold); margin-bottom: 8px; font-family: monospace; }
.c2f04fc64 .cdaaa4bec { font-size: 1.1rem; color: #EFEBE0; }

/* Origin Story */
.c3cfc0f3a { display: flex; gap: 40px; align-items: center; }
.cb292055e { flex: 1; border-radius: var(--radius-lg); overflow: hidden; }
.c44b98b50 { flex: 1; }
.c44b98b50 h3 { font-size: 2rem; margin-bottom: 20px; }
.c44b98b50 p { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 24px; }
.c71a62b70 { border-left: 2px solid var(--color-gold); padding-left: 24px; margin-top: 30px; }
.c636bc986 { position: relative; margin-bottom: 24px; }
.c636bc986::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); }
.c636bc986 h4 { font-size: 1.1rem; margin-bottom: 4px; }

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

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

/* Article Typography */
.c523f92af h2 { font-size: 1.8rem; margin: 32px 0 16px; color: var(--color-green); }
.c523f92af h3 { font-size: 1.4rem; margin: 24px 0 12px; }
.c523f92af p { margin-bottom: 16px; font-size: 1.1rem; color: var(--color-text); }
.c523f92af ul, .c523f92af ol { margin-bottom: 16px; padding-left: 24px; }
.c523f92af li { margin-bottom: 8px; font-size: 1.1rem; }
.c523f92af 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 */
.c9941f3ce { padding: 20px 0; font-size: 0.95rem; color: var(--color-text-light); }
.c9941f3ce a { color: var(--color-green); }
.c9941f3ce a:hover { color: var(--color-gold); }

/* Footer */
.cd3377798 { background: #3E2723; color: #EFEBE0; padding: 60px 0 20px; margin-top: 60px; }
.c11703ed1 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.c9d875a3f { font-size: 1.25rem; font-weight: bold; color: var(--color-gold); margin-bottom: 20px; }
.c369a7370 li { margin-bottom: 12px; }
.c369a7370 a { color: #EFEBE0; }
.c369a7370 a:hover { color: var(--color-gold); }
.cbe59cc59 { 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; }
.cb8afec2a { 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); } }
.c4fff2162 { margin-top: 20px; font-weight: bold; color: var(--color-green); }

/* Custom Components */
/* 1. 乡村直播间实时预告日历 */
.cc8f1d977 { background: #FFF8E1; border-radius: var(--radius-md); padding: 20px; }
.c1ad54232 { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--color-border); align-items: center; }
.c8f0d04f5 { font-weight: bold; color: var(--color-gold); min-width: 60px; }
.c45a19525 { flex: 1; }
.cd358e9de { font-weight: bold; }
.c2bc55d40 { 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. 短视频爆款选题生成器 */
.c64197bd4 { background: linear-gradient(135deg, #E8F5E9 0%, #FFF8E1 100%); padding: 30px; border-radius: var(--radius-lg); text-align: center; }
.c514784c9 { display: flex; max-width: 600px; margin: 20px auto; gap: 10px; }
.c514784c9 input { flex: 1; padding: 12px 20px; border-radius: 30px; border: 1px solid var(--color-border); outline: none; font-size: 1rem; }

/* 4. 土特产尝鲜盲盒配置器 */
.c364f718f { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 30px 0; }
.c583b33e3 { 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; }
.c583b33e3:hover, .c583b33e3.c88b36b20 { border-color: var(--color-gold); background: #FFF8E1; color: var(--color-gold); }

/* Mobile Responsive */
@media (max-width: 992px) {
  .cf810915d { grid-template-columns: repeat(2, 1fr); }
  .c312a21ef { grid-template-columns: repeat(2, 1fr); }
  .c3cfc0f3a { flex-direction: column; }
  .cf0431edb { flex-direction: column; }
  .c11703ed1 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cdfdb56eb { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .c7af99188 { width: 100%; justify-content: center; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
  .c16685c3b { height: 500px; }
  .cc9b9e4c6 { font-size: 2.5rem; }
  .c5935c83d { grid-template-columns: repeat(2, 1fr); }
  .c514784c9 { flex-direction: column; }
}
@media (max-width: 480px) {
  .cf810915d, .c312a21ef { grid-template-columns: 1fr; }
  .c5935c83d { grid-template-columns: 1fr; }
  .c11703ed1 { grid-template-columns: 1fr; }
  .cc9b9e4c6 { font-size: 2rem; }
  .cfd900c33 { padding: 40px 0; }
}
