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

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

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

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

/* SVG Animation - 麦穗摇摆 */
.ca58f3d01 { 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 */
.c2a344dfa { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ce3f79906 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.c286377ef { 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); }
.c286377ef:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.c3cf144f9 { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.c3cf144f9.c95bd2296 { aspect-ratio: 9/16; }
.c3cf144f9.landscape { aspect-ratio: 16/9; }
.c1dd60d7d { padding: 20px; }
.c3437dffa { font-size: 1.25rem; font-weight: bold; margin-bottom: 8px; }
.c5df62ff3 { 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; }
.c9ee41275 { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--color-text-light); }
.c93c8f3c2 { color: #E53935; font-size: 1.5rem; font-weight: bold; }

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

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

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

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

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

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

/* Footer */
.c1caf73a4 { background: #3E2723; color: #EFEBE0; padding: 60px 0 20px; margin-top: 60px; }
.cab3b5e97 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cdbabd3ed { font-size: 1.25rem; font-weight: bold; color: var(--color-gold); margin-bottom: 20px; }
.c61742caa li { margin-bottom: 12px; }
.c61742caa a { color: #EFEBE0; }
.c61742caa a:hover { color: var(--color-gold); }
.c1c073a99 { 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; }
.c588f49b9 { 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); } }
.c2d0cb826 { margin-top: 20px; font-weight: bold; color: var(--color-green); }

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .ce3f79906 { grid-template-columns: repeat(2, 1fr); }
  .c2a344dfa { grid-template-columns: repeat(2, 1fr); }
  .cc6143255 { flex-direction: column; }
  .c9f49081d { flex-direction: column; }
  .cab3b5e97 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ce7e1480c { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .c49dbd55e { width: 100%; justify-content: center; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
  .c0cbcdd3c { height: 500px; }
  .c5d8bdc7c { font-size: 2.5rem; }
  .c7352b4ae { grid-template-columns: repeat(2, 1fr); }
  .cb46b3c4a { flex-direction: column; }
}
@media (max-width: 480px) {
  .ce3f79906, .c2a344dfa { grid-template-columns: 1fr; }
  .c7352b4ae { grid-template-columns: 1fr; }
  .cab3b5e97 { grid-template-columns: 1fr; }
  .c5d8bdc7c { font-size: 2rem; }
  .c63ed25e3 { padding: 40px 0; }
}
