/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Banner样式 */
.banner {
    width: 100%;
    height: 357px;
    background-color: #ECF6FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.banner-text {
    width: 300px;
    height: 85px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
    color: #296CEF;
    background-color: transparent;
}

.banner-image {
    width: 470px;
    height: 360px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* 标题栏样式 */
.title-bar {
    width: 100%;
    height: 85px;
    background-image: url('jycy_title1.png');
    background-size: auto;
    background-position: center 7px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.title-text {
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 页面内容样式 */
.content {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.container {
    width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* 左右两栏信息列表区域 */
.info-lists-section {
    display: flex;
    width: 100%;
    background-color: #fff;
}

.info-list-container {
    width: 50%;
    padding: 20px;
    border-right: 1px solid #eee;
}

.info-list-container:last-child {
    border-right: none;
}

.info-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.info-list-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.more-link {
    font-size: 14px;
  
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.3s;
}


.more-link:hover {
    background-color: #3498db;
    color: white;
    text-decoration: none;
}

.info-list {
    list-style-type: none;
}

.info-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

.info-item:hover {
    background-color: #f8f9fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-date {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    order: 2;
    margin-left: 15px;
    white-space: nowrap;
}

.info-title {
    color: #333;
    font-size: 16px;
    flex: 1;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    line-height: 1.4;
}

.info-title:hover {
    color: #3498db;
    text-decoration: underline;
}

/* 更多按钮样式 */
.more-button-container {
    text-align: center;
    padding-top: 8px;
}

.more-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.more-button:hover {
    background-color: #2980b9;
}

/* 常用场景板块 */
.common-scene {
    width: 100%;
    margin: 10px auto;
    min-height: 400px;
    background-image: url('jycy_bg.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 10px 40px;
    position: relative;
}

.scene-content {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 10px auto;
}

.scene-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.scene-title span.common { color: #000; }
.scene-title span.scene { color: #3e67ff; }

/* 主选项卡样式 */
.main-tabs {
    display: flex;
    background: #fff;
    margin-bottom: 10px;
}

.main-tab-btn {
    flex: 1;
    padding: 18px 25px;
    background: linear-gradient(145deg, #f8f9ff, #e8efff);
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #2c5bff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    box-shadow: 0 2px 8px rgba(46, 91, 255, 0.1);
}

.main-tab-btn.active {
    background: linear-gradient(145deg, #2c5bff, #3e67ff);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 91, 255, 0.2);
    transform: translateY(-2px);
}

.main-tab-btn:hover:not(.active) {
    background: linear-gradient(145deg, #e6edff, #d9e3ff);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(46, 91, 255, 0.15);
}

.main-tab-content {
    padding: 0;
}

.main-tab-pane {
    display: none;
    min-height: 500px;
}

.main-tab-pane.active {
    display: block;
}

/* 子选项卡样式 */
.sub-tabs-container {
    border-bottom: 1px solid #eee;
}

.sub-tabs {
    display: flex;
    overflow-x: auto;
}

.sub-tab-btn {
    padding: 14px 30px;
    background: linear-gradient(145deg, #f5f7ff, #f0f4ff);
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
    margin: 0 3px;
    box-shadow: 0 1px 4px rgba(46, 91, 255, 0.08);
}

.sub-tab-btn.active {
    background: linear-gradient(145deg, #3e67ff, #2c5bff);
    color: white;
    box-shadow: 0 2px 8px rgba(46, 91, 255, 0.2);
    transform: translateY(-1px);
}

.sub-tab-btn:hover:not(.active) {
    background: linear-gradient(145deg, #e6edff, #d9e3ff);
    color: #3e67ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(46, 91, 255, 0.15);
}

.sub-tab-content {
    padding: 30px;
}

.sub-tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.sub-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 内容样式 */
.content-section {
    margin-bottom: 25px;
}

.content-section h3 {
    color: #3e67ff;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.content-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.sub-section {
    margin-left: 20px;
    margin-bottom: 20px;
}

.sub-section h4 {
    color: #555;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #3e67ff;
}

.contact-item h4 {
    color: #3e67ff;
    margin-bottom: 10px;
}

/* 常用平台容器 */
.common-platforms-container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  padding: 0;
}

/* 平台网格布局 */
.platforms-grid {
  display: grid;
  gap: 20px;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.platform-item {
  width: 100%;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-item a {
  width: 100%;
}

.platform-item img {
  width: 100%; /* 根据图数量改 */
  height: 85px;
  object-fit: cover;
  display: block;
}

/* 办事板块容器 */
.affairs-section {
    width: 100%;
    background-image: url('zxbs_bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.affairs-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* 左侧在线办事 */
.online-affairs {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.section-header {
    height: 48px;
    background: #3e67ff;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    line-height: 48px;
}

.employment-more-link,
.entrepreneurship-more-link {
    color: #3e67ff;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #3e67ff;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.employment-more-link:hover,
.entrepreneurship-more-link:hover {
    background-color: #3e67ff;
    color: white;
}

.online-affairs-more-link,
.series-interpretation-more-link {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.affairs-links {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.affair-link {
    font-size: 20px;
    color: #3e67ff;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid #f0f5ff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    min-height: 70px;
    line-height: 1.2;
}

.affair-link:hover {
    color: #2a4fd8;
    transform: translateX(5px);
}

.affair-link i {
    margin-right: 15px;
    font-size: 28px;
    width: 30px;
    text-align: center;
}

.affair-link .icon-svg {
    margin-right: 15px;
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(98%) saturate(748%) hue-rotate(183deg) brightness(94%) contrast(91%);
}

/* 右侧系列解读 */
.series-interpretation {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* 轮播图样式 */
.interpretation-carousel-container {
    padding: 20px;
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 系列解读轮播图样式 */
.image-carousel-container {
    padding: 20px;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    width: 580px;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    width: 580px;
    height: 360px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(62, 103, 255, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: #3e67ff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 15px;
}

.carousel-control.next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #3e67ff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.interpretation-carousel {
    position: relative;
    width: 100%;
    height: 270px;
    perspective: 1000px;
}

.interpretation-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
}

.interpretation-carousel-item {
    position: absolute;
    width: 150px;
    height: 243.75px;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.interpretation-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interpretation-carousel-item.prev {
    left: 20%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0.8;
    z-index: 2;
}

.interpretation-carousel-item.current {
    left: 50%;
    transform: translateX(-50%) scale(1.1);
    z-index: 4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.interpretation-carousel-item.next {
    left: 80%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0.8;
    z-index: 2;
}

.interpretation-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(62, 103, 255, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.interpretation-carousel-control:hover {
    background: #3e67ff;
}

.interpretation-carousel-control.prev { left: 10px; }
.interpretation-carousel-control.next { right: 10px; }

/* 在线地图板块 */
.online-maps {
    width: 1300px;
    margin: 0 auto;
    min-height: 400px;    
    overflow: hidden;
    padding: 10px 40px;
    position: relative;
}

.maps-content {
    position: relative;
    z-index: 1;
}

.maps-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.maps-title span.online { color: #000; }
.maps-title span.maps { color: #3e67ff; }

/* 在线地图 */
.convenience-map-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

/* 地图容器 */
.map-container {
    min-height: 600px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 左侧机构列表 */
.school-list-container {
    width: 350px;
    background: #ffffff;
    border-right: 1px solid #e8ecf3;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
}

.school-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf3;
}

.school-tab {
    flex: 1;
    padding: 16px 5px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    border-bottom: 3px solid transparent;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-tab.active {
    background: #ffffff;
    color: #3e67ff;
    border-bottom: 3px solid #3e67ff;
    box-shadow: 0 1px 3px rgba(62, 103, 255, 0.1);
}

.school-tab:hover:not(.active) {
    background: #f1f5f9;
    color: #475569;
}

.school-list {
    height: calc(100% - 48px);
    overflow-y: auto;
    padding: 15px;
}

.school-list-content {
    display: none;
}

.school-list-content.active {
    display: block;
}

.school-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.school-item:hover {
    background: #f0f5ff;
    transform: translateX(5px);
}

.school-item i {
    margin-right: 10px;
    color: #3e67ff;
    font-size: 18px;
}

.school-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.school-address {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.school-phone {
    font-size: 12px;
    color: #3e67ff;
    margin-top: 3px;
    font-weight: bold;
}

/* 右侧地图区域 */
.map-display {
    position: absolute;
    top: 0;
    left: 350px;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 0 8px 8px 0;
}

#map-container {
    width: 100%;
    height: 100%;
}

/* 带箭头的提示框样式 */
.map-tip {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 300px;
    display: none;
    transform: translate(-50%, -100%);
    top: 0;
    left: 0;
    min-height: 100px;
}

.map-tip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent;
}

.tip-title {
    font-size: 18px;
    font-weight: bold;
    color: #3e67ff;
    margin-bottom: 5px;
}

.tip-address {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.tip-phone {
    font-size: 14px;
    color: #3e67ff;
    font-weight: bold;
}

.close-tip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
}

/* 常见问题 */
.faq-section {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(62, 103, 255, 0.08);
    padding: 50px;
    margin: 20px auto;
    border: 1px solid #f0f5ff;
}

.faq-container {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 12px rgba(62, 103, 255, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #3e67ff;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(62, 103, 255, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.question {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.question-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.question-link:hover .question-text {
    color: #3e67ff;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3e67ff 0%, #2c5bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(62, 103, 255, 0.3);
}

.question-icon .icon-svg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.question-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s;
}

.answer {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.answer-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    margin-top: 2px;
}

.answer-icon .icon-svg {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.answer-text {
    flex: 1;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
    padding-top: 2px;
}

.answer-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

/* 快捷访问 */
.quick-links-section {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 20px auto;
}

.links-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.link-item {
    flex: 1;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.link-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 103, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-item:hover .link-overlay {
    opacity: 1;
}

.link-text {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
}

/* ========== 响应式设计 ========== */

@media (max-width: 1250px) {
    .container {
        width: 100%;
        max-width: 1200px;
    }
    
    .common-scene {
        width: 95%;
    }
    
    .common-platforms-container {
        width: 95%;
    }
    
    .affairs-container {
        width: 95%;
    }
    
    .online-maps {
        width: 95%;
    }
}

@media (max-width: 1000px) {
    .banner-container {
        padding: 0 40px;
    }
    
    .banner-text {
        font-size: 36px;
    }
    
    .banner-image {
        width: 400px;
        height: 300px;
    }
    
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .carousel-section,
    .list-section {
        width: 100%;
    }
    
    .carousel-section {
        height: 300px;
    }
    
    .list-section {
        height: auto;
    }
    
    .platforms-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-item {
        width: 48%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .affairs-container {
        flex-direction: column;
    }
    
    .affairs-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .school-list-container {
        position: relative;
        width: 100%;
        height: 300px;
        border-right: none;
        border-bottom: 1px solid #e0e5ff;
    }
    
    .map-display {
        position: relative;
        height: 400px;
        left: 0;
    }
    
    #map-container {
        height: 100%;
    }
    
    .school-tab {
        font-size: 13px;
        padding: 12px 3px;
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 40px 0;
    }
    
    .banner-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .banner-text {
        width: 100%;
        text-align: center;
        height: auto;
        margin-bottom: 10px;
    }
    
    .banner-image {
        width: 100%;
        max-width: 470px;
        height: auto;
    }
    
    .title-text {
        font-size: 36px;
    }
    
    .scene-title {
        font-size: 36px;
    }
    
    .maps-title {
        font-size: 36px;
    }
    
    .platform-item {
        width: 100%;
        max-width: 400px;
    }
    
    .affair-link {
        font-size: 18px;
    }
    
    .interpretation-carousel-container {
        height: 300px;
    }
    
    .section-header {
        font-size: 22px;
        height: 42px;
        line-height: 42px;
    }
    
    .main-tabs {
        flex-direction: column;
    }
    
    .sub-tabs {
        flex-wrap: wrap;
    }
    
    .sub-tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .sub-tab-content {
        padding: 20px;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .faq-section {
        padding: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .question-text {
        font-size: 18px;
    }
    
    .answer-text {
        font-size: 15px;
    }
    
    .quick-links-section {
        padding: 30px;
    }
    
    .links-container {
        flex-direction: column;
    }
    
    .link-item {
        height: 150px;
    }
}

@media (max-width: 600px) {
    .school-tab {
        font-size: 12px;
        padding: 12px 3px;
    }
    
    .school-item {
        padding: 10px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .link-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 28px;
    }
    
    .title-text {
        font-size: 28px;
    }
    
    .title-bar {
        height: 70px;
    }
    
    .banner-container {
        padding: 0 20px;
    }
    
    .scene-title {
        font-size: 28px;
    }
    
    .maps-title {
        font-size: 28px;
    }
    
    .scene-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .main-tab-btn {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .sub-tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .affairs-section {
        padding: 30px 0;
    }
    
    .section-header {
        font-size: 20px;
        height: 40px;
        line-height: 40px;
    }
    
    .affair-link {
        font-size: 16px;
        min-height: 60px;
    }
    
    .interpretation-carousel-item {
        width: 120px;
        height: 195px;
    }
    
    .common-platforms-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .faq-section {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .question-icon,
    .answer-icon {
        width: 28px;
        height: 28px;
    }
    
    .more-button {
        padding: 10px 30px;
        font-size: 16px;
    }
}

/* 通用标题样式 */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    color: #3e67ff;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* 通用按钮样式 */
.more-button {
    display: inline-block;
    padding: 12px 40px;
    background: #3e67ff;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(62, 103, 255, 0.3);
}

.more-button:hover {
    background: #2a4fd8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 103, 255, 0.4);
}

.more-button-container {
    text-align: center;
}

/* 响应式设计 - 常见问题 */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin: 15px auto;
    }
    
    .faq-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .question-link {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .question-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 36px;
        height: 36px;
    }
    
    .question-icon .icon-svg {
        width: 16px;
        height: 16px;
    }
    
    .question-text {
        font-size: 18px;
        margin-left: 0;
    }
    
    .answer {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .answer-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 32px;
        height: 32px;
    }
    
    .answer-icon .icon-svg {
        width: 14px;
        height: 14px;
    }
    
    .answer-text {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 15px 12px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .answer-text {
        font-size: 14px;
    }
}

/* SVG图标样式 */
.svg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* 主选项卡图标样式 */
.main-tab-btn .svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* 子选项卡图标样式 */
.sub-tab-btn .svg-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* 内容区域图标样式 */
.content-section h3 .svg-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* 默认状态 - 蓝色图标 */
.svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* 激活状态 - 白色图标 */
.main-tab-btn.active .svg-icon,
.sub-tab-btn.active .svg-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* 内容区域保持蓝色 */
.content-section h3 .svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* SVG图标样式 */
.svg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* 主选项卡图标样式 */
.main-tab-btn .svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* 子选项卡图标样式 */
.sub-tab-btn .svg-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* 内容区域图标样式 */
.content-section h3 .svg-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* 默认状态 - 蓝色图标 */
.svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* 激活状态 - 白色图标 */
.main-tab-btn.active .svg-icon,
.sub-tab-btn.active .svg-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* 内容区域保持蓝色 */
.content-section h3 .svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* Swiper轮播图自定义样式 */
.series-interpretation .swiper {
    width: 100%;
    height: 360px;
    padding: 20px 0;
}

.series-interpretation .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.series-interpretation .swiper-slide:hover {
    transform: scale(1.05);
}

.series-interpretation .swiper-button-next,
.series-interpretation .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.series-interpretation .swiper-button-next:after,
.series-interpretation .swiper-button-prev:after {
    font-size: 20px;
}

.series-interpretation .swiper-pagination {
    bottom: 10px !important;
}

.series-interpretation .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.series-interpretation .swiper-pagination-bullet-active {
    background: #1e88e5;
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .series-interpretation .swiper {
        height: 280px;
    }
    
    .series-interpretation .swiper-slide {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .series-interpretation .swiper {
        height: 200px;
    }
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    
    .series-interpretation .swiper-slide {
        font-size: 18px;
    }
}

/* 响应式设计 - 常见问题 */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin: 15px auto;
    }
    
    .faq-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .question-link {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .question-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 36px;
        height: 36px;
    }
    
    .question-icon .icon-svg {
        width: 16px;
        height: 16px;
    }
    
    .question-text {
        font-size: 18px;
        margin-left: 0;
    }
    
    .answer {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .answer-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 32px;
        height: 32px;
    }
    
    .answer-icon .icon-svg {
        width: 14px;
        height: 14px;
    }
    
    .answer-text {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 15px 12px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .answer-text {
        font-size: 14px;
    }
}

/* SVG图标样式 */
.svg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* 主选项卡图标样式 */
.main-tab-btn .svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* 子选项卡图标样式 */
.sub-tab-btn .svg-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* 内容区域图标样式 */
.content-section h3 .svg-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* 默认状态 - 蓝色图标 */
.svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* 激活状态 - 白色图标 */
.main-tab-btn.active .svg-icon,
.sub-tab-btn.active .svg-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* 内容区域保持蓝色 */
.content-section h3 .svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* SVG图标样式 */
.svg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.3s ease;
}

/* 主选项卡图标样式 */
.main-tab-btn .svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* 子选项卡图标样式 */
.sub-tab-btn .svg-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* 内容区域图标样式 */
.content-section h3 .svg-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* 默认状态 - 蓝色图标 */
.svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* 激活状态 - 白色图标 */
.main-tab-btn.active .svg-icon,
.sub-tab-btn.active .svg-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* 内容区域保持蓝色 */
.content-section h3 .svg-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%) contrast(90%);
}

/* Swiper轮播图自定义样式 */
.series-interpretation .swiper {
    width: 100%;
    height: 360px;
    padding: 20px 0;
}

.series-interpretation .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.series-interpretation .swiper-slide:hover {
    transform: scale(1.05);
}

.series-interpretation .swiper-button-next,
.series-interpretation .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.series-interpretation .swiper-button-next:after,
.series-interpretation .swiper-button-prev:after {
    font-size: 20px;
}

.series-interpretation .swiper-pagination {
    bottom: 10px !important;
}

.series-interpretation .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.series-interpretation .swiper-pagination-bullet-active {
    background: #1e88e5;
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .series-interpretation .swiper {
        height: 280px;
    }
    
    .series-interpretation .swiper-slide {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .series-interpretation .swiper {
        height: 200px;
    }
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

/* 轮播图链接样式 */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
    
    .series-interpretation .swiper-slide {
        font-size: 18px;
    }
}