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

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

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

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

/* SVG Animation - 麦穗摇摆 */
.cf6caa1f9 { 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 */
.c494fd1d9 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.c79f070ad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cd49bb446 { 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); }
.cd49bb446:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.c2d2f3713 { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.c2d2f3713.c235499f2 { aspect-ratio: 9/16; }
.c2d2f3713.landscape { aspect-ratio: 16/9; }
.c3f274e20 { padding: 20px; }
.c84e13fa0 { font-size: 1.25rem; font-weight: bold; margin-bottom: 8px; }
.cf8c9c32d { 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; }
.c0286d765 { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--color-text-light); }
.ce7fcb92f { color: #E53935; font-size: 1.5rem; font-weight: bold; }

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

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

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

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

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

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

/* Footer */
.c809662e5 { background: #3E2723; color: #EFEBE0; padding: 60px 0 20px; margin-top: 60px; }
.c8ce81dcb { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ce841efc1 { font-size: 1.25rem; font-weight: bold; color: var(--color-gold); margin-bottom: 20px; }
.cad7b1f04 li { margin-bottom: 12px; }
.cad7b1f04 a { color: #EFEBE0; }
.cad7b1f04 a:hover { color: var(--color-gold); }
.cd7ba92a4 { 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; }
.ceacdf48d { 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); } }
.ccc28cdea { margin-top: 20px; font-weight: bold; color: var(--color-green); }

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .c79f070ad { grid-template-columns: repeat(2, 1fr); }
  .c494fd1d9 { grid-template-columns: repeat(2, 1fr); }
  .c68f69d5e { flex-direction: column; }
  .ca3bcf6cf { flex-direction: column; }
  .c8ce81dcb { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .c324b9c68 { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .c300c1544 { width: 100%; justify-content: center; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
  .cbb47387b { height: 500px; }
  .c32361849 { font-size: 2.5rem; }
  .c5193d920 { grid-template-columns: repeat(2, 1fr); }
  .c8c04e9db { flex-direction: column; }
}
@media (max-width: 480px) {
  .c79f070ad, .c494fd1d9 { grid-template-columns: 1fr; }
  .c5193d920 { grid-template-columns: 1fr; }
  .c8ce81dcb { grid-template-columns: 1fr; }
  .c32361849 { font-size: 2rem; }
  .c3c65a166 { padding: 40px 0; }
}
