        
        * { box-sizing: border-box; margin: 0; padding: 0 }
        .wrapper {
            width: 100%;
			max-width: 1200px;
            background: #fff;
            margin: 10px auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,.05);
            overflow: hidden;
        }		
		
		:root {
            --theme: #0bbf64;
            --theme-light: #6dd39d;
            --text: #2c3e50;
            --text-light: #666;
        }
		.slogan {
            display: flex;
            justify-content: flex-start;
            font-size: 13px;
            color: #333; 
			line-height:20px;
			margin:16px 0px 0 -10px;
        }	
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #f5f7fa;
            color: var(--text);
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }

        /* 导航栏 */
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
			height:30px;
        }
	    .logo img{
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
			height:30px;
			line-height: 50px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            margin-left: 40px;
			
        }
		
		.nav-links li {
            list-style: none;   /* 去掉默认圆点 */
            margin: 0;
            padding: 0;
        }
		
        .nav-links a {
            font-size: 16px;
            color: var(--text-light);
            transition: color .2s;
        }
        .nav-links a:hover {
            color: var(--theme);
        }
		
		.nav-avatar{
		    width:40px; 
		    height:40px; 
		    vertical-align:middle;
			margin-left:auto;
		}
		
		.nav-avatar img{
		    width:40px; 
		    height:40px; 
		    border-radius:50%; 
		    border:2px solid #fff; 
		    vertical-align:middle;
			margin-left:auto;
		}

        /* 搜索框 */
        .search-box {
            display: flex;
            align-items: center;
            background: #f2f4f7;
            border-radius: 24px;
            padding: 6px 16px;
            width: 220px;
            transition: width .3s, background .3s;
        }
        .search-box:focus-within {
            width: 280px;
            background: #e8ecf1;
        }
        .search-input {
            border: none;
            outline: none;
            background: transparent;
            flex: 1;
            font-size: 14px;
            color: var(--text);
        }
        .search-input::placeholder {
            color: #9aa5b5;
        }
        .search-btn {
            border: none;
            background: none;
            cursor: pointer;
            color: var(--theme);
            font-size: 18px;
            margin-left: 6px;
        }

        /* 移动端头像 */
        .nav-toggle {
            display: none;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
        }

        /* 轮播图 */
        .carousel {
            width: 100%;
            height: 360px;
            overflow: hidden;
            position: relative;
        }
        .carousel-inner {
            display: flex;
            height: 100%;
            transition: transform .6s ease;
        }
        .carousel-item {
            min-width: 100%;
            height: 100%;
            background: linear-gradient(120deg, var(--theme), var(--theme-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 38px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* 关键指标 */
        .stats-section {
            background: #ffffff;
            padding: 40px 0;
        }
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .stat-item {
            padding: 20px;
        }
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--theme);
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 16px;
            color: var(--text-light);
        }

        /* 资讯区域 */
        .news-section {
            background: #f5f7fa;
            padding: 40px 0 40px 0;
        }
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        .news-block {
            background: #ffffff;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
        }
        .more-link {
            font-size: 14px;
            color: var(--theme);
            font-weight: 500;
            transition: color .2s;
        }
        .more-link:hover {
            color: var(--theme-light);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .news-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: transform .2s;
        }
        .news-card:hover {
            transform: translateY(-4px);
        }
        .news-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .news-content {
            padding: 16px;
        }
        .news-title {
            font-size: 16px;
            color: #333;
            line-height: 1.4;
            height: 44px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .hot-news-list .news-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .hot-news-list .news-item:last-child {
            border-bottom: none;
        }
        .hot-news-list .news-title {
            font-size: 16px;
        }
	
        /* 资讯频道 */
        .news-channel {
            background: #f5f7fa;
            padding: 0px 0 20px 0;
        }
        .channel-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }		
        .channel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 24px 0;
        }	
		
        .hots-block {
            background: #ffffff;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
		    align-self: start;
        }		
		.tag{
			background: #48c885;
            border-radius: 19px;
	        float:left;
	        width:auto;
            font-family: PingFangSC-Regular;
            font-size: 13px;
            color: #fff;
	        margin:5px 0 5px 10px;
            padding: 2px 5px;
            text-decoration: none;
            line-height: auto;
			display: flex-item;
		}
		.tag:hover{
			background: #328c5d;
			color:#fff;
		}		
		.tag a{
            font-size: 13px !important;
            color: #fff !important;
	        font-weight:400 !important;
	        text-decoration: none;
	    }

        .tag a:hover{
	        background: #328c5d!important;
            border-radius: 19px;
	        color: #fff !important;
	        text-decoration: none;
            font-family: PingFangSC-Regular;
            font-size: 13px;
            text-decoration: none;
            line-height: auto;
			display: flex-item;
		}
		.load-more-btn{
            display: block;
            margin: 20px auto;
            padding: 8px 24px;
            background: #29b6f6;
            color: #fff;
            border: 0;
            border-radius: 4px;
            cursor: pointer;
            }

