@CHARSET "UTF-8";
        * {
            margin: 0;
            padding: 0;

        }
        
        body {
            font-family: Microsoft Yahei,arial,sans-serif;
            background-color: #ffffff; 
            color: #4a4a4a;
            line-height: 1.6;
        	font-size: 12px;
        	padding-top: 115px;
        }
        
		img {
		    /*pointer-events: none;*/  /* 禁止图片响应鼠标事件，如点击、悬停 */
		    user-select: none;     /* 禁止用户选中图片 */
		    -webkit-touch-callout: none; /* 禁止在移动端长按图片时弹出的菜单 */
		    max-width: 100%;       /* 限制图片最大宽度，防止被插件强制拉伸 */
		    height: auto;
			/*border-radius: 25px;*/
		}
		
		a{
	       text-decoration: none;
		}
        /* 可爱的兔兔色调 */
        :root {
            --carrot: #ff9a5a;
            --carrot-light: #ffd8b5;
            --carrot-bg: #fff3e5;
            --mint: #b8e0d4;
            --mint-light: #e0f2ee;
            --bunny-pink: #ffe0e5;
            --bunny-gray: #f0f0f0;
            --text-soft: #6b5a4e;
            --text-light: #9c8e82;
        }
        
        .container {
            max-width: 1060px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        
        .header-box {

	        position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    z-index: 1000;
        }
        
        /* 头部 */
        .header {
            background-color: white;
        	    background: linear-gradient(135deg, #ffffff 0%, #fcfbf8 100%);
            /*box-shadow: 0 4px 12px rgba(255, 154, 90, 0.1);*/
            padding: 15px 0;
            /*border-bottom: 1px solid #e3e3e3;*/
        	
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        	 max-width: 1060px;
   			 margin: 0 auto;
        	  /*  padding: 0 20px;*/
        }
        
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        	 text-decoration: none;  /* 去掉下划线 */
        }
        
        .logo-icon {
            font-size: 2.5rem;
            line-height: 1;
        }
        
        .logo-text h1 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--carrot);
            letter-spacing: 1px;
        }
        
        .logo-text p {
           /* font-size: 1.0rem;*/
            color: #9c8e82;
            font-weight: 500;
        }
        
		.logo:hover .site-name {
		    color: #d3b08f;  /* 悬停时变色，给用户反馈 */
		    transition: color 0.3s;
		}
		        
		.site-name {
		    font-size: 16px;        /* 1.2rem和 H1 一样大 */
		    font-weight: 600;          /* 加粗 */
		    color: #666;          
		    line-height: 1.2;           /* 合适的行高 */
		    display: block;             /* 块级显示，独占一行 */
		    letter-spacing: 0.5px;      /* 稍微宽松一点 */
		    text-decoration: none;      /* 无下划线 */
		   
		}
		
		/* 如果你想加悬停效果 */
		.site-name:hover {
		    color: #d3b08f;             /* 深一点的胡萝卜色 */
		    transition: color 0.3s;
		}
        
		
		 /* 语录列表 */
        .quote-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        	display: grid;
    		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  
        }
        
        .quote-row {
            /*background-color: #fdfdfd;*/
            border-radius: 20px;
            padding: 5px 10px;
            display: flex;
            align-items: center;
            gap: 20px;
            /*box-shadow: 0 3px 10px rgba(0,0,0,0.02);*/
            /*border: 1px solid #e8eefa; */
            transition: transform 0.2s, box-shadow 0.2s;
        	background: linear-gradient(135deg, #ffffff 0%, #fbfbfb 100%);
        	    border-bottom: 1px solid #e8ded2;
        }
        
        .quote-row:hover {
           /* transform: translateX(6px);*/
        	background-color: #ffffff;
            border-color: #978c4b;
        	background: linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%);
        }
        
        .quote-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--carrot-light);
            min-width: 50px;
            text-align: center;
            font-family: monospace;
        }
        
        .quote-content {
            flex: auto;

		    display: -webkit-box;
		    -webkit-line-clamp: 2;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		    text-overflow: ellipsis;
        }
        
        .quote-content h2 {
            color: #333;
        	    font-size: 16px;
        }
        .quote-content p {
            color: #333;
        }
        
        .quote-meta {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        .quote-tags span {
            background-color: var(--mint-light);
            padding: 2px 10px;
            border-radius: 30px;
            margin-right: 6px;
        }
        
        .quote-actions {
            display: flex;
            gap: 15px;
        }
        
        .quote-like, .quote-share {
            background: none;
            border: none;
            cursor: pointer;
            color: #c0b2a6;
            font-size: 1rem;
            transition: color 0.2s;
        }
        
        .quote-like:hover {
            color: #ff8a8a;
        }
        
        .quote-share:hover {
            color: var(--carrot);
        }
         /* 面包屑导航 */
        .breadcrumb-wrapper {
            display: flex;
            align-items: center;
  			justify-content: space-between;
            border-radius: 6px;
        	    margin: 20px 0;
        	    padding: 10px 0;
   
   				 border-bottom: 1px solid #f1f1e7;
        	  /*  background: #fafafa;*/
        	  /*  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100% 100%);*/
        }
        
        /* 返回按钮 */
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 5px;
            color: #fff;
            border: none;
            /*border-radius: 4px;*/
            cursor: pointer;
            font-size: 14px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.3s;
        }
        
        .btn-back:hover {
    background: #ffffff;
            color: #fff;
        }
        
        .btn-back svg {
            width: 16px;
            height: 16px;
            fill: #333;
        }
        
        
        
           /* 面包屑导航 */
        .breadcrumb {
            color: #4b4a49;
        }
        
        .breadcrumb ol {
          list-style: none;
          margin: 0;
          padding: 0;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
        }
        .breadcrumb li {
          display: inline-flex;
          align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
          content: "›";  /* 使用更优雅的右单箭头 */
          margin: 0 8px;
          color: #999;
          font-weight: 300;
          font-size: 16px;
        }

        .breadcrumb a {
            color: #afa7a7;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
               color: #603900;
        }

        .breadcrumb [aria-current="page"] {
          color: #d0aa87;
          font-weight: 500;
        }
        
        /*元信息*/
        
        .detail-meta {
		    display: flex;
		    gap: 10px;
		    border-top: 2px dashed #ffe3d6;
		    border-bottom: 2px dashed #ffe3d6;
		    padding: 15px 0;
		    margin: 30px 0;
		    color: #5f5f5f;
		    flex-wrap: wrap;
        }
        
        .meta-item {
		    display: flex;
		    align-items: center;
		    gap: 6px;
		    background: #faf1ea;
		    padding: 5px 10px;
		    border-radius: 40px;
		    font-size: 0.95rem;
		    }
        
        
       /* 详情页主卡片 */
        .detail-card {
            background-color: white;
            border-radius: 50px;
            padding: 20px;
            /*box-shadow: 0 20px 40px rgba(255, 154, 90, 0.08); */
            /*border: 2px solid var(--carrot-light); */
            position: relative;
        }
        
        
       /* 内容*/
         .post-content {
		    max-width: 800px;       

		}
		
		.post-content p {
		    /* text-align: center; */       
		    margin-bottom: 15px;
		}
		
		.post-content ol,
		.post-content ul {
		    text-align: left;       
		    padding-left: 30px;      
		}
		

		.post-content h2 {
		    font-size: 1.8rem;
		    margin: 40px 0 20px;
		    color: #d0aa87;
		    font-weight: 500;
		    /*border-left: 6px solid #d0aa87;*/
		    padding-left: 15px;
		}
        
        .post-content ol {
            list-style: none;
            counter-reset: quote-counter;
        }
        
        .post-content ol li {
            counter-increment: quote-counter;
            margin-bottom: 10px;
            padding: 15px 20px 15px 50px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid var(--border-light);
            position: relative;
            font-size: 1.05rem;
            line-height: 1.7;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .post-content ol li:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(255, 154, 90, 0.1);
            border-color: var(--carrot-light);
        }
        
        .post-content ol li::before {
            content: counter(quote-counter);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background: var(--carrot-light);
            color: var(--text-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
        }

		.post-content ul {
		    list-style: none;
		    padding: 0;
		    margin: 20px 0;
		    background: #fff9f0;
		    border-radius: 30px;
		    padding: 25px;
		    border: 2px dashed #ffd8b5;
		}
		
		.post-content ul li {
		    padding: 10px 0;
		    border-bottom: 1px solid #ffd8b5;
		    font-size: 1.1rem;
		    color: #6b5a4e;
		}
		
		.post-content ul li:last-child {
		    border-bottom: none;
		}
		
		.post-content .tip-time {
		    display: inline-block;
		    background: #ff9a5a;
		    color: white;
		    padding: 3px 12px;
		    border-radius: 30px;
		    font-size: 0.9rem;
		    font-weight: 600;
		    margin-right: 15px;
		}
        
		
        
        
        

        
        /*分两列*/
		.layout-2col {
		    display: flex;
		    gap: 40px;
		    margin: 30px 0;
		    flex-wrap: wrap;
		}     
		        
		.main-content {
		    flex: 2;
		    min-width: 300px;

		}
		        
		.sidebar {
		    flex: 1;
		    min-width: 250px;
		}


		 /* 侧边栏组件 */
        .sidebar-card {
            /*background-color: white;*/
            border-radius: 30px;
            /*padding: 25px;*/
            margin-bottom: 25px;
            /* border: 1px solid #f0e4d5; */
        }
        
        .sidebar-title {
            display: flex;
            gap: 8px;
        }
        
        .sidebar-title span {
            font-size: 16px;
        }
        
        
        
        
        
        
        /* ---------- 卡片容器 ---------- */
        .sidebar-card {
            background: white;
            margin-bottom: 16px;
            /*border: 1px solid #eef2f6;*/
            overflow: hidden;
            transition: all 0.2s;
            border-radius: 20px;
            width: 100%;
           /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);*/
        }

        /* ---------- 标题区域 ---------- */
        .sidebar-title {
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px 12px;
        }

        /* 左侧：图标 + 型号 */
        .title-left {
            display: flex;
            align-items: center;
            gap: 5px;
        	cursor: pointer;
        }

        .title-left .label {
            font-weight: 600;
            font-size: 12px;
            color: #818285;
        }

        /* 右侧：型号的定义 + 问号 */
        .title-right {
            display: flex;
            align-items: center;
            color: #ed1e1e;
            gap: 2px;
            cursor: default;
        	cursor: pointer;
        }

        .title-right .def-text {
            font-weight: 500;
            font-size: 12px;
        }

        /* 图标统一样式 (宽高已在svg上写死，保持原样) */
        .icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .image-wrapper {
            padding: 0px 5px 10px 5px;   
            display: flex;
            justify-content: center;
            align-items: center;
            background: #ffffff;
        }

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

        /* 相关分类 */
        .related-cats {

        	padding: 5px;
		    display: flex;
		    flex-wrap: wrap;
		    gap: 10px;
        }
        
        .cat-tag {
            background-color: #fbf1e7;
            padding: 8px 16px;
            border-radius: 40px;
            text-decoration: none;
            color: var(--text-soft);
            font-size: 0.9rem;
            transition: background-color 0.2s;
        }
        
        .cat-tag:hover {
            background-color: var(--carrot-light);
        }
        
        
       /* 热门 */
        .hot-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed #f0e4d5;
        }

        .hot-item:last-child {
            border-bottom: none;
        }
        
        .hot-rank {
            width: 28px;
            height: 28px;
            background-color: #ffeede;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--text-soft);
            font-size: 0.9rem;
        }
        
        .hot-content {
            flex: 1;
        }
        .hot-content a{
            color: var(--text-soft)
        }
        
        .hot-content p {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        
        .hot-meta {
            font-size: 0.75rem;
            color: var(--text-light);
        }
        

        
        
        
 /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-item {
		    background-color: #fff;
		    padding: 5px 12px;
		    border-radius: 4px;
		    text-decoration: none;
		    color: #666666;
		    transition: background-color 0.2s;
		    border: 1px solid  #cccccc;
        	position: relative;
        }
   
        .tag-item:hover {
				     color: #d0aa87;
	    			border: 1px solid #d0aa87;
            
        }
        
 .tag-item-active{
	     color: #d0aa87;
	    border: 1px solid #d0aa87;
 }
 
    .tag-item-active:before {
        content: '';
        position: absolute;
        width: 17px;
        height: 6px;
        background: transparent;
        bottom: -1px;
        right: -5px;
        border: 2px solid white;
        border: 1px solid #ff1100;
        border-top: none;
        border-right: none;
        -webkit-transform: rotate(-55deg);
        -ms-transform: rotate(-55deg);
        transform: rotate(-45deg);
        z-index: 2;
      }
        
      
    /* ---- 选项卡导航 ---- */   
      
.tabs-container {
            width: 100%;
            /*max-width: 780px;*/
            background: #ffffff;
            overflow: hidden;

        }
       
        .tab-nav {
            display: flex;
            flex-wrap: wrap;
            /*gap: 0.3rem 0.6rem;*/
            border-bottom: 1px solid #d4b190;
   			/* margin-bottom: 10px;*/
        }
        .tab-btn {
        	
        	   display: flex;
			    align-items: center;
		    gap: 5px;
		    padding: 5px 5px;
            border: none;
            background: transparent;
            color: #666;

            cursor: pointer;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            position: relative;
        	
        	border: 1px solid #ffffff;
        	border-top: 4px solid #ffffff;
    		border-bottom: none;
        	  /*  font-weight: bold;*/
        }
        .tab-btn:hover {
            color: #1e293b;
        }
        .tab-btn.active {
            background: #ffffff;
            border: 1px solid #d4b190;
    	    border-bottom: none;
        	border-top-left-radius: 10px;
			border-top-right-radius: 10px;
        	    border-top: 4px solid #d4b190;
        	color: #000000;
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background: #ffffff;
            border-radius: 4px 4px 0 0;
        }
        /* ---- 内容面板 ---- */
        .tab-content {
		    position: relative;
		    /*min-height: 220px;*/
		    border: 1px solid #edf2fa;
		    border-top: none;
        }
        .tab-panel {
            display: none;
            animation: fadeUp 0.25s ease forwards;
            padding: 10px;
            color: #0f172a;
            line-height: 1.6;
        }
        .tab-panel.active {
            display: block;
        }

        .tab-panel h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            color: #0f172a;
        }
        .tab-panel span {
            font-size: 14px;
            color: #b35603;
        }
        .tab-panel p {

        	font-size: 16px;
		    color: #666666;
		    margin: 20px 0 30px;
		    text-indent: 30px;
        }
        .tab-panel ul {
            padding-left: 1.4rem;
            color: #334155;
        }
        .tab-panel li {
            margin-bottom: 0.2rem;
        }
        .tab-panel .badge {
            display: inline-block;
            background: #e9edf2;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #475569;
        }
        .demo-icon {
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }

      
      
      
        
 /* 分页 */
        
        
  .pagination-container{
	margin: 10px 0;
  	padding: 2px 0;
	border-radius: 6px;
	background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  }
 .pagination li  {
    display: inline-flex;
    align-items: center;
}
 .pagination li a {
     display: inline-block;
     padding: 2px 5px;
     border: 1.5px solid #e2e8f0;
     border-radius: 40px;
     margin: 2px;
     background: #fafbfc;
     transition: all 0.2s ease;
     cursor: pointer;
     color: #000000;
} 

 .pagination li a:hover {
            border-color: #94a3b8;
            background: #f1f4f9;

} 

 .pagination li span{
	 color: #afa9a9;
	 padding: 2px 5px;
	 display: inline-block;
	 padding: 2px 5px;
	 /* border: 1.5px solid #e2e8f0; */
	 border-radius: 40px;
	 margin: 2px;
	 background: #fafbfc;
	 transition: all 0.2s ease;

	}
	
	
	
	
	
	
	/**3D视图*/
	
