@charset "UTF-8";

/* 适龄提示 */
.main > .main-bg > .main-content > .main-top > .age {
    position: absolute;
    width: 5rem;
    height: 6.5rem;
    top: 0;
    left: -4.5rem;
    z-index: 1;
}

.main > .main-bg > .main-content > .main-top > .age > a {
    display: flex;
    width: 5rem;
    height: 6.5rem;
    background-image: url("/age/img/age.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

/* 适龄提示 */
.main > .main-bg > .main-foot > .age-footer {
    position: absolute;
    width: 3rem;
    height: 3.9rem;
    float: right;
    top: 75%;
    left: 85%;
    transform: translateY(-50%);
    z-index: 1;
}

.main > .main-bg > .main-foot > .age-footer > a {
    display: flex;
    width: 3rem;
    height: 3.9rem;
    background-image: url("/age/img/age.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .main > .main-bg > .main-foot > .age-footer {
        width: 4rem;
        height: 5.2rem;
        top: 50%;
        left: 70%;
    }
    .main > .main-bg > .main-foot > .age-footer > a {
        width: 4rem;
        height: 5.2rem;
    }
}

/* 适龄提示弹窗 */
.age-popup {
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-image: url("/age/img/age-popup-bg.png");
}

.age-popup.hide {
    display: none;
}

.age-popup > .content {
    height: 100%;
    position: relative;
}

.age-popup > .content > .age-main {
    width: 45rem;
    height: 27rem;
    background-image: url("/age/img/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("/age/img/age-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: #ffffff;
}

.age-popup > .content > .age-main > .age-content {
    margin: 0 1.5rem;
    font-size: 0.8rem;
    color: #ffffff;
    padding: 0 2.5rem;
    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: #ffe684;
}

.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;
}
@media (max-width: 768px) {
    .age-popup > .content > .age-main {
        transform: translate(-50%, -50%) scale(0.6);
    }
}