* {
    box-sizing: border-box;
}

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

body {
    background: #F7F0FD;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
}

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

/* 导航栏 */
.nav-wrapper, .theme-nav-bar {
    position: fixed;
    z-index: 999;
    height: 44px;
    width: 100%;
    background: transparent;
    padding: 0 12px;
}

.nav-content {;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

.bar-text {
    margin: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    position: relative;
    font-size: 14px;
}

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

.bar-text::after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 2px 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 {
    /* display: none; */
}

.grey {
    color: #312E33;
}

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

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

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

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

.main-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding-top: 100px;
}

@media screen and (max-height: 700px) {
    .main-content {
        padding-top: 60px;
    }
}


#map {
    width: 340px;
    height: 260px;
}

.page-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-list {
    margin-top: 24px;
}

.list-item {
    padding: 8px 0;
    font-size: 15px;
}

.list-item .item-title {
    color: #928A99;
    padding-right: 12px;
}

.list-item .item-note {
    color: #312E33;
}

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

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

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

.bei {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: #C9D4F9;
}
















