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

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

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

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

/* SVG Animation - 麦穗摇摆 */
.cac405414 { 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 */
.c04bfb659 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.c8d3c1508 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cb554706e { 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); }
.cb554706e:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.c43c950a9 { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.c43c950a9.c4580b3a8 { aspect-ratio: 9/16; }
.c43c950a9.landscape { aspect-ratio: 16/9; }
.cc64d65e8 { padding: 20px; }
.c06e2a09a { font-size: 1.25rem; font-weight: bold; margin-bottom: 8px; }
.cc1f453b2 { 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; }
.c1f41a90f { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--color-text-light); }
.cc65d5d00 { color: #E53935; font-size: 1.5rem; font-weight: bold; }

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

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

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

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

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

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

/* Footer */
.c70cbdd6a { background: #3E2723; color: #EFEBE0; padding: 60px 0 20px; margin-top: 60px; }
.cc2960a8b { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ca95c6a22 { font-size: 1.25rem; font-weight: bold; color: var(--color-gold); margin-bottom: 20px; }
.c8d496792 li { margin-bottom: 12px; }
.c8d496792 a { color: #EFEBE0; }
.c8d496792 a:hover { color: var(--color-gold); }
.c2472af39 { 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; }
.c03009a50 { 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); } }
.c9f6c71a8 { margin-top: 20px; font-weight: bold; color: var(--color-green); }

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .c8d3c1508 { grid-template-columns: repeat(2, 1fr); }
  .c04bfb659 { grid-template-columns: repeat(2, 1fr); }
  .c4b45e523 { flex-direction: column; }
  .c31f82ee3 { flex-direction: column; }
  .cc2960a8b { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ce754f2f5 { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .c789e9247 { width: 100%; justify-content: center; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
  .c41a0f801 { height: 500px; }
  .c6c1b675e { font-size: 2.5rem; }
  .c16614b4a { grid-template-columns: repeat(2, 1fr); }
  .cb4dbd48e { flex-direction: column; }
}
@media (max-width: 480px) {
  .c8d3c1508, .c04bfb659 { grid-template-columns: 1fr; }
  .c16614b4a { grid-template-columns: 1fr; }
  .cc2960a8b { grid-template-columns: 1fr; }
  .c6c1b675e { font-size: 2rem; }
  .c06820d1e { padding: 40px 0; }
}
