* {
    box-sizing: border-box;
}

html,
body {
    position: relative;
    height: 100%;

}

body {
    background-color: #F7F0FD;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
    min-width: 1200px;
    /* white-space: nowrap; */
}

a {
    text-decoration: none;
    color: #333;
}

/* 导航栏 */
.nav-wrapper, .theme-nav-bar {
    position: fixed;
    z-index: 999;
    height: 4rem;
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.7); */
    /* box-shadow: 0 2px 4px #C2C2C2; */
    min-width: 1200px;
    background: transparent;
}

.nav-content {
    width: 70.333333%;
    margin: 0 auto;
    /* border: 1px red solid; */
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left span {
    font-size: 20px;
    padding-left: 20px;
    font-weight: bold;
}

.nav-wrapper .nav-left span {
    color: #fff;
}

.nav-logo {
    width: 3rem;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    object-fit: contain;
}

.bar-text {
    margin: 2rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 0;
    position: relative;
}

.bar-text:hover {
    cursor: pointer;
    color: #fff;
}

.bar-text::after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: .3s;
}

.active-bar {
    color: #fff;
}

.active-bar::after {
    width: 100%;
}

.theme-nav-bar {

}

.grey {
    color: #312E33;
}

.active-theme-bar {
    color: #8272EF;
}

.active-theme-bar::after {
    width: 100%;
}

.grey::after {
    border-bottom: 3px solid #8272EF;
}

.grey:hover {
    cursor: pointer;
    color: #8272EF;
}

/* 内容 */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 11.1vh;
}

.title {
    color: #312E33;
    font-size: 1.875vw;
    font-weight: bold;
    margin-bottom: 2.08vw;
}

#map {
    width: 29.06vw;
    height: 21.8vw;
}

.contact {
    margin: 1.04vw 0;
}

.list-item {
    padding: 0.5vw 0;
    font-size: 1.04vw;
}

.item-title {
    color: #928A99;
    text-align: right;
    padding-right: 1.67vw;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    background-color: #8A6FFF;
    padding: 2.08vw 0;
}

.link-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.link {
    color: #fff;
    margin: 0 12px;
}

.link:hover {
    text-decoration: underline;
}

.no-link {
    cursor: default;
}

.no-link:hover {
    text-decoration: none;
}

.bei {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #C9D4F9;
}






















