* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    position: relative;
}

.top {
    width: 100%;
    position: fixed;
    z-index: 10;
}

.bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.top-list {
    width: 80%;
    margin: 0 auto;
    /*background-color: #002a80;*/
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11%;
}

.top-list a {
    color: #fff;
    font-size: 1.2vw;
    font-weight: 600;
    text-decoration: none;
}

.top-list a:hover {
    color: #ffed7d;
}

.top-list a.active {
    color: #ffed7d;
    text-decoration: underline;
    text-decoration-color: #ffed7d;
    text-decoration-thickness: 2px; /* 下划线粗细 */
    text-underline-offset: 40%; /* 下划线和文字距离 */
}

.logo {
    width: 8%;
    height: auto;

}

.content-container {
    z-index: 3;
    margin-top: 100px;
    height: calc(100vh - 100px);
    /*background-color: #cbcb80;*/
    margin-left: auto;
    margin-right: auto;
    width: 69%;

    position: relative;
}

.content-container .content-header .title {
    position: relative;
    font-size: 22px;
    line-height: 80px;
    padding-left: 20px;
}

.content-container .content-header .title:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 30px;
    border-left: 5px #0680FD solid;
    margin-top: -15px;
}

.iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-body p {
    margin: 10px 0;
    line-height: 50px;
}

.buttom {
    margin-top: 100px;
    width: 100%;
    position: relative;
    z-index: 1;
}
