#container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
main {
    display: block;
}
main>section {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
/* 地图容器样式 - 提高优先级并添加明确的宽高设置 */
#container main section .map-wrapper {
    width: 100%;
    display: flex;
    justify-content: right;
    position: relative;
}

/* 地图标题样式（如果需要） */
#container main section .map-wrapper>p:first-child {
    display: block;
    height: 50px;
    line-height: 50px;
    border-bottom: #e0e0e0 solid 1px;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    background: #fafafa;
}

/* 地图主体容器 - 设置明确的宽高 */
#container main section .map-wrapper #map-01,
#container main section .map-wrapper .map-box {
    width: 70%;
    height: 40vw;
    margin-right: 0;
    overflow: hidden;
    position: relative;
    /* 确保样式优先级 */
    z-index: 1;
}

/* 地图内部SVG容器 - 确保填充整个父容器 */
#container main section .map-wrapper .map-box .jsmap-svg-container {}
#hover-callback,
#click-callback {
	text-align: center;
	display: block;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
}

.map-tachu-c{
    width: 55%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 9;
    padding:40px 20px 40px 45px;
}
.map-tachu{
    width: 100%;
    max-height: 575px;overflow-y: auto;
}
.map-item{}
.map-item h3{font-size: 36px;font-weight: bold;text-align: center;margin-bottom: 40px;}
.map-item-ul{}
.map-item-ul ul{width: 100%;padding-right: 20px;}
.map-item-ul ul li{width: 100%;display: flex;justify-content: space-between;align-items: center;background: #fff;
border-radius: 10px;margin-bottom: 15px;padding: 17px 20px;}
.map-item-ul ul li:nth-child(2n){background: #f0f9ff;}
.map-item-ul ul li span{width: 50%;font-size: 16px;}
/* 整个滚动条轨道 */
.map-tachu::-webkit-scrollbar {
  width: 6px;       /* 垂直滚动条宽度 */
  height: 6px;      /* 水平滚动条高度 */
}

/* 滚动条轨道背景 */
.map-tachu::-webkit-scrollbar-track {
  background: #fff; 
  border-radius: 4px;
}
/* 滚动条滑块 */
.map-tachu::-webkit-scrollbar-thumb {
  background: #090b93; 
  border-radius: 4px;
}
/* 鼠标悬停时滑块颜色 */
.map-tachu::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

/* 地图容器样式 */
.map-wrapper {
    width: 100%;
    position: relative;
}

/* 地图主体容器 */
#map-01 {
    width: 70%;
    height: 40vw;
    margin: 0 0 0 auto;
    overflow: hidden;
    position: relative;
}

/* 地图项目样式 */
.map-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/* 地图项目列表项 */
.map-item-ul ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 17px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 列表项偶数行背景色 */
.map-item-ul ul li:nth-child(2n) {
    background: #f0f9ff;
}

