html,
body {
    margin: 0 auto;
    padding: 0;
    width: 100%;

    overflow-x: hidden;
    background: #050505;
}

* {
    box-sizing: border-box;
}

#app {
    min-height: calc(100vh - 3.75rem);
}

.textLine1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.textLine2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.textLine3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

a {
    display: block;
    text-decoration: none;
}

/* 答题页 start */
.question-tip {
    width: 18.75rem;
    margin: 0 auto;
    color: #999999;
    font-family: 'Arial', sans-serif;
    font-size: 0.69rem;
}

.quizPage {
    padding: 0 0.66rem 0;
    /* display: none; */
    display: block;
}

.quizPage header {
    display: grid;
    grid-template-columns: 1.22rem 19.34rem;
    gap: 0.63rem;
    align-items: center;
    background: #050505;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0.81rem 0.66rem;
}

.quizPage header .back,
.quizPage header .back>img,
.resultPage header .back,
.resultPage header .back>img {
    width: 1.22rem;
    height: 1.09rem;
    display: block;
}

.quizPage header .progress {
    width: 19.34rem;
    height: 1.53rem;
    background-image: url(../resources/pro_bg.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 4.2rem 15.14rem;
    align-items: flex-end;
}

.quizPage header .progress .pro-num {
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.13rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #1F1F1F;
}

.quizPage header .progress .pro-style {
    width: 15.14rem;
    height: 0.44rem;
    padding: 0 0.41rem 0 0.15rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    column-gap: 0.16rem;
}

.quizPage header .progress .pro-style .pro-item {
    width: 100%;
    height: 0.22rem;
    background: #563611;
    position: relative;
}

.quizPage header .progress .pro-style .pro-item::before {
    position: absolute;
    right: 0.03rem;
    top: 0.03rem;
    content: '';
    width: 0;
    height: 0;
    border-top: 0.08rem solid #F7E901;
    border-right: 0.08rem solid #F7E901;
    border-bottom: 0.08rem solid transparent;
    border-left: 0.08rem solid transparent;
    transform: rotate(0deg);
}

.quizPage header .progress .pro-style .pro-item-finish {
    width: 100%;
    height: 0.22rem;
    background: #F7E901;
    position: relative;
}

.quizPage main {
    /* border: 0.06rem solid #F7E901; */
    border: 0.96px solid #F7E901;
    position: relative;
    width: 100%;
    /* margin-top: 1.19rem; */
    /* margin-top: 3.44rem; */
}

.slide-line {
    /* width: 0.53rem;
    height: 20.73rem; */
    width: 9px;
    height: 345.5px;
    position: absolute;
    /* left: -0.095rem; */
    left: -1.85px;
    top: 20.19rem;
}

.quizPage main::after {
    content: '';
    position: absolute;
    right: -0.155rem;
    top: 7.09rem;
    width: 0.31rem;
    height: 24.13rem;
    background: #F7E901;
}

.quizPage main .flag {
    position: absolute;
    width: 0.97rem;
    height: 1.77rem;
    top: 1.95rem;
    right: 0.59rem;
}

.quizPage main .bottom_line {
    width: 7.8rem;
    height: 0.25rem;
    margin-left: 0.25rem;
}

.quizPage main .triangle1 {
    position: absolute;
    top: -1.85px;
    right: -1.85px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40.4px 40.4px 0;
    border-color: transparent #050505 transparent transparent;
}

.quizPage main .triangle2 {
    position: absolute;
    top: -0;
    right: -0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40.4px 40.4px 0;
    border-color: transparent #F7E901 transparent transparent;
}

/* .quizPage main .triangle1 {
    position: absolute;
    top: -0.06rem;
    right: -0.06rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2.4rem 2.4rem 0;
    border-color: transparent #050505 transparent transparent;
}

.quizPage main .triangle2 {
    position: absolute;
    top: -0.06rem;
    right: -0.06rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2.52rem 2.52rem 0;
    border-color: transparent #F7E901 transparent transparent;
} */

.quizPage main .triangle3 {
    position: absolute;
    right: 0.07rem;
    bottom: 0.07rem;
    content: '';
    width: 0;
    height: 0;
    border-top: 0.26rem solid #F7E901;
    border-right: 0.26rem solid #F7E901;
    border-bottom: 0.26rem solid transparent;
    border-left: 0.26rem solid transparent;
    transform: rotate(90deg);
}

.quizPage main .quiz-card .quiz-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.36rem;
}

