.container>img {
    display: block;
    width: 100%;
}

.activity-container {
    position: relative;
    width: 100%;
}

.activity-container>img {
    display: block;
    width: 100%;
}

.activity-container>.btn {
    display: block;
    position: absolute;
    top:2.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5.2rem;
    height: 2rem;
}



.popup-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}

.popup-container>.popup-bg {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    height: 12.3rem;
    background-image: url(../img/popup_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    animation: popIn .4s;
}

.popup-container>.popup-bg>.popup-question {
    width: 90%;
    margin-top: 3.96rem;
    font-size: .45rem;
    font-weight: 550;
    color: #676761;
    text-align: center;
}
.popup-container>.popup-bg>.t_01{
    margin-top: .1rem;
    width: 90%;
}

.popup-container>.popup-bg>.popup-answer1 {
    /* margin-top: 1.04rem; */
    width: 80%;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: .54rem;
    font-weight: 600;
    text-align: center;
    color: #D25926;
    /* border: 1px solid red; */
    background-image: url(../img/popup_select.png);
    background-size: 100% 100%;
}
.popup-container>.popup-bg>.popup-answer {
    /* margin-top: 1.04rem; */
    width: 80%;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: .54rem;
    font-weight: 600;
    text-align: center;
    color: #D25926;
    /* border: 1px solid red; */
    background-image: url(../img/popup_select.png);
    background-size: 100% 100%;
}
.popup-container>.popup-bg>.popup-answer2 {
    /* margin-top: 1.04rem; */
    width: 80%;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: .54rem;
    font-weight: 600;
    text-align: center;
    color: #D25926;
    /* border: 1px solid red; */
    background-image: url(../img/popup_select.png);
    background-size: 100% 100%;
}
.popup-container>.popup-bg>.mt-0 {
    margin-top: 0.2rem;
}
.popup-container>.popup-bg>.mt-1 {
    margin-top: -0.2rem;
}
.popup-container>.popup-bg>.popup-answer-selected {
    color: #FC5536;
    background-image: url(../img/popup_selected.png);
}

.popup-container>.popup-bg>input {
    display: none;
    position: absolute;
    left: 50%;
    top: 8rem;
    transform: translateX(-50%);
    padding: 0 .2rem;
    width: 72.5%;
    height: .933333rem;
    line-height: 1.18rem;
    font-size: .44rem;
    border-radius: .1rem;
    border: .020667rem #E54808  solid;
    caret-color: #FC5536;
}

.popup-container>.popup-bg>input::placeholder {
    font-size: .4rem;
    color: #676761;
}

.popup-container>.popup-bg>.phone-tips {
    width: 75%;
    display: none;
    position: absolute;
    top: 9.3rem;
    font-size: .373333rem;
    color: #E54808;
    text-align: left;
}

.popup-container>.popup-bg>.popup-submit {
    position: absolute;
    left: 50%;
    bottom: .0rem;
    transform: translateX(-50%);
    padding-bottom: .12rem;
    width: 100%;
    height: 2.56rem;
    font-size: .56rem;
    font-weight: 700;
    color: #FFFFFF;
    background-image: url(../img/popup_btn_submit.png);
    background-size: 100% 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

.popup-container>.popup-bg>.popup-submit[disabled=disabled] {
    color: #79766D;
    background-image: url(../img/popup_btn_submit_gray.png);
}

.popup-container>.popup-bg>.popup-submit>.left-arrow {
    width: .24rem;
    height: .346667rem;
}


.popup-container>.popup-bg>.essay-question-container {
    margin-top: 1.12rem;
    padding: .266667rem;
    box-sizing: border-box;
    width: 6.933333rem;
    height: 3.733333rem;
    border: .026667rem #FFD40A solid;
    border-radius: .16rem;
    background-color: #FFFFFF;
}

.popup-container>.popup-bg>.essay-question-container>textarea {
    width: 100%;
    height: 100%;
    line-height: 1.6;
    font-size: .4rem;
    color: #333333;
    border: none;
    background: transparent;
}

.popup-container>.popup-bg>.essay-question-container>textarea::placeholder {
    color: #CCCCCC;
}

@keyframes popIn {
    0% {
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }

    50% {
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }

    100% {
        transform: scale3d(1, 1, 1);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

/* 提示语弹框 */
.tipMsgCover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
}

.tipMsgCover .pup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    max-width: 7.2rem;
    background: rgba(0, 0, 0, .6);
    text-align: center;
    border-radius: .106667rem;
    line-height: .8rem;
}

.tipMsgCover .pup-box .tips-font {
    text-align: center;
    padding: .426667rem;
    font-size: .42rem;
    color: #FFFFFF;
    line-height: .56rem;
}