
:root {
    --auxiliary-color:rgba(225, 188, 193, 1);
    --mmigh-primary-color: rgba(191, 166, 169, 1);
    --mmigh-footer-color: #464648;
    --mmigh-black: #464648;
}

[v-cloak] {
    display: none;
}
.flatpickr-day.selected {
    background: var(--mmigh-primary-color) !important;
    border-color: var(--mmigh-primary-color) !important;
}

body, html {
    background: #f5f5f6;
    color: rgba(191, 166, 169, 1);
}

.logo {
    height: 5rem;
    width: 100%;
    object-fit: cover;
}


#user_icon:hover > .dropdown-menu {
    display: block
}

.swiper-pagination-bullet-active {
    background: var(--mmigh-primary-color);
}

.common-banner {
    width: 100%;
}

.sub-commmon-banner {
    width: 100%;
}


.common-banner .banner-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.35);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}


/*设置图片5 / 6显示*/
.image-container {
    width: 100%;
    aspect-ratio: 5 / 6;
    overflow: hidden;
    max-width: 40%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#google-map-box {
    width: 100%;
    height: 450px;
}

.footer {
    background: var(--mmigh-footer-color) !important;
}

.pagination {
    display: flex;
    justify-items: center;
    justify-content: center;
}

.pagination li {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.pagination li.active span {
    background: var(--mmigh-primary-color);
    color: #fff;
    border-color: var(--mmigh-primary-color);
}

.pagination li.disabled span {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.pagination a, .pagination span {
    min-width: 2.5rem;
    background: #fff;
    border: 0.05rem solid #ddd;
    margin: 0.25rem;
    padding: 0.35rem;
    border-radius: 0.4rem;
    transition: all 0.5s;
}

.pagination a:hover {
    background: var(--mmigh-primary-color);
    color: #fff;
    border-color: var(--mmigh-primary-color);
}


.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s, transform 0.5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
    transform: scale(0); /* 可以调整缩放比例 */
}

.fade-enter-to, .fade-leave {
    opacity: 1;
    transform: scale(1);
}