/* 列表项鼠标悬停效果 */
.map-item-ul ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 列表项文本 */
.map-item-ul ul li span {
    width: 50%;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* 滚动条样式 */
.map-item-ul::-webkit-scrollbar {
    width: 8px;
}

.map-item-ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.map-item-ul::-webkit-scrollbar-thumb {
    background: #090b93;
    border-radius: 4px;
}

.map-item-ul::-webkit-scrollbar-thumb:hover {
    background: #07097a;
}

.yj-nav{width: 100%;text-align: center;}
.yj-nav ul{display: flex;justify-content: center;align-items: center;}
.yj-nav ul li{margin: 20px 50px;font-size: 24px;cursor: pointer;border-bottom: 2px solid #090b9300;transition: all 0.3s ease;}
.yj-nav ul li.active,.yj-nav ul li:hover{color: #090b93;border-bottom: 2px solid #090b93;}
.yj-gjapi{width: 100%;position: relative;}
.yj-gjapi-img{width: 100%;text-align: right;}
.yj-gjapi-img img{width: 70%;margin-top: 30px;}
.yj-gjapi .yj-gjapi-ico{position: absolute;display: flex;justify-content: left;align-items: center;cursor: pointer;}
.yj-gjapi .yj-gjapi-ico i{
    display: block;
    width: 8px;
    height: 8px;
    background: #090b93;
    border-radius: 50%;
    position: relative;
}
.yj-gjapi .yj-gjapi-ico i::after{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #090b93;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse-inner 2s infinite ease-in-out;
}
.yj-gjapi .yj-gjapi-ico i::before{
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    border: 1px solid #090b93;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse-outer 2s infinite ease-in-out;
}

/* 添加呼吸效果动画定义 */
@keyframes pulse-inner {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes pulse-outer {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

/* 为不同的图标设置不同的动画延迟，增加层次感 */
.yj-gjapi .yj-gjapi-ico.ico1 i::after {
    animation-delay: 0s;
}
.yj-gjapi .yj-gjapi-ico.ico1 i::before {
    animation-delay: 0s;
}

.yj-gjapi .yj-gjapi-ico.ico2 i::after {
    animation-delay: 0.5s;
}
.yj-gjapi .yj-gjapi-ico.ico2 i::before {
    animation-delay: 0.5s;
}

/* 确保.yj-gjapi-ico容器有合适的z-index */
.yj-gjapi .yj-gjapi-ico {
    z-index: 10;
}

/* 为了确保动画效果明显，增加边框颜色的透明度变化 */
.yj-gjapi .yj-gjapi-ico i::after,
.yj-gjapi .yj-gjapi-ico i::before {
    border-color: rgba(9, 11, 147, 0.8);
}
.yj-gjapi .yj-gjapi-ico span{font-size: 16px;display: inline-block;margin-left: 10px;}
.ico1{top: 23%;right: 7%;left: auto;}
.ico2{left: 67%;top: 34%;right: auto;}

.map-01-dz{width: 100%;position: absolute;height: 100%;right: 0;top: 0;}
.map-01-dz .api{display: flex;justify-content: left;align-items: center;padding-left: 20px;position: absolute;z-index:9;}
.map-01-dz .api i{
    width: 12px;
    height: 15px;
    position: relative;
    top: 1px;
    z-index: 3;
    background: url(../images/dw.png) no-repeat;
    background-position:left center;
    background-size:12px auto;


}

.map-01-dz .api span{color: #000;display: inline-block;margin-left: 4px;}

.api1{top: 36%;right: 18%;}
.api2{top: 38%;right: 17%;}
.api3{top: 32%;right: 13%;}
.api4{top: 26%;right: 9%;}
.api5{top: 17%;right: 8%;}
.api6{top: 33%;right: 25%;}
.api7{top: 45%;right: 17%;}
.api8{top: 51%;right: 27%;}
.api9{top: 54%;right: 14%;}
.api10{top: 58%;right: 18%;}
.api11{top: 59%;right: 23%;}
.api12{top: 63%;right: 14%;}
.api13{top: 62%;right: 27%;}
.api14{top: 59%;right: 33%;}
.api15{top: 71%;right: 16%;}
.api16{top: 65%;right: 19%;}
.api17{top: 66%;right: 24%;}
.api18{top: 78%;right: 21%;}
.api19{top: 77%;right: 27%;}
.api20{top: 73%;right: 35%;}
.api21{top: auto;right: 25%;bottom: 9%;}
.api22{top: 58.2%;right: 12.3%;}

.map-01-dz-en .api1 {top: 36%;right: 17%;}
.map-01-dz-en .api2 {top: 38%;right: 16%;}
.map-01-dz-en .api3 {top: 31%;right: 11%;}
.map-01-dz-en .api5 {right: 5%;}
.map-01-dz-en .api7 {right: 14%;}
.map-01-dz-en .api9 {top: 52%;right: 13%;}
.map-01-dz-en .api22 {right: 10%;}
.map-01-dz-en .api10 {right: 16%;}
.map-01-dz-en .api12 {right: 12%;}
.map-01-dz-en .api8 {right: 25%;}
.map-01-dz-en .api13 {right: 24%;}
.map-01-dz-en .api18 {top: 77%;right: 17%;}
.map-01-dz-en .api16 {top: 67%;right: 17%;}
.map-01-dz-en .api21{right: 24%;}


/* 响应式设计 */
@media screen and (max-width: 1024px) {
    #map-01 {
        width: 100%;
        height: 50vh;
        margin: 0;
    }
    
    .map-tachu {
        position: relative;
        width: 100%;
        height: auto;
        padding:0;
        max-height: 280px;
    }
    
    .map-item {
        height: auto;
    }
    .map-tachu-c{padding: 25px 10px 20px 20px;border-radius: 5px;}
    .map-item h3 {font-size: 22px;margin-bottom: 20px;}
    .map-item-ul ul li {border-radius: 5px;margin-bottom: 10px;padding: 10px 10px;}
    .map-item-ul ul li span{font-size: 14px;}
    .map-01-dz{display:none;}

}

@media screen and (max-width: 768px) {
    .map-item-ul ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }
    
    .map-item-ul ul li span {
        width: 100%;
        font-size: 14px;
        line-height: 1;
    }
    
    main>section{height: 700px;}
    .case-bfyj{margin-top: 0px;}
    #container main section .map-wrapper #map-01, #container main section .map-wrapper .map-box {
        width: 100%;
        height: 63vw;
    }
    .map-tachu-c{width: 100%;top: 64vw;padding: 10px 10px 20px 20px;}
    .map-tachu{max-height: 250px;}
    .map-item h3 {font-size: 20px;margin-bottom: 22px;}
    
    .yj-nav ul li {margin: 20px 10px;font-size: 16px;}
    .yj-gjapi-img img {width: 100%;}
    .ico2 {left: 51%;}
    .yj-gjapi{height: 670px;}
    .yj-gjapi .yj-gjapi-ico span {font-size: 14px;}
    .yj-gjapi .yj-gjapi-ico i::after{width: 13px;height: 13px;}
    .yj-gjapi .yj-gjapi-ico i::before{width: 20px;height: 20px;}
    .yj-gjapi .yj-gjapi-ico i{width: 6px;height: 6px;}
    .ico1 {top: 9%;right: 2%;}
    .ico2{top: 12%;left: 55%;}
}
