.highLight {
    display: inline-block;
    position: fixed;
    z-index: 9999
}

.high_light_border {
    border: 1px dashed #5874d8
}

.highLight .tips_img {
    position: absolute;
    width: 100px;
    height: 70px;
    background: url(../img/helptip.png);
    background-repeat: no-repeat;
    background-position: 50%;
    top: 50%;
    margin-top: -35px;
    right: -112px;
    -webkit-animation: helpImgAnimate 1.25s;
    animation: helpImgAnimate 1.25s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes helpImgAnimate {
    0% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-10px)
    }

    40% {
        transform: translateX(0)
    }

    60% {
        transform: translateX(-10px)
    }

    80% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-10px)
    }
}

@keyframes helpImgAnimate {
    0% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-10px)
    }

    40% {
        transform: translateX(0)
    }

    60% {
        transform: translateX(-10px)
    }

    80% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-10px)
    }
}

.question_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .7)
}

.question_wrap .content {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 535px;
    height: 420px;
    margin: auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 7px 7px;
    overflow: hidden
}

.question_wrap .score_head {
    height: 130px;
    background: url(../img/score.jpg) no-repeat;
    background-size: 100% 100%
}

.question_wrap .close {
    width: 14px;
    height: 14px;
    background: url(../img/mbg01.png) -859px -154px no-repeat
}

.question_wrap .black_close,
.question_wrap .close {
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 20px
}

.question_wrap .black_close {
    width: 18px;
    height: 18px;
    background: url(../img/mbg01.png) -449px -187px no-repeat
}

.question_wrap .score_content {
    height: 190px
}

.question_wrap .content_text {
    width: 350px;
    margin: 47px auto 48px;
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #333
}

.question_wrap .score_select {
    width: 314px;
    height: 42px;
    margin: 0 auto 16px;
    display: flex;
    justify-content: space-between;
    position: relative
}

.question_wrap .score_item {
    width: 24px;
    height: 42px;
    background: #d9ebfe;
    cursor: pointer
}

.question_wrap .score_item_active {
    background: #3a9afc
}

.question_wrap .score_val {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(calc(100% + 15px), -50%);
    font-size: 16px;
    font-weight: 700;
    color: #217dff
}

.question_wrap .score_tips {
    width: 314px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #3a9afc
}

.question_wrap .feedback {
    text-align: center;
    padding-top: 63px
}

.question_wrap .feedback_advise {
    font-size: 17px;
    margin-bottom: 30px;
    color: #333
}

.question_wrap .feedback_textarea {
    resize: none;
    width: 440px;
    height: 180px;
    font-size: 13px;
    font-family: Microsoft YaHei;
    color: #333;
    line-height: 30px;
    padding: 0;
    box-sizing: border-box;
    padding-left: 11px;
    margin-bottom: 47px;
    border-color: #e3e2e8;
    border-radius: 2px
}

.question_wrap .feedback_textarea::-moz-placeholder {
    color: #999
}

.question_wrap .feedback_textarea::-ms-input-placeholder {
    color: #999
}

.question_wrap .feedback_textarea::-webkit-input-placeholder {
    color: #999
}

.question_wrap .submit {
    width: 180px;
    height: 45px;
    background: linear-gradient(90deg, #21bcff, #4498ff);
    box-shadow: 0 8px 10px 0 rgba(33, 123, 255, .3);
    border-radius: 23px;
    font-size: 18px;
    color: #fff;
    line-height: 45px;
    margin: 0 auto;
    cursor: pointer
}

.payDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 9032;
    transition: all 3s;
    background-color: rgba(0, 0, 0, .5)
}

.payDialog .payDialogContainer {
    width: 410px;
    height: 290px;
    position: absolute;
    border-radius: 2px;
    background-color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    box-sizing: border-box;
    padding: 50px
}

.payDialog .payDialogContainer .payCloseIcon {
    background: url(../img/mbg01.png) -449px -187px no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 30px;
    border: none;
    cursor: pointer
}

.payDialog .payDialogContainer .paySubmitBtn {
    width: 310px;
    height: 40px;
    color: #fff;
    border-radius: 2px;
    margin-top: 40px;
    background-color: #f13a3a;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    cursor: pointer
}

.payDialog .payDialogContainer .paySelect {
    display: flex
}

.payDialog .paySelect .payItem {
    width: 140px;
    height: 56px;
    box-sizing: border-box;
    border-radius: 2px;
    border: 1px solid #e3e2e8;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer
}

.payDialog .mr30 {
    margin-right: 30px
}

.payDialog .payTitle {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px
}

.payDialog .paySelect .check {
    border: 1px solid #f13a3a
}

.payDialog .payCheckSvg {
    display: none
}

.payDialog .check .payCheckSvg {
    display: inline;
    display: initial;
    width: 20px;
    height: 20px;
    color: #f13a3a;
    position: absolute;
    right: 0;
    bottom: 0
}

.payDialog .payWechatSvg {
    width: 40px;
    height: 38px;
    color: #38b035;
    margin-left: 15px
}

.payDialog .payAliSvg {
    width: 40px;
    height: 40px;
    color: #1caaee;
    margin-left: 20px
}

.payDialog .payName {
    margin-left: 8px
}

.payDialog .payCn {
    font-size: 14px;
    color: #333
}

.payDialog .payEn {
    font-size: 12px;
    color: #999
}