/* 移动端适配样式 */

/* 基础移动端适配 */
@media screen and (max-width: 768px) {
  /* 重写clearfix，避免干扰flexbox布局 */
  .header.clearfix::after,
  .header .header-sidebar ul.clearfix::after {
    display: none;
  }
  
  .header.clearfix,
  .header .header-sidebar ul.clearfix {
    overflow: visible;
  }
  
  body {
    font-size: 12px;
    overflow-x: hidden;
  }
  
  /* 头部适配 */
  .header {
    height: auto;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 8px 0;
    position: relative;
    min-height: 50px;
    overflow: hidden;
  }
  
  .header .wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    height: auto;
    padding: 8px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
  }
  
  .header .wrap .logo {
    width: 150px;
    height: 46px;
    float: none;
    margin: 0;
    display: none;
  }
  
  /* 移动端header-content容器 */
  .header .header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    gap: 8px;
    min-height: 40px;
    overflow: hidden;
    flex: none !important;
  }
  
  /* 语言选择器移动端适配 */
  .language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    min-width: 75px;
    max-width: 75px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 12px;
    align-self: center;
    height: fit-content;
    position: relative;
  }
  
  .language-selector .lang-btn {
    font-size: 11px;
    padding: 1px 3px;
  }
  
  .language-selector .lang-separator {
    margin: 0 1px;
    font-size: 10px;
  }
  
  .header .header-sidebar {
    display: flex;
    justify-content: flex-start;
    overflow: visible;
    white-space: normal;
    padding: 0;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 83px);
    min-height: auto;
    align-items: center;
  }
  
  /* 隐藏滚动条 */
  .header .header-sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .header .header-sidebar ul {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3px 4px;
    align-content: flex-start;
    line-height: 1.2;
    flex-direction: row !important;
  }
  
  .header .header-sidebar ul li {
    margin: 0 !important;
    line-height: 1.2;
    flex-shrink: 0;
    float: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    height: auto !important;
  }
  
  .header .header-sidebar ul li a {
    font-size: 12px;
    padding: 4px 6px;
    white-space: nowrap;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
    min-height: 28px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .header .header-sidebar ul li a:hover {
    color: #EDCC8C;
  }
  
  /* Banner适配 */
  .pc-banner {
    min-width: 100%;
    margin-bottom: 0px;
  }
  
  .pc-banner .swiper-container {
    margin: 10px 0;
  }
  
  .pc-banner .swiper-container .swiper-wrapper {
    padding-bottom: 0;
  }
  
  .pc-banner .swiper-pagination {
    margin-bottom: 0;
    bottom: 40px;
  }
  
  .pc-banner .button {
    width: 90%;
    margin-left: -45%;
  }
  
  .pc-banner .swiper-button-prev,
  .pc-banner .swiper-button-next {
    width: 30px;
    height: 45px;
    background-size: 20px 36px;
  }
  
  /* 主容器适配 */
  .wrap_box {
    min-width: 100%;
    overflow-x: hidden;
  }
  
  /* Part1 关于我们 */
  .wrap_box .part1 {
    height: auto;
    padding: 30px 0;
  }
  
  .wrap_box .part1 .p1-group1 {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part1 .p1-group1 .box-l {
    width: 100%;
    margin-bottom: 20px;
    object-fit: contain;
  }
  
  .wrap_box .part1 .p1-group1 .box-r {
    width: 100%;
    padding-left: 0;
  }
  
  .wrap_box .part1 .p1-group1 .info {
    font-size: 32px;
    line-height: 40px;
    width: 100%;
    text-align: center;
  }
  
  .wrap_box .part1 .p1-group1 .info2 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
  }
  
  .wrap_box .part1 .p1-group1 .info-box {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    text-indent: 0;
    margin-top: 15px;
    text-align: justify;
  }
  
  /* Part2 企业文化 */
  .wrap_box .part2 {
    height: auto;
    padding: 40px 0;
  }
  
  .wrap_box .part2 .p2-con {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part2 .p2-con .p2-title {
    margin: 20px auto 0;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  
  .wrap_box .part2 .p2-con .p2-title2 {
    margin: 10px auto;
    font-size: 18px;
    line-height: 24px;
    justify-content: center;
  }
  
  /* 企业文化整体容器 */
  .wrap_box .part2 .p2-con .p2-group1 {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
  }
  
  /* 每个文化项目的容器 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 0 0 110px;
  }
  
  /* 主标题样式 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .main-title {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #ffc45b;
    text-align: center;
    height: 40px;
  }
  
  /* 副标题样式 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #ffc45b;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  /* 移动端副标题内的span样式 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    flex-shrink: 0;
  }
  
  /* 移动端韩语优化 */
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    font-size: 14px;
    line-height: 20px;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 14px;
    line-height: 20px;
  }
  
  /* 隐藏原来的 p2-group2，因为内容已经整合到 p2-group1 中 */
  .wrap_box .part2 .p2-con .p2-group2 {
    display: none;
  }
  
  /* Part3 专业团队 */
  .wrap_box .part3 {
    width: 100%;
    margin: 40px auto 60px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part3 .p3-con {
    width: 100%;
    height: auto;
  }
  
  .wrap_box .part3 .p3-con .p3-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .wrap_box .part3 .p3-con .p3-title2 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .wrap_box .part3 .p3-con .p3-pic {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  /* Part4 品牌项目 */
  .wrap_box .part4 {
    height: auto;
    padding: 40px 0;
  }
  
  .wrap_box .part4 .p4-con .p4-title {
    margin: 20px auto 0;
    font-size: 32px;
    line-height: 40px;
  }
  
  .wrap_box .part4 .p4-con .p4-title2 {
    margin: 10px auto;
    font-size: 18px;
    line-height: 24px;
  }
  
  .wrap_box .part4 .p4-con .p4-group {
    width: 100%;
    margin: 30px auto 0;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part4 .p4-con .p4-group .p4-pic {
    width: calc(50% - 10px);
    height: auto;
    margin-bottom: 10px;
  }
  
  .wrap_box .part4 .p4-con .p4-group .p4-pic img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  
  .wrap_box .part4 .p4-con .p4-group .p4-pic span {
    font-size: 14px;
    line-height: 1.4;
    max-width: 100%;
  }
  
  /* Part5-1 案例展示 */
  .wrap_box .part5-1 {
    padding: 40px 0;
  }
  
  .wrap_box .part5-1 .title p {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 15px;
  }
  
  .wrap_box .part5-1 .subtitle {
    width: 95%;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part5-1 .img-content {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  /* Part6-1 案例概况轮播 */
  .part6-1-inner {
    height: auto;
    flex-direction: column;
    padding: 40px 15px;
    background-size: cover;
  }
  
  .part6-1-left {
    flex: none;
    margin: 0 0 30px 0;
    align-items: center;
    text-align: center;
  }
  
  .p6-1-title {
    font-size: 32px;
  }
  
  .p6-1-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  
  .part6-1-carousel {
    flex: none;
    margin: 0;
    width: 100%;
  }
  
  .carousel-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
  }
  
  .carousel-arrow {
    width: 20px;
    height: 36px;
  }
  
  .carousel-arrow-left {
    left: -30px;
  }
  
  .carousel-arrow-right {
    right: -30px;
  }
  
  .carousel-arrow img {
    width: 20px;
    height: 36px;
  }
  
  /* Part6 资源优势 */
  .wrap_box .part6 {
    margin-bottom: 40px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part6 .p6-con {
    width: 100%;
    text-align: center;
  }
  
  .wrap_box .part6 .p6-con .p6-title {
    width: 100%;
    font-size: 32px;
    line-height: 40px;
  }
  
  .wrap_box .part6 .p6-con .p6-title2 {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  
  .wrap_box .part6 .p6-con .p6-asia {
    width: 100%;
    margin: 30px auto;
    flex-direction: column;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-left {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-left img {
    width: 100%;
    height: auto;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-right {
    padding: 0;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-right-title {
    font-size: 24px;
    text-align: center;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-right-subtitle {
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
  }
  
  .wrap_box .part6 .p6-con .p6-asia .p6-asia-right-content {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .wrap_box .part6 .p6-con .p6-platform .p6-title3 {
    font-size: 24px;
    line-height: 32px;
    white-space: normal;
    height: 32px;
  }
  
  .wrap_box .part6 .p6-con .p6-platform .p6-txt {
    font-size: 14px;
    line-height: 1.6;
    margin: 20px auto 0;
    white-space: normal;
    padding: 0 10px;
  }
  
  /* 资源图片区域 */
  .wrap_box .part6 .p6-con2 {
    margin: 50px 0 0 0;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box1,
  .wrap_box .part6 .p6-con2 .resource .resourse-box2,
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 {
    flex-direction: column;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 .box1,
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 .box2,
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 .box3 {
    width: 100%;
    margin: 10px 0;
    height: auto;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 .box1 {
    height: 300px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box1 .box1 img,
  .wrap_box .part6 .p6-con2 .resource .resourse-box2 img,
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 img {
    width: 100%;
    height: auto;
  }
  
  /* 移动端 resourse-box3 特殊布局 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: static;
    margin-top: 20px;
  }
  
  /* box1 - U型虚拟演播室 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box1 {
    width: 100%;
    position: relative;
    order: 1;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box1 .img-box {
    width: 100%;
    position: relative;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box1 .title_box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
  }
  
  /* box2 - 两个小图的容器 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box2 {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 0;
    order: 2;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box2 .img-box {
    flex: 1;
    margin: 0;
  }
  
  /* box3 - 右侧大图，在移动端换行显示并占满宽度 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box3 {
    width: 100%;
    height: 100%;
    position: static;
    margin: 0;
    order: 3;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box3 .img-box {
    width: 100%;
    position: relative;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box3 .title_box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
  }

  .wrap_box .part6 .p6-con2 .resource .resourse-box2 .box4 .title_box {
    left: 5px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .title_box h3 {
    font-size: 24px;
  }
  .wrap_box .part6 .p6-con2 .resource .title_box p {
    font-size: 14px;
  }
  .wrap_box .part6 .p6-con2 .resource .title_box .virtual-desc {
    font-size: 14px;
  }
  
  /* Part7 场地资源 */
  .wrap_box .part7 .p7-con {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part7 .p7-title {
    font-size: 32px;
    white-space: normal;
  }
  
  .wrap_box .part7 .p7-title2 {
    font-size: 18px;
  }
  
  .wrap_box .part7 .p7-con .resource_left {
    width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  .wrap_box .part7 .p7-con .resource_left img {
    width: 100%;
    height: auto;
  }
  
  .wrap_box .part7 .p7-con .resource_right {
    width: 100%;
    margin-left: 0;
  }
  
  .wrap_box .part7 .p7-con .resource_right dl {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .wrap_box .part7 .p7-con .resource_right dl dt {
    font-size: 20px;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  
  .wrap_box .part7 .p7-con .resource_right dl dd {
    width: 100%;
    padding-left: 0;
  }
  
  .wrap_box .part7 .p7-con .resource_right dl dd p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .wrap_box .part7 .p7-con .resource_box2,
  .wrap_box .part7 .p7-con .resource_box3 {
    margin: 20px 0;
    position: static;
  }
  
  .wrap_box .part7 .p7-con .resource_box2 img,
  .wrap_box .part7 .p7-con .resource_box3 .main_pic {
    position: static;
    width: 100%;
    height: auto;
  }
  
  /* 合作伙伴 */
  .wrap_box .part7 .footer_partner .wrap1 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .wrap_box .part7 .footer_partner .wrap1 .partner-title {
    font-size: 32px;
    white-space: normal;
  }
  
  .wrap_box .part7 .footer_partner .wrap1 .partner-title2 {
    font-size: 18px;
  }
  
  .wrap_box .part7 .footer_partner ul li {
    width: calc(50% - 20px);
    height: auto;
    margin: 5px 10px;
  }
  
  .wrap_box .part7 .footer_partner ul li img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
  }
  
  /* Footer */
  .footer {
    height: auto;
    padding: 20px 0;
  }
  
  .footer .footer_top {
    flex-direction: column;
  }
  
  .footer .footer_box {
    width: 100%;
    margin: 10px 0;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .footer .footer_box > a {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .footer .footer_box > a i {
    margin-right: 8px;
  }
  
  .footer .footer_bottom p {
    font-size: 12px;
    padding: 0 15px;
    line-height: 1.6;
  }
  
  /* 回到顶部按钮 */
  .backTop {
    right: 15px;
    bottom: 30px;
  }
  
  .backTop ul li.top2 {
    width: 40px;
    height: 40px;
  }
}

/* 超小屏幕适配 (小于480px) */
@media screen and (max-width: 480px) {
  .header .header-sidebar ul li {
    margin: 0;
  }
  
  .header .header-sidebar ul li a {
    font-size: 11px;
    padding: 4px 6px;
    min-height: 28px;
  }
  
  .header .header-sidebar ul {
    gap: 3px 4px;
  }
  
  .language-selector {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    font-size: 10px;
    padding: 5px 6px;
  }
  
  .header .header-sidebar {
    max-width: calc(100% - 90px) !important;
  }
  
  .wrap_box .part1 .p1-group1 .info {
    font-size: 28px;
    line-height: 36px;
  }
  
  .wrap_box .part2 .p2-con .p2-title,
  .wrap_box .part3 .p3-con .p3-title,
  .wrap_box .part4 .p4-con .p4-title,
  .wrap_box .part6 .p6-con .p6-title,
  .wrap_box .part7 .p7-title,
  .wrap_box .part7 .footer_partner .wrap1 .partner-title,
  .p6-1-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  /* 超小屏幕企业文化适配 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .main-title {
    font-size: 20px;
    line-height: 28px;
    color: #EDCC8C;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    font-size: 14px;
    line-height: 20px;
    color: #EDCC8C;
    gap: 10px;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 14px;
    line-height: 20px;
  }
  
  /* 超小屏幕韩语优化 */
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    font-size: 12px;
    line-height: 18px;
    gap: 6px;
  }
  
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 12px;
    line-height: 18px;
  }
  
  /* 极小屏幕韩语优化 */
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    font-size: 11px;
    line-height: 16px;
    gap: 4px;
  }
  
  html[lang="ko"] .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 11px;
    line-height: 16px;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 {
    gap: 25px;
  }
  
  .wrap_box .part4 .p4-con .p4-group .p4-pic {
    width: 100%;
  }
  
  /* 超小屏幕 resourse-box3 优化 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 {
    gap: 15px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box2 {
    gap: 8px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box1 .title_box,
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box3 .title_box {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  
  .carousel-arrow-left {
    left: -25px;
  }
  
  .carousel-arrow-right {
    right: -25px;
  }
}

/* 横屏适配 */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .header {
    height: auto;
    padding: 4px 0;
    min-height: 40px;
  }
  
  .header .wrap {
    padding: 4px 15px;
  }
  
  .header .wrap .logo {
    width: 120px;
    height: 36px;
    margin-bottom: 5px;
    display: none;
  }
  
  .header .header-sidebar ul li a {
    font-size: 12px;
    padding: 4px 8px;
    min-height: 28px;
  }
  
  .header .header-sidebar ul {
    gap: 2px 6px;
  }
  
  .language-selector {
    width: 75px;
    font-size: 11px;
    padding: 4px 6px;
  }
  
  .pc-banner {
    margin-bottom: 20px;
  }
  
  .wrap_box .part1,
  .wrap_box .part2,
  .wrap_box .part3,
  .wrap_box .part4,
  .wrap_box .part5-1 {
    padding: 20px 0;
  }
  
  .part6-1-inner {
    padding: 20px 15px;
  }
}

/* 触摸优化 */
@media screen and (max-width: 768px) {
  /* 增大触摸目标 */
  .header .header-sidebar ul li a,
  .language-selector .lang-btn,
  .backTop ul li,
  .carousel-arrow,
  .carousel-play-btn {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .backTop ul li,
  .carousel-arrow,
  .carousel-play-btn {
    min-width: 44px;
    min-height: 44px;
  }
  
  /* 触摸反馈 */
  .header .header-sidebar ul li a:active,
  .language-selector .lang-btn:active,
  .backTop ul li:active,
  .carousel-arrow:active,
  .carousel-play-btn:active {
    background-color: rgba(174, 15, 16, 0.1);
    transform: scale(0.95);
    transition: all 0.1s ease;
  }
  
  /* 禁用文本选择 */
  .header,
  .pc-banner,
  .carousel-container,
  .p4-group,
  .footer_partner ul {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  
  /* 优化滚动性能 */
  .header .header-sidebar {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* 防止双击缩放 */
  .carousel-container,
  .pc-banner .swiper-container {
    touch-action: pan-y pinch-zoom;
  }
  
  /* 视频播放优化 */
  .carousel-video-modal video {
    -webkit-playsinline: true;
    playsinline: true;
  }
  
  /* 图片加载优化 */
  img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  
  /* 动画性能优化 */
  .swiper-slide,
  .carousel-slide,
  .p4-pic,
  .backTop ul li {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }
  
  /* 字体渲染优化 */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* 高分辨率屏幕优化 */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  /* 高清图片适配 */
  .header .wrap .logo {
    background-image: url(../images/logo@3x.png);
    display: none;
  }
  
  .pc-banner .swiper-button-prev {
    background-image: url(../images/icon/icon_arrow_l@3x.png);
  }
  
  .pc-banner .swiper-button-next {
    background-image: url(../images/icon/icon_arrow_r@3x.png);
  }
}

/* 可访问性优化 */
@media screen and (max-width: 768px) {
  /* 焦点指示器 */
  .header .header-sidebar ul li a:focus,
  .language-selector .lang-btn:focus,
  .carousel-arrow:focus,
  .carousel-play-btn:focus {
    outline: 2px solid #AE0F10;
    outline-offset: 2px;
  }
  
  /* 减少动画（用户偏好） */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    
    .swiper-container {
      scroll-behavior: auto;
    }
  }
}

/* 极小屏幕优化 (小于360px) */
@media screen and (max-width: 360px) {
  .header .header-sidebar ul li {
    margin: 0;
  }
  
  .header .header-sidebar ul li a {
    font-size: 11px;
    padding: 4px 6px;
    min-height: 28px;
  }
  
  .header .header-sidebar ul {
    gap: 2px 4px;
  }
  
  .language-selector {
    width: 75px !important;
    min-width: 75px !important;
    max-width: 75px !important;
    font-size: 10px;
    padding: 4px 5px;
  }
  
  .header .header-sidebar {
    max-width: calc(100% - 85px) !important;
  }
  
  .wrap_box .part1 .p1-group1 .info {
    font-size: 24px;
    line-height: 32px;
  }
  
  .wrap_box .part2 .p2-con .p2-title,
  .wrap_box .part3 .p3-con .p3-title,
  .wrap_box .part4 .p4-con .p4-title,
  .wrap_box .part6 .p6-con .p6-title,
  .wrap_box .part7 .p7-title,
  .wrap_box .part7 .footer_partner .wrap1 .partner-title,
  .p6-1-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  /* 极小屏幕企业文化适配 */
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .main-title {
    font-size: 18px;
    line-height: 24px;
    color: #EDCC8C;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title {
    font-size: 12px;
    line-height: 18px;
    color: #EDCC8C;
    gap: 8px;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 .culture-item .sub-title span {
    font-size: 12px;
    line-height: 18px;
  }
  
  .wrap_box .part2 .p2-con .p2-group1 {
    gap: 20px;
  }
  
  /* 极小屏幕 resourse-box3 优化 */
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 {
    gap: 12px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box2 {
    gap: 6px;
  }
  
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box1 .title_box,
  .wrap_box .part6 .p6-con2 .resource .resourse-box3 .box3 .title_box {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .carousel-container {
    max-width: 300px;
  }
  
  .carousel-arrow-left {
    left: -20px;
  }
  
  .carousel-arrow-right {
    right: -20px;
  }
}

/* 调试样式已移除 - 布局问题已解决 */ 