/* 桌面端：屏幕宽度 ≥ 750px 时生效 */
@media screen and (min-width: 750px) and (max-width: 960px) {
  /* 首页样式 */
  /* Banner区域 */
  .banner {
    position: relative;
    background: url("banner.jpg") no-repeat center center;
    background-size: cover;
    min-height: 860px;
    margin-top: 72px;
  }

  .banner-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0 20px;
  }

  .banner-left {
    width: 548px;
    min-height: 860px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    margin: 0;
    padding: 100px 24px 40px 40px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .banner-left h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
  }

  .banner-left h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .banner-steps {
    margin-bottom: 20px;
  }

  .step-item {
    margin-bottom: 20px;
  }

  .step-item:last-child {
    margin-bottom: 0;
  }

  .step-number {
    font-size: 40px;
    font-weight: bold;
    color: #db9e1e;
    line-height: 1;
  }

  .step-content {
    display: flex;
    align-items: flex-end;
    color: #fff;
  }

  .step-content .step-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .step-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.4;
    width: 100%;
    word-wrap: break-word;
  }

  .banner-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
  }

  .tag {
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 90px;
    font-size: 18px;
    color: #fff;
  }

  /* 轮播指示器 */
  .carousel-indicators {
    display: flex;
    margin-top: 30px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .indicator {
    width: 58px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .indicator::before {
    content: attr(data-index-text);
    position: absolute;
    top: -20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
  }

  .indicator.active {
    background: #fff;
    height: 3px;
  }

  .indicator.active::before {
    font-size: 16px;
    color: #fff;
  }

  /* 轮播切换模块 */
  .carousel-tabs {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #fff;
    height: 100px;
    width: 80%;
    border-radius: 50px;
    overflow: hidden;
  }

  .carousel-tab {
    flex: 1;
    padding: 0 20px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: #333;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
  }

  .carousel-tab:last-child {
    border-right: none;
  }

  .carousel-tab.active {
    background: #047a34;
    color: #fff;
    border-right: none;
  }

  /* 项目简介区域 */
  .project-intro {
    background: url("Introduction.png") no-repeat center bottom;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    min-height: 450px;
  }

  .intro-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
  }

  .intro-left {
    width: 36%;
  }

  .intro-left h2 {
    font-size: 44px;
    color: #333;
    margin-bottom: 10px;
    font-family: "Gotham";
  }

  .intro-left h3 {
    font-size: 28px;
    color: #01562f;
    font-weight: bold;
  }

  .intro-right {
    width: 62%;
  }

  .intro-right p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
  }

  /* 项目特色区域 */
  .project-features {
    padding: 64px 0;
    background: #fff;
  }

  .features-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .features-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 200px;
    min-width: 200px;
  }

  .features-header h2 {
    font-size: 44px;
    color: #333;
    margin-bottom: 5px;
    font-family: "Gotham";
  }

  .features-header h3 {
    font-size: 28px;
    color: #2e7d32;
    font-weight: bold;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .features-row .features-header {
    margin-bottom: 0;
  }

  .feature-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .feature-item img {
    width: 100%;
    height: auto;
    min-height: 180px;
    display: block;
    transition: transform 0.3s ease;
  }

  .feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    height: 110px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feature-item:hover .feature-overlay {
    height: 100%;
    justify-content: flex-start;
    padding-top: 20px;
  }

  .feature-overlay h4 {
    font-size: 22px;
    margin-bottom: 4px;
    transition: transform 0.5s ease;
  }

  .feature-overlay p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    transition: transform 0.5s ease;
  }

  .feature-item:hover .feature-overlay h4,
  .feature-item:hover .feature-overlay p {
    transform: translateY(0);
  }

  .feature-overlay h4 {
    transform: translateY(16px);
  }

  .feature-overlay p {
    transform: translateY(16px);
  }

  /* 学术特色页面样式 */
  .features-banner {
    position: relative;
    height: 280px;
    background: url("features.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .features-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .features-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .features-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
  }

  .intro-section {
    margin-bottom: 50px;
  }

  .intro-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
  }

  .intro-stages {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .stage-item {
    flex: 1;
    padding: 20px 16px;
    color: #fff;
  }

  .features-domestic {
    background-color: #01562f;
    border-left: 7px solid #db9e1e;
  }

  .features-overseas-undergrad {
    background-color: #03733f;
    border-left: 7px solid #db9e1e;
  }

  .features-overseas-master {
    background-color: #db9e1e;
    border-left: 7px solid #01562f;
  }

  .stage-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .stage-content {
    font-size: 18px;
    line-height: 1.8;
  }

  .intro-note {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
  }

  .course-content {
    padding: 50px 0;
    background-color: #eeeeee;
  }

  .course-section {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 200;
  }

  .section-header h3 {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    display: inline-block;
  }

  .course-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  .course-table th {
    background-color: #01562f;
    font-size: 22px;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #e0e0e0;
  }

  .course-table td {
    padding: 7px 14px;
    border: 1px solid #e0e0e0;
    text-align: center;
    background-color: #fff;
    font-size: 16px;
  }

  .course-module {
    font-weight: bold;
  }

  .major-content {
    padding: 50px 0;
  }

  .method-section {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .major-section {
  }

  .major-item {
    margin-bottom: 30px;
  }

  .major-item h3 {
    font-size: 21px;
    color: #fff;
    background-color: #01562f;
    padding: 9px 14px;
    font-weight: bold;
    border-left: 7px solid #db9e1e;
  }

  .major-item p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1px;
    text-align: justify;
    padding: 10px 15px;
    background-color: #eeeeee;
  }

  .major-tag {
    display: inline-block;
    background-color: #01562f;
    color: #fff;
    padding: 2px 7px;
    margin-right: 8px;
    font-size: 17px;
  }

  .major-note {
    font-size: 17px;
    color: #666;
    margin-top: 20px;
    padding-left: 14px;
  }

  .teacher-section {
    margin-bottom: 100px;
  }

  .teacher-content {
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .teacher-info {
    flex: 1;
  }

  .teacher-info p {
    font-size: 14px;
    color: #666;
    line-height: 2.2;
    margin-bottom: 20px;
    text-align: justify;
  }

  .teacher-image {
    flex: 1;
  }

  .teacher-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .activity-section {
    margin-bottom: 100px;
  }

  .activity-list {
    list-style-type: none;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
  }

  .activity-list li {
    font-size: 14px;
    color: #666;
    line-height: 2.2;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
  }

  .activity-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #01562f;
    font-weight: bold;
    font-size: 16px;
  }

  /* 升学成果页面样式 */
  .results-banner {
    position: relative;
    height: 280px;
    background: url("sample.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .results-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .results-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .results-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 16px;
  }

  .stats-container {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    background-color: #f9f9f9;
    padding: 40px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 36px;
    color: #01562f;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 14px;
    color: #666;
  }

  .university-section {
    margin: 80px 0;
  }

  .university-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
  }

  .university-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .university-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .university-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .university-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }

  .university-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .success-section {
    margin: 80px 0;
  }

  .success-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
  }

  .offer-section {
  }

  .offer-note {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }

  .offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
  }

  .offer-title {
    font-size: 30px;
    color: #333;
    font-weight: bold;
  }

  .offer-tabs {
    display: flex;
    gap: 10px;
  }

  .offer-tab {
    padding: 7px 18px;
    border: 1px solid #01562f;
    border-radius: 90px;
    background-color: #fff;
    color: #01562f;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
  }

  .offer-tab.active {
    background-color: #01562f;
    color: #fff;
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .offer-card {
    background-color: #01562f;
    color: #fff;
    padding: 24px;
  }

  .offer-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .offer-line {
    width: 32px;
    height: 5px;
    background: #db9e1e;
    margin-bottom: 5px;
  }

  .offer-card .university-info {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .offer-card .university-p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .offer-card .offer-image {
    width: 60%;
    height: auto;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .offer-card .offer-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #01562f;
    border-radius: 50%;
    background-color: #fff;
    color: #01562f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .pagination-btn:hover {
    background-color: #01562f;
    color: #fff;
  }

  .advantage-content {
    padding: 50px 0;
    background-color: #eeeeee;
  }

  .advantage-section {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
  }

  .advantage-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 40px;
    padding-left: 10px;
  }

  .university-list {
    background-color: #f9f9f9;
  }

  .university-region {
    padding-bottom: 10px;
  }

  .university-region h3 {
    background-color: #01562f;
    color: #fff;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .university-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 20px;
  }

  .university-item {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
  }

  .university-item span {
    font-weight: bold;
  }

  /* 学生发展中心页面样式 */
  .development-banner {
    position: relative;
    height: 280px;
    background: url("development.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .development-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .development-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .development-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .development-content h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
  }

  .development-content p {
    font-size: 17px;
    line-height: 1.7;
    margin: 10px 0 24px;
    text-align: justify;
  }

  .development-content-s .item-s-title {
    padding-left: 4px;
    padding-right: 4px;
    min-width: 110px;
    white-space: nowrap;
  }

  .about-introd {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 16px;
  }

  .introd-content {
    color: #fff;
    padding: 20px;
    background-color: #01562f;
  }

  .introd-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    letter-spacing: 0.4px;
  }

  .program-section {
    margin-bottom: 50px;
  }

  .program-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
  }

  .program-section > .development-content > p:first-of-type {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
  }

  .program-item {
    margin-bottom: 30px;
  }

  .program-item h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: url("xiangmuming.png") no-repeat left center;
    background-size: contain;
    padding-top: 4px;
    padding-left: 40px;
    /* min-height: 38px; */
  }

  .program-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
  }

  .program-item p:first-of-type {
    font-weight: bold;
    color: #333;
  }

  .program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 20px 0;
  }

  .program-features {
    list-style-type: none;
    margin: 18px auto;
    padding-left: 18px;
    max-width: 92%;
    text-align: left;
    display: inline-block;
  }

  .program-item {
    text-align: center;
  }

  .program-features li {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
    padding-left: 38px;
    background: url("li.png") no-repeat left center;
    background-size: 24px 22px;
  }

  .program-note {
    font-size: 12px;
    color: #999;
    margin-top: 40px;
    font-style: italic;
  }

  .intro-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
  }

  .intro-stages {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .stage-item {
    flex: 1;
    padding: 20px 16px;
    color: #fff;
  }

  .stage-domestic {
    background: url("teip1.png") no-repeat center center;
    background-size: cover;
    height: 280px;
  }

  .stage-overseas-undergrad {
    background: url("teip2.png") no-repeat center center;
    background-size: cover;
    height: 280px;
  }

  .stage-overseas-master {
    background: url("teip3.png") no-repeat center center;
    background-size: cover;
    height: 280px;
  }

  .stage-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 16px;
  }

  .stage-content {
    font-size: 17px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    min-height: 120px;
  }

  .intro-note {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
  }

  .internship-section {
    background-color: #eeeeee;
    padding: 50px 0;
  }

  .academic-section {
    padding: 50px 0;
    margin-bottom: 40px !important;
  }

  /* 关于我们页面样式 */
  .about-banner {
    position: relative;
    height: 280px;
    background: url("about.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .about-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .about-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .about-introab {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 16px;
  }

  .introab-content {
    background-color: #fff;
    color: #fff;
    padding: 20px;
    background: url("jianjie.png") no-repeat center center;
    background-size: cover;
    border-radius: 16px;
  }

  .introab-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    letter-spacing: 0.4px;
  }

  .core-business {
    padding: 50px 0;
    background-color: #f9f9f9;
  }

  .business-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .business-header {
    margin-bottom: 30px;
  }

  .business-header h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
  }

  .business-header p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .business-grid {
    display: flex;
    flex-direction: column;
  }

  .business-item {
    display: flex;
    gap: 1.5%;
    margin-bottom: 16px;
  }

  .business-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .business-content-box {
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 49.25%;
    padding: 16px;
  }

  .business-item:hover .business-content-box {
    background-color: #01562f;
    color: #fff;
  }

  .business-item:hover h3 {
    color: #fff;
  }

  .business-item:hover p {
    color: #fff;
  }

  .business-content-box h3 {
    font-size: 22px;
    color: #01562f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url("businessh3.png") no-repeat center center;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    min-height: 28px;
    padding-bottom: 6px;
  }

  .business-item:hover .business-content-box h3 {
    background: url("businessh3active.png") no-repeat center center;
    background-size: 100% 100%;
    color: #fff;
  }

  .business-content-box p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .business-image-box {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49.25%;
  }

  .business-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .honors {
    padding: 50px 16px;
    background-color: #fff;
  }

  .honors-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
  }

  .honors-header {
    margin-bottom: 24px;
  }

  .honors-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
  }

  .honors-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .honors-row {
    display: flex;
    gap: 16px;
  }

  .honors-row:first-child {
  }

  .honors-row:last-child {
  }

  .honors-item {
    position: relative;
    overflow: hidden;
  }

  .honors-row:last-child .honors-item {
  }

  .honors-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
  }

  .honors-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 60px;
  }

  .honors-overlay p {
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-break: break-all;
  }

  /* 国内培养学校页面样式 */

  .campus-banner {
    position: relative;
    height: 280px;
    background: url("school.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .campus-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .campus-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .campus-content {
    padding: 0 16px;
  }

  .campus2-content {
    background: url(schoolbackground.png) no-repeat center center;
    background-size: cover;
    padding: 0 16px;
  }

  .campus3-content {
    padding: 0 16px;
  }

  .module-section {
    margin-bottom: 50px;
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
  }

  .module-section h2 {
    font-size: 22px;
    color: #fff;
    margin: 28px 0;
    font-weight: bold;
    padding: 5px;
    white-space: nowrap;
  }

  .school-logo {
    height: 72px;
  }

  .module-content {
    margin-bottom: 40px;
  }

  .module-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
    margin-bottom: 40px;
  }

  .image-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }

  .grid-image {
    position: relative;
    border-bottom: 8px solid #01562f;
    border-top: 8px solid #01562f;
  }

  .grid-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .grid-image::after {
    content: "";
    position: absolute;
    bottom: -18px;
    right: -3px;
    width: 640px;
    height: 20px;
    background-image: url("jiaobiao.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 999;
  }

  .shenzhen-module {
    border-radius: 8px;
  }

  /* 申请指南页面样式 */
  .guide-banner {
    position: relative;
    height: 280px;
    background: url(guide.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15%;
    margin-top: 72px;
  }

  .guide-banner h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .guide-banner h2 {
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
  }

  .apply-section {
    padding: 50px 0;
    background-color: #fff;
  }

  .section-content {
    /* max-width: 70%; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item {
    background-color: #01562f;
    color: #fff;
    padding: 20px;
  }

  .info-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .info-item ul {
    list-style-type: none;
  }

  .info-item li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    padding-left: 72px;
  }

  .info-item li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .info-item li {
    display: flex;
    flex-direction: column;
  }

  .info-item li span:first-child {
    font-weight: bold;
    margin-top: 3px;
    margin-bottom: 5px;
  }

  .info-item li span:last-child {
    font-size: 16px;
    font-weight: 200;
  }

  .info-item:nth-child(1) li:nth-child(1)::before {
    background-image: url("guideline1.png");
  }

  .info-item:nth-child(1) li:nth-child(2)::before {
    background-image: url("guideline2.png");
  }

  .info-item:nth-child(1) li:nth-child(3)::before {
    background-image: url("guideline3.png");
  }

  .info-item:nth-child(2) li {
    padding-left: 50px;
  }

  .info-item:nth-child(2) li:nth-child(1)::before {
    background-image: url("guideline4.png");
    width: 30px;
    height: 30px;
  }

  .info-item:nth-child(2) li:nth-child(2)::before {
    background-image: url("guideline5.png");
    width: 30px;
    height: 30px;
  }

  .info-item:nth-child(2) li:nth-child(3)::before {
    background-image: url("guideline6.png");
    width: 30px;
    height: 30px;
  }

  .process-section {
    padding: 40px 0 50px 0;
    background-color: #eeeeee;
  }

  .process-section .section-content {
    padding: 0 16px;
  }

  .process-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 28px;
  }

  .process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 36px 10px;
  }

  .process-step {
    text-align: center;
    flex: 1;
    position: relative;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #01562f;
    font-size: 18px;
  }

  .process-step-title {
    font-size: 22px;
    color: #333;
    position: relative;
    padding-bottom: 20px;
  }

  .process-step-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 85%;
    transform: translateX(-50%);
    width: 38px;
    height: 14px;
    background-image: url("jiantou.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
  }

  .contact-section .section-content {
    padding: 0 16px;
  }

  .contact-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 32px;
  }

  .contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-map {
    margin-top: -70px;
    position: relative;
    width: 50%;
    height: auto;
  }

  .contact-map img {
    vertical-align: top;
    width: 100%;
    height: 100%;
  }

  .contact-info {
    flex: 1;
    margin-right: 40px;
  }

  .contact-info p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 26px;
    position: relative;
    padding-left: 54px;
  }

  .contact-info p::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 32px;
    height: 40px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .contact-info p:first-child::before {
    background-image: url("add.png");
  }

  .contact-info p:last-child::before {
    background-image: url("tel.png");
    width: 34px;
    height: 34px;
  }
}