#canvas-container {
            position: relative;
            width: 100%;
            height: 500px;
            /*margin: 20px auto;*/
            background: #ffffff;
            border-radius: 16px;
            /*box-shadow: 0 12px 30px rgba(0,0,0,0.15);*/
            overflow: hidden;
            /*border: 1px solid #e0e0e0;*/
        }
        #canvas-container canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
            background: #ffffff;
        }
        #view-buttons {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            border-radius: 40px;
            padding: 6px 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px;
            border: 1px solid rgba(255,255,255,0.5);
            max-width: 95%;
            pointer-events: auto;
        }
        .view-btn, .mirror-btn, .rotate-btn {
            margin: 2px 2px;
            padding: 4px 10px;
            color: #333;
            background-color: #f3f6fc;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            background-image: linear-gradient(#ffffff, #fbfdff, #f3f6fc);
            border: 1px solid #e3e3e3;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.15s;
            white-space: nowrap;
        }
        .view-btn:hover { background: #edf2fa; border-color: #b0c4de; }
        .view-btn2 { color: #0071c5; border: 1px solid #0071c5; background: #e6f0ff; }
        .view-btn2:hover { color: #0071c5; border: 1px solid #0071c5; }
        .view-btn img, .mirror-btn img, .rotate-btn img {
            vertical-align: middle;
            height: 18px;
            width: auto;
        }
        #loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #444;
            background: rgba(255,255,255,0.9);
            padding: 20px 30px;
            border-radius: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            font-weight: 500;
            z-index: 20;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        #loading img {
            height: 40px;
            width: auto;
        }
        #activation-hint {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            background: rgba(0,0,0,0.7);
            padding: 20px 30px;
            border-radius: 40px;
            display: none;
            z-index: 50;
            pointer-events: none;
            backdrop-filter: blur(2px);
        }
        #explode-controls {
            display: none;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(4px);
            padding: 10px 18px;
            border-radius: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            z-index: 60;
            border: 1px solid rgba(255,255,255,0.5);
            align-items: center;
            gap: 12px;
            pointer-events: auto;
            font-size: 14px;
        }
        #explode-controls span {
            color: #222;
        }
        #explode-range {
            width: 140px;
            vertical-align: middle;
        }
        #explode-value {
            min-width: 40px;
            text-align: center;
            font-weight: 600;
            color: #0071c5;
        }
        @media (max-width: 1300px) {
            #canvas-container {
                width: 95vw;
                height: calc(95vw * 0.666);
                max-height: 90vh;
                margin: 10px auto;
            }
        }
        @media (max-width: 800px) {
            #canvas-container {
                width: 98vw;
                height: calc(98vw * 0.7);
                border-radius: 12px;
                margin: 6px auto;
            }
            #view-buttons {
                top: 8px;
                padding: 4px 10px;
                gap: 2px;
                border-radius: 30px;
            }
            .view-btn, .mirror-btn, .rotate-btn {
                padding: 2px 6px;
                font-size: 11px;
            }
            .view-btn img, .mirror-btn img, .rotate-btn img {
                height: 14px;
            }
            #explode-controls {
                padding: 6px 12px;
                bottom: 10px;
                gap: 6px;
                font-size: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            #explode-range {
                width: 100px;
            }
        }
	
	/* 物料分类导航*/
