/* 
  微缩模型场景与微观世界艺术展厅 专属CSS 
  主色调：#D35400（切割垫板橙）
  辅助色：#34495E（镊子金属灰）
  背景色：#FDFEFE（纯净工作台白）
  卡片色：#F4F6F7（浅灰底座）
  正文色：#2C3E50（图纸深蓝）
*/

:root {
  --color-primary: #D35400;
  --color-secondary: #34495E;
  --color-bg: #FDFEFE;
  --color-card: #F4F6F7;
  --color-text: #2C3E50;
  --color-text-light: #7F8C8D;
  --color-white: #FFFFFF;
  --color-black: #111111;
  --font-main: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 放大镜鼠标指针效果 */
body.magnifier-active {
  cursor: url('../images/icon-512.webp') 16 16, auto;
}

/* 导航栏 */
.cc65aaca5 {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.c7d6e36e9 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.c7d6e36e9 img {
  height: 40px;
}

.c30f7aa5a {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.c30f7aa5a a {
  font-weight: 500;
  color: var(--color-secondary);
}

.c30f7aa5a a:hover {
  color: var(--color-primary);
}

/* Hero区 */
.c9a1b3cf0 {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.ce5604ce6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: blur(5px);
  transition: filter 0.5s ease;
}

.c9a1b3cf0:hover .ce5604ce6 {
  filter: blur(0px);
}

.c1326dd01 {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 800px;
  padding: 2rem;
}

.c96fcdd28 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.c4fe75e1f {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.caeeeee28 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.caeeeee28:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  color: var(--color-white);
}

/* 通用区块 */
.c720e1135 {
  padding: 5rem 5%;
}

.c33bbcaec {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-secondary);
}

.c33bbcaec::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 1rem auto 0;
}

/* 360展台 */
.c1c54d714 {
  background-color: var(--color-card);
  text-align: center;
}

.c9dbdd874 {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cddbd4935 {
  width: 100%;
  display: block;
}

.ceb5ca7a7 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.c8a292a00 {
  background: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.c07dd1e35 {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.c7fd90dc7 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

/* 昼夜对比 */
.cb4f2bcbd {
  position: relative;
}

.c53a14018 {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.c53a14018 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c24d01e0a {
  z-index: 1;
}

.c106ebc75 {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.c4cef40dc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--color-white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.c4cef40dc::after {
  content: '◄ || ►';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* 卡片网格 */
.c08f1eaee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.c9cbb7609 {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.c9cbb7609:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.c81a3b385 {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.c9a67776f {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c9cbb7609:hover .c9a67776f {
  transform: scale(1.1);
}

/* 局部放大效果 */
.c22ee6164:hover .c9a67776f {
  transform: scale(2);
}

.c762278ef {
  padding: 1.5rem;
}

.cb4116208 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.c87dbf947 {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* 展会海报 */
.c437bbae9 {
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  padding: 8rem 5%;
}

.ce8c2bce7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.c136d343f {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.c35c750c3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.cbff7ef66 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* 页脚 */
.c600b35ee {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 4rem 5% 2rem;
}

.cf1b23296 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.c318e333b h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.cf56cf20a {
  list-style: none;
}

.cf56cf20a li {
  margin-bottom: 0.8rem;
}

.cf56cf20a a {
  color: #BDC3C7;
}

.cf56cf20a a:hover {
  color: var(--color-white);
}

.ca2d7baf0 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #7F8C8D;
  font-size: 0.9rem;
}

/* 内页通用样式 */
.c30d02158 {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 4rem 5%;
  text-align: center;
}

.c4ef20060 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ccf60528c {
  color: #BDC3C7;
  font-size: 0.9rem;
}

.ccf60528c a {
  color: var(--color-primary);
}

.c1ad42954 {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 响应式 */
@media (max-width: 768px) {
  .c30f7aa5a {
    display: none;
  }
  
  .c96fcdd28 {
    font-size: 2.5rem;
  }
  
  .c33bbcaec {
    font-size: 2rem;
  }
  
  .c53a14018 {
    height: 300px;
  }
  
  .ceb5ca7a7 {
    flex-direction: column;
    gap: 1rem;
  }
}
