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

.container {
    margin-top: 1rem;
}

.container .wrapper {
    padding: 1rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.container .wrapper img {
    max-height: 500px;
    margin: auto;
    /* border: .5em solid white; */
    border-radius: 5px;
    cursor: pointer;
    /* box-shadow: 2px 2px 4px 4px rgba(0, 0, 0, 0.1); */
}

[v-cloak] {
    display: none;
}

/* caps start  */
.container .wrapper .caps {
    text-align: center;
    min-width: 20%;
    margin-bottom: 3em;
}

.wrapper .caps h3 {
    margin-top: 1em;
    font-size: 1.2em;
}

.wrapper .caps span {
    color: #959595;
    font-size: .8em;
}

/* caps ends  */

/* navbar starts  */
.wrapper .navbar {
    border-bottom: 3px solid #458588;
    padding-bottom: 2rem;
}

.navbar {
    height: 2rem;
    margin-top: 2rem;
    line-height: 1rem;
    box-sizing: border-box;
}

.navbar span a {
    font-family: 'futyra-pt';
    color: var(--secondary);
    font-size: 1.2em;
    font-weight: bold;
    /* padding: 0 .6rem; */
    box-shadow: none;
}

.navbar .active-link {
    box-shadow: none;
    background-color:#fabd2f8e;
    color: var(--primary);
    border-width: 1px;
    border-style: solid solid none solid;
    border-color: rgba(199, 199, 199, 0.074);
    border-top-left-radius: .4rem;
    border-top-right-radius: .4rem;
    border-bottom: 1px solid var(--primary);
}

.navbar span a:hover {
    /* background-color: #fabd2f3f; */
    /* border-top-left-radius: .4rem;
    border-top-right-radius: .4rem; */
}

/* navbar ends  */


/* 遮罩层 */

.mask {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 100;
}

.mask img {
    max-width: 90vw;
    max-height: 90vh;
    margin: 1.5rem;
    z-index: 100;
    border-radius: .3rem;
    border: none;
}

.popup-enter-from,
.popup-leave-to {
    opacity: 0;
    transform: scale(0.8);
    transform: translateY(-50px);
}

.popup-enter-active,
.popup-leave-active {
    transition: all 0.25s ease;
}


.popup-leave-from,
.popup-enter-to {
    opacity: 1;
    transform: translateY(0px);
    transform: scale(1);
}


/* spinner */
.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: ' ';
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgb(215, 153, 35);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 600px) {
    .container .wrapper {
        padding: 0;
    }

    .container .wrapper img {
        max-width: 100%;
        /* border: .5em solid white; */
        cursor: pointer;
        transition: all .35s ease;
    }

    .container .wrapper img:hover {
        transform: scale(1.05);
        box-shadow: 1px 1px 4px 1px rgb(0 0 0 / 40%);
    }
}