/*
       苹方字体对应的数值
极细体（Thin）：font-weight: 100
细体（Ultralight）：font-weight: 200
纤细体（Light）：font-weight: 300
常规体（Regular）：font-weight: 400
中黑体（Medium）：font-weight: 500
中粗体（Semibold）：font-weight: 600
粗体（Bold）：font-weight: 700
极粗体（ExtraBold）：font-weight: 800
极粗体（Black/Heavy）：font-weight: 900
*/

.page {
    width: 1060px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    transform-origin: top center;
    padding-top: 72px;
}

.contain {
    width: 1060px;
    height: calc(100% - 42px);
    margin: 0 auto;
}

button {
    opacity: 1;
    transition: opacity 0.3s ease
}

button:hover {
    opacity: 0.8;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;

}

a:visited {
    color: inherit;
}

.navBarWrapper .logoWrapper {
    width: 34px;
    height: 34px;
}

.selectWrapper {
    position: relative;
    width: 120px;
    height: 31px;
    border-radius: 15px;
    border: 1px solid #707070;
    font-size: 14px;
    /* line-height: 31px; */
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    height: auto;
    max-height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #707070;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    background-color: #fff;
    z-index: 10;
}

.selectWrapper:hover .options {
    opacity: 1;
    max-height: 9999px;
}

.selectWrapper .options li:hover {
    background-color: #D9F14E;
    color: #000;
}

.dropDown {
    width: 12px;
    margin-top: -1px;
    margin-left: 7px;
}

.selectWrapper .selectedValue span {
    display: inline-block;
    width: 57px;
}

.fadeInLeft {
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeOutLeft {
    opacity: 1;
    animation: fadeOutLeft 0.5s ease forwards;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.hide {
    display: none !important;
}

.previewQRCodeWrapper {
    width: 100%;
    height: 411px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
    display: none;
}

.previewQRCode {
    width: 160px;
    height: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 2px solid #D9F14E;
}

.codeImg {
    width: 100%;
    height: 100%;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
        display: none;
    }
}

@media (min-width: 1200px){
    .container_shy {
        width: 700px;
    }
}
@media (min-width: 992px){
    .container_shy {
        width: 600px;
    }
}
@media (min-width: 768px){
    .container_shy {
        width: 500px;
    }
}
.container_shy {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}