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

a {
    color: #ffffff;
}

body {
    background: #000000;
    color: #FFFFFF;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /*z-index: 9999;*/
}

.hero {
    width: 100%;
    height: 100vw;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
}

@media (min-width: 768px) {
    .hero {
        height: 75vw;
        max-height: 700px;
    }
}

@media (min-width: 1024px) {
    .hero {
          height: 56.25vw;
          max-height: calc(100vh - 100px);
    }
}

@media (min-width: 1920px) {
    .hero {
          max-height: calc(100vh - 100px);
    }
}

/* 页面自定义样式迁移自 index.html */
.custom-section {
    height: auto;
    padding: 30px;
}

.custom-footer {
    padding: 30px;
    background: #212121;
}

.footer-row {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
}

.footer-title {
    margin-top: 5px;
    font-size: 25px;
    text-align: center;
}

.footer-select {
    margin-left: auto;
}

.mdui-theme-layout-dark .nav[data-v-62294f66] {
    background: rgba(0,0,0,0.6) !important;
}