.material-category-nav{

    display: flex;
    background: #d1ddf1;
  	border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    /*max-width: 1000px;*/
    height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
	
	position: absolute;
    z-index: 999;
	border: 1px solid #d3af8d;
	/*border-right: none;*/
	display: none;
	
	margin: 5px 0;
    background: linear-gradient(135deg, #ffffff 0%, #a9bfe5 100%);
    background: linear-gradient(90deg, #d1ac8b 0%, #ffffff 100%);
}




.material-category-nav ul {
	list-style: none;
	padding: 0;
    margin: 0;
	/*border-right: 1px solid #f3f3f3;*/
    background: #fcfbf8;
	width: 200px;
}

.material-category-nav ul li{
    cursor: pointer;
    border-radius: 6px;
    padding: 5px 10px;
	margin: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    /*box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);*/
    border-bottom: 2px solid #fcfbf8;
    transition: transform 0.2s, box-shadow 0.2s;
    /*background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);*/
}
.material-category-nav ul li span{
	   font-size: 13px;
	   color:#322f2f;
}

.material-category-nav ul:nth-child(n+2) {
    display: none;
	overflow-x: auto;
	border-left: 1px solid #f3f3f3;
    background: #fcfbf8;
    width: 200px;
}


.material-category-nav ul .active {
	       border-bottom: 2px solid #d1ab88;
}
	
	
	
	
	
	
	
	
		
        .nav{
			padding: 5px 0;
        }
        
        .nav a {
			margin-right: 25px;
		    text-decoration: none;
		    color: #333;
		    font-size: 14px;
		    transition: color 0.3s;
		    position: relative;
        	    display: inline-flex;
    			align-items: center;
        	font-weight: bold;
        }
        
        .nav a:hover {
            color: var(--carrot);
        }
        
		.nav span {
    /* ===== 基础 ===== */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    
    /* ===== 尺寸 ===== */
    padding: 0px 12px 0px 32px;
    min-height: 30px;
    
    /* ===== 字体 ===== */
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    
    /* ===== 背景 + 图标 ===== */
    /*background-color: #f5f7fa;*/
    background-image: url('/uploads/site/picture/icon/tag.png');
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 16px 16px;
    
    /* ===== 边框 ===== */
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    
    /* ===== 交互 ===== */
    cursor: default;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    
    /* ===== 文字溢出 ===== */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
			
			margin: 2px;
		}
        
        /* 欢迎大图 */
        .hero {
            /*background: linear-gradient(135deg, #ffffff 0%, #fff5e2 100%);*/
        	    background: linear-gradient(135deg, #ffffff 0%, #fcfbf8 100%);
            padding: 50px 0;
            border-radius: 0 0 50px 50px;
        	/*border-bottom: 1px solid #f1f1e7;*/
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        	max-width: 1060px;
		    margin: 0 auto;
		    padding: 0 20px;
        }
        
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        
        .hero-text h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-soft);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hero-text h2 span {
            background-color: white;
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
            color: var(--carrot);
            font-size: 2rem;
            margin-top: 10px;
        }
		.hero-text h1{
			padding:20px 0
		}
        .hero-text p {
            font-size: 16px;
            color: #333333;
            margin: 0 0 10px;
        	text-indent: 30px;
        	    line-height: 30px;
        }
        
        .hero-bunny {
            flex: 0 0 350px;
            /*text-align: center;*/
            /*font-size: 8rem;*/
            line-height: 1;
            /*filter: drop-shadow(0 10px 20px rgba(255, 154, 90, 0.3));*/
            /*animation: bounce 3s infinite ease-in-out;*/
        	margin: 0 auto;
        }
        

        .btn {
		    display: inline-block;
		    padding: 6px 14px;
		    background: white;
		    border: 1px solid #ccc;
		    border-radius: 4px;
		    cursor: pointer;
		    font-size: 14px;
		    transition: all 0.2s;
		    margin: 2px 0;
        	color: #916e50;
        }
        
        .btn:hover {
          background: #fdfdfb;
        }
        
        .btn-small {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
        
        
         /* ---- 差异高亮样式 ---- */
        .diff-row {
            background: #fffbeb !important;
            border-left: 0px solid #f59e0b;
        }

        .diff-row td {
            background: #fffbeb !important;
        }

        .diff-row td:first-child {
            background: #fffbeb !important;
        }
        
		td.diff-cell {
		    /*background: #fef3c7 !important;*/
		    color: #92400e;
		    font-weight: 500;
		}
        
        
        
        
        /* 分类头部 */
        .category-header {
            background: linear-gradient(135deg, #ffffff 0%, #f1f1e7 100%);
            padding: 40px 0 30px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 30px;
        }
        
        .category-info {
            text-align: center;
        }
        
        .category-icon {
            font-size: 5rem;
            margin-bottom: 10px;
            animation: bounce 2s infinite;
        }
        
        .category-info h2 {
            font-size: 2.8rem;
            color: var(--text-soft);
            margin-bottom: 10px;
        }
        
        .category-info p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 20px;
        }
        
        .category-meta {
            display: flex;
            justify-content: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .category-meta span {
            background-color: white;
            padding: 5px 15px;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        
        
        
        
        
        
        
        /* 分类卡片 */
        .section-title {
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--text-soft);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::before, .section-title h2::after {
            content: "";
            font-size: 1.5rem;
            margin: 0 15px;
            opacity: 0.6;
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0 50px;
        }
        
        .category-card {
            background-color: white;
            border-radius: 30px;
            padding: 25px 15px;
            text-align: center;
            /* box-shadow: 0 6px 15px rgba(0,0,0,0.03); */
            /* border: 1px solid rgba(255, 154, 90, 0.1); */
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            border-color: var(--carrot);
        }
        
        .category-emoji {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        
        .category-card h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .category-card p {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        
        /* 双品牌入口区 */
        .brands-grid {
		    display: grid;
		    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		    gap: 25px;
		    margin: 0px;
        	
        	    overflow-x: auto;
   			
        }
        .brand-card {
			background-color: white;
		    border-radius: 30px;
		    padding: 25px;
		    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03); */
		    /* border: 1px solid rgba(255, 154, 90, 0.1); */
		    transition: transform 0.3s, border-color 0.3s;
		    /*cursor: pointer;*/
		    text-decoration: none;
		    color: inherit;
		    display: block;
        	position: relative;
        	border-bottom: 2px dashed #f0e4d5;
        	border: 1px solid #f0e4d5;
           
        }
        .brand-card:hover {
            /*transform: translateY(-4px);*/
            /*box-shadow: 0 12px 24px rgba(0,0,0,0.04);*/
        }
        .brand-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        	text-align: center;
        }
        .brand-card h3 {
            font-size: 1.6rem;
            font-weight: 500;
            color: #1f2d3d;
            margin-bottom: 12px;
        }
        .brand-card p {
            color: #5c6f87;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .btn-brand {
            display: inline-block;
            background-color: #d0aa87;
            color: white;
            padding: 0px 5px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background-color 0.2s;
		    /*position: absolute;*/
		    /*bottom: -12px;*/
		    /*left: 50%;*/
		    /*transform: translateX(-50%);*/
        	 margin: 10px;
        }
        .btn-brand:hover {
            background-color: #ff9a5a;
        }
        
        
        /* 今日精选 */
        .today-feature {
            background-color: white;
            border-radius: 40px;
            padding: 40px;
            margin: 40px 0;
            /*box-shadow: 0 15px 30px rgba(255, 154, 90, 0.08);*/
        	/*border: 2px dashed #f0e4d5;*/
        	border:  1px solid #f0e4d5;
            position: relative;
        }
        
        .today-tag {
            position: absolute;
            top: -15px;
            left: 30px;
			/*background-color: #fff6ec;*/
		    color: #603900;
            padding: 5px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .today-quote {
            font-size: 1.6rem;
            line-height: 1.5;
            color: var(--text-soft);
            margin: 20px 0;
            font-weight: 500;
            text-align: center;
        }
        .today-quote a {

            color: #9c8e82;

        }
        
        
        .today-quote::before, .today-quote::after {
            content: "“";
            font-size: 3rem;
            color: var(--carrot-light);
            font-family: serif;
            line-height: 0;
            vertical-align: middle;
        }
        
        .today-quote::after {
            content: "”";
        }
        
        .quote-meta {
		    display: flex;
		    gap: 20px;
		    color: var(--text-light);
		    font-size: 0.85rem;
        }
        
        .quote-tags span {
            background-color: var(--mint-light);
            padding: 3px 12px;
            border-radius: 50px;
            margin: 0 5px;
            color: #5f8b7a;
            font-size: 0.8rem;
        }
        
        /* 最新语录列表 */
        .latest-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0 50px;
        }
        
        .quote-item {
            background-color: white;
            border-radius: 25px;
            padding: 25px;
            /* box-shadow: 0 8px 18px rgba(0,0,0,0.02); */
             border: 1px solid #f0e4d5; 
            transition: box-shadow 0.3s;
            position: relative;
           
        }
        
        .quote-item:hover {
            box-shadow: 0 12px 28px rgba(255, 154, 90, 0.12);
        }
        
        .quote-item p , .quote-item a{
            font-size: 1rem;
            margin-bottom: 20px;
            padding-right: 20px;
        	color: #4a4a4a;
        }
        
		

        
		.quote-row2 {
		    display: block;
		    text-decoration: none;
		}
        
        .quote-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .quote-like {
            background: none;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            color: #603900;
            transition: color 0.2s;
        }
        
        .quote-like:hover {
            color: #ff6b6b;
        }
        
        .quote-category-badge {
            background-color: #fff6ec;
            padding: 3px 12px;
            border-radius: 30px;
            color: #d0aa87;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* 评论区 */
        .comment-section {
            /*background-color: white;*/
            border-radius: 40px;
            padding: 10px;
            margin: 0px 0;
            /* border: 1px solid #f0e4d5; */
        	position: relative;
        }
        
        .comment-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .comment-title h4 {
            font-size: 1.4rem;
            color: var(--text-soft);
        }
        
        .comment-count {
            color: var(--text-light);
        }
        
        .comment-input-area {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .comment-avatar {
            width: 48px;
            height: 48px;
            /*background-color: var(--carrot-light);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .comment-input-wrapper {
            flex: 1;
            display: flex;
            background-color: var(--bunny-gray);
            border-radius: 60px;
            overflow: hidden;
        }
        
        .comment-input-wrapper input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            background: transparent;
            font-family: 'Quicksand', sans-serif;
        }
        
        .comment-input-wrapper input:focus {
            outline: none;
        }
        
        .comment-input-wrapper button {
			background-color: #d0aa87;
		    border: none;
		    color: white;
		    padding: 15px 30px;
		    font-weight: 600;
		    cursor: pointer;
		    font-family: 'Quicksand', sans-serif;
		    transition: background-color 0.3s;
        }
        
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        	
        	position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* width: 100%; */
    max-height: 400px;
    overflow-y: auto;
    background: #fef9f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
        }
        
        .comment-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px dashed #f0e4d5;
        }
        
        .comment-item:last-child {
            border-bottom: none;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }
        
        .comment-name {
            font-weight: 600;
            color: var(--text-soft);
        }
        
        .comment-time {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .comment-text {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        
        .comment-reply {
            color: var(--carrot);
            font-size: 0.8rem;
            text-decoration: none;
        }
        
        
        
        
        
        /* ===== 搜索框容器（relative 作为定位参考） ===== */
        .search-wrapper {
            position: relative;
            background: #fff;
            border: 1px solid #d0d0d0;
            border-radius: 24px;
            transition: box-shadow 0.2s, border-color 0.2s;
            z-index: 1;
        }

        .search-wrapper:hover {
            border-color: #b8b8b8;
        }

        .search-wrapper.focused {
            border-color: #603900;
            box-shadow: 0 2px 12px rgba(78, 110, 242, 0.15);
        }

        /* 有下拉时，底部圆角取消，与下拉融合 */
        .search-wrapper.has-suggest {
            border-radius: 24px 24px 0 0;
            border-bottom-color: transparent;
        }

        /* ===== 搜索框主体 ===== */
        .search-box {
            display: flex;
            align-items: center;
            padding: 0 6px 0 16px;
            position: relative;
            z-index: 2;
            background: #fff;
            border-radius: 24px;
        }

        .search-wrapper.has-suggest .search-box {
            border-radius: 24px 24px 0 0;
        }

        .search-icon {
            flex-shrink: 0;
            font-size: 20px;
            color: #999;
            line-height: 1;
            user-select: none;
        }
        .search-icon svg {
            width: 20px;
            height: 20px;
            fill: #999;
            display: block;
        }

        .search-input-wrapper {
            flex: 1;
            min-width: 0;
        }
        .search-input-wrapper input {
            width: 100%;
            height: 34px;
            border: none;
            outline: none;
            color: #222;
            background: transparent;
            padding: 0 8px;

        }
        .search-input-wrapper input::placeholder {
            color: #b0b0b0;
            font-size: 14px;
        }

        .search-actions {
            display: flex;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
        }
        .search-actions .action-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: transparent;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            font-size: 18px;
            color: #666;
        }
        .search-actions .action-btn:hover {
            background: #f0f0f0;
        }
        .search-actions .action-btn svg {
            width: 20px;
            height: 20px;
            fill: #666;
        }
        .search-actions .voice-btn:hover svg {
            fill: #4e6ef2;
        }
        .search-actions .camera-btn:hover svg {
            fill: #52b96b;
        }

        .search-btn {
            height: 26px;
            padding: 0 22px;
            margin-left: 4px;
            background: #d4b191;
        	background: #a7d4ae;
        	background: linear-gradient(135deg, #a7d4ae 0%, #d0aa87 100%);
            border: none;
            border-radius: 18px;
            color: #fff;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .search-btn:hover {
            background: #d4b191;
        }
        .search-btn:active {
            background: #d4b191;
        }

        /* ===== 搜索联想下拉（absolute 悬浮，不占高度） ===== */
        .search-suggest {
            position: absolute;
            top: 100%;
            left: -1px;
            right: -1px;
            display: none;
            text-align: left;
            padding: 0px 10px;
            background: #fef9f0;
            border: 1px solid #603900;
            border-top: none;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            z-index: 999;
            margin-top: 0;
            max-height: 400px;
            overflow-y: auto;
        }

        .search-suggest.active {
            display: block !important;
        }

        .search-suggest ul {
            list-style: none;
            padding: 0 16px;
            margin: 0;
        }

        .search-suggest li {
            padding: 10px 16px;
            font-size: 15px;
            color: #222;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 12px;
            transition: background 0.12s;
        }

        .search-suggest li:hover {
            background: #f5f7fa;
        }

        .search-suggest li .s-icon {
            color: #b0b0b0;
            font-size: 16px;
            flex-shrink: 0;
        }

        .search-suggest li .s-keyword {
            color: #4e6ef2;
            font-weight: 500;
        }

        .search-suggest li .s-tag {
            margin-left: auto;
            font-size: 12px;
            color: #b0b0b0;
            background: #f0f2f5;
            padding: 2px 12px;
            border-radius: 12px;
            flex-shrink: 0;
        }


        
        
        
        
        
        
        
        
        
        /* 投稿区 */
        .submit-section {
            background: linear-gradient(145deg, var(--bunny-pink) 0%, #fff2d8 100%);
            border-radius: 50px;
            padding: 50px;
            text-align: center;
            margin: 60px 0;
        }
        
        .submit-section h4 {
            font-size: 2rem;
            color: var(--text-soft);
            margin-bottom: 20px;
        }
        
        .submit-section p {
            max-width: 500px;
            margin: 0 auto 30px;
            color: var(--text-light);
        }
        
        .submit-input {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background-color: white;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .submit-input input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            font-size: 1rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .submit-input input:focus {
            outline: none;
        }
        
        .submit-input button {
            background-color: #d0aa87;
            border: none;
            color: white;
            padding: 15px 30px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Quicksand', sans-serif;
            transition: background-color 0.3s;
        }
        
        .submit-input button:hover {
            background-color: #ff8642;
        }
        
        /* 页脚 */
        .footer {
           
            padding: 40px 0;
            border-top: 1px solid #e3e3e3;
            /*margin-top: 40px;*/
        	/*background: #f7f7f7;*/
        	    background: linear-gradient(135deg, #ffffff 0%, #fcfbf8 100%);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1060px;
    		margin: 0 auto;
        	    padding: 0 20px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
            color: #d0aa87;
        }
        
        .footer-links a , .footer-links span{
            text-decoration: none;
            color: var(--text-light);
            margin: 0 15px;
            font-size: 0.9rem;
        }
        
        
        .footer-links a:hover {
            color: var(--carrot);
        }
        
        .footer-copyright {
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .footer-copyright a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .footer-copyright a:hover {
            color: var(--carrot);
        }
        
        /* 兔兔脚印装饰 */
        .footprint {
            text-align: center;
            font-size: 1.5rem;
            color: #d1ac8a;
            letter-spacing: 8px;
            padding: 30px 0;
        }
        
		.feedback-modal {
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background-color: rgba(0,0,0,0.3);
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    z-index: 1000;
		}
		
		.feedback-content {
		    background-color: white;
		    border-radius: 40px;
		    padding: 30px;
		    max-width: 300px;
		    text-align: center;
		    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		}
		
		.feedback-bunny {
		    font-size: 4rem;
		    margin-bottom: 10px;
		    animation: bounce 0.5s;
		}
		
		@keyframes bounce {
		    0%, 100% { transform: translateY(0); }
		    50% { transform: translateY(-15px); }
		}
		
		.feedback-content h3 {
		    font-size: 1.5rem;
		    color: #6b5a4e;
		    margin-bottom: 10px;
		}
		
		.feedback-content p {
		    color: #9c8e82;
		    margin-bottom: 20px;
		}
		
		.feedback-content button {
		    background-color: #ff9a5a;
		    color: white;
		    border: none;
		    padding: 10px 30px;
		    border-radius: 30px;
		    font-size: 1rem;
		    cursor: pointer;
		}
		
		
		
		
		
		
     /* 手风琴容器 */
        .accordion {
           
            width: 100%;
            margin: 0 auto;
        }

        /* 每个折叠项 */
        .accordion-item {
            background: white;
            margin-bottom: 16px;
            border: 1px solid #eef2f6;
            overflow: hidden;
            transition: all 0.2s;
        	border-radius: 20px;
        }

        /* 头部 - 可点击 */
        .accordion-header {
            padding: 10px 24px;
            background: #fafafa;
            font-weight: 600;
            font-size: 14px;
            color: #1e2a3e;
            cursor: pointer;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        	    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
        }

        .accordion-header:hover {
            background: #b8e0d4;
        	    background: linear-gradient(135deg, #ffffff 0%, #e9e9e9 100%);
        }

        .header-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .arrow-icon {
            font-size: 12px;
            color: #8ba0b0;
            transition: transform 0.3s ease;
        }

        /* 激活项箭头旋转 */
        .accordion-item.active .arrow-icon {
            transform: rotate(180deg);
        }

        /* 内容主体 - 默认隐藏 */
        .accordion-body {
            display: none;
            padding:10px;
            background: #ffffff;
            border-top: 1px solid #eef2f6;
            color: #2c3e4e;
            line-height: 1.6;
 
        }

        /* 展开动画 */
        .accordion-item.active .accordion-body {
            display: block;
            animation: fadeIn 0.25s ease;
        }

       /* @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }*/

        /* 示例内容样式 */
        .drawing-placeholder {

            padding: 20px;
            text-align: center;
        }

        .drawing-placeholder img {
            max-width: 100%;
   
        }

        .drawing-caption {
            font-size: 12px;
            color: #4b6a85;
            margin-top: 10px;
        }

        .spec-list {
            list-style: none;
            padding: 0;
        }

        .spec-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eef2f6;
            display: flex;
            gap: 12px;
        }

        .spec-list li:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            width: 100px;
            color: #1e2a3e;
        }

        .download-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .download-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: #f8fafc;
            border-radius: 12px;
            text-decoration: none;
            color: #2c6e9e;
            transition: background 0.2s;
        }

        .download-link:hover {
            background: #eef2f8;
        }

        hr {
            margin: 16px 0;
            border: 0;
            border-top: 1px solid #ecf3f8;
        }

        .demo-title {
            text-align: center;
            margin-bottom: 32px;
        }

        .demo-title h1 {
            font-size: 24px;
            font-weight: 600;
            color: #1e2a3e;
        }

        .demo-title p {
            color: #6e8eae;
            margin-top: 8px;
            font-size: 14px;
        }

       /* 参数表格 - 干净轻量 */
        .param-section {
            background: #ffffff;
            border: 1px solid #eef2f6;
            overflow: hidden;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            padding: 16px 20px;
            background: #f9fbfd;
            border-bottom: 1px solid #eef2f6;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            font-size: 20px;
        }
        
        
        .brands-grid-modal{
			overflow-x: auto;
        }

        .param-table {
            width: 100%;
            border-collapse: collapse;
        }

        .param-table tr {
            border-bottom: 1px solid #f0f2f5;
        }

        .param-table tr:last-child {
            border-bottom: none;
        }
        
		.param-table tr:nth-child(even) {
		    background-color: #fbfbfb;
			    background: linear-gradient(135deg, #ffffff 0%, #fbfaf6 100%);
		}

        .param-table th {
            text-align: left;
            padding: 10px 5px;
            /* background: #fafafa; */
            font-weight: 600;
            color: #2c3e4e;
   
            letter-spacing: 0.3px;
            text-align: right;
            border-right: 1px solid #eef2f6;
        	min-width: 100px;
    		width: 100px;

        }

        .param-table td {
            padding: 5px 5px;
        }
        
        
        
        /*  hover 生效：关键在这里 */
		.param-table tbody tr:hover {
		    background: #fffbeb !important;
		}
		
		/* 同时改变所有单元格的背景 */
		.param-table tbody tr:hover td,
		.param-table tbody tr:hover th {
		    background: #fffbeb !important;
		}
		
		/* 如果表头也需要 hover 效果 */
		.param-table thead tr:hover th {
		    background: #fffbeb; 
		}
		
		
		
		
		
 /* ===== 筛选项 ===== */
        .filter-group {
		   /* border-bottom: 1px solid #e9edf4;*/
		    padding: 5px 2px;
        	   
        }


        .filter-group:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
		.filter-group:nth-child(odd) {
		    background: #fbfbfb;
		    background: linear-gradient(267deg, #ffffff 0%, #fbfaf6 100%);
		    
			}
			.filter-group:hover{
			  background:#dfefef;
				 background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 100%);
			}

        .filter-group .group-label {
         width: 80px;
   		 text-align: right;
           /* font-weight: 600;*/
            color: #5a5a5a;
            display: block;
        	margin: 2px 0;
        	/*background: #edf2fa;*/
        }

        .filter-group .group-label small {
 
            color: #94a3b8;
            margin: 0 5px;
        }

        .option-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        	padding: 5px 0;
        }
        
  /* ===== 多选框 ===== */
        .option-item {
            position: relative;
            cursor: pointer;
            user-select: none;
        	    color: #000000;
        	    display: inline-block;
        	    margin-right: 5px;
        }

        .option-item .check-label {
            display: inline-block;
            padding: 2px 5px;
            border: 1px solid #cccccc;
            border-radius: 40px;
    		margin: 2px 0;
            background: #ffffff;
            transition: all 0.2s ease;
            cursor: pointer;
            min-width: 30px;
    		text-align: center;
        }

        .option-item .check-label:hover {
            border-color: #94a3b8;
            background: #f1f4f9;
        }

        .option-item .checked{
       		/* border-color: #603900;*/
            color: #603900;
            font-weight: 500;
        }
        
	.option-item .checked:before {
        content: '';
        position: absolute;
        width: 17px;
        height: 6px;
        background: transparent;
        bottom: -1px;
        right: -5px;
        border: 2px solid white;
        border: 1px solid #F44336;
        border-top: none;
        border-right: none;
        -webkit-transform: rotate(-55deg);
        -ms-transform: rotate(-55deg);
        transform: rotate(-45deg);
        z-index: 2;
      }
      
      

/* ---------- 比对栏容器 ---------- */
.compare-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 12px 20px;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 820px;
    width: 100%;
    min-height: 64px;
    /* 防止内容溢出 */
    overflow: hidden;
	
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
 .compare-bar.hidden {
            transform: translateY(100%);
        }
/* ---------- 左侧区域 ---------- */
.compare-bar .left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;           /* 允许 flex 子项收缩 */
    overflow: hidden;       /* 防止内容溢出 */
}

.compare-bar .label {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

.compare-bar .badge {
    background: #eef2f6;
    color: #1e293b;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 40px;
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
}

/* ============================================
   关键：chip-list 独立滚动
   ============================================ */
.compare-bar .chip-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    /* 滚动核心 */
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0;
    /* 隐藏滚动条（但保留功能） */
    scrollbar-width: thin;           /* Firefox */
    -webkit-overflow-scrolling: touch;
}

/* 隐藏滚动条（Chrome / Safari / Edge） */
.compare-bar .chip-list::-webkit-scrollbar {
    height: 4px;
    background: transparent;
}

.compare-bar .chip-list::-webkit-scrollbar-thumb {
    background: #d0d9e5;
    border-radius: 8px;
}

.compare-bar .chip-list::-webkit-scrollbar-track {
    background: transparent;
}

/* Firefox 滚动条颜色 */
.compare-bar .chip-list {
    scrollbar-color: #d0d9e5 transparent;
}

/* ---------- Chip 标签样式 ---------- */
.compare-bar .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f4f9;
    padding: 4px 10px 4px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;        /* 防止文字换行 */
    flex-shrink: 0;             /* 防止被压缩 */
    border: 1px solid #e2e8f0;
    transition: background 0.15s;
}

.compare-bar .chip:hover {
    background: #e6ebf2;
}

.compare-bar .chip .remove {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-bar .chip .remove:hover {
    color: #ef4444;
}

/* ---------- 右侧按钮区域 ---------- */
.compare-bar .right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.compare-bar .btn {
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.compare-bar .btn-success {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

.compare-bar .btn-success:hover {
    background: #15803d;
    border-color: #15803d;
}

.compare-bar .btn-outline {
    background: transparent;
    color: #475569;
    border-color: #d0d9e5;
}

.compare-bar .btn-outline:hover {
    background: #f1f4f9;
    border-color: #b0bccd;
}

.compare-bar .btn-sm {
    padding: 4px 16px;
    font-size: 13px;
}

/* ---------- 小屏适配 ---------- */
@media (max-width: 640px) {
    .compare-bar {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 10px;
    }

    .compare-bar .left {
        flex-wrap: wrap;
        gap: 8px;
    }

    .compare-bar .chip-list {
        width: 100%;
        order: 3;
        padding: 4px 0 2px 0;
    }

    .compare-bar .right {
        margin-left: auto;
    }

    .compare-bar .label {
        font-size: 14px;
    }
}
        
		
		/*****/
		
        .gallery {

        }

        .item {

        }

        .item:hover {
            border-color: rgba(255, 170, 68, 0.2);
            background: rgba(255, 255, 255, 0.05);
        }

        .viewer-card {
 
        }

        .viewer-card:hover {
            border-color: rgba(255, 170, 68, 0.25);
        }

        .img-wrapper {

            overflow: hidden;
            cursor: grab;
            touch-action: none;
            position: relative;
            flex-shrink: 0;
         
        }

        .img-wrapper:active {
            cursor: grabbing;
        }

        .img-wrapper img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            pointer-events: none;
            transform-origin: center center;
            transition: none;
            position: relative;
        }

        .controls {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 14px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }

        .controls label {
            color: #aaa;
            font-size: 12px;
            font-weight: 500;
        }

        .controls input[type="range"] {
            -webkit-appearance: none;
            width: 100px;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(to right, #ffaa44, #ff6b6b);
            outline: none;
            cursor: pointer;
        }

        .controls input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: 0.15s;
        }

        .controls input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            background: #ffaa44;
        }

        .controls input[type="range"]::-moz-range-thumb {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            border: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            cursor: pointer;
        }

        .scale-value {
            color: #ffaa44;
            font-size: 13px;
            font-weight: 600;
            min-width: 42px;
            text-align: center;
        }

        .reset-btn {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid #eef2f6;
            color: #666;
            padding: 3px 5px;
            border-radius: 30px;
            font-size: 11px;
            cursor: pointer;
            transition: 0.2s;
        }

        .reset-btn:hover {
            background: rgba(255, 170, 68, 0.2);
            color: #ffaa44;
            border-color: #ffaa44;
        }



        .boundary-badge {
            font-size: 10px;
            color: #ffaa44;
            background: rgba(255, 170, 68, 0.12);
            padding: 2px 10px;
            border-radius: 20px;
            border: 1px solid rgba(255, 170, 68, 0.15);
        }
		
		
        
        
        
        
        
        
        
        
        
        
/* ===== 轮播容器 ===== */
.slider-container {
    max-width: 800px;
    margin: 0 auto 0px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	box-shadow: 0 4px 20px rgb(238 224 212);
    background: #fff;
}

.slider-container .slides {
    position: relative;
    overflow: hidden;
}

.slider-container .slide-item {
    display: none;
    width: 100%;
    animation: sliderFade 0.6s ease;
}

.slider-container .slide-item.active {
    display: block;
}

.slider-container .slide-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.slide-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}

.slide-number {
    position: absolute;
    top: 16px;
    left: 20px;
    color: #fff;
    background: rgb(179 201 164);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    z-index: 5;
}

/* ===== 按钮 ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(180 199 162 / 57%);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: rgb(209 172 138 / 71%);
    transform: translateY(-50%) scale(1.05);
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

/* ===== 圆点 ===== */
.slider-dots {
    text-align: center;
    padding: 14px 0 18px;
    background: #fff;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dots .dot.active {
    background: #d1ab89;
    transform: scale(1.25);
}
.slider-dots .dot:hover {
    background: #d1ab89;
}
.slider-dots .dot.active:hover {
    background: #1e40af;
}
        
  /*关于我们的图片列表**/      

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
	    padding: 10px;
    margin: 0;
}

.grid-list li {
    background: #fff;
    /*border-radius: 12px;*/
    overflow: hidden;
     border: 5px solid #d3af8e;
    /*  box-shadow: 0 2px 8px rgba(0,0,0,0.06);*/
    cursor: pointer;
}
.grid-list li:hover {
     border-color:  #bfc3c6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.grid-list img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.grid-list .label {
    display: block;
    padding: 5px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
	    background: #d3af8e;
}



/* ===== 卡片容器 ===== */
.card {

    border-radius: 14px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s;*/
	background: linear-gradient(135deg, #ffffff 0%, #f7f1eb 100%);
	
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 10px;
}

.card:hover {
   /* transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);*/
}

/* ===== 左边：地址信息 ===== */
.card .info {
    flex: 1;
    min-width: 0;
}

.card .info .name {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.card .info .addr {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    word-break: break-all;
	padding-top: 5px;
}

.card .info .tag {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.tag.open { background: #dcfce7; color: #166534; }
.tag.close { background: #fee2e2; color: #991b1b; }
.tag.wait { background: #fef3c7; color: #92400e; }

/* ===== 右边：图片 ===== */
.card .thumb {
    flex-shrink: 0;
    max-width: 380px;
    /*height: 150px;*/
    border-radius: 10px;
    overflow: hidden;
}

.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.card:hover .thumb img {
    transform: scale(1.04);
}

/* ===== 右侧小箭头（可选） ===== */
.card .arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    font-size: 18px;
    transition: color 0.2s, transform 0.2s;
}
.card:hover .arrow {
    color: #94a3b8;
    transform: translateX(2px);
}

        
        
        
        
 /* ================= 右侧悬浮客服 ================= */
        .right-sidebar {
            position: fixed;
            right: 20px; top: 50%; transform: translateY(-50%);
            z-index: 9999;
            display: flex; flex-direction: column; gap: 10px;
        }
        .sidebar-item {
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; cursor: pointer; transition: all 0.3s ease; user-select: none;
        }
        .sidebar-item .icon-box { margin-bottom: 5px; display: flex; align-items: center; justify-content: center; }
        .sidebar-item svg { width: 24px; height: 24px; }

        /* 在线咨询按钮 */
        .sidebar-item.main-btn {
            background-color: #a7d4ae; background: linear-gradient(135deg, #a7d4ae 0%, #d0aa87 100%); color: #fff;
            padding: 15px 12px; border-radius: 10px 10px 0 0; font-size: 14px; font-weight: bold; line-height: 1.4;
        }
        .sidebar-item.main-btn:hover { background-color: #d3af8e; }

        /* 下方组容器 */
        .sidebar-group {
            background-color: #fff; border: 1px solid #ededed;
            border-radius: 4px; padding: 5px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .sidebar-group .sidebar-item { color: #333; padding: 12px 10px; font-size: 13px; line-height: 1.4; }
        .sidebar-group .sidebar-item:hover { color: #d3af8e; background-color: #fbfaf7; }
        
        /* 微信咨询容器：相对定位，用于定位弹出的二维码 */
        .wechat-hover-box {
            position: relative;
        }

        /* ================= 悬停弹出的二维码部分 ================= */
        .wechat-popup {
            position: absolute;
            top: 50%; 
            right: 100%; /* 靠右弹出 */
            transform: translateY(-50%);
            margin-right: 15px; /* 距离按钮的间距 */
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            border: 1px solid #eaeaea;
            width: 180px; /* 弹窗宽度 */
            text-align: center;
            
            /* 初始隐藏状态：透明且不可见，防止误触 */
            opacity: 0;
            visibility: hidden; 
            transition: all 0.3s ease;
        }

        .wechat-popup img {
            width: 150px; 
            height: 150px; 
            object-fit: contain; 
            display: block; 
            margin: 0 auto;
        }
        
        .wechat-popup p {
            margin-top: 10px;
            font-size: 13px;
            color: #d3af8e; /* 文字颜色跟主题色一致 */
            font-weight: bold;
            white-space: nowrap; /* 防止文字换行 */
        }

        /* 小三角箭头（指向右侧） */
        .wechat-popup::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%; /* 放在弹窗的最右侧 */
            transform: translateY(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent transparent #fff; /* 白色三角 */
        }
        .wechat-popup::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            border-width: 9px;
            border-style: solid;
            border-color: transparent transparent transparent #eaeaea; /* 灰色边框三角 */
        }

        /* 核心交互：鼠标移入微信按钮时，显示弹窗 */
        .wechat-hover-box:hover .wechat-popup {
            opacity: 1;
            visibility: visible;
        }       
        
        
        
        
        
        
        /* ================= 1. 定制流程 ================= */
        .section { padding: 0px; }
        .section-title2 { text-align: center; margin-top: 50px; margin-bottom: 50px;}
        .section-title2 h2 { font-size: 28px; font-weight: 300; letter-spacing: 2px; color: #d3b08f; }
        .section-title2 span { font-size: 14px; color: #999; display: block; margin-top: 10px; }

        .process-grid {  gap: 20px;   display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));}
        .process-step { text-align: center; }
        .step-icon {
            width: 70px; height: 70px; border-radius: 50%;
            background: #fff; border: 1px solid #d3b08f;
            margin: 0 auto 15px; display: flex; justify-content: center; align-items: center;
            color: #d3b08f; font-size: 28px;
        }
        .process-step h4 { font-size: 16px; margin-bottom: 8px; }
        .process-step p { font-size: 12px; color: #666666; }   
        
        /* ================= 2. 材质与工艺 ================= */
        .material-box {
            background: #fff;
            border: 1px solid var(--border-color);
            padding: 40px;
            display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
        }
        .material-item { flex: 1 1 30%; min-width: 250px; padding: 20px; }
        .material-item h3 { color: var(--main-color); font-size: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; margin-bottom: 15px; }
        .material-item ul { list-style: none; }
        .material-item li { padding: 5px 0; font-size: 14px; color: var(--light-text); }
        .material-item li::before { content: "◆"; color: var(--main-color); margin-right: 8px; font-size: 10px; }

        /* ================= 3. 定制案例 ================= */
        .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .case-item {
            background: #fff; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden;
            transition: 0.3s; position: relative;
        }
        .case-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-5px); }
        .case-item img { width: 100%; height: 300px; object-fit: cover; }
        .case-info { padding: 20px; text-align: center; }
        .case-info h4 { font-size: 18px; margin-bottom: 5px; }
        .case-info p { font-size: 13px; color: var(--light-text); }
        .case-tag { 
            position: absolute; top: 10px; left: 10px; 
            background: rgba(211, 176, 143, 0.9); color: #fff; font-size: 12px;
            padding: 5px 10px; border-radius: 4px;
        }
        
        
        /* ================= 定制服务卖点 ================= */
        .custom-section { background: #fff; /*border-top: 1px solid #e8ded2;*/ }
        .custom-features { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
        .feature-item {flex: 1 1 150px;text-align: center;padding: 20px;border-radius: 20px;border-bottom: 1px solid #e8ded2;background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);/*background: #f9f9f9;*/}
        .feature-item:hover {       	
			background-color: #f8f8f8;
            border-color: #978c4b;
        	background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);}
        .feature-icon { width: 60px; height: 60px; margin: 0 auto 15px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; color: #d3b08f; font-size: 28px;    border-bottom: 1px solid #d3af8e; }
        .feature-item h4 { margin-bottom: 10px; color: #666666;     font-size: 14px;}
        .feature-item p {  color: #999999; }
        

        	
        	
        	
 /* ================= 轮播容器 ================= */
        .carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        /* 标题 */
        .carousel-title {
            text-align: center;
            margin-bottom: 30px;
        }
        .carousel-title h2 {
            font-size: 28px;
            font-weight: 300;
            color: var(--main-color);
            letter-spacing: 2px;
        }
        .carousel-title span {
            font-size: 13px;
            color: #999;
            display: block;
            margin-top: 8px;
            letter-spacing: 2px;
        }

        /* 滚动区域 */
        .carousel-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .carousel-container::-webkit-scrollbar {
            display: none;
        }

        /* 单个卡片 */
        .carousel-item {
            flex: 0 0 300px;
            background: #fff;
            border: 0px solid #d5b293;
            /*border-radius: 8px;*/
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        .carousel-item:hover {
            box-shadow: 0 10px 20px rgba(211, 176, 143, 0.2);
            border-color: #a7d4ae;
            /*transform: translateY(-5px);*/
        }

        /* 卡片图片 */
        .carousel-item .item-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--bg-color);
        }
        .carousel-item .item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .carousel-item:hover .item-img img {
            transform: scale(1.08);
        }

        /* 卡片内容 */
        .carousel-item .item-info {
		    padding: 5px;
		    text-align: center;
		    background: #d5b293;
        	background: linear-gradient(135deg, #a7d4ae 0%, #d0aa87 100%);
        }
        .carousel-item .item-info p {
		    font-size: 12px;
		    /*font-weight: bold;*/
		    color: #ffffff;
		    letter-spacing: 1px;
		    margin: 0px 0 0px;
		    text-indent: 0px;
        }
        .carousel-item .item-info span {
            font-size: 12px;
            color: #666;
        }

        /* 左右按钮 */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #d3b08f;
            color: #d3b08f;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .carousel-btn:hover {
            background: #d3b08f;
            color: #fff;
        }
        .carousel-btn.prev { left: 5px; }
        .carousel-btn.next { right: 5px; }

        /* 手机端适配 */
        @media (max-width: 768px) {
            .carousel-wrapper { padding: 0 15px; }
            .carousel-item { flex: 0 0 200px; }
            .carousel-btn { width: 36px; height: 36px; font-size: 16px; }
            .carousel-btn.prev { left: 5px; }
            .carousel-btn.next { right: 5px; }
            .carousel-title h2 { font-size: 22px; }
        }
        	
        	
        
        
        /* 响应式 */
        @media (max-width: 700px) {
        	 .nav-tag,
        	 .search-wrapper,
             .right-sidebar{
	            display:none;
             }
        	
			 .card .thumb {
		        max-width: 100%;
		    }
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .nav a {
                margin: 0 5px;
            }
            
            .hero-text h2 {
                font-size: 2rem;
            }
            
            .hero-bunny {
            	flex: 0 0 100%;
            }
            
            .today-quote {
                font-size: 1.2rem;
            }
            
            .submit-section {
                padding: 30px 20px;
            }
            
            .submit-input {
                flex-direction: column;
                border-radius: 30px;
            }
        }
 
