<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0c0c0c;
            color: #ffffff;
            line-height: 1.8;
        }
        /* 统一1320px容器 */
        .csls-wrap {
            width: 1320px;
            margin: 0 auto;
            max-width: 94%;
        }
        /* ====================== 导航栏 区块1 ====================== */
        .csls-header {
            background-color: #0c0c0c;
            padding: 16px 0;
        }
        .csls-header-inner {
            width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .csls-logo {
            display: flex;
            align-items: center;
            gap:12px;
        }


.csls-form-radio-group {
	margin-left: 100px;
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 14px;
}
/* 单个选项：单选框在上、文字居中在下 */
.csls-form-radio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
/* 单选框基础样式，选中金色 #f5b342 */
.csls-form-radio-item input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #f5b342;
}
/* 标签文字白色，适配黑色背景 */
.csls-form-radio-item label {
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
	



        .csls-logo-icon {
/*
            width: 60px;
            height: 60px;
*/
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .csls-logo-icon img{
            width:100%;
            height:100%;
            object-fit:contain;
        }
        .csls-nav-list {
            display: flex;
            gap: 56px;
            align-items: center;
        }
        .csls-nav-list > li {
            position: relative;
            list-style: none;
        }
        .csls-nav-list a {
            color:#fff;
            text-decoration: none;
            font-size:17px;
            transition:0.3s;
        }
        .csls-nav-list a.active {
            color:#f5b342;
        }
        .csls-nav-list a:hover {
            color:#f5b342;
        }
        /* 导航二级下拉菜单 */
        .csls-nav-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #161616;
            min-width: 160px;
            padding: 12px 0;
            display: none;
            z-index:99;
        }
        .csls-nav-submenu a {
            display:block;
            padding:9px 22px;
        }
        .csls-nav-list > li:hover .csls-nav-submenu {
            display:block;
        }
        /* Banner区块 */
        .csls-banner {
            height: 720px;
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            text-align:center;
            position:relative;
        }
        .csls-banner-bg{
            position:absolute;
            inset:0;
            z-index:1;
        }
        .csls-banner-bg img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .csls-banner::after {
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.35);
            z-index:2;
        }
        .csls-banner-content {
            z-index:3;
        }
        .csls-banner h1 {
			margin: 0 auto;
            font-size:68px;
            font-weight:500;
            margin-bottom:12px;
        }
        .csls-banner p {
			position: relative;
			bottom: 30px;
			margin: 0 auto;
            font-size:30px;
            opacity:0.9;
        }
        .csls-banner-bottom-bar {
            position:absolute;
            bottom:0;
            width:100%;
            background:#f5b342;
            color:#000;
            text-align:center;
            padding:14px 0;
            font-size:20px;
            z-index:3;
        }
        /* ====================== 我们的使命 区块2 ====================== */
        .csls-mission {
            background-color:#0c0c0c;
            padding:100px 0;
            position:relative;
        }
        .csls-mission-bg {
            position:absolute;
            left:50%;
            top:50%;
            transform:translate(-50%,-50%);
            width: 960px;
            height:420px;
            opacity:0.28;
        }
        .csls-mission-bg img{
            width:100%;
            height:100%;
            object-fit:contain;
        }
        .csls-mission-inner {
            position:relative;
            z-index:2;
            text-align:center;
        }
        .csls-mission-inner h2 {
            font-size:52px;
            color:#f5b342;
            margin-bottom:36px;
        }
        .csls-mission-text {
            max-width:860px;
            margin:0 auto;
            font-size:18px;
            color:#e8e8e8;
            text-align:center;
        }
        .csls-mission-text ul {
            list-style:none;
            margin:20px 0;
        }
        .csls-mission-text li {
            margin:10px 0;
        }
        .csls-mission-btn {
            display:inline-block;
            margin-top:42px;
            padding:16px 64px;
            background:#f5b342;
            color:#000;
            font-size:22px;
            text-decoration:none;
            font-weight:500;
        }
        /* ====================== 核心价值观 区块3 ====================== */
        .csls-value {
            background-color:#0c0c0c;
            padding:90px 0;
        }
        .csls-value-list {
            display:grid;
            grid-template-columns: repeat(4,1fr);
            gap:40px;
            text-align:center;
        }
        .csls-value-item .csls-icon-circle {
            width:140px;
            height:140px;
            border:2px solid #f5b342;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            margin:0 auto 20px;
        }
        .csls-value-item i {
            font-size:56px;
            color:#f5b342;
        }
        .csls-value-item h3 {
            font-size:24px;
            color:#fff;
        }
        /* ====================== 服务流程 区块4 ====================== */
        .csls-process {
            padding:110px 0;
            position:relative;
        }
        .csls-process-bg{
            position:absolute;
            inset:0;
            z-index:1;
        }
        .csls-process-bg img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .csls-process::after {
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.68);
            z-index:2;
        }
        .csls-process-inner {
            position:relative;
            z-index:3;
        }
        .csls-process-flow {
            display:flex;
            flex-wrap:wrap;
            gap:16px;
            justify-content:center;
        }
        .csls-process-item {
            border:1px solid #f5b342;
            padding:14px 26px;
            border-radius:6px;
            background:rgba(40,40,40,0.6);
            color:#f5b342;
            font-size:18px;
        }
        .csls-process-arrow {
            color:#f5b342;
            font-size:24px;
            display:flex;
            align-items:center;
        }
        /* ====================== 合作院校Logo墙 区块5 ====================== */
        .csls-school {
            background:#191919;
            padding:90px 0;
            text-align:center;
        }
        .csls-school h2 {
            font-size:42px;
            margin-bottom:14px;
            position:relative;
        }
        .csls-school h2:before,.csls-school h2:after {
            content:"•••••••";
            color:#f5b342;
            opacity:0.6;
            margin:0 20px;
        }
        .csls-school p.subtitle {
            color:#cccccc;
            margin-bottom:50px;
            font-size:17px;
        }
        .csls-school-logo-list {
            display:grid;
            grid-template-columns: repeat(5,1fr);
            gap:32px;
        }
        .csls-school-logo-item {
            width:120px;
            height:120px;
            border-radius:30%;
            border:2px solid #f5b342;
            margin:0 auto;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
        }
        .csls-school-logo-item img{
			border-radius: 30px;
            width:90%;
            height:90%;
            object-fit:contain;
        }
        /* ====================== 预约表单 区块6 ====================== */
        .csls-form-area {
            background:#0c0c0c;
            padding:90px 0;
        }
        .csls-form-area h2 {
            text-align:center;
            font-size:38px;
            margin-bottom:40px;
        }
        .csls-form {
            max-width:820px;
            margin:0 auto;
        }
        .csls-form-item {
            margin-bottom:30px;
        }
        .csls-form label {
            display:block;
            margin-bottom:8px;
            font-size:15px;
        }
        .csls-form input {
            width:100%;
            background:transparent;
            border:none;
            border-bottom:1px solid #666;
            padding:12px 0;
            color:#fff;
            font-size:16px;
        }
        .csls-form input:focus {
            outline:none;
            border-color:#f5b342;
        }
        .csls-form-radio-group {
            display:grid;
            grid-template-columns: repeat(5,1fr);
            gap:20px;
            margin-top:10px;
        }
        .csls-form-radio-item {
            text-align:center;
        }
        .csls-form-btn {
            display:block;
            width:fit-content;
            margin:40px auto 0;
            padding:14px 46px;
            background:#222;
            border:1px solid #f5b342;
            color:#f5b342;
            font-size:18px;
            cursor:pointer;
            transition:0.3s;
        }
        .csls-form-btn:hover {
            background:#f5b342;
            color:#000;
        }
        /* ====================== 页脚 区块7 ====================== */
        .csls-footer {
            background:#0c0c0c;
            padding:70px 0 40px;
            border-top:3px solid #f5b342;
        }
        .csls-footer-inner {
            display:grid;
            grid-template-columns: 240px 1fr 320px;
            gap:50px;
        }
        .csls-footer-menu a {
            display:block;
            color:#f5b342;
            font-size:22px;
            margin-bottom:22px;
            text-decoration:none;
        }
        .csls-footer-email {
            color:#f5b342;
            font-size:20px;
        }
        .csls-footer-logo-group {
			margin-top: 40px
            display:grid;
            grid-template-columns: repeat(5,1fr);
            gap:16px;
        }
       .csls-footer-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* 全部居中 */
    gap:12px; /* 二维码和文字间距 */
}
.csls-footer-logo-item img {
    width:120px;  /* 根据你页面调整二维码大小 */
}
.csls-footer-logo-item p {
    color:#f5b342; /*金色文字，和页面统一*/
    margin:0;
    text-align:center;
    font-size:16px;
}
        /* ICP备案样式 */
        .csls-footer-record-line{
            width:100%;
            height:1px;
            background:#f5b342;
            margin:35px 0 18px;
        }
        .csls-footer-record-text{
            text-align:center;
            font-size:14px;
            color:#999;
        }
        .csls-footer-record-text a{
            color:#999;
            text-decoration:none;
            transition:0.3s;
        }
        .csls-footer-record-text a:hover{
            color:#f5b342;
        }



