@charset "UTF-8";

/* 适龄提示 */

div > .timeline > .swiper-container > .swiper-wrapper > .home > .swiper-slide-content > .main-home-btns > .age > .age {
    width: 2rem;
    height: 1.038rem;
    text-align: right;
    z-index: 1;
}

div > .timeline > .swiper-container > .swiper-wrapper > .home > .swiper-slide-content > .main-home-btns > .age > .age > a {
    display: flex;
    width: 0.8rem;
    height: 1.038rem;
    margin: 0 0 0 auto;
    background-image: url("/age/img/age.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.secondary > .main-home > .age{
    position: absolute;
    width: 2rem;
    height: 1.038rem;
    left: 1.4rem;
    z-index: 1;
}

.secondary > .main-home > .age > a{
    display: flex;
    width: 0.8rem;
    height: 1.038rem;
    margin: 0 0 0 auto;
    background-image: url("/age/img/age.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
}

/* 适龄提示弹窗 */
.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: 10rem;
    height: 6rem;
    background-image: url("/age/img/age-bg.png");
    background-size: 10rem 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: 0.3rem 0.3rem 0 0;
    height: 0.4rem;
    width: 0.4rem;
    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: 1rem;
    text-align: center;
}

.age-popup > .content > .age-main > .age-title > span {
    line-height: 1rem;
    font-size: 0.27rem;
    color: #3f3f3f;
}

.age-popup > .content > .age-main > .age-content {
    margin: 0 0.12rem;
    font-size: 0.18rem;
    color: #3f3f3f;
    padding: 0 0.5rem;
    height: 4.6rem;
    overflow-y: auto;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar {
    width: 0.1rem;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar-thumb {
    border-radius: 0.05rem;
    background: #3400b9;
}

.age-popup > .content > .age-main > .age-content::-webkit-scrollbar-track {
    border-radius: 0.05rem;
    background: #8d8d8d;
}

.age-popup > .content > .age-main > .age-content > p {
    line-height: 0.27rem;
}
@media (max-width: 768px) {
    .age-popup > .content > .age-main {
        transform: translate(-50%, -50%) scale(0.6);
    }
}