a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:visited,
a:active {
    text-decoration: none;
    color: inherit;
}



html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /* background: linear-gradient(to bottom, #16b08b 1%, #53c8c1 10%, #cbe4f1 33%); */
    /* 禁止文字选择器和选中蓝色效果 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* 确保所有元素都禁止选择和选中效果 */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* 禁止选中时的背景色 */
*::selection {
    background-color: transparent;
    color: inherit;
}

*::-moz-selection {
    background-color: transparent;
    color: inherit;
}

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00ac89;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-progress {
    height: 100%;
    background-color: #ffde6b;
    width: 0%;
    transition: width 0.3s ease;
}

#loading-percentage {
    color: white;
    font-size: 14px;
    margin-top: 10px;
}

.enter-box {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #9deef2b5 19%, #00ac89bd 63%);
    text-align: center;
    z-index: 5;
}

.video-box {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 6;
    backdrop-filter: blur(5px);
    /* 添加毛玻璃效果 */
    -webkit-backdrop-filter: blur(5px);
    /* 兼容 Safari 浏览器 */
}

.video-btn-G {
    position: absolute;
    z-index: 2;
    /* top: 50%; */
    top: 5%;
    /* transform: translateY(-50%); */
    /* margin-top: -21%; */
    right: 2%;
    width: 130px;
    height: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-btn-G >div {
    min-height: 40px;
    margin: 5px 0;
}
.video-box .video-btn {
    width: 100%;
    border: 2px solid #fff;
    background-color: #00000057;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 10px 4px #ffffff6b;
    flex-direction: row-reverse;
}

.video-box .video-btn {
    transition: background-color 0.3s ease;
    /* 添加缓动动画，实现淡入淡出效果 */
}

.video-box .video-btn:hover {
    background-color: #c4c4c457;
}

.video-box .video-icon {
    width: 22px;
    height: 22px;
    margin: 2px 0 0 4px;
    background-image: url(../img/skip.png);
    background-size: contain;
}

.video-box .video-text {
    font-size: 16px;
}

.video-sound {
    width: 100%;
    border: 2px solid #fff;
    background-color: #00000057;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 0 10px 4px #ffffff6b;
    flex-direction: row-reverse;
}

.video-sound {
    transition: background-color 0.3s ease;
    /* 添加缓动动画，实现淡入淡出效果 */
}

.video-sound:hover {
    background-color: #c4c4c457;
}

.video-sound .sound-icon {
    width: 22px;
    height: 22px;
    margin: 2px 0 0 4px;
    background-image: url(../img/sound_m.png);
    background-size: contain;
}

.video-sound .sound-text {
    font-size: 16px;
}

.video-box video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.enter-con {
    width: 50%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: #002e33 0px 2px 4px;
}

.enter-con h3 {
    font-size: 4vmin;
}

.enter-con p {
    font-size: 1.5rem;
    line-height: 2.7rem;
}

.enter {
    position: absolute;
    background-image: url(../img/1-button.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12rem;
    height: 3rem;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #085172;
    transition: all .5s;
    cursor: pointer;
    z-index: 2;
}

.enter:hover {
    color: #0889c3;
    text-shadow: #0851726b 0 0 4px;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}


.popup-content {
    width: 28%;
    max-width: 600px;
    min-width: 340px;
    height: 91%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.search-box {
    position: absolute;
    /* top: 5%; */
    right: 20%;
    height: 36px;
    border: 1px solid #e7e6e6;
    border-radius: 18px;
    overflow: hidden;
    z-index: 4;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 170px;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #fff;
}

.search-icon {
    background-color: #00ac89b3;
}

.search-box img {
    width: 24px;
    height: 24px;
    margin: 6px 10px;
    cursor: pointer;
    vertical-align: middle;
}
               
#popupIframe {
    background-color: white;
    width: 100%;
    height: calc(100% - 60px);
    margin-bottom: 20px;
    border-radius: 6px;
}

.close-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.close-btn svg {
    width: 100%;
    height: 100%;

}

.container {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, #16b08b 1%, #53c8c1 10%, #cbe4f1 33%); */
}

.header {
    width: 100%;
    height: 12%;
    position: absolute;
    z-index: 3;
    background: url(../img/1-top.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
}

.title {
    width: 45%;
    height: 100%;
    position: absolute;
    left: 4%;
    /* top: 17%; */
    display: flex;
    align-items: center;
}

.title img {
    margin-right: 10px;
}

.title img:nth-child(1) {
    max-width: 239px;
    width: 73%;
}

.title img:nth-child(2) {
    max-width: 394px;
    width: 75%;
    margin-top: 1%;
}

.bottom {
    width: 100%;
    height: 16%;
    position: absolute;
    bottom: 0;
    /* 为确保背景图显示，添加背景重复、位置和尺寸属性 */
    overflow: hidden;
    z-index: 2;
}

.bottomMsg {
    position: fixed;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 1%;
}

.bottomMsg p {
    margin: 0;
    font-size: 12px;
    color: #b2fbf2;
}

.bottom img {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.bottom img:nth-child(1) {
    width: auto;
    height: 26%;
    right: 0;
    position: fixed;
}

.bottom img:nth-child(2) {
    width: 100%;
    min-width: 1300px;
    height: 100%;
}

.bottom img:nth-child(3) {
    height: 100%;
}

.bottom img:nth-child(4) {
    height: 20%;
    width: auto;
    position: fixed;
}

.bottom img:nth-child(5) {
    width: auto;
    height: 62%;
    left: 9%;
}

.bottom img:nth-child(6) {
    display: none;
}

.content {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    /* z-index: 4; */
}

.content-left {
    width: 16%;
    height: 23rem;
    background-color: #229d99;
    border-radius: 45px 0;
    box-shadow: 0px 0px 0px 1px #49e9e3e6;
    position: absolute;
    top: 26%;
    left: 3%;
    display: flex;
    align-items: center;
    padding: 1% 1% 1% 0;
    z-index: 4;
}

.content-left-title {
    flex: .15;
    font-size: 1.1rem;
    color: #ffde6b;
    display: flex;
    justify-content: center;
}

.content-left-title h3 {
    margin: 0;
    width: 1.1rem;
}

.content-left img {
    margin: 0 4% 0 0;
}

.content-left-list {
    flex: .8;
    color: #fff;
}

.content-list-item {}

.content-list-item h4 {
    font-size: .96rem;
    font-weight: normal;
    margin: 0;
    line-height: 1.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-list-item p {
    margin: .34rem 0 0 0;
    font-size: .8rem;
    line-height: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-left-list img {
    width: 100%;
    height: 3px;
}

.content-left-list img:last-child {
    display: none;
}

.content-right {
    left: unset;
    right: 3%;
    z-index: 5;
}

.content-right .content-list-item {
    width: 100%;
    height: 100%;
    margin: 10px 0;
    background-size: cover;
    background-position: center;
}

.content-right .content-list-box {
    width: 100%;
    height: 100%;
    padding: 1%;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #ffffff00 34%, #019089eb 80%);
    display: flex;
    align-items: flex-end;
}

.content-right .content-list-box h4 {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}

.content-right .swiper-slide {
    border-radius: 10px 10px;
    overflow: hidden;
    background-color: #fff;
}

.content-bottom {
    display: none !important;
    position: absolute;
    width: 65%;
    max-width: 960px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 7rem;
    bottom: 7%;
    background-image: url(../img/2-bottom-con-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 2px 1px #1dc1b3c4;
    border-radius: 45px 0;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 2%;
    z-index: 4;
}

.content-bottom div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.content-bottom div:nth-child(1) {
    flex: .45;
}

.content-bottom div:nth-child(1) h3 {
    color: #ffde6b;
    font-size: 1.3rem;
    /* padding: 0 7%; */
}

.content-bottom div:nth-child(1) img {
    margin: 0 3%;
}

.content-bottom div:nth-child(1) p {
    font-size: 1.3rem;
    display: none;
}

.content-bottom div:nth-child(1) span {
    font-size: 1rem;
}

.content-bottom div:nth-child(2) {
    flex: .55;
    margin: 0 1%;
}

.content-bottom div:nth-child(2) p{
    overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.map-box {
    position: absolute;
    width: 60%;
    height: 70%;
    top: 12%;
    left: 20%;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    /* background: #000; */
}

.map {
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* border-radius: 10px; */
    /* box-shadow: 0 0 110px rgba(29, 193, 179, 0.5); */
}

/* #map{    background: url(../img/sd.png) no-repeat;
    background-size: 91% 84%;
    background-position: 38% 50%;} */


.map-echarts-tooltip {
    display: none;
    border-radius: 30px 0 30px 0px !important;
    background: rgba(31, 152, 147, 0.9) !important;
    color: #fff !important;
    padding: 30px !important;
    min-width: 200px !important;
    box-shadow: 0 0 0 0 rgba(31, 152, 147, 0) !important;
    width: 40%;
    max-width: 400px;
}

.map-echarts-tooltip .logo {
    display: none;
}

.map-echarts-tooltip .name {
    font-weight: bold;
    margin-bottom: 8px;
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    background-image: linear-gradient(to right, rgba(16, 114, 113, 1), rgba(16, 114, 113, 0));
    border-radius: 15px;
}

.map-echarts-tooltip .desc {
    white-space: pre-wrap;
    word-break: break-all;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.map-echarts-tooltip .thumb{display: flex;justify-content: center;align-items: center;}
.map-echarts-tooltip .thumb img {
    width: calc(33% - 10px) !important;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    float: left;
}

.map-echarts-tooltip .thumb img:nth-child(2n) {
    /* margin-right: 0; */
}

.map-echarts-tooltip .thumb img:nth-child(3n) {
    margin-right: 0;
}

.map-echarts-tooltip .thumb img:nth-child(3n) {
    margin-right: 10px;
}

.map-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.map-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.map-bg img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90vh;
    height: 90vh;
    object-fit: contain;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#circle {
    animation: rotate 50s linear infinite;
}

.map-bg-color {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #16b08b 1%, #53c8c1 10%, #cbe4f100 33%);
}

.weatherBox {
    /* display: flex;
	align-items: center; */
    /* width: 189px; */
    /* height: 70%; */
    height: 100px;
    position: absolute;
    right: 4%;
    /* top: 17%; */
    display: none;
    /* 初始隐藏，等待天气数据加载完成后显示 */
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 14px;
}

/* 返回按钮样式 */
.return-button {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background: #229d99;
    border: 3px solid #15eafd73;
    border-radius: 25px;
    padding: 5px 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(21, 234, 253, 0.3);
}

.return-button:hover {
    background: #229d99;
    border-color: #23BCDE;
    box-shadow: 0 6px 20px rgba(21, 234, 253, 0.5);
    /* transform: translateY(-2px); */
}

.return-icon {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.return-text {
    font-size: 16px;
}

/* 返回按钮动画 */
.return-button.show {
    animation: slideInFromRight 0.4s ease-out;
}

.return-button.hide {
    animation: slideOutToRight 0.3s ease-in;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100px);
        opacity: 0;
    }
}

/* Swiper自定义样式 - 保持原有外观 */
.content-left-list.swiper-container {
    flex: .8;
    /* 保持原有的flex值 */
    color: #fff;
    /* 保持原有的颜色 */
    height: 90%;
    /* 设置固定高度以启用滚动 */
    /* overflow: hidden; */
}

.content-left-list .swiper-wrapper {
    height: 100%;
    /* 使wrapper填满容器 */
    flex-direction: column;
    /* 垂直排列 */
}

.content-left-list .swiper-slide {
    /* height: auto !important;  */
    flex-shrink: 0;
    /* 防止压缩 */
    width: 100% !important;
    /* 确保宽度 */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* 通用Swiper slide样式 - 被具体区域样式覆盖 */
.swiper-slide .content-list-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 通用图片样式 - 被具体区域样式覆盖 */
.swiper-slide img {
    width: 100%;
    height: 3px;
    margin: 0;
    display: block;
}

/* 媒体报道区域特定样式 */
#mediaSwiper {
    /* 继承content-left-list的样式 */
}

#mediaSwiper .swiper-slide {
    /* height: auto !important; */
    /* padding-bottom: 10px;  */
}

#mediaSwiper .swiper-slide .content-list-item {
    width: 100%;
    /* margin-bottom: 5px; */
    padding: 0;
}

#mediaSwiper .swiper-slide .content-list-item h4 {
    font-size: .96rem;
    margin: 0;
    line-height: 1.3rem;
    -webkit-line-clamp: 2;
    /* 恢复为2行显示 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    /* 确保文字颜色 */
}

#mediaSwiper .swiper-slide .content-list-item p {
    margin: .34rem 0 0 0;
    /* 恢复原有的margin */
    font-size: .8rem;
    line-height: 1rem;
    display: -webkit-box;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 恢复为3行显示 */
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    /* 保持原有颜色 */
}

#mediaSwiper .swiper-slide img {
    width: 100%;
    height: 3px;
    margin: 0;
    /* 移除额外margin */
    display: block;
    /* 确保图片正常显示 */
}

/* 企业推荐区域特定样式 */
#companySwiper {
    /* 继承content-left-list和content-right的原有样式 */
}

/* 隐藏滚动条 */
.swiper-container::-webkit-scrollbar {
    display: none;
}

.swiper-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.weatherBoxCard {
    width: 95%;
    height: 62%;
    flex: none;
    position: absolute;
    top: 19%;
    left: 5%;
    background: linear-gradient(to right, rgba(50, 213, 252, .7), rgb(26 135 255 / 76%));
    border-radius: 10px;
    z-index: -1;
}

.weatherPic {
    /* width: 48px; */
    height: 70%;
    margin-top: -15%;
}

.temp {
    font-size: 32px;
    /* font-weight: bold; */
    color: #fff;
    margin-right: 15px;
}

.weatherMsg {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weatherDetail {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.weatherCity {
    font-size: 18px;
    color: #fff;
}

.weatherInfo {
    font-size: 14px;
    color: #fff;
    margin-top: 0;
}

/* ========== 移动端Tab样式（默认隐藏） ========== */
.mobile-tab-container {
    display: none;
}


/* 中屏适配 */
@media screen and (max-width: 1350px) {
.weatherBox {
        display: none !important;
    }
}

/* 移动端强制横屏样式 */
@media screen and (max-width: 1024px) {

    /* 适配 */
    /* .video-btn-G {
        height:20%;
        top: 55%;
        width: 120px;
    } */
    .enter-con {
        width:60%;
        top: 42%;
    }
    .enter-con h3 {
        font-size: 1.8rem;
    }
    .enter-con p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .enter {
        width:10rem;
    }
    .title{
        width: 22%;
    }
    .title img:nth-child(2) {
        width: 90%;
    }
    .content-left {
        width: 16%;
        height: 70%;
        top: 17%;
        left: 2%;
        border-radius: 22px 0;
    }
    .content-right {
        left:unset;
        right:2%;
    }
    .content-left-title {
        font-size:.9rem;
    }
    .content-left-title h3 {
        margin: 0 2px;
    }
    #mediaSwiper .swiper-slide .content-list-item h4,
    .content-list-item h4 {
        font-size: .8rem;
    }
    .map-box {
        width: 64%;
        height: 74%;
        top: 13%;
        left: 18%;
    }
    .return-button {
        right: -15%;
        bottom: 7%;
    }
    .map-echarts-tooltip .logo {
        display:none;
    }
    .popup-content {
        display: flex;
        width: 60%;
        min-width: 340px;
        height: 90%;
        position: relative;
    }
    #popupIframe {
        background-color: white;
        width: 100%;
        height: 92%;
        margin-bottom: 0;
    }
    .close-btn {
        /* position: absolute; */
        width: 40px;
        height: 40px;
        margin: 10px 0 0 0;
    }
    .bottomMsg {
        bottom:2%;
    }
    .bottomMsg p {
        font-size:8px;
    }
}


/* ========== 移动端适配 ========== */
@media screen and (max-width: 768px) {

    /* 基础布局调整 */
    html,
    body {
        overflow-x: hidden;
        font-size: 14px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .popup-content {
        height: 92%;
    }
    .search-box {
        position: fixed;
        background-color: #fffffff5;
        right: auto;
    }
    /* 移动端显示Tab容器 */
    .mobile-tab-container {
        display: block !important;
        position: absolute;
        left: 13%;
        bottom: 2%;
        width: 74%;
        height: 38%;
        max-height: 270px;
        z-index: 10;
        /* border-radius: 10px; */
        overflow: hidden;
        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
    }

    .mobile-tab-header {
        display: flex;
        justify-content: flex-start;
        background: #0A697D;
        border-radius: 14px 0;
        /* border-bottom: 2px solid rgba(35, 188, 222, 0.5); */
        padding-left: 0;
        width: 217px;
        margin-left: 28px;
        overflow: hidden;
    }

    .mobile-tab-item {
        flex: none;
        width: auto;
        min-width: 60px;
        padding: 4px 12px;
        text-align: center;
        color: #fff;
        background: transparent;
        /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        font-weight: normal;
        position: relative;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        flex: auto;
    }

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

    .mobile-tab-item.active {
        background: #0EA8AA;
        color: #fff;
        font-weight: normal;
        border-radius: 14px 0;
    }

    .mobile-tab-item.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        /* background: #23BCDE; */
        border-radius: 2px 2px 0 0;
    }

    .mobile-tab-content {
        position: relative;
        height: calc(100% - 40px);
        /* 使用与.content-left相同的样式 */
        background-color: rgba(10, 105, 125, 0.8);
        border-radius: 30px 0;
        /* box-shadow: 0px 0px 0px 1px #49e9e3e6; */
        display: flex;
        align-items: center;
        padding: 0;
    }

    .mobile-tab-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* opacity: 0; */
        visibility: hidden;
        transition: all 0.3s ease;
        /* 与.content-left布局一致 */
        display: flex;
        align-items: center;
        padding: 1% 1% 1% 0;
    }

    .mobile-tab-panel.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-tab-panel img {
        /* 与.content-left img相同的样式 */
        margin: 0 4% 0 0;
        flex-shrink: 0;
        display: none;
    }

    .mobile-tab-panel .content-left-list {
        /* 与.content-left-list完全一致的样式 */
        flex: 0.8;
        color: #fff;
        display: flex;
        flex-direction: column;
    }

    /* 移动端媒体报道swiper样式 - 完全使用桌面端样式 */
    #mobileMediaSwiper .swiper-slide {
        flex-shrink: 0;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #mobileMediaSwiper .swiper-slide .content-list-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #mobileMediaSwiper .swiper-slide .content-list-item h4 {
        font-size: 1.1rem;
        margin: 0;
        line-height: 1.4rem;
        /* height: 3rem; */
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
        font-weight: normal;
    }

    #mobileMediaSwiper .swiper-slide .content-list-item p {
        margin: .34rem 0 0 0;
        font-size: .8rem;
        line-height: 16px;
        display: -webkit-box;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
    }

    #mobileMediaSwiper .swiper-slide img {
        width: 120%;
        height: 3px;
        margin: 5px 0 0 -10%;
        display: block;
    }

    /* 移动端企业推荐swiper样式 - 完全使用桌面端样式 */
    #mobileCompanySwiper .swiper-slide {
        flex-shrink: 0;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 10px 10px;
        overflow: hidden;
        background-color: #fff;
    }

    #mobileCompanySwiper .swiper-slide .content-list-item {
        width: 100%;
        height: 100%;
        margin: 0;
        /* border-radius: 8px; */
        background-size: cover;
        background-position: center;
    }

    #mobileCompanySwiper .content-list-box {
        width: 100%;
        height: 100%;
        padding: 1%;
        box-sizing: border-box;
        background: linear-gradient(to bottom, #ffffff00 34%, #019089eb 80%);
        display: flex;
        align-items: flex-end;
    }

    #mobileCompanySwiper .content-list-box h4 {
        margin: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
        padding: 0 4px;
    }

    /* 移动端隐藏桌面端的左右布局 */
    .content-left,
    .content-right {
        display: none !important;
    }

    /* 优化触摸体验 */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
    }

    /* 按钮触摸优化 */
    .enter {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .return-button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* 标题区域移动端适配 */
    .header {
        height: 36%;
        background: url(../img/1-top-m.png) no-repeat;
        background-size: cover;
        background-position: bottom;
        justify-content: center;
    }

    .title {
        width: 64%;
        display: flex;
        flex-direction: column;
        left: 18%;
        top: 11%;
        height: auto;
    }

    .title img {
        width: 100%;
        /* max-width: 300px; */
        /* margin-top: 5%; */
        margin-right: 0;
    }

    /* 天气组件移动端适配 */
    .weatherBox {
        display: none !important;
    }

    .weatherBoxCard {
        width: 100%;
        height: 60%;
    }

    .temp {
        font-size: 32px;
        margin-right: 8px;
    }

    .weatherCity {
        font-size: 16px;
    }

    .weatherInfo {
        font-size: 14px;
    }

    /* 底部图片移动端适配 */
    .bottom {
        height: 55%;
        width: 100%;
        background: linear-gradient(to top, #1a73c1 10%, #53b2c8 27%, #cbe4f100 48%);
    }

    .bottomMsg {
        display: none;
    }

    .bottom img:nth-child(1) {
        display: block;
        height: auto;
        width: 25%;
        bottom: 27%;
    }

    .bottom img:nth-child(2) {
        display: none;
        min-width: 100%;
    }

    .bottom img:nth-child(3) {
        display: none;
        min-width: 100%;
    }

    .bottom img:nth-child(4) {
        display: block;
        height: auto;
        width: 150%;
        bottom: 32%;
    }

    .bottom img:nth-child(5) {
        display: none;
    }

    .bottom img:nth-child(6) {
        display: block;
        height: auto;
        width: 100%;
        top: 0;
        bottom: unset;
    }

    /* 进入页面移动端适配 */
    .video-box {
        position: absolute;
        top: 12%;
        width: 100%;
        height: auto;
        z-index: 6;
    }

    .video-btn-G {
        margin-top: 3% !important;
        height: 35px !important;
        width: 100px;
        right: 8%;
        top: unset !important;
        transform: unset !important;
    }

    .video-box .video-btn {
        display: none;
    }

    .video-box video {
        position: absolute;
        top: 0;
        left: 5%;
        min-width: unset;
        min-height: unset;
        width: 90%;
        /* 根据16:9宽高比计算，(9/16)*100%=56.25%，此处宽度为90%，所以实际为 90% * 56.25% = 50.625% */
        transform: unset;
        box-shadow: 0 0 0px 2px #fff;
        border-radius: 6px;
    }

    .video-sound {
        height: 100%;
        min-height: 32px !important;
    }

    .video-sound .sound-icon {
        width: 17px;
        height: 17px;
        margin: 1px 0 0 4px;
        background-image: url(../img/sound_m.png);
        background-size: contain;
    }

    .video-sound .sound-text {
        font-size: 12px;
    }

    .enter-con {
        width: 90%;
        padding: 0 20px;
        top: 52%;
    }

    .enter-con h3 {
        font-size: 6vmin;
        margin-bottom: 20px;
    }

    .enter-con p {
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: center;
    }

    .enter {
        width: 13rem;
        height: 2.8rem;
        font-size: 1rem;
    }

    /* 内容区域移动端适配 */
    .content-left {
        width: 70%;
        height: 18rem;
        top: 15%;
        left: 2%;
        padding: 2% 2% 2% 0;
        left: 15%;
        top: 60%;
    }

    .content-right {
        width: 70%;
        height: 18rem;
        top: 15%;
        right: 2%;
        left: 15%;
        top: 60%;
    }

    .content-left-title {
        font-size: 0.9rem;
    }

    .content-left-title h3 {
        width: 0.9rem;
    }

    .content-list-item h4 {
        font-size: 1rem;
        line-height: 1.2rem;
        font-weight: normal;
    }

    .content-list-item p {
        font-size: 0.7rem;
        line-height: 0.9rem;
        margin: 0.2rem 0 0 0;
    }

    .content-right .content-list-item {
        height: 4.5rem;
        margin: 8px 0;
    }

    .content-right .content-list-box h4 {
        font-size: 0.8rem;
    }

    /* 底部介绍区域移动端适配 */
    .content-bottom {
        width: 90%;
        height: auto;
        bottom: 12%;
        padding: 0 3%;
        flex-direction: column;
        text-align: center;
        display: none;
    }

    .content-bottom div:nth-child(1) {
        margin-bottom: 0;
        width: 100%;
        justify-content: center;
        height: 100%;
    }

    .content-bottom div:nth-child(1) img {
        height: 5rem;
    }

    .content-bottom div:nth-child(1) h3 {
        font-size: 1.1rem;
    }

    .content-bottom div:nth-child(1) p {
        font-size: 1.1rem;
    }

    .content-bottom div:nth-child(1) span {
        font-size: 0.9rem;
    }

    .content-bottom div:nth-child(2) {
        margin: 0;
        /* display: none; */
    }

    .content-bottom div:nth-child(2) p {
        font-size: 0.85rem;
        line-height: 1.2rem;
    }

    /* 地图区域移动端适配 */
    .map-box {
        width: 102%;
        height: 38%;
        min-height: 250px;
        top: 21vh;
        left: -1%;
        touch-action: manipulation;
        overflow: hidden;
        z-index: 3;
    }

    .map {
        touch-action: manipulation;
    }

    /* 返回按钮移动端适配 */
    .return-button {
        bottom: 23%;
        right: 10%;
        padding: 4px 18px;
        font-size: 12px;
    }

    /* 地图提示框移动端适配 - 解决position:fixed导致的提前显示问题 */
    .map-echarts-tooltip {
        position: fixed !important;
        padding: 15px !important;
        width: 80% !important;
        height: 26vh !important;
        min-height: 210px;
        bottom: 9% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: unset !important;
        top: unset !important;
        opacity: 0 !important; /* 默认隐藏 */
        z-index: 9999 !important;
        background: rgba(31, 152, 147, 0.9) !important;
        color: #fff !important;
        border-radius: 8px !important;
        transition: opacity 0.3s ease;
        pointer-events: none; /* 隐藏时不响应鼠标事件 */
    }
    
    /* 只有在有数据时才显示 */
    .map-echarts-tooltip.tooltip-active {
        display: none; 
        opacity: 1 !important;
        pointer-events: auto;
        visibility: visible !important;
    }

    .map-echarts-tooltip .name {
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        font-weight: normal;
    }

    .map-echarts-tooltip .desc {
        font-size: 14px;
        white-space: pre-wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .map-echarts-tooltip .thumb img {
        /* width: calc(50% - 5px) !important; */
        height: 70px !important;
        margin-right: 10px;
    }

    .map-echarts-tooltip .thumb img:nth-child(2n) {
        /* margin-right: 0; */
    }

    .map-echarts-tooltip .thumb img:nth-child(3n) {
        margin-right: 10px;
    }
    .map-bg img:nth-child(2) {
        top: -31%;
        width: 94vw;
        height: 94vw;
        z-index: 2;
    }
}

/* 小屏手机适配 (320px - 480px) */
/* @media screen and (max-width: 480px) {
    .enter-box {
        background: linear-gradient(to bottom, #9deef2 19%, #00ac89e8 63%);
    }

    .enter-con h3 {
        font-size: 6.4vmin;
    }

    .enter-con p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .enter {
        width: 12rem;
        height: 3rem;
        font-size: 1.1rem;
        bottom: 14%;
    }

    .content-left,
    .content-right {
        width: 80%;
        height: 16rem;
    }

    .content-left {
        left: 10%;
        top: 60%;
    }

    .content-right {
        right: 10%;
        top: 60%;
    }

    .content-bottom {
        width: 95%;
        height: 4rem;
        bottom: 28%;
        display: none !important;
    }

    .content-bottom div:nth-child(1) h3 {
        font-size: 1rem;
    }

    .content-bottom div:nth-child(2) p {
        font-size: 0.75rem;
        line-height: 1.1rem;
    }

    .map-bg img:nth-child(2) {
        width: 90vw;
        height: 90vw;
        top: -18%;
    }

    .map-bg-color {
        background: linear-gradient(to bottom, #16b08b 10%, #53b2c8 27%, #cbe4f100 48%);
    }

    .map-box {
        width: 102%;
        left: 0;
        height: 56%;
        z-index: 4;
    }

    .map-echarts-tooltip {
        width: 70% !important;
        max-width: 200px !important;
    }
} */

/* 横屏适配 */
/* @media screen and (max-height: 480px) and (orientation: landscape) {
    .weatherCity {
    font-size: 16px;
    color: #fff;
}

.weatherInfo {
    font-size: 12px;
    color: #fff;
    margin-top: 0;
}
.weatherBox {
    height: 80px;
    position: absolute;
    right: 4%;
    top: 13%;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px 0 14px;
}
.weatherBoxCard {
    width: 95%;
    height: 65%;
    flex: none;
    position: absolute;
    top: 19%;
    left: 5%;
    background: linear-gradient(to right, rgba(50, 213, 252, .7), rgb(26 135 255 / 76%));
    border-radius: 10px;
    z-index: -1;
}

.map-echarts-tooltip {
    border-radius: 15px 0 15px 0px !important;
    background: rgba(31, 152, 147, 0.9) !important;
    color: #fff !important;
    padding:15px !important;
    min-width: 200px !important;
    box-shadow: 0 0 0 0 rgba(31, 152, 147, 0) !important;
    width: 30%;
}

.map-echarts-tooltip .name {
    font-weight: bold;
    margin-bottom: 8px;
    height: 26px;
    line-height: 26px;
    padding-left: 10px;
    background-image: linear-gradient(to right, rgba(16, 114, 113, 1), rgba(16, 114, 113, 0));
    border-radius: 15px;
}

.map-echarts-tooltip .desc {
    white-space: pre-wrap;
    word-break: break-all;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.map-echarts-tooltip .thumb img {
    width: calc(33% - 10px) !important;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    float: left;
}

.map-echarts-tooltip .thumb img:nth-child(3n) {
    margin-right: 0;
}

    .header {
        height: 15%;
    }

    .content-left,
    .content-right {
        top: 21%;
        height: 12rem;
    }

    .content-bottom {
        bottom: 8%;
        height: 3.5rem;
    }

    .map-box {
        height: 70%;
        top: 8%;
    }

    .return-button {
        bottom: 5%;
    }
} */

/* 展会适配 */

/* 视窗高度响应：<600px 隐藏指定元素，≥600px 恢复显示（遵循原有逻辑） */
@media screen and (max-height: 599px) {
  /* 隐藏移动端Tab容器，避免在小高度设备遮挡内容 */
  .mobile-tab-container,.title img:nth-child(2) {
    display: none !important;
  }
  
  /* 隐藏地图tooltip，使用可见性与指针事件避免布局抖动 */
  .map-echarts-tooltip {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
@media screen and (min-height: 600px) {
  /* ≥600px时允许按既有规则显示tooltip（不强制显示，避免与图表逻辑冲突） */
  .map-echarts-tooltip {
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
@media screen and (max-height: 720px) {
  /* 隐藏移动端Tab容器，避免在小高度设备遮挡内容 */
  .title img:nth-child(2) {
    display: none !important;
  }
}


/* @media screen and (max-height: 900px) {
    .video-btn-G {
        margin-top: unset;
        height: 13%;
        top: 4%;
        transform: unset;
    }

} */

