﻿#divLXorKS {
    overflow: hidden;
}

.divContent {
    overflow: auto;
    background-color: #fff;
}

#divQuestion {
    /*padding: 10px;
    font-size: 19px;
    background-color: white;*/
}

    #divQuestion .radio {
        font-size: 11px;
        border: 1px solid #8D8C8D;
        border-radius: 5px;
        padding: 2px 5px;
        margin-right: 5px;
        position: relative;
        top: -2px;
    }

.radio {
    font-size: 11px;
    border: 1px solid #8D8C8D;
    border-radius: 5px;
    padding: 2px 5px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

#divQuestion .radioQmp3 {
    font-size: 11px;
    border: 1px solid #8D8C8D;
    border-radius: 5px;
    padding: 2px 5px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    width: 77px;
    height: 25px;
}

#divType3ShowD {
    text-align: center;
    padding-top: 10px;
}

    #divType3ShowD input {
        background-color: #ff6f36;
        color: white;
        width: 30%;
        font-size: 16px;
    }

.radioQmp3 {
    font-size: 11px;
    border: 1px solid #8D8C8D;
    border-radius: 5px;
    padding: 2px 5px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    width: 77px;
    height: 25px;
}

#divAn1,
#divAn2,
#divAn3,
#divAn4 {
    /*background-color: white;*/
    /*line-height: 35px;*/
    padding: 4px 0;
}

.AnSel {
    background-color: #b3e3fb;
}

.spAnswerTrue {
    /*text-indent: 5000px;*/
    background: #1fae0c;
    border-color: #1FAE0C;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    /*padding: 5px 8px 5px 8px;*/
    padding: 4px 7px 4px 7px;
}

    .spAnswerTrue:after {
        font-family: "iconfont" !important;
        content: "\e606";
        color: white;
        /*font-size: 16px;*/
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -webkit-text-stroke-width: 0.2px;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
    }

.spAnswerFalse {
    /*text-indent: 5000px;*/
    background: #f84747;
    border-color: #f84747;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 4px 7px 4px 7px;
}

    .spAnswerFalse:after {
        font-family: "iconfont" !important;
        content: "\e602";
        color: white;
        /*font-size: 16px;*/
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -webkit-text-stroke-width: 0.2px;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
    }

.judgment {
    font-family: Tahoma;
    font-size: 24px;
    line-height: 24px;
    /*display: block;*/
    box-sizing: border-box;
    outline: 0px none;
    list-style: outside none none;
}


.result {
    overflow: hidden;
    font-size: 12px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    height: 11%;
    padding-left: 15px;
    position: relative;
    line-height: 40px;
}

    .result span {
        margin-right: 10px;
    }

    .result .close {
        position: absolute;
        right: 30px;
        background: #0087E5 none repeat scroll 0% 0%;
        color: #FFF;
        line-height: 20px;
        padding: 5px 15px;
        border-radius: 2px;
        transition: all 0.2s ease 0s;
        text-decoration: none;
        box-sizing: border-box;
        outline: 0px none;
        margin-top: 5px;
    }


.num {
    padding: 15px 10px 10px 15px;
    overflow: scroll;
    /*height: 78.5%;*/
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
}

    .num ul li {
        width: 9%;
        margin-right: 1%;
        text-align: center;
        margin-bottom: 1%;
        border-radius: 5px;
        line-height: 35px;
        float: left;
        background: #EDEDED none repeat scroll 0% 0%;
    }

#divImg {
    width: 100%;
    background-color: white;
    text-align: center;
}

    #divImg img {
        max-width: 96%;
        max-height: 200px;
        margin: 0px auto;
    }

    #divImg video {
        max-width: 96%;
        max-height: 200px;
        margin: 0px auto;
    }




/* 定义keyframe动画，命名为blink */

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }
    /* 注意这里定义50.01%立刻透明度为０，可以设置闪烁效果 */
    100% {
        opacity: 0;
    }
}

/* 添加兼容性前缀 */

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 定义blink类*/
.blink {
    animation: blink 1s linear infinite;
    /* 其它浏览器兼容性前缀 */
    -webkit-animation: blink 1s linear infinite;
    -moz-animation: blink 1s linear infinite;
    -ms-animation: blink 1s linear infinite;
    -o-animation: blink 1s linear infinite;
    color: #dd4814;
}