.csls-wrap {
            width: 1320px;
            margin: 0 auto;
            max-width: 94%;
        }
        /* ====================== 导航栏 区块1 ====================== */
        .csls-header {
            background-color: #0c0c0c;
            padding: 16px 0;
        }
        .csls-header-inner {
            width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .csls-logo {
            display: flex;
            align-items: center;
            gap:12px;
        }
        .csls-logo-icon {
            width: 190px;
            
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .csls-logo-icon img{
            width:100%;
            height:100%;
            object-fit:contain;
        }
        .csls-nav-list {
            display: flex;
            gap: 56px;
            align-items: center;
        }
        .csls-nav-list > li {
            position: relative;
            list-style: none;
        }
        .csls-nav-list a {
            color:#fff;
            text-decoration: none;
            font-size:17px;
            transition:0.3s;
        }
        .csls-nav-list a.active {
            color:#f5b342;
        }
        .csls-nav-list a:hover {
            color:#f5b342;
        }
        /* 导航二级下拉菜单 */
        .csls-nav-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #161616;
            min-width: 160px;
            padding: 12px 0;
            display: none;
            z-index:99;
        }
        .csls-nav-submenu a {
            display:block;
            padding:9px 22px;
        }
        .csls-nav-list > li:hover .csls-nav-submenu {
            display:block;
        }
        /* ====================== 新页面1 Banner 带你攀登学术高峰 ====================== */
        .csls-banner-page {
            height: 720px;
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            text-align:center;
            position:relative;
        }
        .csls-banner-page-bg{
            position:absolute;
            inset:0;
            z-index:1;
        }
        .csls-banner-page-bg img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .csls-banner-page::after {
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.45);
            z-index:2;
        }
        .csls-banner-page-content {
            z-index:3;
        }
        .csls-banner-page h1 {
            font-size:68px;
            font-weight:500;
            margin-bottom:12px;
            position:relative;
        }
        .csls-banner-page h1 .yellow-i{
            color:#f5b342;
        }
        .csls-banner-page p {
			line-height: 25px;
            font-size:30px;
            opacity:0.9;
        }
        .csls-banner-dot-line{
            display:flex;
            align-items:center;
            justify-content:center;
            gap:14px;
            margin-top:24px;
        }
        .csls-banner-dot-line span.dot{
            width:10px;
            height:10px;
            background:#f5b342;
            border-radius:50%;
        }
        .csls-banner-dot-line .line{
            width:160px;
            height:2px;
            background:#f5b342;
        }
        /* ====================== 统一章节标题样式（匹配【未来发展】效果图） ====================== */
        .csls-section-title{
            display:flex;
            align-items:center;
            justify-content:center;
            gap:40px;
        }
        .csls-section-title h2{
            color:#ffffff;
            font-size:42px;
            font-weight:bold;
            margin:0;
        }
        .csls-title-dots{
            display:flex;
            gap:12px;
        }
        .csls-title-dots > span{
            width:16px;
            height:16px;
            border-radius:50%;
            background:#f5b342;
            opacity:0.3;
        }
        /* 圆点明暗渐变 */
        .csls-title-dots.left-dots > span:nth-child(1){opacity:0.3;}
        .csls-title-dots.left-dots > span:nth-child(2){opacity:0.42;}
        .csls-title-dots.left-dots > span:nth-child(3){opacity:0.54;}
        .csls-title-dots.left-dots > span:nth-child(4){opacity:0.66;}
        .csls-title-dots.left-dots > span:nth-child(5){opacity:0.78;}
        .csls-title-dots.left-dots > span:nth-child(6){opacity:0.88;}
        .csls-title-dots.left-dots > span:nth-child(7){opacity:0.94;}
        .csls-title-dots.left-dots > span:nth-child(8){opacity:1;}

        .csls-title-dots.right-dots > span:nth-child(1){opacity:1;}
        .csls-title-dots.right-dots > span:nth-child(2){opacity:0.94;}
        .csls-title-dots.right-dots > span:nth-child(3){opacity:0.88;}
        .csls-title-dots.right-dots > span:nth-child(4){opacity:0.78;}
        .csls-title-dots.right-dots > span:nth-child(5){opacity:0.66;}
        .csls-title-dots.right-dots > span:nth-child(6){opacity:0.54;}
        .csls-title-dots.right-dots > span:nth-child(7){opacity:0.42;}
        .csls-title-dots.right-dots > span:nth-child(8){opacity:0.3;}





