.change li:nth-child(3) a{
    color: var(--allColor);
}

.change li:nth-child(3) a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--allColor);
}

.nav_tit {
    text-align: center;
}

.layout .con-des {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 12px;
}

.layout-change {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-item {
    margin: 0 1.7vw;
    position: relative;
    line-height: 1;
    color: #222;
    padding-bottom: 7px;
    transition: 0.5s all;
    cursor: pointer;
}

.layout-item:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--allColor);
    transition: 0.5s all;
}

.layout-item.cur{
    color: var(--allColor);
    font-weight: bold;
}

.layout-item.cur:after {
    width: 100%;
}

.overseas-box {
    width: 100%;
    position: relative;
}

.overseas-box >img{
    width: 100%;
}

.map1_li {
    position: absolute;
}

.map1_li .fnt12 {
    background: #fff;
    border-radius: 3px;
    padding: 5px;
    color: #222;
    line-height: 1;
    font-weight: 500;
}

.yuan {
    position: absolute;
    right: -5px;
    bottom: -4px;
    z-index: 1;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.yuan-huang{
    background: #fcff00;
}

.yuan-lan{
    background: #009fe8;
}

.yuan-hong{
    background: #d80015;
}

.layout-li {
    width: 100%;
    display: none;
}

.layout-li.cur {
    display: block;
    animation: slideUpFade 0.7s ease-out;
    animation-fill-mode: forwards;
}

.domestic-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.map {
    width: 50%;
    position: relative;
    overflow: hidden;
        height: 100%;
}

.map img{
    width: 100%;
}

.domestic-ri{
    width: 47%;
    position: relative;
    margin-left: auto;
}

.industrial-list {
    width: 100%;
    overflow: auto;
    height: 550px;
    padding-right: 2vw;
}

.industrial-list::-webkit-scrollbar {
    width: 3px; 
}

.industrial-list::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  background: var(--allColor);
}
.industrial-list::-webkit-scrollbar-track {
  background: #e5e5e5;
  width: 1px;
}

.domestic-ri:after{
    content: '';
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(255 255 255 / 100%));
    z-index: 1;
    display: none;
}

.industrial-item-li {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ind-img {
    width: 35%;
    overflow: hidden;
    position: relative;
    padding-bottom: 23%;
}

.ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ind-rg {
    width: 61%;
    margin-left: auto;
}

.ind-tit {
    font-weight: bold;
    color: #222;
    transition: 0.5s;
}

.ind-des {
    line-height: 1.8;
    color: #777;
    margin-top: 15px;
}

.domestic-box .yuan{
    background: #fcff00;
}

.domestic-box .map1_li .fnt12{
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}

.mapBox{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.industrial-item.active img{
    transform:translate(-50%, -50%) scale(1.02);
}

.industrial-item.active .ind-tit{
    color: var(--allColor);
}

@keyframes slideUpFade {
	0% {
		opacity: 0;
		transform: translateY(30px);
		/* 初始位置在下方 30px */
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		/* 结束位置回到原位 */
	}
}

.overseas-text{
    display: flex;
    justify-content: center;
    align-items: center;
}

.overseas-text-li {
    width: auto;
    display: flex;
    align-items: center;
    margin: 0 1.5vw;
}

.overseas-yuan {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}


@media screen and (max-width: 768px) {
    .change li{
        margin-left: 5px;
    }
    
    .layout .con-des{
        max-width: 100%;
    }
    
    .map1_li .fnt12{
        display: none;
    }
    
    .domestic-box .map1_li .fnt12{
        display: block;
    }
    
    .map{
        width: 100%;
    }
    
    .domestic-ri{
        width: 100%;
        margin-top: 30px;
    }
    
    .industrial-list{
        height: auto;
    }
    
    .domestic-ri:after{
        display: none;
    }
    
    .industrial-item{
        display: none;
    }
    
    .industrial-item.active{
        display: block;
    }
    
    .ind-img{
        width: 100%;   
            padding-bottom: 58%;
    }
    
    .ind-rg{
        width: 100%;
        margin-top: 20px;
    }
    
    .domestic-box .map1_li.active .fnt12{
                background: var(--allColor);
                color: #fff;
    }
}

