/*========================
以下内容为弹出界面的样式
========================*/
.spanFlash {
    /*font-size: 26px;*/
    font-size: 7vw;
    font-weight: bold;
    color: red;
    padding: 0 5px 0 5px;
    animation: blink 1s linear infinite;
    /* 其它浏览器兼容性前缀 */
    -webkit-animation: blink 1s linear infinite;
    -moz-animation: blink 1s linear infinite;
    -ms-animation: blink 1s linear infinite;
    -o-animation: blink 1s linear infinite;
}

.spannoFlash {
    font-size: 26px;
    font-weight: bold;
    color: red;
    padding: 0 5px 0 5px;
}

.spanBlue {
    /*font-size: 26px;*/
    font-weight: bold;
    color: blue;
    padding: 0 5px 0 5px;
}


#bg,
#bg2 {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    filter: Alpha(opacity=50);
    opacity: 0.5;
    background: #000000;
    display: none;
    z-index: 120;
}

#popbox {
    position: fixed;
    width: 92%;
    /* height: 360px; */
    left: 4%;
    top: 50%;
    margin: -180px 0 0 0;
    display: none;
    background: #fff;
    z-index: 150;
    border: 1px solid #808080;
    border-radius: 15px;
    text-align: center;
    font-size: 15px;
    line-height: 45px;
}

#popbox2 {
    position: fixed;
    width: 92%;
    /* height: 280px; */
    left: 4%;
    top: 50%;
    margin: -140px 0 0 0;
    display: none;
    background: #fff;
    z-index: 150;
    border: 1px solid #808080;
    border-radius: 15px;
    text-align: center;
    font-size: 15px;
    line-height: 45px;
}

#bgResult {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    filter: Alpha(opacity=70);
    opacity: 0.7;
    background: #000000;
    display: none;
    z-index: 120;
}

#popboxResult {
    position: fixed;
    width: 80%;
    /*height: 215px;*/
    left: 10%;
    top: 50%;
    margin: -170px 0 0 0;
    display: none;
    background: #fff;
    z-index: 150;
    border: 1px solid #808080;
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

    #popboxResult table tr td:first-child {
        text-align: right;
    }

    #popboxResult .numStr {
        color: red;
        font-size: 20px;
        font-family: Arial;
        font-weight: bold;
        padding-right: 5px;
    }


#bg4 {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    /*filter: Alpha(opacity=50);*/
    /*opacity: 0.5;*/
    /*background: #000000;*/
    /*background-color:#808080;*/
    background-color: #fef0e7;
    display: none;
    z-index: 120;
}

#popbox4 {
    position: fixed;
    width: 90%;
    /*height: 280px;*/
    left: 5%;
    /*top: 3%;*/
    top: 0;
    margin: 5% 0 0 0;
    display: none;
    background: #fff;
    z-index: 150;
    /*border: 1px solid #808080;*/
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    font-size: 15px;
    line-height: 45px;
}


#divvdo {
    width: 100%;
}

#vdo {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: -5.5%;
    /*margin-top:-8%;*/
    /*margin-top:-0.8%;*/
}

#divClose4 {
    width: 100%;
    border-top: 1px solid #C8C8C8;
    background-color: #fff;
    /*border-bottom-left-radius: 15px;
    border-bottom-right-radius:15px;*/
    line-height: 35px;
    background-color: #0087e5;
    color: white;
}

#Skillimg,
#divhelp {
    /*line-height: 25px;*/
    line-height: normal;
    padding: 5px;
}

    #Skillimg img {
        max-height: 175px;
        max-width: 100%;
    }

    #Skillimg span,
    #divhelp span {
        font-size: 7vw;
        /*font-size: 26px;*/
        font-weight: bold;
        color: red;
        padding: 0 5px 0 5px;
        animation: blink 1s linear infinite;
        /* 其它浏览器兼容性前缀 */
        -webkit-animation: blink 1s linear infinite;
        -moz-animation: blink 1s linear infinite;
        -ms-animation: blink 1s linear infinite;
        -o-animation: blink 1s linear infinite;
    }

#ajj {
    position: absolute;
    right: 10px;
    background: #0087E5 none repeat scroll 0% 0%;
    color: #FFF;
    line-height: 20px;
    padding: 5px 15px;
    border-radius: 2px;
    transition: all 0.2s ease 0s;
    text-decoration: none;
    box-sizing: border-box;
    outline: 0px none;
    margin-top: 3px;
}


#imgheadimgurl {
    margin-top: 7.5px;
    margin-bottom: -7.5px;
}

.imgdrag {
    width: 80px;
    border-radius: 50%;
    display: none;
}

