a {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

input {
    outline: none;
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari 和 Chrome */
}

input::-webkit-input-placeholder {
    color: #eee;
}

.bg-gray.input::-webkit-input-placeholder {
    color: #999;
}

button {
    border: none;
    cursor: pointer;
}

.page-container {
    width: 100vw;
    min-height: 100vh;
}

.full-page {
    width: 100vw;
    height: 100vh;
}

.bg-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hidden {
    overflow: hidden;
}

.auto-height {
    overflow-x: hidden;
    overflow-y: auto;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.border-box {
    box-sizing: border-box;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100vh;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.li-decimal {
    padding-left: 1em;
    list-style-type: decimal;
}

.positon-center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ==================
          文本
 ==================== */

.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: right;
}

.text-white {
    color: #fff !important;
}

.text-black {
    color: #1b1b1b !important;
}

.text-lightblue {
    color: #07EAD1 !important;
}

.text-purple {
    color: #00FDCF !important;
}

.hilight-text {
    color: #1b1b1b;
    background-color: #00FDCF;
}

.text-gray {
    color: #999 !important;
}

/**
flex布局
 */

/* 父元素-flex容器 */
.flex {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/* 父元素-横向排列（主轴） */
.flex-h {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ /* 09版 */
    -webkit-box-orient: horizontal; /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ /* 09版 */
    -webkit-box-orient: vertical; /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-横向换行 */
.flex-hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.flex-ar {
    /* 09版 */
    -webkit-box-pack: space-around;
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

.flex-bt {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

.flex-h-end {
    /* 09版 */
    -webkit-box-pack: flex-end;
    /* 12版 */
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

/* 父元素-纵向排列（主轴） */
.flex-v {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ /* 09版 */
    -webkit-box-orient: vertical; /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-纵向换行 */
.flex-vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.flex-v-stretch {
    /* 09版 */
    -webkit-box-align: stretch;
    /* 12版 */
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
}

.flex-v-start {
    /* 09版 */
    -webkit-box-align: flex-start;
    /* 12版 */
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}

.flex-v-end {
    /* 09版 */
    -webkit-box-align: flex-end;
    /* 12版 */
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.flex-v-baseline {
    /* 09版 */
    -webkit-box-align: baseline;
    /* 12版 */
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    -o-align-items: baseline;
    align-items: baseline;
}


/*common*/
.bg-gray {
    background-color: #EEEEEE;
}

.main-container {
    margin: 0 auto;
    width: 1200px;
}

.page-title {
    font-size: 32px;
    color: #1b1b1b;
    line-height: 1.2;
}

.label {
    margin-bottom: 2.31vh;
    font-size: 26px;
    color: #1b1b1b;
}

.form {
    width: 700px;
}

.modal-container .form {
    width: 100%;
}

.form-item {
    margin-bottom: 3.7vh;
}

.input {
    padding: 20px;
    width: 100%;
    height: 7.41vh;
    line-height: 7.41vh;
    font-size: 26px;
    color: #1b1b1b;
    background-color: #fff;
    border-radius: 100px;
    border: none;
    box-sizing: border-box;
}

.input.bg-gray {
    background-color: #eee;
}

.inputMouseTypeWrap .input {
    width: 700px;
}

.btn-lg {
    padding: 20px 100px;
    text-align: center;
    font-size: 32px;
    white-space: nowrap;
    border-radius: 100px;
    box-sizing: border-box;
}

.btn-sm {
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 1.25rem /* 2
    white-space: nowrap0/16 */;
    border-radius: 100px;
    box-sizing: border-box;

}

.btn-normal {
    padding: 10px 30px;
    letter-spacing: 5px;
    text-align: center;
    font-size: 24px;
    white-space: nowrap;
    border-radius: 100px;
    box-sizing: border-box;
}

.btn-scale:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn-primary {
    background-color: #00FDCF;
    color: #1b1b1b;
}

.btn-primary:hover, .btn-disabled:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 1px 3px 0;
}

.btn-disabled {
    background-color: #eee;
}

.user-info {
    position: absolute;
    top: 4.63vh;
    left: 2vw;
    font-size: 20px;
    z-index: 2;
}

.user-info span,
.user-info a {
    color: #1b1b1b;
    margin: 0 5px;
}

.nav-wrap {
    margin-left: 2vw;
    width: 28.125rem /* 450/16 */;
}

.nav-wrap .logo {
    width: 350px;
    position: fixed;
    left: 2vw;
    bottom: 1vh;
}

.test-wrap {
    width: calc(100% - 29.375rem /* 470/16 */);
    position: relative;
    z-index: 1;
}

.attentionWrap .text {
    font-size: 20px;
    color: #1b1b1b;
    line-height: 1.6;
}

.bottom-wrap {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

.bottom-wrap .btn-lg {
    margin: 0 2vw;
}

.nav-item {
    padding: 2vh 0;
}

.nav-name {
    width: 13.125rem /* 210/16 */;
    height: 7.41vh;
    line-height: 7.41vh;
    font-size: 1.5rem /* 24/16 */;
    color: #999;
    text-align: right;
    box-sizing: border-box;
}

.nav-item.done .nav-name {
    /*background-color: #00FDCF;*/
    /*color: #fff;*/
    /*border-radius: 6px;*/
}

.nav-item.active .nav-name {
    color: #00FDCF;
}

.nav-dot {
    margin: 0 15px;
    width: 3.75rem /* 60/16 */;
    height: 3.75rem /* 60/16 */;
    box-sizing: border-box;
    position: relative;
}

.nav-dot:after {
    content: '';
    display: block;
    width: 1px;
    height: 6vh;
    background-color: #D5D5D5;
    position: absolute;
    left: 50%;
    bottom: -6vh;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.nav-item.last .nav-dot:after {
    content: none;
}

.nav-num,
.nav-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #D5D5D5;
    text-align: center;
    line-height: 3.75rem /* 60/16 */;
    font-size: 1.75rem /* 28/16 */;
    color: #999;
    position: relative;
    z-index: 2;
}

.nav-icon {
    display: none;
}

.nav-item.done .nav-num,
.nav-item.done .nav-icon {
    background-color: #00FDCF;
    border: 1px solid #00FDCF;
}

.nav-item.done .nav-icon {
    display: block;
}

.nav-item.done .nav-num {
    display: none;
}

.nav-item.active .nav-num {
    color: #00FDCF;
    border: 1px solid #00FDCF;
}

.nav-item .time {
    font-size: 1.625rem /* 26/16 */;
    color: #1b1b1b;
}

.h2 {
    font-size: 28px;
}

.h3 {
    font-size: 26px;
}

.h4 {
    font-size: 18px;
}

.arrays {
    margin: 0 auto;
}

.arrays li {
    margin: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    text-align: center;
    color: #1b1b1b;
    border: 1px solid #1b1b1b;
    box-sizing: border-box;
}

.arrays li.done {
    background: #00FDCF;
    color: #1b1b1b;
    border-color: #00FDCF;
}

.table-box {
    width: 100%;
    font-size: 16px;
    overflow: auto;
    position: relative;
}

.table-box.unclickable {
    position: relative;
    overflow: hidden;
}

.table-box.unclickable .table:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.table td,
.table th {
    width: 70px;
    height: 30px;
    white-space: nowrap;
    color: #1b1b1b;
    border: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
}

.table td.clickable {
    background: rgba(123, 83, 244, .5);
    color: #1b1b1b;
    cursor: pointer;
}

@-webkit-keyframes flash1 {

    0%,
    100% {
        background: rgba(7, 234, 209, 0);
    }

    50% {
        background: rgba(7, 234, 209, 1);
    }
}

@keyframes flash1 {

    0%,
    100% {
        background: rgba(7, 234, 209, 0);
    }

    50% {
        background: rgba(7, 234, 209, 1);
    }
}

.flash1 {
    -webkit-animation: flash1 1s linear infinite;
    -o-animation: flash1 1s linear infinite;
    animation: flash1 1s linear infinite;
}

.table td.clickable.selected {
    background: lightgray;
    color: #fff;
}

@-webkit-keyframes unclickable {
    0% {
        background: rgba(224, 15, 15, 0);
    }

    100% {
        background: rgba(224, 15, 15, 1);
    }
}

@keyframes unclickable {
    0% {
        background: rgba(224, 15, 15, 0);
    }

    100% {
        background: rgba(224, 15, 15, 1);
    }
}

.table td.unclickable {
    -webkit-animation: unclickable .3s ease-in infinite;
    -o-animation: unclickable .3s ease-in infinite;
    animation: unclickable .3s ease-in infinite;
}

.colNum.cur {
    background: #E1E1E1;
    color: green;
}

/*.fixedTable td:first-child,
.fixedTable th:first-child{
    width: 70px;
    position: absolute;
    margin: -1px 0px 0px -1px;
}
.fixedColumn {
    width: 66px !important;
}*/

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(142, 149, 154, 1);
    border-right: 2px;
}

.timer {
    padding: 15px 25px;
    width: 210px;
    font-size: 42px;
    line-height: 1;
    color: #07EAD1;
    background: rgba(7, 234, 209, .1);
    border: 1px solid #07EAD1;
    border-radius: 6px;
    box-sizing: border-box;
    position: absolute;
    left: 2vw;
    top: 12vh;
    z-index: 2;
}

.timer li {
    margin: 0 5px;
    position: relative;
}

.timer li:after {
    content: ':';
    font-size: 42px;
    color: #07EAD1;
    position: absolute;
    top: -3px;
    right: -10px;
}

.timer li:last-child:after {
    content: none;
}

.tips {
    margin-bottom: 1vh;
    font-size: 22px;
    color: #1b1b1b;
    opacity: 1;
}

@-webkit-keyframes showTips {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes showTips {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.showTips {
    -webkit-animation: flash .5s ease-in-out infinite;
    -o-animation: flash .5s ease-in-out infinite;
    animation: flash .5s ease-in-out infinite;
}

.icon-tips {
    margin-right: 20px;
    width: 32px;
}

.totast-container {
    display: inline-block;
    padding: 15px 25px;
    font-size: 22px;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    border-radius: 6px;
    box-sizing: border-box;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.left-arrow,
.right-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    opacity: .2;
}

@-webkit-keyframes moverRight {

    0%,
    100% {
        -webkit-transform: translateX(10px) translateY(-50%);
        -moz-transform: translateX(10px) translateY(-50%);
        -ms-transform: translateX(10px) translateY(-50%);
        -o-transform: translateX(10px) translateY(-50%);
        transform: translateX(10px) translateY(-50%);
    }

    50% {
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes moveRight {

    0%,
    100% {
        -webkit-transform: translateX(10px) translateY(-50%);
        -moz-transform: translateX(10px) translateY(-50%);
        -ms-transform: translateX(10px) translateY(-50%);
        -o-transform: translateX(10px) translateY(-50%);
        transform: translateX(10px) translateY(-50%);
    }

    50% {
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

.moveRight {
    -webkit-animation: moveRight 1s linear infinite;
    -o-animation: moveRight 1s linear infinite;
    animation: moveRight 1s linear infinite;
}


@-webkit-keyframes moveLeft {

    0%,
    100% {
        -webkit-transform: translateX(-10px) translateY(-50%);
        -moz-transform: translateX(-10px) translateY(-50%);
        -ms-transform: translateX(-10px) translateY(-50%);
        -o-transform: translateX(-10px) translateY(-50%);
        transform: translateX(-10px) translateY(-50%);
    }

    50% {
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes moveLeft {

    0%,
    100% {
        -webkit-transform: translateX(-10px) translateY(-50%);
        -moz-transform: translateX(-10px) translateY(-50%);
        -ms-transform: translateX(-10px) translateY(-50%);
        -o-transform: translateX(-10px) translateY(-50%);
        transform: translateX(-10px) translateY(-50%);
    }

    50% {
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

.moveLeft {
    -webkit-animation: moveLeft 1s linear infinite;
    -o-animation: moveLeft 1s linear infinite;
    animation: moveLeft 1s linear infinite;
}

@-webkit-keyframes moveUp {

    0%,
    100% {
        -webkit-transform: translateY(-10px) translateX(-50%);
        -moz-transform: translateY(-10px) translateX(-50%);
        -ms-transform: translateY(-10px) translateX(-50%);
        -o-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(0) translateX(-50%);
        -moz-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes moveUp {

    0%,
    100% {
        -webkit-transform: translateY(-10px) translateX(-50%);
        -moz-transform: translateY(-10px) translateX(-50%);
        -ms-transform: translateY(-10px) translateX(-50%);
        -o-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(0) translateX(-50%);
        -moz-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

.moveUp {
    -webkit-animation: moveUp 1s linear infinite;
    -o-animation: moveUp 1s linear infinite;
    animation: moveUp 1s linear infinite;
}

@-webkit-keyframes moveDown {

    0%,
    100% {
        -webkit-transform: translateY(10px) translateX(-50%);
        -moz-transform: translateY(10px) translateX(-50%);
        -ms-transform: translateY(10px) translateX(-50%);
        -o-transform: translateY(10px) translateX(-50%);
        transform: translateY(10px) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(0) translateX(-50%);
        -moz-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes moveDown {

    0%,
    100% {
        -webkit-transform: translateY(10px) translateX(-50%);
        -moz-transform: translateY(10px) translateX(-50%);
        -ms-transform: translateY(10px) translateX(-50%);
        -o-transform: translateY(10px) translateX(-50%);
        transform: translateY(10px) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(0) translateX(-50%);
        -moz-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

.moveDown {
    -webkit-animation: moveDown 1s linear infinite;
    -o-animation: moveDown 1s linear infinite;
    animation: moveDown 1s linear infinite;
}

.left-arrow {
    left: 60px;
}

.right-arrow {
    right: 60px;
}

.icon-arrow {
    width: 40px;
}

.left-arrow .icon-arrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.result-box {
    padding: 100px 0;
    font-size: 32px;
    color: #1b1b1b;
}

.report-box {
    margin: 5vh auto;
    padding: 1.875rem /* 30/16 */;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

.report-head {
    margin-bottom: 1.875rem /* 30/16 */;
    font-size: 26px;
    text-align: center;
    color: #1b1b1b;
    font-weight: bold;
}

.report-table td,
.report-table th {
    width: 15.625rem /* 250/16 */;
    height: 4.375rem /* 70/16 */;
    white-space: nowrap;
    color: #666;
    font-size: 22px;
    /*border: 1px solid #ccc;*/
    text-align: center;
    vertical-align: middle;
    /*background-color: #fff;*/
}

.report-conclusion {
    margin-top: 1.875rem /* 30/16 */;
    font-size: 24px;
    color: #666;
    line-height: 2;
}

.modal-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.modal-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.modal-body {
    padding: 0 3.75rem /* 60/16 */;
    width: 85%;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 45px 0px rgba(4, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 45px 0px rgba(4, 0, 0, 0.08);
    box-shadow: 0px 0px 45px 0px rgba(4, 0, 0, 0.08);
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.modal-title {
    margin: 3.125rem /* 50/16 */ auto;
    font-size: 2rem /* 32/16 */;
    font-weight: bold;
    color: #1b1b1b;
}

.form-line {
    margin-bottom: 3.75rem /* 60/16 */;
}

.radio,
.checkbox {
    width: 14px;
    height: 14px;
    position: relative;
    cursor: pointer;
}

.radio:before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1px solid #00FDCF;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}

.radio:checked:before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1px solid #00FDCF;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}

.radio:checked:after {
    content: "";
    width: 8px;
    height: 8px;
    text-align: center;
    background: #00FDCF;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
}

.checkbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #00FDCF;
}

.checkbox:checked::before {
    content: "\2713";
    line-height: 14px;
    text-align: center;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid #00FDCF;
    color: #00FDCF;
    font-size: 14px;
    font-weight: bold;
}

.form-line .label {
    margin-bottom: -0.375rem /* -6/16 */;
    margin-left: 0.625rem /* 10/16 */;
    font-size: 1.625rem /* 26/16 */;
    cursor: pointer;
}

.question-num,
.question-content {
    font-size: 1.875rem /* 30/16 */;
    color: #1b1b1b;
}


.question-content .text-sm {
    font-size: 1.375rem /* 22/16 */;
}

.answer {
    margin-top: 1.25rem /* 20/16 */;
    font-size: 1.375rem /* 22/16 */;
    color: #1b1b1b;
}

.answer li {
    margin-right: 3.75rem /* 60/16 */;
}

.logo {
    margin-top: -3vh;
    width: 400px;
}

.bottom-rights {
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bottom-rights .logo {
    width: 150px;
}

.tips-box {
    margin-bottom: 2vh;
}

/*问卷调查*/
.survey-form .form-line {
    margin-bottom: 1.875rem /* 30/16 */;
}

.survey-form .option-list {
    margin-top: 2.5rem /* 40/16 */;
}

.survey-form .option-item {
    margin: 1.25rem /* 20/16 */ 0;
    font-size: 1.625rem /* 26/16 */;
}

.survey-form .round-name {
    width: 20%;
}

.survey-form .scores-list {
    width: 80%;
}

.survey-form .score {
    margin: 0 0.625rem /* 10/16 */;
    width: 2.5rem /* 40/16 */;
    height: 2.5rem /* 40/16 */;
    line-height: 2.5rem /* 40/16 */;
    font-size: 1.625rem /* 26/16 */;
    text-align: center;
    color: #00FDCF;
    border-radius: 6.25rem /* 100/16 */;
    border: 1px solid #00FDCF;
    box-sizing: border-box;
    cursor: pointer;
}

.survey-form .score.active {
    background-color: #00FDCF;
    color: #fff;
}

/* 加载 */
.loader {
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, .6);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader svg path,
.loader svg rect {
    fill: #fff;
}


.bottom-wrap .btn-lg.btnSkip {
    flex: inherit;
    font-size: 24px;
    background: #eee;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* 倒计时 */
.countdown {
    font-size: 150px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