.cn-research-institute-wrap {
  width: 100%;
  background-color: #000000;
  padding: 60px 0;
}
/* 核心内容固定1320px居中 */
.cn-research-container {
  width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 模块标题样式，主题金色#f5b342 */
.cn-research-title {
  font-size: 32px;
  color: #f5b342;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
/* 正文段落通用样式 */
.cn-research-desc {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
/*  text-indent: 2em;*/
}
/* 联系咨询区域 */
.cn-research-contact {
	text-align: center;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #333333;
}
.cn-contact-tip {
  color: #f5b342;
  font-size: 23px;
  margin-bottom: 20px;
}
.cn-contact-list {
	justify-content: center;
	text-align: center;
  display: flex;
  gap: 40px;
}
.cn-contact-item {
  color: #ffffff;
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #f5b342;
  border-radius: 4px;
}
.cn-contact-item:hover {
  background-color: #f5b342;
  color: #000;
  transition: all 0.3s ease;
}
        /* ====================== 新页面2 服务项目体系（6宫格布局｜全部纯文字） ====================== */
        .csls-service-system{
            padding:90px 0;
            background:#0c0c0c;
        }
        .csls-section-title-box{
            text-align:center;
            margin-bottom:60px;
        }
        .csls-service-desc{
            max-width:940px;
            margin:0 auto 50px;
            font-size:18px;
            color:#cccccc;
            line-height:1.75;
        }
        .csls-service-divider{
            width:100%;
            height:32px;
            background:linear-gradient(120deg, transparent 48%, #f5b342 48%,#f5b342 52%,transparent 52%);
            margin-bottom:40px;
        }
        /* 六宫格 3列2行 */
        .csls-service-grid6{
            display:grid;
            grid-template-columns: repeat(3, 1fr);
            gap:0;
        }
        .csls-service-grid-item{
            padding:40px 30px;
            position:relative;
            transition: transform 0.3s ease;
        }
        /* hover上浮效果 */
        .csls-service-grid-item:hover{
            transform: translateY(-8px);
        }
        /* 垂直分隔线：每行第1、2个右侧竖线 */
        .csls-service-grid-item:nth-child(3n+1),
        .csls-service-grid-item:nth-child(3n+2){
            border-right:1px solid #f5b342;
        }
        /* 水平分隔线：第一行底部横线 */
        .csls-service-grid-item:nth-child(1),
        .csls-service-grid-item:nth-child(2),
        .csls-service-grid-item:nth-child(3){
            border-bottom:1px solid #f5b342;
        }
        /* 左下角短金色横线 */
        .csls-service-grid-item::after{
            content:"";
            position:absolute;
            left:30px;
            bottom:30px;
            width:60px;
            height:2px;
            background:#f5b342;
        }
        .csls-service-grid-content{
            text-align:center;
        }
        .csls-service-grid-content .top-diamond{
            width:34px;
            height:34px;
            background:#f5b342;
            margin:0 auto 18px;
            transform:rotate(45deg);
        }
        .csls-service-grid-content i{
            font-size:60px;
            color:#f5b342;
            margin-bottom:16px;
        }
        .csls-service-grid-content h4{
            font-size:22px;
            color:#fff;
            margin:0 0 12px;
        }
        .csls-service-grid-content p{
            color:#dddddd;
            font-size:15px;
            line-height:1.7;
            margin:0;
        }
        /* ====================== 新页面3 辅导套餐选择 ====================== */
        .csls-package-intro{
            padding:90px 0;
            background:#0c0c0c;
        }
        .csls-package-img-wrap{
            width:840px;
            margin:0 auto;
            position:relative;
        }
        .csls-package-border-left,.csls-package-border-right{
            position:absolute;
            top:20px;
            bottom:20px;
            width:3px;
            border:2px solid #f5b342;
        }
        .csls-package-border-left{
            left:-32px;
            border-right:none;
        }
        .csls-package-border-right{
            right:-32px;
            border-left:none;
        }
        .csls-package-img{
            width:100%;
        }
        /* ====================== 新页面4 套餐卡片区域 一排4个 ====================== */
        .csls-package-card-area{
            padding:90px 0;
            background:#0c0c0c;
        }
        .csls-package-grid4{
            display:grid;
            grid-template-columns: repeat(4,1fr);
            gap:32px;
        }
        .csls-package-card{
            background:#222222;
            border-radius:12px;
            padding:36px 26px;
            border-top:4px solid #f5b342;
            transition:0.3s ease;
        }
        .csls-package-card:hover{
            transform:translateY(-8px);
            box-shadow:0 12px 30px rgba(245,179,66,0.16);
        }
        .csls-package-card h3{
            font-size:24px;
            color:#f5b342;
            margin-bottom:18px;
        }
        .csls-package-card p.text-desc{
            color:#cccccc;
            font-size:17px;
            line-height:1.7;
            margin-bottom:28px;
            min-height:90px;
        }
        .csls-package-card .buy-btn{
            display:block;
            width:100%;
            text-align:center;
            padding:12px 0;
            border:1px solid #f5b342;
            color:#f5b342;
            text-decoration:none;
            font-size:16px;
            transition:0.3s;
            border-radius:6px;
        }
        .csls-package-card .buy-btn:hover{
            background:#f5b342;
            color:#000;
        }

        /* ====================== 页脚样式（沿用旧版） ====================== */
        .csls-footer {
            background:#0c0c0c;
            padding:70px 0 40px;
            border-top:3px solid #f5b342;
        }
        .csls-footer-inner {
            display:grid;
            grid-template-columns: 240px 1fr 320px;
            gap:50px;
        }
        .csls-footer-menu a {
            display:block;
            color:#f5b342;
            font-size:22px;
            margin-bottom:22px;
            text-decoration:none;
        }
        .csls-footer-email {
            color:#f5b342;
            font-size:20px;
        }
        .csls-footer-logo-group {
			margin-top: 40px;
            display:flex;
    justify-content: center;
    align-items:flex-start;
    gap:45px;
        }
        .csls-footer-logo-item {
			text-decoration: none;
            width:100px;
            height:100px;
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .csls-footer-logo-item img{
            width:100%;
            height:100%;
            object-fit:contain;
        }
        .csls-footer-record-line{
            width:100%;
            height:1px;
            background:#f5b342;
            margin:35px 0 18px;
        }
        .csls-footer-record-text{
            text-align:center;
            font-size:14px;
            color:#999;
        }
        .csls-footer-record-text a{
            color:#999;
            text-decoration:none;
            transition:0.3s;
        }
        .csls-footer-record-text a:hover{
            color:#f5b342;
        }

 /* 统一1320px容器 */
        .csls-wrap {
			
            width: 1320px;
            margin: 0 auto;
            max-width: 94%;
        }

        /* ====================== 【ys-独立前缀，无样式冲突】 ====================== */
        /* 模块1：顶部三栏板块 严格匹配截图 */
        .ys-team-top-section{
            padding:80px 0;
            background:#222222;
        }
        .ys-team-top-title-main{
            text-align:center;
            margin-bottom:8px;
            font-size:32px;
            font-weight:600;
            position:relative;
        }
        .ys-team-top-title-main::before,
        .ys-team-top-title-main::after{
            content:"";
            position:absolute;
            top:50%;
            width:180px;
            height:5px;
            background:#f5b342;
            transform:translateY(-50%);
        }
        .ys-team-top-title-main::before{
                left: calc(50% - 560px);
        }
        .ys-team-top-title-main::after{
            right: calc(50% - 560px);
        }
        .ys-team-top-subtitle{
            text-align:center;
            font-size:14px;
            color:#dddddd;
            margin-bottom:50px;
        }
        .ys-team-three-grid{
            display:grid;
            grid-template-columns: repeat(3,1fr);
            gap:32px;
        }
        .ys-team-card{
            text-align:center;
        }
        .ys-team-card-img-box{
            border:2px solid #f5b342;
            width:100%;
            height:240px;
            overflow:hidden;
            margin-bottom:20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        /* 顶部校园图 hover上浮 */
        .ys-team-card-img-box:hover{
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(245, 179, 66, 0.25);
        }
        .ys-team-card-img-box img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .ys-gold-arrow{
            width:100px;
            height:20px;
            margin:-10px auto 20px;
            background:linear-gradient(to bottom, transparent 0%, transparent 50%, #f5b342 50%,#f5b342 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }
        .ys-team-card h3{
            color:#f5b342;
            font-size:20px;
            margin-bottom:12px;
        }
        .ys-team-card p{
            color:#dddddd;
            font-size:14px;
            line-height:1.65;
            padding:0 8px;
        }

        /* 模块2：黄色通栏标题板块（修正原图尺寸、文字大小） */
        .ys-yellow-banner{
            background:#f5b342;
            padding:20px 0;
            text-align:center;
        }
        .ys-yellow-banner h2{
            font-size:36px;
            color:#0c0c0c;
            font-weight:700;
            margin-bottom:10px;
        }
        .ys-yellow-banner p{
            font-size:16px;
            color:#0c0c0c;
        }

        /* 模块3：导师列表左右交替布局【重点修复和截图对齐】 */
        .ys-professor-list{
    padding:60px 0;
    background:#000000;
}
.ys-prof-item{
    display:grid;
    grid-template-columns: 42% 58%;
    gap:45px;
    margin-bottom:45px;
    align-items:center; /* 父grid整体垂直居中兜底 */
    position:relative;
}

/* 偶数项：左文右图布局 */
.ys-prof-item:nth-child(even){
    grid-template-columns: 58% 42%;
}
.ys-prof-item:nth-child(even) > div:nth-child(1){
    grid-column: 2;
}
.ys-prof-item:nth-child(even) > div:nth-child(2){
    grid-column: 1;
}

/* ========== 关键修复：所有文字容器内部垂直水平居中 ========== */
.ys-prof-item > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 纵向垂直居中 */
    align-items: center;     /* 横向水平居中 */
    width: 100%;
    height: 100%;
    text-align: center;
}
/* 单独强化偶数项左侧文字容器居中 */
.ys-prof-item:nth-child(even) > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* 金色分割线 */
.ys-prof-item::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:-22px;
    height:2px;
    background:#f5b342;
}
.ys-prof-item:first-child::before{
    display:none;
}

.ys-prof-photo{
    border:1px solid #f5b342;
    background:#999999;
    width:100%;
    position:relative;
    overflow:hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ys-prof-photo:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(245, 179, 66, 0.25);
}
.ys-prof-photo img{
    width:100%;
    display:block;
}
.ys-prof-name-label{
    position:absolute;
    bottom:0;
    left:-12px;
    right:-12px;
    padding:8px 16px;
    background:#222222;
    transform: skewX(-12deg);
}
.ys-prof-name-label span{
    display:block;
    transform: skewX(12deg);
    color:#f5b342;
    font-weight:500;
    font-size:15px;
}
.ys-prof-desc{
    color:#dddddd;
    font-size:13px;
    line-height:1.7;
    padding:0 10px;
    max-width: 100%;
}
.ys-prof-arrow{
    width:80px;
    height:16px;
    margin:0 auto 16px;
    background:linear-gradient(to bottom, transparent 0%, transparent 50%, #f5b342 50%,#f5b342 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 移动端单列适配 */
@media (max-width:768px){
    .ys-prof-item,
    .ys-prof-item:nth-child(even){
        grid-template-columns:1fr;
    }
    .ys-prof-item:nth-child(even) > div:nth-child(1),
    .ys-prof-item:nth-child(even) > div:nth-child(2){
        grid-column:auto;
    }
    .ys-prof-item > div:nth-child(2) {
        height: auto;
        padding:20px 0;
    }
}


		.prj-blog-section {
            background-color: #000000;
            padding: 80px 0;
        }
        .prj-blog-wrap {
            width: 1320px;
            margin: 0 auto;
            max-width: 94%;
        }
        .prj-blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .prj-blog-card {
            display: flex;
            flex-direction: column;
            border: 1px solid #333333;
            padding: 24px;
            transition: border-color 0.3s ease;
        }
        .prj-blog-card:hover {
            border-color: #f5b342;
        }
        .prj-blog-imgbox {
            width: 100%;
            height: 280px;
            overflow: hidden;
            margin-bottom: 26px;
        }
        .prj-blog-imgbox img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.32s ease;
        }
        /* 鼠标悬浮上浮效果 */
        .prj-blog-imgbox:hover img {
            transform: scale(1.03);
        }
        .prj-blog-title {
            font-size: 26px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.35;
            margin-bottom: 14px;
        }
        .prj-blog-author {
            font-size: 16px;
            color: #cccccc;
            margin-bottom: 22px;
        }
        .prj-blog-link {
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            color: #f5b342;
            text-decoration: none;
            gap: 8px;
            transition: color 0.25s ease;
        }
        .prj-blog-link:hover {
            color: #d49c2b;
        }
        /* 移动端自适应 */
        @media (max-width: 992px) {
            .prj-blog-grid {
                grid-template-columns: repeat(2,1fr);
                gap:30px;
            }
            .prj-blog-title {
                font-size:22px;
            }
        }
        @media (max-width: 640px) {
            .prj-blog-grid {
                grid-template-columns: 1fr;
            }
            .prj-blog-section {
                padding:50px 0;
            }
            .prj-blog-card {
                padding: 18px;
            }
        }


		.zl-process-section {
            background-color: #121214;
            padding: 80px 0;
        }
        .zl-process-wrap {
            width: 1320px;
            margin: 0 auto;
            max-width: 94%;
        }
        /* Tab 导航栏 */
        .zl-process-tab-nav {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-bottom: 30px;
        }
        .zl-process-tab-item {
            background-color: #303032;
            padding: 24px 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .zl-process-tab-item i {
            font-size: 42px;
            margin-bottom: 12px;
            display: block;
            transition: color 0.3s ease;
        }
        .zl-process-tab-item span {
            font-size: 18px;
            color: #fff;
        }
        /* Tab激活样式 */
        .zl-process-tab-item.active {
            background-color: #3c3c3e;
        }
        .zl-process-tab-item.active i {
            color: #f5b342;
        }
        .zl-process-tab-item:not(.active) i {
            color: #ffffff;
        }
        .zl-process-tab-item:hover {
            background-color: #38383a;
        }
        /* Tab内容容器 */
        .zl-process-content-box {
            background-color: #303032;
            border-radius: 8px;
            overflow: hidden;
        }
        .zl-process-tab-content {
            display: none;
            padding: 30px;
        }
        .zl-process-tab-content.active {
            display: block;
        }
        /* 列表条目 */
        .zl-process-list-item {
            display: flex;
            padding: 24px 0;
            border-bottom: 1px dashed #f5b342;
        }
        .zl-process-list-item:last-child {
            border-bottom: none;
        }
        .zl-process-num {
            font-size: 64px;
            font-weight: 700;
            color: #f5b342;
            line-height: 1;
            width: 100px;
        }
        .zl-process-text-wrap {
            flex: 1;
            
        }
        .zl-process-title {
            font-size: 22px;
            color: #f5b342;
            margin: 10px 0;
        }
        .zl-process-desc {
            font-size: 16px;
            color: #ffffff;
            opacity: 0.9;
            line-height: 1.6;
        }
        /* 响应式适配 */
        @media (max-width:992px) {
            .zl-process-tab-nav {
                grid-template-columns: repeat(2,1fr);
            }
            .zl-process-num {
                font-size: 48px;
                width: 70px;
            }
        }
        @media (max-width:640px) {
            .zl-process-tab-nav {
                grid-template-columns: 1fr;
            }
            .zl-process-list-item {
                flex-direction: column;
            }
            .zl-process-num {
                margin-bottom:12px;
            }
        }




		.pp-wrap {
      width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    /* 头部外层section */
    .pp-header {
      position: relative;
      padding: 100px 0 80px;
      text-align: center;
      border-bottom: 1px solid rgba(245, 179, 66, 0.15);
      overflow: hidden;
    }

    /* 背景容器 全屏铺满 */
    .pp-header-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .pp-header-icon {
      font-size: 72px;
      color: #f5b342;
      margin-bottom: 24px;
    }

    .pp-header-title {
      font-size: 48px;
      font-weight: 700;
      color: #f5b342;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .pp-header-sub {
      font-size: 18px;
      color: #999;
      opacity: 0.9;
    }

    /* 通用内容区块 */
    .pp-section {
      padding: 80px 0;
      background-color: #000;
    }

    .pp-section-dark {
      background-color: #1e1e1e;
    }

    /* 区块标题 */
    .pp-block-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 30px;
      color: #f5b342;
      margin-bottom: 32px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(245, 179, 66, 0.25);
    }

    .pp-block-title i {
      font-size: 34px;
      color: #f5b342;
    }

    /* 正文文本 */
    .pp-text {
      font-size: 16px;
      color: #ccc;
      margin-bottom: 18px;
      text-align: justify;
      line-height: 1.9;
    }

    /* 高亮引用框 */
    .pp-highlight {
      background: linear-gradient(135deg, rgba(245, 179, 66, 0.12) 0%, rgba(245, 179, 66, 0.04) 100%);
      border-left: 4px solid #f5b342;
      padding: 22px 28px;
      margin: 32px 0;
      border-radius: 0 8px 8px 0;
    }

    .pp-highlight p {
      font-size: 17px;
      color: #f5b342;
      font-weight: 500;
    }

    /* 双卡片行布局 */
    .pp-card-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    .pp-card {
      background: #111;
      border: 1px solid rgba(245, 179, 66, 0.15);
      padding: 36px;
      border-radius: 12px;
      transition: all 0.35s ease;
    }

    .pp-card:hover {
      border-color: #f5b342;
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(245, 179, 66, 0.15);
    }

    .pp-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(245, 179, 66, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .pp-card-icon i {
      font-size: 28px;
      color: #f5b342;
    }

    .pp-card-title {
      font-size: 20px;
      color: #fff;
      margin-bottom: 14px;
    }

    .pp-card-text {
      font-size: 15px;
      color: #999;
      line-height: 1.8;
    }

    /* 引言标语 */
    .pp-quote {
      font-size: 20px;
      text-align: center;
      margin: 40px 0 30px;
      color: #f5b342;
      font-weight: 500;
      letter-spacing: 1px;
    }

    .pp-quote i {
      margin: 0 8px;
      opacity: 0.6;
    }

    /* 创始人署名 */
    .pp-sign {
      font-size: 18px;
      color: #f5b342;
      font-weight: 500;
    }

    /* 底部留白 */
    .pp-footer-space {
      height: 100px;
      background-color: #000;
    }

    /* 响应式适配 */
    @media screen and (max-width: 1320px) {
      .pp-wrap {
        width: 100%;
      }
    }
    @media screen and (max-width: 992px) {
      /* 创办板块左右布局切换上下 */
      .pp-create-row {
        grid-template-columns: 1fr !important;
      }
      .pp-founder-img-box {
        max-width: 400px;
        margin: 0 auto 30px;
      }
    }
    @media screen and (max-width: 768px) {
      .pp-card-row {
        grid-template-columns: 1fr;
      }
      .pp-header-title {
        font-size: 36px;
      }
      .pp-block-title {
        font-size: 24px;
      }
    }



/* ========== 悬浮Contact按钮样式 ========== */
.pp-float-contact-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  background-color: #f5b342;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding:10px 24px;
  border-radius:999px;
  font-size:20px;
  font-weight:500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.pp-float-contact-btn:hover {
  background-color: #e89f30;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ========== 弹窗样式（整体大幅缩小） ========== */
.pp-contact-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: none;
}
.pp-contact-overlay.active {
  display: block;
}

.pp-contact-popup {
  position: fixed;
  right: 30px;
  bottom: calc(30px + 60px);
  background-color: #000000;
  color: #fff;
  width: 100%;
  max-width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid rgba(245, 179, 66, 0.28);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.pp-contact-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.pp-contact-close:hover {
  background-color: #f5b342;
  border-color: #f5b342;
  color: #000;
}

.pp-contact-popup h2 {
 text-align: center;
  font-size: 22px;
  margin-bottom: 8px;
  color: #f5b342;
}
.pp-contact-desc {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.pp-contact-qrcode {
  text-align: center;
  margin-bottom: 12px;
}
.pp-contact-qrcode img {
  width: 100%;
  max-width: 150px;
  border-radius: 12px;
  border: 2px solid #f5b342;
}
.pp-contact-qrcode p {
  margin-top: 6px;
  color: #ccc;
  font-size: 12px;
}

.pp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-contact-item {
  background-color: #111111;
  border: 1px solid rgba(245, 179, 66, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.pp-contact-item:hover {
  border-color: #f5b342;
}
.pp-contact-item a {
  color: #f5b342;
  text-decoration: none;
  font-size: 13px;
}

.pp-contact-whatsapp-btn {
  width: 100%;
  background-color: #f5b342;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin: 10px 0 4px;
  transition: 0.3s;
}
.pp-contact-whatsapp-btn:hover {
  background-color: #e89f30;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .pp-float-contact-btn{
    right:20px;
    bottom:20px;
    padding:8px 20px;
  }
  .pp-contact-popup{
    right:20px;
    bottom: calc(20px + 50px);
    max-width: calc(100% - 40px);
    padding: 16px 14px;
  }
  .pp-contact-popup h2 {
    font-size: 20px;
  }
  .pp-contact-qrcode img {
    max-width: 130px;
  }
}



.container {
            width: 1320px;
            margin: 60px auto 0;
            
        }

        /* 每一行 —— 循环调用时重复使用此结构 */
        .row {
            display: flex;
            align-items: center;
            width: 100%;
            margin-bottom: 40px;
            border-bottom: 1px solid #FFD700;    padding-bottom: 40px;
        }

        .row:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        /* 偶数行自动左右互换 */
        .row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .row-image {
            width: 40%;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            border: 1px solid #FFD700;
        }

        .row-text {
            width: 60%;
            flex-shrink: 0;
        }

        .row-image img {
            display: block;
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
        }

        /* 鼠标悬停图片互动效果 */
        .row-image:hover img {
            transform: scale(1.08);
            filter: brightness(1.1) contrast(1.05);
        }

        /* 图片底部浮动文字 */
        .row-image .float-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 1px;
            /* 背景滤镜毛玻璃效果 */
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(12px) saturate(1.2);
            -webkit-backdrop-filter: blur(12px) saturate(1.2);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);    transform: translateY(0);
        }

        /* 悬停时浮动文字滑入 */
        .row-image:hover .float-caption {
            transform: translateY(0);
        }

        .row-text {
			    width: 700px;
            padding: 60px 80px;
        }

        .row-text h2 {
            font-size: 28px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.4;
            margin-bottom: 16px;
        }

        .row-text p {
            font-size: 16px;
            color: #cccccc;
            line-height: 1.8;
        }

        .row-text .tag {
            display: inline-block;
            font-size: 12px;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            padding: 4px 12px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 4px;
        }



.ro-article-wrap {
            max-width: 1320px;
            margin: 80px auto;
            padding: 0 20px;
        }
        /* 单条文章卡片容器 */
        .ro-article-item {
            display: grid;
            grid-template-columns: 48% 52%;
            border: 1px solid #333;
            margin-bottom: 24px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .ro-article-item:hover {
            border-color: #f5b342;
        }
        /* 左侧图片/校标区域 */
        .ro-article-left {
            background-color: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .ro-article-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* 右侧文章内容区域 */
        .ro-article-right {
            padding: 28px 24px;
            background-color: #0a0a0a;
        }
        /* 顶部阅读信息 */
        .ro-article-meta-top {
            font-size: 14px;
            color: #999;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* 文章标题样式 */
        .ro-article-title {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 14px;
            line-height: 1.4;
        }
        /* 特殊标题配色示例 */
        .ro-title-gold {
            color: #f5b342;
        }
        .ro-title-red {
            color: #e04850;
        }
        /* 文章简介文本 */
        .ro-article-desc {
            font-size: 16px;
            color: #bbbbbb;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        /* 底部浏览量+点赞 */
        .ro-article-meta-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #777;
            border-top: 1px solid #222;
            padding-top: 12px;
        }
        .ro-like-icon {
            color: #f5b342;
            cursor: pointer;
        }
        /* 响应式适配 */
        @media(max-width:768px){
            .ro-article-item{
                grid-template-columns: 1fr;
            }
        }
    </style>