.head-global {
    position: absolute;
    left: 0%;
    top: 100%;
    width: 100%;
    background: rgb(0,0,0,0.8);
    display: none;
    color: #fff;
    opacity: 1;
    z-index: 99;
}
.head-global .row>.span-4 {
    width: 32.33333333%;
}
.head-global .lan_content {
    padding: 60px 60px 0px 60px;
}

.head-global .lan_content .row .sl {
    height: 150px;
    position: relative;
    padding-left: 115px;
    min-height: 90px;
}

.head-global .lan_content .row .sl .map {
    background: url(../global/map.png) no-repeat;
    width: 110px;
    height: 90px;
    overflow: hidden;
    position: absolute;
    left: 0%;
    top: 0%;
}

.head-global .lan_content .row .sl01:hover .map {
    background-position: -110px 0;
    cursor: pointer;
}

.head-global .lan_content .row .sl01 .map {
    background-position: 0 0;
}

.head-global .lan_content .row .sl02 .map {
    background-position: 0 -90px;
}

.head-global .lan_content .row .sl02:hover .map {
    background-position: -110px -90px;
    cursor: pointer;
}

.head-global .lan_content .row .sl03 .map {
    background-position: 0 -180px;
}

.head-global .lan_content .row .sl03:hover .map {
    background-position: -110px -180px;
    cursor: pointer;
}

.head-global .lan_content .row .sl04 .map {
    background-position: 0 -270px;
}

.head-global .lan_content .row .sl04:hover .map {
    background-position: -110px -270px;
    cursor: pointer;
}

.head-global .lan_content .row .sl05 .map {
    background-position: 0 -360px;
}

.head-global .lan_content .row .sl05:hover .map {
    background-position: -110px -360px;
    cursor: pointer;
}

.head-global .lan_content .row .sl06 .map {
    background-position: 0 -450px;
}

.head-global .lan_content .row .sl06:hover .map {
    background-position: -110px -450px;
    cursor: pointer;
}

.head-global .lan_content .row .sl07 .map {
    background-position: 0 -540px;
}

.head-global .lan_content .row .sl07:hover .map {
    background-position: -110px -540px;
    cursor: pointer;
}

.head-global .lan_content .row .sl .links {
    width: 70%;
    margin-left: 8%;
}

.head-global .lan_content .row .sl dt {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.head-global .lan_content .row .sl dd {
    padding: 2% 3%;
    display: inline-block;
    text-align: center;
}
.head-global .lan_content .row .sl dd a{
    color:#fff;
}

.head-global .lan_content .row .sl dd:hover {
    background: #fff;
    color: #ff9502;
}
.head-global .lan_content .row .sl dd:hover a{
	color: #ff9502;
}
.head-global .back-top{
	margin:0 auto;
	display: flex;
	justify-content: center;
	padding-bottom:50px;
	cursor: pointer;
}

.head-global .back-top:hover svg{
	animation: moveLoop 1s linear infinite;
}
.head-global .back-top:hover svg path{
	fill:#ff9502;
}
/* 定义动画：上下移动5px */
@keyframes moveLoop {
  0% {
    transform: translateY(0px);    /* 原位 */
  }
  50% {
    transform: translateY(-5px);  /* 上移5px */
  }
  100% {
    transform: translateY(0px);    /* 回到原位 */
  }
}