.quizPage main .quiz-card .quiz-header .arrow {
    width: 1.16rem;
    height: 1.14rem;
}

.quizPage main .quiz-card .quiz-num {
    width: 4.88rem;
    height: 1.44rem;
    background: #F7E901;

    margin: 0.97rem 0 1.25rem 0.7rem;
    padding: 0.31rem 0.6rem 0.31rem 0.34rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.81rem;
    font-weight: normal;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #050505;
    text-align: center;
    position: relative;
}

.quizPage main .quiz-card .quiz-num::before {
    position: absolute;
    content: '';
    right: -0.05rem;
    top: -0.05rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.94rem 0.6rem 0;
    border-color: transparent #050505 transparent transparent;
}

.quizPage main .quiz-card .quiz-num-fin {
    color: #BFBFBF;
    background: #3D3A04;
}

.quizPage main .quiz-card .quiz-num-none {
    color: #050505;
    background: #3D3A04;
}

.quizPage main .quiz-card .img-icon {
    width: 100%;
    height: 9.38rem;
    /* background-image: url(../resources/dial.webp); */
    /* background-repeat: no-repeat;
    background-size: 102% 100%;
    background-position: 5px center; */
    position: relative;
}

.quizPage main .quiz-card .quiz_img {
    width: 100%;
    height: 9.38rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.quizPage main .quiz-card .img-icon-fin .quiz_img {
    filter: blur(1px);
}

.quizPage main .quiz-card .quiz-icon {
    width: 3.75rem;
    height: 3rem;
    z-index: 2;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
}

/* .quizPage main .quiz-card .quiz_img {
    width: 100%;
    height: 9.38rem;
} */

.quizPage main .quiz-card .quiz_options > :not(.ad-container) {
    width: 18.75rem;
    min-height: 2.81rem;
    margin: 0.94rem auto;
    background-image: url(../resources/option_bg.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 1rem 0.34rem 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.81rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #BFBFBF;
}

.quizPage main .quiz-card .quiz_options>div>span {
    color: rgba(247, 233, 1, 0.5);
    display: block;
    margin-right: 0.63rem;
    font-size: 1rem;
}

/* 选中状态 */
.quizPage main .quiz-card .quiz_options>.selected {
    background-image: url(../resources/option_act_bg.webp);
    color: #0B0B05;
}

.quizPage main .quiz-card .quiz_options>.selected>span {
    color: #0B0B05;
}

/* 已经锁定状态 */
.quizPage main .quiz-card .quiz_options>.completed-selected {
    background-image: url(../resources/option_fin_bg.webp);
}

/* 答题页 end */
/* 结果页 start */
.resultPage {
    padding: 0.81rem 0.66rem 0;
    display: none;
    overflow: hidden;
}

.resultPage header {
    margin-bottom: 2.03rem;
}

.resultPage .result-banner {
    width: 19.78rem;
    min-height: 8rem;
    margin-left: 0.56rem;
    background-image: url(../resources/result_bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0.56rem 0 1rem 1rem;
    position: relative;
}

.resultPage .result-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 0 5px;
    border-color: transparent transparent transparent #F7E901;
}

.resultPage .result-banner .info {
    max-width: 9.94rem;
}

.resultPage .result-banner .res-title {
    font-family: 'Post No Bills Colombo 800', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #502409;
    margin-bottom: 0.5rem;
    text-align: left;
}

.resultPage .result-banner .res-tips {
    font-family: 'Arial', sans-serif;
    font-size: 0.63rem;
    font-weight: normal;
    line-height: 160%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #4F2116;
    margin-bottom: 0.94rem;
}

.resultPage .result-banner .res-btn {
    width: 110.5px;
    height: 27.5px;
}

/* .resultPage .result-banner .res-btn {
    width: fit-content;
    height: 1.72rem;
    max-width: 100%;
    padding: 0 1rem;
    white-space: nowrap;
    background: #fff102;
    font-family: 'Post No Bills Colombo 800', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #0D0D0D;
    display: inline-flex;
    justify-content: center;
    align-items: center;
} */

/* .resultPage .result-banner #dial {
    width: 12.19rem;
    height: 12.19rem;
} */

.resultPage .result-banner .score-pannel {
    position: absolute;
    /* right: -3.09rem; */
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    /* width: 13.44rem;
    height: 13.44rem; */
    width: 215px;
    height: 215px;
    border-radius: 50%;
    background: #202020;
    /* box-shadow: 0rem 0.44rem 0.75rem 0rem rgba(0, 0, 0, 0.61); */
    box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.61);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultPage main {
    margin-top: 3rem;
}

.resultPage .result-banner .score-center {
    /* width: 7.25rem;
    height: 7.25rem; */
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #2E2E2E;
    /* box-shadow: 0rem 0.19rem 1.25rem 0rem rgba(0, 0, 0, 0.3); */
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
    font-family: 'Archivo Black', sans-serif;
    /* font-size: 3rem; */
    font-size: 48px;
    font-weight: normal;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #FFF102;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.resultPage .result-banner .score-center .divide {
    font-family: 'Arial', sans-serif;
    font-size: 0.69rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #737373;
    position: absolute;
    right: 11px;
    bottom: 25px;
}

.resultPage .option-title {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #B4B4B4;
    /* margin: 3.78rem auto 0.94rem; */
    margin: 0.78rem auto 0.94rem;
}

.resultPage .option-tips {
    width: 100%;
    margin: 0.94rem auto;
    padding: 0.81rem 0.63rem;
    /* min-height: 5.63rem; */
    min-height: 6.81rem;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../resources/tips_bg.webp);
}

.resultPage .option-tips>div:nth-child(1) {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.63rem;
    align-items: center;
}

.resultPage .tip-img-box {
    width: 2rem;
    height: 2rem;
    background-image: url(../resources/icon-bg.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultPage .tip-img {
    width: 1.06rem;
    height: 1.06rem;
    object-fit: contain;
}

.resultPage .option-tips .tip-answer {
    font-family: 'Arial', sans-serif;
    font-size: 0.81rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #79D757;
    margin-bottom: 0.38rem;
}

.resultPage .option-tips .tip-wrong {
    font-family: 'Arial', sans-serif;
    font-size: 0.63rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #6E6E6E;
    text-decoration: line-through;
}

.resultPage .option-tips .line {
    width: 100%;
    height: 0.03rem;
    background: #383838;
    margin: 0.63rem auto;
}

.resultPage .option-tips .tip-item {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    letter-spacing: normal;
    color: rgba(153, 153, 153, 1);
    display: grid;
    grid-template-columns: 1.7rem 1fr;
    gap: 0.25rem;
}

.resultPage .option-tips .tip-item>span {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    font-variation-settings: "opsz" auto;
    color: rgba(255, 107, 107, 1);
    display: block;
}

/* toast提示窗 */
.toast-popup {
    display: none;
    padding: 0.675rem;
    width: 15.81rem;
    text-align: center;
    border-radius: 0.31rem;
    background: rgba(0, 0, 0, 0.65);
    top: 70%;
    left: 50%;
    z-index: 99;
    color: #e1e1e1;
    position: fixed;
    transform: translate(-50%, -50%);
}

.toast-popup .toast-subtitle {
    font-family: HarmonyOS Sans SC, sans-serif;
    ;
    font-size: 0.812rem;
    font-weight: normal;
    line-height: 1.2rem;
    text-align: center;
    color: #e1e1e1;
}

#reward-toast {
    display: none;
    padding: 12px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.65);

    color: #e1e1e1;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%;
    text-align: center;

    left: 50%;
    bottom: 16vh;
    z-index: 12;
    position: fixed;
    transform: translateX(-50%);
}

.tag {
    display: flex;
    align-items: end;
    justify-content: flex-start;
    gap: 0.4rem;

    margin: 0.2rem 0 1rem;
}

.tag-tip {
    background: #F7E901;
    padding: 0.31rem 0.7rem 0.31rem 0.34rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.81rem;
    font-weight: normal;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #050505;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    line-height: normal;
}

.tag-tip::before {
    position: absolute;
    content: '';
    right: -0.05rem;
    top: -0.05rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.94rem 0.6rem 0;
    border-color: transparent #050505 transparent transparent;
}

.tag .arrow {
    width: 1.16rem;
    height: 1.14rem;
}

.disclaimer {
    width: 21.5rem;
    padding: 1rem 0.5rem;
    margin: 2rem auto 1rem;
    border: 0.06rem solid rgba(255, 241, 2, 1);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    line-height: 130%;
    color: #BFBFBF;
}

/* 结果页 end */
footer {
    height: 3rem;
    color: rgba(239, 239, 239, 0.6);
    padding: 0 2.6rem;
    font-size: 0.74rem;
    text-align: center;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(239, 239, 239, 0.6);
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 4px 1fr;
}

footer a {
    color: rgba(239, 239, 239, 0.6);
    text-align: center;
}
