/* 标签选择器 */
p {
    text-align: center;
    font-size: 25px;
    color: cadetblue;
    font-family: fantasy;
}

/* 类选择器 */
.imgbox {
    border-top: 5px solid cadetblue;

    /* 避免因窗口变化影响图片效果 */
    width: 100%;
    margin: 0 auto;
}

.imge {
    width: 100%;
    margin: 0 auto;
    display: none;
}

#nav {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: calc(-100vw * 35 / 1920);
}

#nav li {
    display: inline;
    line-height: 0px;
    float: right;
    height: 1px;
}

#nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px 20px;
    font-size: calc(100vw * 28 / 1920);
}

#nav a:hover {
    color: aqua;
}