.imgdragvdo {
    /*position: absolute;
    bottom: 0;*/
    margin-top: 5px;
}
/*标题栏样式 --- start*/
.divTop div {
    float: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.divTop > .divTopWrap {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .divTop > .divTopWrap > .wrap-left,
    .divTop > .divTopWrap > .wrap-right {
        height: 100%;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .divTop > .divTopWrap > .wrap-middle {
        width: 52px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .divTop > .divTopWrap > .wrap-right {
        justify-content: flex-end;
    }

    .divTop > .divTopWrap #ajj {
        position: relative;
        right: 0;
        background: #0087E5 none repeat scroll 0% 0%;
        color: #FFF;
        line-height: 20px;
        padding: 5px 15px;
        border-radius: 2px;
        transition: all 0.2s ease 0s;
        text-decoration: none;
        box-sizing: border-box;
        outline: 0px none;
        margin-top: 3px;
    }
/*标题栏样式 ---   end*/

/*主题切换样式 --- start*/
.changeTheme {
    width: 46px;
    height: 26px;
    line-height: 24px;
    padding: 0 5px;
    margin-top: 4px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 4px;
}

.van-popup .van-cell__value {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    flex: 2;
    overflow: visible;
}

.van-popup .van-badge.van-badge--fixed {
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    min-width: 0;
    padding: 0;
    border: 1px solid #07c160;
}

.van-popup .van-icon-cross {
    padding: 6px;
}

.van-popup .van-switch__node {
    box-shadow: rgb(0 0 0 / 30%) 0px 0px 3px;
}

.van-popup .question-themes {
    display: flex;
    align-items: center;
}

.van-popup .question-theme {
    -webkit-box-flex: 2;
    -webkit-flex: 1;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.van-popup .question-theme-img,
.van-popup .question-theme-mode {
    text-align: center;
}

.van-popup .question-theme-mode {
    width: 66px;
    position: relative;
}

.van-popup .question-theme-standard {
    color: #212121;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.van-popup .question-theme-eye-care {
    color: #212121;
    background-color: #f6eab8;
    /* border: 1px solid #f6eab8; */
}

.van-popup .question-theme-night {
    color: #fff;
    background-color: #242424;
    /* border: 1px solid #242424; */
}

.van-popup .question-fonts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}

    .van-popup .question-fonts > div {
        position: relative;
        width: 66px;
        text-align: center;
        color: #666;
        border: 1px solid #f0f0f0;
        margin-bottom:10px;
    }

.van-popup .question-font-normal {
    font-size: 18px;
}

.van-popup .question-font-large {
    font-size: 20px;
}

.van-popup .question-font-x-large {
    font-size: 22px;
}

.van-cell-group.van-hairline--top-bottom::after,
.van-cell-group.van-hairline-unset--top-bottom::after {
    border-width: 0;
}

/* 夜间模式答题设置的样式 */
.van-popup.van-popup-dark {
    background-color: #2a2a2c;
    border-top: 1px solid #888;
}

    .van-popup.van-popup-dark .van-cell {
        color: #ccc;
        background-color: #2a2a2c;
    }

    .van-popup.van-popup-dark .question-theme-night {
        color: #fff;
        background-color: #565656;
        /* border: 1px solid #565656; */
    }

    .van-popup.van-popup-dark .question-fonts > div {
        color: #ccc;
    }

.van-popup .van-image {
    position: absolute;
    right: -4px;
    top: -4px;
    background-color: #fff;
}

.van-dialog__header {
    font-weight: bold !important;
    color: #000;
    font-size:18px;
}
.van-dialog__message {
    text-align: left !important;
    color: #555 !important;
    font-size: 16px !important;
    line-height: 24px !important;
}

/*主题切换样式 ---   end*/

/* 丢10分不合格提示框样式 */

.van-dialog-unqualified .wrap0 {
    padding: 0 12px 12px 12px;
    text-align: center;
}

.van-dialog-unqualified .van-dialog__header {
    color: #ed4552;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1px;
}

.van-dialog-unqualified .subtitle {
    line-height: 30px;
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
}

.van-dialog-unqualified .Summary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.van-dialog-unqualified .summaryitem {
    padding: 40px 16px 16px 16px;
}

.van-dialog-unqualified .summaryitemnum {
    font-size: 18px;
    font-weight: bold;
}

.van-dialog-unqualified .summaryitemtext {
    color: #666;
    font-size: 14px;
}

.van-dialog-unqualified .van-button--normal {
    font-size: 16px;
    width: 45%;
    height: 38px;
}

.van-dialog-unqualified .btnleft {
    border-width: 0;
}