* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    background: url(../images/background/body.jpg) no-repeat fixed center;
    background-size: 100% 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 12px;
    background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #e7d2d200;
}

.body {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

}

#nav {
    position: relative;
    border: none;
    border-radius: 10em;
    display: flex;
    list-style: none;
    background: #f5f5f5;
    box-shadow: 20px 40px 40px #00000033;
    padding: 10px;
    margin: 10px auto;

}

#nav li a {
    position: relative;
    padding: 15px 50px;
    font: 500 24px "微软雅黑";
    border: none;
    outline: none;
    color: rgb(70, 100, 100);
    display: inline-block;
    text-decoration: none;
    z-index: 4;
}

.slide1,
.slide2 {
    position: absolute;
    display: inline-block;
    height: 60px;
    border-radius: 10em;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1.05);
}

.slide1 {
    background-color: rgb(170, 190, 255);
    z-index: 3;
}

.slide2 {
    opacity: 0;
    background-color: rgba(170, 190, 255, .5);
    z-index: 2;
    box-shadow: 0 0 20px #ffffffaa inset;
}

.squeeze {
    transform: scale(0.9);
}

.router {
    width: 90%;
    /* height: 15%; */
    text-align: center;
    font-size: x-large;
    margin: 1% 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.nav {
    padding: 5px 10px;
    border-radius: 20%;
    background-color: aqua;

}

.nav:hover {
    box-shadow: 0px 15px 15px 10px rgba(0, 0, 0, 0.5);
    ;
}

.nav:hover {
    background-color: beige;
    color: blue;
}

.content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.content .link {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    background-color: rgba(206, 214, 224, 0.5);
    border-radius: 20px;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);

}

.content .link .link_content {
    text-align: center;
    margin: 0 auto;
    display: inline-flex;
}

.link:link {
    color: black;
}

.link:visited {
    color: black;
}