body {
    font: 12px/1.5 PingFangSC-Regular, Helvetica, Arial, Microsoft Yahei, sans-serif;
    background-color: #191a20;
    margin: 0px;
    padding: 0px;
}

* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}


.logo>img {
    width: 100px;
    height: 100px;
}

.head {
    width: 100%;
    height: 100px;
    position: relative;
}

.logo {
    float: left;
    padding-left: 50px;
}

.shr {
    width: 1px;
    height: 70px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8), transparent);
}
.nav-box {
    display: flex;
    width: 1000px;
    height: 100px;
    position: absolute;
    left: 200px;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
    color: #fff;
    line-height: 100px;
}

.nav-box>:not(:first-child) {
    width: 100px;
    height: 100px;
    text-align: center;
}

.nav-box>:not(:first-child):hover {
    border-bottom: 4px solid red;
    cursor: pointer;
    color: red;
}


.login {
    float: right;
    width: 200px;
    height: 100px;
    padding-right: 10px;
    background-color: rgb(255, 70, 85);
    text-align: center;
    line-height: 100px;
    font-size: 20px;
    color: #fff;
}

.Weather {
    position: absolute;
    width: 300px; 
    right: 300px;
    top: 10px;
    text-align: center;
    padding: 15px 10px; 
    color: #fff;

}
.lunbo {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;

}

.lis {
    width: 120px;
    height: 15px;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 7px;
    display: flex;
    justify-content: center;
    bottom: 5px;
    left: 50%;
}

.li {
    width: 10px;
    height: 10px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    margin: 2px 2px;

}

.active {
    background-color: rgb(203, 38, 16);
}
.active:hover{
    cursor: pointer;
}
.lunbo>img {
    width: 100%;
    height: auto;
}

.left {
    position: absolute;
    top: 400px;
    width: 150px;
    height: 150px;
    left: 50px;
    background-image: url('https://wzk-mortal-1366699857.cos.ap-nanjing.myqcloud.com/img/main/leftarrow.png');
}

.right {
    position: absolute;
    top: 400px;
    width: 150px;
    height: 150px;
    right: 50px;
    background-image: url('https://wzk-mortal-1366699857.cos.ap-nanjing.myqcloud.com/img/main/rightarrow.png');
}

.left:hover {
    cursor: pointer;
}

.right:hover {
    cursor: pointer;
}

.foot {
    width: 100%;
    height: 1310px;
    background: url('https://wzk-mortal-1366699857.cos.ap-nanjing.myqcloud.com/img/main/mapbg.webp');
    overflow: hidden;
    position: relative;
}

.foot-left {
    float: left;
    width: 155px;
    height: 1119px;
    text-align: center;
    line-height: 200px;
    color: white;
}

.foot-right {
    position: absolute;
    left: 220px;
    width: 1800px;
    height: 1119px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;

}


.foot-right div {
    margin: 40px 70px;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
    position: relative;
}

.foot-right img:hover {
    cursor: pointer;
    box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.7);
    transform: translateY(-5px) scale(1.05);
}

.foot-right img {
    width: 100%;
    height: 198px;
}
.foot-right span {
    position: absolute;
    color: #fff;
    font-size: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}


.foot-right img:hover+span,
.foot-right>div:hover span {
    opacity: 1;
    visibility: visible;

}

.login:hover {
    cursor: pointer;
  
}
