/* 移动端竖屏响应式样式 */

/* 超小屏幕设备 (手机, < 576px) */
@media screen and (max-width: 575.98px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  
  html {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  
  body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  
  /* 隐藏fixed定位的元素，避免遮挡页面内容 */
  .container > .top {
    display: none !important;
  }
  
  /* 移动端header高度调整 */
  .container > .header {
    height: 70px !important;
    background-color: #4633af !important;
  }
  
  /* 容器宽度调整 */
  .container {
    height: 100% !important;
    min-height: 100vh !important;
  }
  
  .container > .wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    overflow-x: visible !important;
  }
  
  /* 头部导航 */
  .container > .header > .wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* LOGO容器 */
  .container > .header .wrap .logo {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    max-width: 70% !important;
    flex: 1 !important;
  }
  
  .container > .header .wrap .logo img {
    height: 28px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  
  .container > .header .wrap .logo img:first-child {
    margin-right: 8px !important;
  }
  
  /* 汉堡菜单 */
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    cursor: pointer;
    z-index: 1000 !important;
    margin-right: 0 !important;
  }
  
  .mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* 移动端菜单容器 */
  .container > .header > .wrap > .menu-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }
  
  /* 移动端导航菜单隐藏 */
  .container > .header > .wrap > .menu-wrap > .ul-wrap {
    display: none !important;
  }
  
  /* 移动端导航菜单显示 */
  .container > .header > .wrap > .menu-wrap > .ul-wrap.menu-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #4633af !important;
    padding: 20px !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  
  .container > .header > .wrap > .menu-wrap > .ul-wrap.menu-open > li {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    padding: 18px 20px !important;
    width: 100% !important;
    text-align: center !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    transition: background-color 0.3s ease !important;
  }
  
  .container > .header > .wrap > .menu-wrap > .ul-wrap.menu-open > li a {
    color: #ffffff !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* 桌面端按钮隐藏 */
  .container > .header > .wrap > .menu-wrap > .btn-wrap {
    display: none !important;
  }
  
  /* 第一屏 */
  .first-screen {
    height: auto !important;
    min-height: 65vh;
    padding: 80px 0 20px;
    overflow: visible;
  }
  
  .first-screen > .first-inner {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
    gap: 20px;
  }
  
  .first-screen > .first-inner > .right {
    order: 1 !important;
    margin: 0 !important;
    width: 100% !important;
    justify-content: center;
  }
  
  .first-screen > .first-inner > .right > .bg-image {
    width: 100% !important;
    height: 200px !important;
    margin-top: 0 !important;
    background-size: contain;
    background-position: center;
  }
  
  .first-screen > .first-inner > .left {
    order: 2 !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    width: 100%;
    text-align: center;
  }
  
  .first-screen > .first-inner > .left > div:nth-child(1) > div:nth-child(1) {
    font-size: 36px !important;
    line-height: 1.2;
  }
  
  .first-screen > .first-inner > .left > div:nth-child(1) > div:nth-child(2) {
    font-size: 24px !important;
    line-height: 1.2;
  }
  
  .first-screen > .first-inner > .left > div:nth-child(1) > div:last-child {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 10px auto;
  }
  
  .first-screen > .first-inner > .left > div:nth-child(2),
  .first-screen > .first-inner > .left > div:nth-child(3) {
    width: 100% !important;
    max-width: 280px;
    margin: 10px auto !important;
    font-size: 1.1rem !important;
  }
  
  .first-screen > .first-inner > .left > .notice {
    font-size: 0.9rem !important;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .first-screen > .first-inner > .left > .notice > span {
    margin-right: 10px;
    font-size: 18px !important;
  }
  
  .first-screen > .first-inner > .left > .notice > .notice-content {
    height: 24px !important;
    line-height: 24px !important;
    vertical-align: middle;
    overflow: hidden;
    flex: 1;
  }
  
  .first-screen > .first-inner > .left > .notice > .notice-content > .notice-wrap {
    width: 100%;
    animation: scrollNoticeMobile 8s linear infinite;
  }
  
  .first-screen > .first-inner > .left > .notice > .notice-content > .notice-wrap > div {
    line-height: 24px !important;
    white-space: nowrap;
  }

  @keyframes scrollNoticeMobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-96px);
    }
  }
  
  /* 第二屏 */
  .second-screen {
    padding: 40px 0 !important;
    overflow: visible;
    padding-bottom: 60px !important;
  }
  
  .second-screen > .second-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    flex-direction: column !important;
    box-sizing: border-box;
    overflow: visible;
    gap: 25px;
  }
  
  .second-screen > .second-inner > .gl-description {
    flex-direction: column !important;
    width: 100%;
  }
  
  .second-screen > .second-inner > .gl-description > .image-wrap {
    display: none !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  
  .subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  
  .services-container {
    padding: 15px !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .service-card {
    padding: 20px !important;
    flex-direction: column !important;
    text-align: center;
    align-items: flex-start !important;
    min-height: auto;
  }
  
  .card-icon {
    margin-right: 0 !important;
    margin-bottom: 15px !important;
    font-size: 2.5rem !important;
    align-self: flex-start !important;
  }
  
  .card-content {
    width: 100% !important;
  }
  
  .card-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
    text-align: center !important;
  }
  
  .card-content p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    text-align: center !important;
  }
  
  .second-screen > .second-inner > .gl-description > .service-intro .card-content h3,
  .second-screen > .second-inner > .gl-description > .service-intro .card-content p {
    text-align: center !important;
  }
  
  /* 第三屏 - 格灵阅读3.0 */
  .third-screen {
    padding: 40px 0 !important;
    overflow: visible;
  }
  
  .third-screen > .third-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    flex-direction: column !important;
    box-sizing: border-box;
    overflow: visible;
    gap: 25px;
  }
  
  .third-screen > .third-inner > .gl-description {
    flex-direction: column !important;
    width: 100%;
  }
  
  .third-screen > .third-inner > .gl-description > .service-intro {
    width: 100%;
  }
  
  .platform-btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 12px 20px !important;
    color: #ffffff !important;
  }
  
  .platform-btn-2 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
    color: #ffffff !important;
  }
  
  .platform-btn-2:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%) !important;
  }
  
  .platform-btn-2:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3) !important;
  }
  
  .platform-btn-3 {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%) !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
    color: #ffffff !important;
  }
  
  .platform-btn-3:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
    background: linear-gradient(135deg, #45A049 0%, #4CAF50 100%) !important;
  }
  
  .platform-btn-3:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3) !important;
  }
  
  .platform-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: #ffffff !important;
  }
  
  .platform-btn:hover svg {
    transform: translateX(3px) !important;
  }
  
  /* 按钮容器样式 */
  .buttons-container {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  
  .buttons-container .platform-btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* 第四屏 */
  .fourth-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .fourth-screen > .fourth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .fourth-screen > .fourth-inner > .title {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
  
  .fourth-screen > .fourth-inner > .img-wrap {
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  
  .fourth-screen > .fourth-inner > .img-wrap > img {
    max-width: 100%;
    height: auto;
  }
  
  .fourth-screen > .fourth-inner > .img-wrap > .left-item,
  .fourth-screen > .fourth-inner > .img-wrap > .right-item {
    display: none !important;
  }
  
  /* 第五屏 */
  .fifth-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .fifth-screen > .fifth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .fifth-screen > .fifth-inner > div:nth-child(1) {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }
  
  .fifth-screen > .fifth-inner > div:nth-child(2) {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 25px;
  }
  
  .fifth-screen > .fifth-inner > div:nth-child(3) > img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* 第六屏 */
  .sixth-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .sixth-screen > .sixth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .sixth-screen > .sixth-inner > div:nth-child(1) {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }
  
  .sixth-screen > .sixth-inner > div:nth-child(2) {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 25px;
  }
  
  .sixth-screen > .sixth-inner > .img-wrap {
    flex-direction: column !important;
    gap: 20px;
    margin-top: 20px;
  }
  
  .sixth-screen > .sixth-inner > .img-wrap > img {
    max-width: 100%;
    height: auto;
  }
  
  .sixth-screen > .sixth-inner > div:nth-child(4) > img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  /* 第三屏 */
  .third-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: visible;
  }
  
  .third-screen > .third-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible;
  }
  
  .third-screen > .third-inner > .title {
    font-size: 1.8rem !important;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  
  .third-screen > .third-inner > .item {
    flex-direction: column !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    gap: 25px;
  }
  
  .third-screen > .third-inner > .item > div > img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
  }
  
  .third-screen > .third-inner > .item > div > p {
    font-size: 1rem !important;
    line-height: 1.6;
  }
  
  /* 版本公告 */
  .version-announcement {
    padding: 15px !important;
    overflow: visible;
  }
  
  .version-content {
    font-size: 0.9rem !important;
  }
  
  .version-text {
    font-size: 1.6rem !important;
    padding: 0 15px;
  }
  
  /* 返回顶部按钮 */
  .container > .top {
    right: 20px !important;
    bottom: 20px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
  
  .container > .top > span {
    font-size: 1.5rem !important;
  }
  
  /* 第七屏 */
  .seventh-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .seventh-screen > .seventh-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 20px;
  }
  
  .seventh-screen > .seventh-inner > .gl-info-1 {
    text-align: center;
    margin-bottom: 0;
  }
  
  .seventh-screen > .seventh-inner > .gl-info-1 > .title {
    font-size: 1.6rem !important;
    display: block !important;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .seventh-screen > .seventh-inner > .gl-info-1 > .sub-title {
    font-size: 1.3rem !important;
    margin: 0 0 15px;
    line-height: 1.4;
  }
  
  .seventh-screen > .seventh-inner > .gl-info-1 > .content {
    font-size: 0.95rem !important;
    line-height: 1.6;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
  }
  
  .seventh-screen > .seventh-inner > .image-wrap {
    margin-top: 0;
    width: 100%;
  }
  
  .seventh-screen > .seventh-inner > .image-wrap > img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* 第八屏 */
  .eighth-screen {
    height: auto !important;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .eighth-screen > .eighth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 20px;
  }
  
  .eighth-screen > .eighth-inner > .gl-info-2 {
    order: 1;
    text-align: center;
    margin-bottom: 0;
  }
  
  .eighth-screen > .eighth-inner > .gl-info-2 > .sub-title {
    font-size: 1.3rem !important;
    margin: 0 0 15px;
    display: block;
    line-height: 1.4;
  }
  
  .eighth-screen > .eighth-inner > .gl-info-2 > .content {
    font-size: 0.95rem !important;
    line-height: 1.6;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
  }
  
  .eighth-screen > .eighth-inner > .image-wrap {
    order: 2;
    margin-top: 0;
    width: 100%;
  }
  
  .eighth-screen > .eighth-inner > .image-wrap > img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* 第九屏 */
  .ninth-screen {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden;
  }
  
  .ninth-screen > .ninth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 15px;
  }
  
  .ninth-screen > .ninth-inner > .gl-info-3 {
    order: 1;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  
  .ninth-screen > .ninth-inner > .gl-info-3 > .sub-title {
    font-size: 1.3rem !important;
    margin: 0 0 15px;
    display: block;
    line-height: 1.4;
  }
  
  .ninth-screen > .ninth-inner > .gl-info-3 > .content {
    font-size: 0.95rem !important;
    line-height: 1.6;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
    width: 100%;
  }
  
  .ninth-screen > .ninth-inner > .image-wrap {
    order: 2;
    margin: 0 !important;
    flex-direction: column !important;
    width: 100%;
  }
  
  .ninth-screen > .ninth-inner > .image-wrap > img:first-child {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .ninth-screen > .ninth-inner > div:nth-child(3) > img:last-child {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* 第十屏 */
  .tenth-screen {
    height: auto !important;
    padding: 40px 0 !important;
    background-size: cover !important;
    overflow: hidden;
  }
  
  .tenth-screen > .tenth-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .tenth-screen > .tenth-inner > .title {
    text-align: center !important;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  
  .tenth-screen > .tenth-inner > .title > img {
    height: 50px !important;
    width: 50px !important;
  }
  
  .tenth-screen > .tenth-inner > .title > span {
    font-size: 1.6rem !important;
    display: block;
    margin-top: 10px;
  }
  
  .tenth-screen > .tenth-inner > .main {
    flex-direction: column !important;
    margin-top: 30px;
    gap: 20px;
  }
  
  .tenth-screen > .tenth-inner > .main > div:first-child {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  
  .tenth-screen > .tenth-inner > .main > div:first-child > img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    object-fit: contain;
  }
  
  .tenth-screen > .tenth-inner > .main > div:last-child {
    padding: 20px 0 !important;
    text-align: center;
  }
  
  .tenth-screen > .tenth-inner > .main > div:last-child > p:nth-child(1) {
    font-size: 1.6rem !important;
    margin-bottom: 15px;
  }
  
  .tenth-screen > .tenth-inner > .main > div:last-child > p:nth-child(2) {
    font-size: 1.2rem !important;
    line-height: 1.8;
    margin-top: 20px;
  }
  
  .tenth-screen > .tenth-inner > .main > div:last-child > p:nth-child(3) {
    font-size: 1.2rem !important;
    line-height: 1.8;
  }
  
  /* 第十一屏 */
  .eleventh-screen {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden;
  }
  
  .eleventh-screen > .eleventh-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 10px;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(1) {
    font-size: 1.6rem !important;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(2) > img {
    width: 100% !important;
    margin-top: 0;
    margin-bottom: 0;
    height: auto !important;
    display: block;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(3) {
    font-size: 1.6rem !important;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(4) > img {
    width: 100% !important;
    margin-top: 0;
    margin-bottom: 0;
    height: auto !important;
    display: block;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(5) {
    font-size: 1.6rem !important;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  
  .eleventh-screen > .eleventh-inner > div:nth-child(6) > img {
    width: 100% !important;
    margin-top: 0;
    margin-bottom: 0;
    height: auto !important;
    display: block;
  }
  
  /* 公益屏 */
  .public-screen {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden;
  }
  
  .public-screen > .public-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 20px;
  }
  
  .public-screen > .public-inner > div:nth-child(1) {
    font-size: 1.6rem !important;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    height: auto;
    background-image: none !important;
    background-color: #4633af;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
  }
  
  .public-screen > .public-inner > div:nth-child(2) > img {
    width: 100% !important;
    height: auto !important;
    margin: 0;
  }
  
  /* 媒体报道屏 */
  .opening-screen {
    height: auto !important;
    padding: 30px 0;
    overflow: hidden;
  }
  
  .opening-screen > .opening-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .opening-screen > .opening-inner > .title {
    font-size: 1.6rem !important;
    text-align: center;
  }
  
  .opening-screen > .opening-inner > .sub-title {
    font-size: 1rem !important;
    line-height: 1.6;
    margin: 10px 0;
  }
  
  .opening-screen > .opening-inner > .sub-title a {
    color: #1777EA;
    text-decoration: underline;
  }
  
  /* FOOTER */
  .footer {
    height: auto !important;
    padding: 30px 0;
    overflow: hidden;
  }
  
  .footer > .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 20px !important;
    flex-direction: column !important;
    height: auto !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .footer > .footer-inner > .logo {
    margin-bottom: 20px;
  }
  
  .footer > .footer-inner > .logo > img {
    height: 60px !important;
  }
  
  .footer > .footer-inner > .tel {
    font-size: 1.2rem !important;
    margin-bottom: 20px;
  }
  
  .footer > .footer-inner > .tel > div:nth-child(2) {
    font-size: 1rem !important;
  }
  
  .footer > .footer-inner > .code-wrap {
    flex-direction: column !important;
    gap: 15px;
  }
  
  .footer > .footer-inner > .code-wrap > .we-chat {
    margin: 0 !important;
  }
  
  .footer > .footer-inner > .code-wrap > .we-chat > img {
    width: 100px !important;
    height: auto !important;
  }
  
  .footer > .footer-inner > .code-wrap > .we-chat > div {
    font-size: 0.9rem !important;
  }
  
  /* 版权声明 */
  .statement {
    height: auto !important;
    padding: 20px 0;
    overflow: hidden;
  }
  
  .statement > .statement-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 20px !important;
    font-size: 0.75rem !important;
    line-height: 1.8;
    box-sizing: border-box;
    overflow: hidden;
    text-align: left !important;
  }
  
  .statement > .statement-inner > div {
    margin-bottom: 12px;
    word-wrap: break-word;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left !important;
  }
  
  .statement > .statement-inner > div a {
    color: #929CAB;
    word-break: keep-all;
  }
  
  /* 关于格灵页面 - 移动端样式 */
  .about-gl {
    height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .about-gl > .about-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .about-gl > .about-inner > .title {
    font-size: 1.8rem !important;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .about-gl > .about-inner > .item {
    font-size: 1rem !important;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .about-gl > .about-inner > .item > p {
    margin-bottom: 10px;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .about-gl > .about-inner > .item > span {
    color: #4633af;
    font-weight: bold;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  /* 发展历程 - 移动端样式 */
  .time-line {
    height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner > div:first-child {
    font-size: 1.5rem !important;
    margin-bottom: 20px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner > .time-wrap {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner > .time-wrap > .time {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(1),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(2),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(3),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(4),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(5),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(6),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(7),
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(8) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1777ea;
    box-sizing: border-box;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(1) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(2) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(3) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(4) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(5) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(6) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(7) > .point,
  .time-line > .time-inner > .time-wrap > .time > div:nth-of-type(8) > .point {
    position: absolute !important;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #1777ea;
    border-radius: 50%;
    margin: 0 !important;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .time-line > .time-inner > .time-wrap > .time > div > p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #333;
  }
  
  .time-line > .time-inner > .time-wrap > .time > div > p.color {
    color: #1777ea !important;
    font-weight: 600;
  }
  
  /* 团队介绍 - 移动端样式 */
  .club-screen {
    height: auto !important;
    padding: 30px 0 !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    margin-bottom: 30px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > div > .inner {
    width: 100%;
    max-width: 100% !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > div:first-child > .inner > div:nth-child(1) {
    font-size: 1.5rem !important;
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0 10px 0;
    color: #1777ea;
    font-weight: 700;
  }
  
  .club-screen > div:first-child > .inner > div:nth-child(1)::after {
    content: '';
    display: block;
    height: 4px;
    width: 60px;
    margin: 10px auto;
    background-color: #f7cf4c;
    border-radius: 4px;
  }
  
  .club-screen > div:first-child > .inner > div:nth-child(2) {
    font-size: 0.95rem !important;
    line-height: 1.8;
    padding: 15px 0 25px 0;
    text-align: left;
    text-indent: 0;
    color: #333;
  }
  
  .club-screen > div:first-child > .inner > div:nth-child(2) > span {
    color: #1777ea;
    font-weight: 600;
  }
  
  .club-screen > div > .inner > div {
    font-size: 1.2rem !important;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .club-screen > div > .inner > div > li {
    font-size: 0.95rem !important;
    line-height: 1.8;
    margin-bottom: 12px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #1777ea;
    list-style: none;
  }
  
  .club-screen > div > .inner > div > li b {
    color: #1777ea;
    font-weight: 600;
  }
  
  /* 团队信息 - 移动端样式 */
  .club-screen > .information {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    margin-bottom: 30px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > .information > .inner {
    width: 100%;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > .information > .inner > div {
    width: 100%;
    max-width: 100% !important;
    background-color: #ffffff;
    padding: 0;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > .information > .inner > div > img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover;
    object-position: top center;
    margin: 0 !important;
    border-radius: 8px 8px 0 0;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > .information > .inner > div > div:nth-child(1) {
    font-size: 1.4rem !important;
    margin-bottom: 5px;
    padding: 20px 20px 5px 20px;
    color: #333;
    font-weight: 700;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .club-screen > .information > .inner > div > div:nth-child(2) {
    font-size: 0.9rem !important;
    line-height: 1.6;
    padding: 5px 20px 15px 20px;
    color: #666;
    font-weight: 500;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .club-screen > .information > .inner > div > div:nth-child(3) {
    font-size: 0.9rem !important;
    line-height: 1.8;
    padding: 10px 20px 20px 20px;
    color: #333;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .club-screen > .information > .inner > div:last-child {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    text-align: left !important;
    overflow: visible !important;
    overflow-x: hidden !important;
  }
  
  .club-screen > .information > .inner > div:last-child > div:nth-of-type(3) {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    color: #333 !important;
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    box-sizing: border-box !important;
  }
  
  .club-screen > .information > .inner > div:last-child > div:nth-of-type(3) p {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  .club-screen > .information > .inner > div:last-child > div:nth-of-type(3) > p {
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: justify;
    word-wrap: break-word;
    word-break: break-word;
    overflow: visible !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .club-screen > .information > .inner > div > div:nth-child(3) > p b {
    color: #1777ea;
    font-weight: 600;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }
  
  .club-screen > .information > .inner > div > div:nth-child(3) > b {
    color: #1777ea;
    font-weight: 600;
  }
  
  /* 合作伙伴屏 */
  .partner-screen {
    height: auto !important;
    padding: 40px 0 !important;
    overflow: hidden;
  }
  
  .partner-screen > .partner-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .partner-screen > .partner-inner > .title {
    font-size: 1.6rem !important;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .partner-screen > .partner-inner > .main {
    width: 100%;
    height: auto !important;
  }
  
  .partner-screen > .partner-inner > .main > .partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    padding: 10px 0;
  }
  
  .partner-screen > .partner-inner > .main > .partner-grid > .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .partner-screen > .partner-inner > .main > .partner-grid > .partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .partner-screen > .partner-inner > .main > .partner-grid img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }
}

/* 小屏幕设备 (横屏手机, 576px - 767.98px) */
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .container > .wrap {
    width: 100% !important;
  }
  
  .container > .header > .wrap {
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .first-screen > .first-inner {
    width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .first-screen > .first-inner > .right > .bg-image {
    width: 500px !important;
    height: 250px !important;
  }
  
  .second-screen > .second-inner {
    width: 100% !important;
    padding: 0 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 中等屏幕设备 (平板, 768px - 991.98px) */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .container > .wrap {
    width: 100% !important;
  }
  
  .container > .header > .wrap {
    width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .first-screen > .first-inner {
    width: 100% !important;
    padding: 0 30px;
    box-sizing: border-box;
  }
  
  .first-screen > .first-inner > .right > .bg-image {
    width: 550px !important;
    height: 275px !important;
  }
  
  .second-screen > .second-inner {
    width: 100% !important;
    padding: 0 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 大屏幕设备 (平板横屏, 992px - 1199.98px) */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .container > .wrap {
    width: 100% !important;
  }
  
  .container > .header > .wrap {
    width: 100% !important;
    padding: 0 30px;
    box-sizing: border-box;
  }
  
  .first-screen > .first-inner {
    width: 100% !important;
    padding: 0 40px;
    box-sizing: border-box;
  }
  
  .second-screen > .second-inner {
    width: 100% !important;
    padding: 0 40px;
  }
}

/* 超大屏幕设备 (桌面, >= 1200px) */
@media screen and (min-width: 1200px) {
  .container > .wrap {
    width: 100% !important;
  }
  
  .container > .header > .wrap {
    width: 1280px !important;
  }
  
  .first-screen > .first-inner {
    width: 1280px !important;
  }
  
  .second-screen > .second-inner {
    max-width: 1200px !important;
  }
  
  .third-screen > .third-inner {
    width: 1280px !important;
  }
  
  .fourth-screen > .fourth-inner {
    width: 1280px !important;
  }
  
  .fifth-screen > .fifth-inner {
    width: 1280px !important;
  }
  
  .sixth-screen > .sixth-inner {
    width: 1280px !important;
  }
}