/*资讯栏目*/
        .slider-container {
            position: relative;
            width:100%;
            height: 300px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .slide {
            width: 25%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .slide:hover img {
            transform: scale(1.05);
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            transform: translateY(0px);
            opacity: 1;
            transition: all 0.5s ease;
        }
        
        .slide:hover .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        
        .slide-content p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 0px;
        }
        
        .prev-btn, .next-btn {
            background: rgba(255, 255, 255, 0%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 0%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(0px);
            transition: all 0.3s ease;
        }
        
        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            max-width: 780px;
            margin: 30px auto 0;
            gap: 20px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 20px;
            color: white;
            flex: 1;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .feature-card i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffde59;
        }
        
        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            font-size: 0.9rem;
            opacity: 0.8;
        }


        /* 资讯详情 */
        .news-note {
            background: #f5f7fa;
            padding: 40px 0 20px 0;
        }
        .note-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }		
        .note-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
        }	
        .note-info {
            display: flex;
            justify-content: flex-start; /* 左对齐 */
            align-items: center;         /* 垂直居中 */
            margin: -10px 0 5px -10px;
			font-size:13px;
        }	
        .readtimes {
            display: flex;
            justify-content: flex-start; /* 左对齐 */
            align-items: center;         /* 垂直居中 */
            margin: 0px 0 0px 20px;
			font-size:13px;
        }	
		.note-container p{
		padding:10px 0;	
		}
        .comefrom {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            font-size: 13px;
            color: #999; 
			margin:0 0 20px 0;
        }	
		.followus{
			text-align: center; 
            font-size: 14px;   
		}
		.followus img {
            width: 120px;
            height: 120px;
            object-fit: cover;   /* 防止图片变形 */
            margin: 0 auto;     
            display: block; 
			border:1px solid #999;
			border-radius: 8px;
        }
		
        /* 人物传记区域 */
        .biography-section {
            background: #f5f7fa;
            padding: 0px 0 60px 0;
        }
        .bio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        .bio-block {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .bio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .bio-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: transform .2s;
            text-align: center;
        }
        .bio-card:hover {
            transform: translateY(-4px);
        }
        .bio-avatar {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .bio-name {
            font-size: 18px;
            font-weight: 600;
            margin: 6px 0 0 0;
            color: var(--text);
			text-align: center;
        }
        .bio-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.4;
            height: 38px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
			text-align: center;
			margin: 0px 0 -20px 0;
        }
        .hot-bio-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hot-bio-item {
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: transform .2s;
        }
        .hot-bio-item:hover {
            transform: translateX(4px);
        }
		.bio-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .bio-item {
            display: flex;
			align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            transition: transform .2s;
			border-bottom: 0px solid #f0f0f0;
        }
        .bio-item:last-child {
            border-bottom: none;
		}
        .bio-item:hover {
            transform: translateX(4px);
        }
		
		.bio-info{
			
		}

        .bio-person {
            display: flex;              
            align-items: center;        
            gap: 8px;                   
            margin-bottom: 4px;         
        }

		
        .hot-bio-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
        }
        .hot-bio-name {
            font-size: 16px;
            font-weight: 500;
        }
        .bio-info-content {
            font-size: 16px;
			color: #333; 
            font-weight: 500;
			line-height: 1.4; 
			height: 44px;
			overflow: hidden; 
			text-overflow: ellipsis;
			display: -webkit-box; 
			align-self: start;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
        }
		
		/* 纪念模块 */
		        .slider-container {
            position: relative;
            width:100%;
            height: 300px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .slide {
            width: 25%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .slide:hover img {
            transform: scale(1.05);
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            transform: translateY(0px);
            opacity: 1;
            transition: all 0.5s ease;
        }
        
        .slide:hover .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        
        .slide-content p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        /* 添加人物 */		
		.avatar-box{
            display:flex;
            justify-content:center;
            margin-bottom:20px;;
        }
        .avatar-label{cursor:pointer;}
        .avatar-img{
            width:90px;
            height:90px;
            border-radius:50%;
            border:2px dashed #ccc;
            object-fit:cover;
            transition:border .2s;
        }
		.rel-box{display:flex;flex-wrap:wrap;gap:6px;margin:6px 0;}
        .rel-tag{background:#e6f5e6;border:1px solid #8bc34a;border-radius:4px;padding:4px 8px;font-size:14px;}
        .rel-tag .rm{cursor:pointer;margin-left:6px;color:#d32f2f;font-weight:bold;}

        .avatar-img:hover{border-color:#29b6f6;}
        /* 下拉框圆角统一 */
        select.add_input_normal{
          width:100%;
          padding:10px 12px;
          border:1px solid #e6e6e6;
          border-radius:6px;
          font-size:16px;
          background:#fff;
          color:#333;
          outline:none;
          appearance:none;          /* 去掉默认小箭头 */
          background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
         }
		 
		 /* 并排容器 */
         .form-row{
         display: flex;
         gap: 12px;
         }
         .form-col{
         flex: 1;
         display: flex;
         flex-direction: column;
         }
          /* 省、市两级下拉在同一栏里再分两半 */
        .cascade{
        display: flex;
        gap: 6px;
         }
         .cascade select{
        flex: 1;
        }
		
		/* 让 date 输入框在 iOS/Android 上正常显示 */
input[type="date"]{
  -webkit-appearance: none;
  appearance: none;
}

/* 多行文本域同输入框风格 */
textarea.login_input{
  resize: vertical;   /* 用户可纵向拖动 */
  min-height: 100px;
  font-family: inherit;
}
		
        /* 顶部关系图 */
        .top-relation {
            height: 35vw;
			max-height: 200px;
            position: relative;
            background:linear-gradient(120deg, var(--theme), var(--theme-light));
            border-bottom: 1px solid #eaeaea;
        }
        .top-relation h2 {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            font-weight: 500;
            z-index: 9;
        }
        #graph svg { width: 100%; height: 100% }

        /* 下部两栏 */
        .bottom {
            display: flex;
            min-height: 500px;
        }
        .left {
            flex: 2;
            padding: 30px;
            border-right: 1px solid #eaeaea;
        }
        .right {
            flex: 1;
            padding: 30px;
            background: #fff;
        }

        /* 时间线 */
        .timeline-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .timeline-controls h3 { font-size: 16px; font-weight: 500 }
        .sort-btn {
            background: #eaeaea;
            color: #333;
            border: none;
            padding: 4px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
        }
        .year-block {
            margin-bottom: 16px;
            border: 1px solid #eaeaea;
            border-radius: 4px;
            overflow: hidden;
        }
        .year-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            background: #f5f5f5;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
        }
        .expand-icon { transition: transform .3s }
        .year-block.collapsed .expand-icon { transform: rotate(180deg) }
        .months-wrapper {
            max-height: 400px;
            overflow: hidden;
            transition: max-height .3s ease;
        }
        .year-block.collapsed .months-wrapper { max-height: 0 }
        .month-item {
            padding: 10px 14px;
            margin: 8px;
            border-left: 2px solid #ccc;
            background: #f9f9f9;
            font-size: 14px;
            line-height: 1.6;
        }
        .month-tag {
            display: inline-block;
            background: #fff;
            border: 1px solid #ccc;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 12px;
            margin-bottom: 4px;
        }
		
		
		.member-info{
			display: flex; 
			flex-direction: column;
			align-items: center; 
			justify-content: center; 
			text-align: center;
            height: 35vw;
			max-height: 200px;
            background: linear-gradient(120deg, var(--theme), var(--theme-light));
            border-bottom: 1px solid #eaeaea;
        }
		
		.member-info .userinfo_avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            border: 3px solid #e6f5e6; /* 可选装饰 */
}

        .member-info span {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
        }

        /* 热门传记 */
        .hot-bio h3 { font-size: 16px; font-weight: 500; margin-bottom: 16px }
        .bio-card {
            position: relative;
			background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 4px;
            padding: 14px;
            margin-bottom: 12px;
			box-shadow: 0 2px 6px rgba(0,0,0,.05);
        }
        .bio-card .title { font-weight: 500; margin-bottom: 4px; font-size: 14px }
        .bio-card .desc { font-size: 13px; color: #666 }
		
		.card-tools {
            position: absolute;
            top: 8px;
            right: 8px;
            display: flex;
            gap: 8px;
        }

        .tool-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;          /* 手指易点 */
            height: 30px;
            border-radius: 6px;
            font-size: 14px;
            color: #fff;
            text-decoration: none;
            background: #29b6f6;
        }
        .tool-btn.del {
            background: #f44336;
        }
        
        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 0px;
        }
        
        .prev-btn, .next-btn {
            background: rgba(255, 255, 255, 0%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 0%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(0px);
            transition: all 0.3s ease;
        }
        
        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            max-width: 780px;
            margin: 30px auto 0;
            gap: 20px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 20px;
            color: white;
            flex: 1;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .feature-card i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffde59;
        }
        
        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
		
/*  登录区域*/  
        .login_title{
            text-align:center;
            font-size:24px;
            font-weight:500;
            margin:40px 0 40px 0;
            color:#333;
            }
			
        .login{
            width:90%;
            max-width:450px;
            margin:0 auto 60px;
            padding:28px 24px;
            background:#fff;
            border-radius:12px;
            box-shadow:0 4px 12px rgba(0,0,0,.05);
        }
        .login form{
            list-style:none;
            padding:0;
            margin:0;
        }
       .login_input{
            width:100%;
            height:44px;
            padding:0 12px;
            border:1px solid #ddd;
            border-radius:6px;
            font-size:15px;
            margin-bottom:16px;
            transition:border-color .2s;
        }
        .login_input:focus{
            border-color:#29b6f6;
            outline:none;
        }
        .login_submit{
            width:100%;
            height:44px;
            background:#29b6f6;
            color:#fff;
            border:0;
            border-radius:6px;
            font-size:16px;
            cursor:pointer;
            transition:background .2s;
        }
        .login_submit:hover{
            background:#1fa3e0;
        }
        .login a{
            color:#29b6f6;
            text-decoration:none;
            font-size:14px;
        }
        .login a:hover{
            text-decoration:underline;
        }  
/* 发布文章区域 */
        .submit-card{
            max-width: 1200px; 
			width:100%;
            margin:20px auto;
            background:#fff;
            border:1px solid #e6e6e6;
            border-radius:6px;
            padding:14px calc(14px*1.5);
        }
        .note_submit{
            width:100%;
			max-width:400px;
            height:44px;
            background:var(--theme);
            color:#fff;
            border:0;
            border-radius:6px;
            font-size:16px;
            cursor:pointer;
            transition:background .2s;
			display: block;
            margin: 20px auto 20px;
        }
		.post{
            text-align:center;
            font-size:24px;
            font-weight:500;
            margin:10px 0 10px 0;
            color:#333;
            }
        .note_submit:hover{
            background:#1fa3e0;
        } 
		.tag-row{display:flex;gap:var(--gap);}
        .tag-row input{flex:1;}
		.clouds{
            max-width: 1200px; 
			width:100%;
            margin: 20px auto;
            background: #fff;
            border: 1px solid #e6e6e6;
            border-radius: 6px;
            padding: 14px calc(14px * 1.5);
			display: flex; 
            flex-wrap: wrap;
            gap: 10px;
        }
		/* 底部整体 */
        .footer {
            background-color: #ffffff;
            border-top: 1px solid #e6e6e6;
            padding: 40px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        /* 底部左侧 */
        .footer-left {
            flex: 1 1 300px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .footer-logo-area {
            flex: 1;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
        }

        .footer-slogan {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 14px;
            color: #666;
        }
		
		.footer-links li {
            list-style: none;   /* 去掉默认圆点 */
            margin: 0;
            padding: 0;
        }

        .footer-links a:hover {
            color: #3a7bd5;
        }

        /* 二维码 */
        .qr-area {
            text-align: center;
            flex-shrink: 0;
        }

        .qr-code {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border: 1px solid #999;
            border-radius: 4px;
        }

        .qr-text {
            margin-top: 6px;
            font-size: 12px;
            color: #999;
        }

        /* 底部右侧 */
        .footer-right {
            flex: 2 1 500px;
            display: grid;
			margin-left:20px;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 24px;
        }

        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 12px;
            color: #2c3e50;
        }

        .footer-column ul {
            list-style: none;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .footer-column a:hover {
            color: #3a7bd5;
        }

        /* 底部版权 */
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #999;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e6e6e6;
        }
		
		/ 管理后台 /
        .platform_nav{
            display: flex;  
	        height:40px;
            width: 100%;           
            align-items: center;  
            background:#000;
        }
		.platform_nav span {
            flex: 1;                    
            min-width: 0;               
            line-height: 40px;          
            text-align: center;        
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;        
        }

/* =============移动端响应式========= */
        @media (max-width: 992px) {
            .search-box {
                width: 180px;
            }
            .search-box:focus-within {
                width: 200px;
            }
            .slider-container {
                width: 100%;
                height: 250px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .features {
                flex-direction: column;
            }
			.slider-container {
                width: 100%;
                height: 250px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .features {
                flex-direction: column;
            }
        }
		
        @media (max-width: 768px) {
            .nav-links,
            .search-box {
                display: none;
            }
            .nav-toggle {
                display: block;
                margin-left: auto;
            }
            .carousel {
                height: 200px;
            }
            .carousel-item {
                font-size: 26px;
            }
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .channel-container,
            .section-container,
			.note-container,
            .bio-container {
                grid-template-columns: 1fr;
            }
            .news-grid,
            .bio-grid {
                grid-template-columns: 1fr;
            }
			.footer-container {
                flex-direction: column;
                gap: 24px;
            }
            .news-block {
                padding: 16px;      /* 从 28px → 16px */
                border-radius: 8px; /* 从 12px → 8px */
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* 可选：阴影稍小 */
            }
            .footer-left {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-right {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                justify-content: center;
            }

            .footer-bottom {
                font-size: 11px;
            }
            .slider-container {
                height: 200px;
            }
            
            .prev-btn, .next-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .slide-content {
                padding: 10px 0 10px 0;
            }
            
            .slide-content h3 {
                font-size: 1.1rem;
            }
            .bottom { flex-direction: column; }
            .left,
            .right { border-right: none; padding: 20px; }
		    .year-header { font-size: 14px; padding: 8px 12px; }
            .month-item { margin: 6px; padding: 8px 12px; }
            .bio-card { padding: 12px; margin-bottom: 10px; }
		    .login_title{font-size:20px;margin:24px 0 16px;}
            .login{padding:20px 16px;}
            .login_input,.login_submit{height:40px;font-size:14px;}
			
			.slider-container {
            height: 200px;
            }
            
            .prev-btn, .next-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .slide-content {
                padding: 10px 0 10px 0;
            }
            
            .slide-content h3 {
                font-size: 1.1rem;
            }
			.form-row{flex-direction: column;}
        }
		


