@charset "UTF-8";
/* 202309062135 */

/* 适龄提示 */
.mainstay > .age {
    position: absolute;
    width: 5rem;
    height: 6.5rem;
    top: 10.2rem;
    left: 7.5rem;
    z-index: 1;
}

.mainstay > .age > a {
    display: flex;
    width: 5rem;
    height: 6.5rem;
    background-image: url("../images/age.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

/* 适龄提示 */
footer > .age-footer {
    position: absolute;
    width: 4rem;
    height: 5.2rem;
    float: right;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
    z-index: 1;
}

footer > .age-footer > a {
    display: flex;
    width: 4rem;
    height: 5.2rem;
    background-image: url("../images/age.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

/* 适龄提示弹窗 */
.age-popup {
    position: fixed;
    z-index: 14;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.3);
}

.age-popup.hide {
    display: none;
}

.age-popup > .content {
    height: 100%;
    position: relative;
}

.age-popup > .content > .age-main {
    width: 45rem;
    height: 27rem;
    background-image: url("../images/age-bg.png");
    background-size: 45rem auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.age-popup > .content > .age-main > .age-down {
    background-image: url("../images/booking-down.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: flex;
    margin: 1rem 1rem 0 0;
    height: 2.6rem;
    width: 2.6rem;
    float: right;
    cursor: pointer;
}

.age-popup > .content > .age-main > .age-down:hover {
    transform: scale(1.05);
}

.age-popup > .content > .age-main > .age-down:active {
    transform: scale(0.95);
}

.age-popup > .content > .age-main > .age-title {
    height: 6rem;
    text-align: center;
}

.age-popup > .content > .age-main > .age-title > span {
    height: 6rem;
    line-height: 6rem;
    font-size: 1.4rem;
    color: #ffe34b;
}

.age-popup > .content > .age-main > .age-content {
    margin: 0 0.4rem;
    font-size: 0.8rem;
    color: white;
    padding: 0 4rem;
    height: 19rem;
    overflow-y: auto;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar {
    height: 0.1rem;
    width: 0.3rem;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
    background: #ffe34b;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar-track {
    border-radius: 0.5rem;
    background: #cbcbcb;
}

.age-popup > .content > .age-main > .age-content > p {
    line-height: 2rem;
}