﻿


        .normalControlContainer,
        .retryControlContainer,
        .posterControlContainer,
        .simpleControlContainer,
        .errorControlContainer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
        }

        .controlHide {
            display: none;
        }

        .controlShow {
            display: block;
        }

        .playControlContainer {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -24px;
            margin-left: -24px;
            width: 48px;
            height: 48px;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            overflow: hidden;
        }

        .playSvg,
        .pauseSvg,
        .loadSvg {
            width: 100%;
            height: 100%;
        }

        .retryControlContainer,
        .voiceControlContainer,
        .progressBarContainer,
        .screenControlContainer {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .retryMidArea {
            width: 160px;
        }

        .retrySvg,
        .retryPlaySvg {
            width: 48px;
            height: 48px;
            margin: 0 auto 8px;
        }

        .retryTip {
            text-align: center;
            color: #fff;
            font-size: 14px;
            height: 14px;
            line-height: 14px;
        }

        @-webkit-keyframes move {
            from {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            to {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        @keyframes move {
            from {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            to {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        .loadSvg {
            -webkit-animation: move 1s linear infinite;
            animation: move 1s linear infinite;
        }

        .retryControlContainer {
            background-color: rgba(0, 0, 0, .7);
        }

        .bottomControlContainer {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 40px;
            width: 100%;
        }

        .bgGradient {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: .7;
            background-image: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
        }

        .voiceControlContainer {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 52px;
            box-sizing: content-box;
        }

        .voiceIcon,
        .screen {
            width: 18px;
            height: 18px;
        }

        .progressControlContainer {
            position: relative;
            height: 100%;
            margin: 0 52px;
        }

        .seenTime {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 46px;
            line-height: 40px;
            color: #fff;
            font-size: 12px;
        }

        .overTime {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 46px;
            line-height: 40px;
            color: #fff;
            font-size: 12px;
            text-align: right;
        }

        .progressBarContainer {
            height: 100%;
            margin: 0 46px;
        }

        .durationBarContainer {
            position: relative;
            height: 2px;
            border-radius: 1px;
            background-color: rgba(255, 255, 255, .5);
            flex: 1;
        }

        .nopProgressBar {
            position: absolute;
            left: 0;
            bottom: 0;
            border-radius: 1px;
            width: 100%;
            height: 2px;
            background-color: rgba(255, 255, 255, .5);
        }

        .loadedBar,
        .nopLoadedBar {
            height: 2px;
            border-radius: 1px;
            background-color: rgba(255, 255, 255, .6);
            width: 0;
        }

        .playedBar,
        .nopPlayedBar {
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            border-radius: 1px;
            background-color: #3c76ff;
            width: 0;
        }

        .circlePoint,
        .bigCirclePoint {
            position: absolute;
            right: -6px;
            top: -6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #fff;
        }

        .bigCirclePoint {
            right: -12px;
            top: -12px;
            width: 24px;
            height: 24px;
            opacity: 0;
        }

        .screenControlContainer {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 52px;
            box-sizing: content-box;
        }

        .fullscreen-active {
            position: fixed !important;
            left: 0 !important;
            top: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 99999 !important;
        }

        .nopVoiceOff {
            position: absolute;
            left: 17px;
            bottom: 11px;
            width: 18px;
            height: 18px;
        }

        .posterControlContainer img {
            display: block;
            border: none;
            width: 100%;
            height: 100%;
        }

        .posterControlContainer .pauseSvg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 48px;
            height: 48px;
            margin-top: -24px;
            margin-left: -24px;
        }

        .simpleInnerContainer {
            position: absolute;
            width: 38px;
            height: 28px;
        }

        .simpleLoadingContainer {
            position: absolute;
            width: 40px;
            height: 40px;
            left: 50%;
            top: 50%;
            margin: -20px 0 0 -20px;
        }

        .voice2loc1 {
            left: 5px;
            bottom: 5px;
        }

        .voice2loc2 {
            right: 10px;
            bottom: 20px;
        }

        .errorTipContainer {
            width: 70px;
            color: #fff;
            margin: 33% auto 0;
            padding: 12px 14px;
            background-color: rgba(0, 0, 0, .8);
            border: 1px solid rgba(255, 255, 255, .5);
            border-radius: 3px;
            box-sizing: content-box;
        }

        .wifiTipContainer {
            position: absolute;
            bottom: 17px;
            color: #fff;
            line-height: 38px;
            background-color: rgba(0, 0, 0, .8);
            border: 1px solid rgba(255, 255, 255, .5);
            border-radius: 3px;
            left: 50%;
            width: 172px;
            height: 38px;
            margin-left: -86px;
            opacity: .8;
            text-align: center;
        }

        .detailBtn {
            position: absolute;
            right: 15px;
            bottom: 10px;
            padding: 8px 10px;
            background-color: #38f;
            border-radius: 15px;
            color: #fff !important;
            font-size: 12px;
        }

        .tenN .bottomControlContainer {
            height: 38px;
        }

        .tenN .voiceControlContainer,
        .tenN .screenControlContainer {
            width: 38px;
        }

        .tenN .progressControlContainer {
            margin: 0 38px;
        }

        .tenN .seenTime,
        .tenN .overTime {
            width: 44px;
        }

        .tenN .nopVoiceOff {
            bottom: 10px;
            left: 10px;
        }

        .tenN .playControlContainer,
        .tenN .posterControlContainer .pauseSvg {
            margin-top: -19px;
            margin-left: -19px;
            width: 38px;
            height: 38px;
        }

        .tenN .retrySvg,
        .tenN .retryPlaySvg {
            width: 38px;
            height: 38px;
        }

        .tenN .progressBarContainer {
            margin: 0 44px;
        }

        .voiceToastContainer {
            position: absolute;
            width: 168px;
            height: 38px;
            line-height: 33px;
            color: #fff;
            text-align: center;
            background: center/contain no-repeat url("../images/toast.png")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/img/toast.png*/;
        }

        .voiceToastPosi {
            left: 10px;
            top: -32px;
        }

        .nopVoiceToastPosi {
            left: 10px;
            top: -70px;
        }


    /* 弹窗提示 */
.diy-modal{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5)
}
.diy-modal p{
	margin: 15px 0;
}
.diy-modal .diy-box{
	width: 80%;
	margin: 0 auto;
	position: relative;
	top: 8%;
}
.diy-modal .diy-background{
	text-align: center;
	position: relative;
	border: 5px solid rgb(0,200,200) ;
	background: #fff;
	padding-top: 90px;
	margin-top: 90px;
}
.diy-modal .diy-background .diy-doctor{
	position: absolute;
	left: 50%;
	margin-left: -95px;
	top: -90px;
	border: 5px solid rgb(0,200,200);
	border-radius: 100%;
	width: 180px;
	height: 180px;
}
.diy-modal .diy-background .close-pop {
	text-align: center;
	position: absolute;
	right: 5px;
	top: 5px;
	background: #ff6d6d;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
}
.diy-modal .script1 {
    font-size: 20px;
    letter-spacing: 1.5px;
}
.diy-modal .script2 {
    font-size: 16px;
    color: #9b9b9b;
    text-align: center;
}
.diy-modal .script3 {
    margin-top: .8rem;
    background-color: #fff;
    color: #f00;
    border: 1px solid #333;
    font-size: 16px;
    border-radius: 15px;
    font-size: 20px;
    width: 75%;
    margin: 0 auto;
    padding: 12px 0;
}
.diy-modal .script4 {
    color: #333;
    font-size: 18px;
    margin-top: 0rem;
    text-align: center;
}
                            * {
                                margin: 0;
                                padding: 0
                            }

                            .box {
                                width: 100%;
                                margin: 0 auto;
                                max-width: 640px;
                                font-family: "微软雅黑";
                            }

                            .top {
                                width: 94%;
                                padding: 0 3%;
                                color: #fff;
                                background-color: #ADB9CA;
                                line-height: 30px;
                                font-size: 17px;
                                text-align: center
                            }

                            .nav {
                                width: 96%;
                                margin: 1% auto 0;
                                font-size: 14px;
                                color: #666
                            }

                            .title {
                                width: 94%;
                                margin: 2% auto 5%;
                                font-size: 19px;
                                line-height: 27px;
                                letter-spacing: 1px;
                                font-weight: bold
                            }

                            .author {
                                width: 94%;
                                margin: 2% auto;
                                overflow: hidden;
                            }

                            .author .a-left {
                                width: 12%;
                                float: left
                            }

                            .author .a-left img {
                                width: 100%;
                                border-radius: 100px
                            }

                            .author .a-center {
                                width: 85%;
                                float: left;
                                margin-left: 3%
                            }

                            .author .a-center .big {
                                font-size: 16px;
                                font-weight: bold;
                                margin-bottom: 1.5%;
                                position: relative
                            }

                            .author .a-center .big span {
                                background-color: #21B384;
                                color: #fff;
                                font-size: 11px;
                                padding: 0.4% 3%;
                                border-radius: 3px;
                                font-weight: 400;
                                position: absolute;
                                bottom: 3px;
                                left: 28%
                            }

                            .author .a-center .small {
                                font-size: 12px;
                                color: #666
                            }

                            .article {
                                width: 94%;
                                margin: 0 auto 3%;
                                font-size: 17px;
                                line-height: 28px;
                                color: #414141;
                                letter-spacing: 1px;
                                text-indent: 2em;
                            }

                            .img {
                                width: 94%;
                                margin: 0 auto 3%;
                                overflow: hidden;
                                position: relative;
                                z-index: -1
                            }

                            .img img {
                                width: 100%;
                                float: left
                            }

                            .ping {
                                width: 94%;
                                margin: 3% auto 10px
                            }

                            .ping .p_title {
                                font-size: 19px;
                                font-weight: bold;
                                color: #3f3f3f;
                                margin-bottom: 5%
                            }

                            dl {
                                width: 100%;
                                overflow: hidden;
                                padding-bottom: 4%;
                                margin-bottom: 7%;
                                border-bottom: 1px solid #d5d2d2;
                            }

                            dl dt {
                                width: 10%;
                                float: left
                            }

                            dl dt img {
                                width: 100%;
                                border-radius: 100px
                            }

                            dl dd {
                                width: 87%;
                                float: right
                            }

                            dl dd.blue {
                                font-size: 16px;
                            }

                            dl dd.small {
                                font-size: 15px;
                                color: #666
                            }

                            dl dd.main {
                                color: #3f3f3f;
                                font-size: 17px;
                                line-height: 26px;
                                margin-top: 2.5%;
                                text-align: justify;
                            }

                            dl dd.main img {
                                width: 100%
                            }

                            dl dd.huifu {
                                background-color: #FAF7F7;
                                font-size: 15px;
                                line-height: 22px;
                                padding: 2% 2.5%;
                                width: 82%;
                                border-radius: 8px;
                                margin-top: 3%;
                                color: #666;
                                text-align: justify;
                            }

                            dl dd.huifu p {
                                margin-bottom: 2%
                            }

                            dl dd.d_huifu {
                                text-align: right;
                                color: #6f6f6f;
                                font-size: 14px
                            }

                            dl dd.huifu .gray {
                                color: #2E75B5
                            }
							   .swan-ad-fc-rcmd {
                                background: #fff;
                                margin-top: 8px;
                                margin-bottom: 8px;
                                padding: 0 17px
                            }

                            .swan-ad-fc-rcmd-cVersion {
                                border-radius: 10px
                            }

                            .swan-ad-fc-rcmd-title-text {
                                padding-top: 15px;
                                color: #1f1f1f;
                                margin-bottom: .1rem !important
                            }

                            .swan-ad-fc-rcmd-list {
                                font-size: 14px;
                                padding-bottom: 7px
                            }

                            .swan-ad-fc-rcmd-item {
                                display: -webkit-box;
                                display: -webkit-flex;
                                display: flex;
                                -webkit-box-align: center;
                                -webkit-align-items: center;
                                align-items: center;
                                -webkit-box-pack: start;
                                -webkit-justify-content: start;
                                justify-content: start;
                                width: 50%;
                                -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                                height: .4rem !important;
                                margin-bottom: .09rem;
                                background: #f5f5f5;
                                border-radius: 9px
                            }

                            .swan-ad-fc-rcmd-item-title {
                                margin-left: 8px;
                                margin-right: 4px;
                                white-space: nowrap;
                                overflow: hidden;
                                text-overflow: ellipsis
                            }

                            .swan-ad-fc-rcmd-item-title--bold {
                                font-weight: 700
                            }

                            .swan-ad-fc-rcmd-item-tag {
                                -webkit-flex-shrink: 0;
                                flex-shrink: 0;
                                padding: 2px 5px;
                                border-radius: 10px
                            }

                            .swan-ad-fc-rcmd-item:nth-child(odd) {
                                margin-right: .08rem !important;
                                padding-right: 0 !important
                            }

                            .swan-ad-fc-rcmd-line {
                                margin: 0
                            }

                            .swan-ad-fc-rcmd-line .swan-ad-fc-rcmd-item-title {
                                -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
                                color: #000
                            }

                            .swan-ad-fc-rcmd-bearicon {
                                display: inline-block;
                                width: 18px;
                                height: 18px;
                                -webkit-background-size: 18px 18px;
                                background-size: 18px;
                                margin: 0 0 -2px 3px
                            }

                            .swan-ad-fc-rcmd-feedback {
                                width: 100%;
                                height: 100%;
                                white-space: nowrap;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                line-height: 40px
                            }

                            .swan-ad-fc-rcmd-holder {
                                height: .17rem;
                                background-color: #fff
                            }
							                                        ._6g4tbxq {
                                            background-color: #fff
                                        }

                                        ._75gpqwa {
                                            position: relative;
                                            padding: 21px 0;
                                            margin: 0 17px;
                                            border-bottom: 1px solid #eee
                                        }

                                        ._75gpqwa h3 {
                                            padding: 0;
                                            font-weight: 400
                                        }

                                        ._75gpqwa a {
                                            text-decoration: none
                                        }

                                        ._75gpqwa em {
                                            color: #d81419;
                                            font-style: normal
                                        }

                                        ._75gpqwa:last-child {
                                            border-bottom: 0
                                        }

                                        ._42cwr5v {
                                            margin: 0
                                        }

                                        ._8x5qhzh {
                                            padding-top: 0
                                        }

                                        ._831wc5z {
                                            margin-bottom: 15px
                                        }

                                        ._6pzxfm2 {
                                            margin-bottom: 9px
                                        }

                                        ._7354mhw {
                                            margin-top: 15px
                                        }

                                        ._5vzgbfe,
                                        ._35dad68 {
                                            margin-top: 9px
                                        }

                                        ._3nuvwmr {
                                            display: flex;
                                            align-items: center;
                                            height: 100%
                                        }

                                        ._5zuf4ew {
                                            margin-bottom: 15px
                                        }

                                        ._3umya4j {
                                            margin-top: 15px
                                        }

                                        ._831wc5z+._35dad68 {
                                            margin-top: -6px
                                        }

                                        ._7zajkq4 {
                                            width: 74px;
                                            float: right
                                        }

                                        ._49625tw {
                                            margin-top: -7px
                                        }

                                        ._7354mhw {
                                            margin-top: 12px
                                        }

                                        ._4stdzwx {
                                            margin-top: 15px
                                        }

                                        ._8g7npmh {
                                            margin-bottom: 15px
                                        }

                                        ._4xf9fhq {
                                            margin-top: 13px
                                        }

                                        ._6exjmta {
                                            margin-top: 18px
                                        }

                                        ._3j483t5 {
                                            display: flex;
                                            display: -ms-flexbox;
                                            width: auto;
                                            -webkit-align-content: flex-start;
                                            -webkit-align-items: stretch;
                                            -webkit-box-align: stretch;
                                            -webkit-box-lines: single;
                                            -webkit-box-orient: horizontal;
                                            -webkit-box-pack: justify;
                                            -webkit-flex-wrap: nowrap;
                                            -webkit-justify-content: space-between;
                                            margin-right: -1%;
                                            margin-left: -1%
                                        }

                                        ._2c4yp64,
                                        ._2qpdzrd,
                                        ._3jnu1k8,
                                        ._3nwm7r9,
                                        ._4k2d463,
                                        ._4pa4z2q,
                                        ._5c4rff2,
                                        ._5yv2gav,
                                        ._8dnnzep,
                                        ._59rzz5f,
                                        ._68fb2jy,
                                        .dq7416c {
                                            position: relative;
                                            min-height: 1px;
                                            padding-right: 1%;
                                            padding-left: 1%
                                        }

                                        ._2c4yp64 {
                                            width: 8.33333333%;
                                            flex: 1;
                                            -ms-flex: 1;
                                            -moz-box-flex: 1;
                                            -webkit-box-flex: 1;
                                            -webkit-flex: 1 1 auto
                                        }

                                        ._3nwm7r9 {
                                            width: 16.6666666%;
                                            flex: 2;
                                            -ms-flex: 2;
                                            -moz-box-flex: 2;
                                            -webkit-box-flex: 2;
                                            -webkit-flex: 2 2 auto
                                        }

                                        ._5yv2gav {
                                            width: 25%;
                                            flex: 3;
                                            -ms-flex: 3;
                                            -moz-box-flex: 3;
                                            -webkit-box-flex: 3;
                                            -webkit-flex: 3 3 auto
                                        }

                                        ._59rzz5f {
                                            width: 33.33333333%;
                                            flex: 4;
                                            -ms-flex: 4;
                                            -moz-box-flex: 4;
                                            -webkit-box-flex: 4;
                                            -webkit-flex: 4 4 auto
                                        }

                                        ._2qpdzrd {
                                            width: 41.66666667%;
                                            flex: 5;
                                            -ms-flex: 5;
                                            -moz-box-flex: 5;
                                            -webkit-box-flex: 5;
                                            -webkit-flex: 5 5 auto
                                        }

                                        ._4pa4z2q {
                                            width: 50%;
                                            flex: 6;
                                            -ms-flex: 6;
                                            -moz-box-flex: 6;
                                            -webkit-box-flex: 6;
                                            -webkit-flex: 6 6 auto
                                        }

                                        ._8dnnzep {
                                            width: 58.3333333%;
                                            flex: 7;
                                            -ms-flex: 7;
                                            -moz-box-flex: 7;
                                            -webkit-box-flex: 7;
                                            -webkit-flex: 7 7 auto
                                        }

                                        ._3jnu1k8 {
                                            width: 66.66666667%;
                                            flex: 8;
                                            -ms-flex: 8;
                                            -moz-box-flex: 8;
                                            -webkit-box-flex: 8;
                                            -webkit-flex: 8 8 auto
                                        }

                                        ._68fb2jy {
                                            width: 75%;
                                            flex: 9;
                                            -ms-flex: 9;
                                            -moz-box-flex: 9;
                                            -webkit-box-flex: 9;
                                            -webkit-flex: 9 9 auto
                                        }

                                        .dq7416c {
                                            width: 83.3333333%;
                                            flex: 10;
                                            -ms-flex: 10;
                                            -moz-box-flex: 10;
                                            -webkit-box-flex: 10;
                                            -webkit-flex: 10 10 auto
                                        }

                                        ._5c4rff2 {
                                            width: 91.66666667%;
                                            flex: 11;
                                            -ms-flex: 11;
                                            -moz-box-flex: 11;
                                            -webkit-box-flex: 11;
                                            -webkit-flex: 11 11 auto
                                        }

                                        ._4k2d463 {
                                            width: 100%;
                                            flex: 12;
                                            -ms-flex: 12;
                                            -moz-box-flex: 12;
                                            -webkit-box-flex: 12;
                                            -webkit-flex: 12 12 auto
                                        }

                                        ._3j483t5 * {
                                            box-sizing: border-box
                                        }

                                        ._3rf31he {
                                            justify-content: center
                                        }

                                        ._3rf31he,
                                        ._76xtdhy {
                                            flex-direction: column;
                                            display: flex
                                        }

                                        ._8sawgzf {
                                            flex: 1;
                                            -webkit-flex: 1
                                        }

                                        ._2apvm6t {
                                            display: flex;
                                            justify-content: center;
                                            align-items: center
                                        }

                                        ._7d5jv67 {
                                            line-height: 0
                                        }

                                        ._5s6ekbc {
                                            padding-right: 0;
                                            margin-right: 6px
                                        }

                                        ._4x85dpm {
                                            padding-right: 0;
                                            margin-right: 8px
                                        }

                                        ._6y2tvn2 {
                                            padding-left: 0
                                        }

                                        ._7b2gun6 {
                                            padding-right: 0;
                                            margin-right: 9px
                                        }

                                        .w8szqh1 {
                                            margin-top: auto
                                        }

                                        body .hw8jsq7 {
                                            font-family: Arial, Helvetica, sans-serif;
                                            font-size: 13px;
                                            line-height: 23px;
                                            transform: translateY(.4346153846em);
                                            padding-top: 0;
                                            color: #999;
                                            position: relative
                                        }

                                        body .hw8jsq7:before {
                                            content: "";
                                            margin-top: -10px;
                                            display: block;
                                            height: 0
                                        }

                                        body .hw8jsq7 a {
                                            color: #999;
                                            display: block
                                        }

                                        body .hw8jsq7 a ._6aauwty {
                                            color: #999
                                        }

                                        body .hw8jsq7 button {
                                            float: right;
                                            color: #38f;
                                            font-size: 12px;
                                            background: #fff;
                                            border: 1px solid;
                                            padding: 7px 13px;
                                            border-radius: 3px;
                                            line-height: 12px;
                                            position: absolute;
                                            right: 0;
                                            bottom: 0
                                        }

                                        body .hw8jsq7 ._3w1tw5z {
                                            margin-left: 5px
                                        }

                                        body .hw8jsq7 ._437uw91 {
                                            display: inline-block;
                                            width: 22px;
                                            height: 22px;
                                            line-height: 0;
                                            vertical-align: middle;
                                            margin-right: 7px;
                                            margin-top: -2px;
                                            border: 1px solid #eee;
                                            border-radius: 50%
                                        }

                                        ._4mu5nf4 {
                                            position: absolute;
                                            right: 0
                                        }

                                        ._5wqcpyt {
                                            width: auto;
                                            -webkit-box-orient: horizontal;
                                            -webkit-box-align: stretch;
                                            display: -webkit-flex;
                                            -webkit-justify-content: space-between;
                                            -webkit-align-items: stretch;
                                            -webkit-align-content: flex-start;
                                            -webkit-flex-wrap: nowrap
                                        }

                                        ._2x27bgb {
                                            flex: 1
                                        }

                                        ._2vp72m4 {
                                            white-space: nowrap;
                                            text-overflow: ellipsis;
                                            overflow: hidden
                                        }

                                        ._37n8ad5 {
                                            -webkit-line-clamp: 2
                                        }

                                        ._5waejsg,
                                        ._37n8ad5 {
                                            display: -webkit-box;
                                            word-break: break-all;
                                            word-wrap: break-word;
                                            -webkit-box-orient: vertical;
                                            overflow: hidden
                                        }

                                        ._5waejsg {
                                            -webkit-line-clamp: 3
                                        }

                                        ._2htasef {
                                            display: -webkit-box;
                                            -webkit-line-clamp: 4;
                                            word-break: break-all;
                                            word-wrap: break-word;
                                            -webkit-box-orient: vertical;
                                            overflow: hidden
                                        }

                                        .ec-full-text-container,
                                        .ec-tagtext-last-item {
                                            display: block;
                                            overflow: hidden
                                        }

                                        .ec-full-text-container._2htasef,
                                        .ec-tagtext-last-item._2htasef {
                                            max-height: 100px
                                        }

                                        .ec-full-text-container._5waejsg,
                                        .ec-tagtext-last-item._5waejsg {
                                            max-height: 75px
                                        }

                                        .ec-full-text-container._37n8ad5,
                                        .ec-tagtext-last-item._37n8ad5 {
                                            max-height: 50px
                                        }

                                        .ec-full-text-container._2vp72m4,
                                        .ec-tagtext-last-item._2vp72m4 {
                                            max-height: 25px
                                        }

                                        ._8ggw267 {
                                            padding: 0 .05rem
                                        }

                                        ._2e2hz1d,
                                        ._8ggw267 {
                                            display: inline-block
                                        }

                                        ._2e2hz1d {
                                            background-image: url("../images/pc-bao-new-4a2bc3b50b.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-bao-new-4a2bc3b50b.svg*/;
                                            background-size: contain;
                                            width: .45rem;
                                            height: .16rem;
                                            box-sizing: border-box;
                                            top: .03rem;
                                            position: relative;
                                            background-repeat: no-repeat
                                        }

                                        .darkmode ._2e2hz1d {
                                            opacity: .8
                                        }

                                        ._8stj3qg {
                                            background-image: url("../fonts/wise-bao-icon-style1-97510aeffd.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style1-97510aeffd.svg*/;
                                            width: .3rem;
                                            position: relative
                                        }

                                        .darkmode ._8stj3qg {
                                            background-image: url("../fonts/wise-bao-icon-style1-dark-79c46a255e.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style1-dark-79c46a255e.svg*/;
                                            opacity: 1;
                                            position: relative
                                        }

                                        ._8stj3qg:before {
                                            content: "";
                                            position: absolute;
                                            top: 0;
                                            bottom: 0;
                                            left: -.04rem;
                                            right: -.04rem
                                        }

                                        ._8y1ysm9 {
                                            background-image: url("../fonts/wise-bao-icon-style2-0e6556c775.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style2-0e6556c775.svg*/;
                                            width: .42rem;
                                            height: .14rem;
                                            top: .015rem;
                                            position: relative
                                        }

                                        ._8y1ysm9:before {
                                            content: "";
                                            position: absolute;
                                            top: -.01rem;
                                            bottom: -.01rem;
                                            left: -.04rem;
                                            right: -.04rem
                                        }

                                        .darkmode ._8y1ysm9 {
                                            background-image: url("../fonts/wise-bao-icon-style2-dark-9cb25cf8e6.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style2-dark-9cb25cf8e6.svg*/;
                                            opacity: 1
                                        }

                                        ._3tw5y8c {
                                            background-image: url("../fonts/wise-bao-icon-style3-ef84c74711.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style3-ef84c74711.svg*/;
                                            width: .16rem;
                                            position: relative
                                        }

                                        ._3tw5y8c:before {
                                            content: "";
                                            position: absolute;
                                            top: 0;
                                            bottom: 0;
                                            left: -.04rem;
                                            right: -.04rem
                                        }

                                        .darkmode ._3tw5y8c {
                                            background-image: url("../fonts/wise-bao-icon-style3-dark-105dd5fa2b.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/wise-bao-icon-style3-dark-105dd5fa2b.svg*/;
                                            opacity: 1
                                        }

                                        ._25j5z9t {
                                            background-image: url("../fonts/pc-bao-white-77b1df089e.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-bao-white-77b1df089e.svg*/
                                        }

                                        ._5qy1g3a {
                                            background-image: url("../fonts/open-icon-79fc6653f2.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/open-icon-79fc6653f2.svg*/;
                                            width: 12px;
                                            height: 12px;
                                            display: inline-block;
                                            background-size: 12px 12px;
                                            vertical-align: middle;
                                            margin-top: -1px
                                        }

                                        ._2e2hz1d {
                                            width: 45px;
                                            height: 16px;
                                            top: 3px;
                                            margin-left: 10px
                                        }

                                        @font-face {
                                            font-family: ecomicons;
                                            src: url("../fonts/iconfont_9a3d333.eot")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/../fonts/iconfont_9a3d333.eot*/;
                                            src: url("../fonts/iconfont_9a3d334.eot")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/../fonts/iconfont_9a3d334.eot*/ format("embedded-opentype"), url("../fonts/iconfont_9a3d333.woff")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/../fonts/iconfont_9a3d333.woff*/ format("woff"), url("../fonts/iconfont_9a3d333.ttf")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/../fonts/iconfont_9a3d333.ttf*/ format("truetype"), url("../fonts/iconfont_9a3d333.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/../fonts/iconfont_9a3d333.svg*/ format("svg")
                                        }

                                        ._4jdtsxe,
                                        ._4x536e6,
                                        ._5tz36mm,
                                        ._6sfkb57,
                                        ._7qmbcy6,
                                        ._37f7dcp {
                                            vertical-align: top
                                        }

                                        ._4jdtsxe:after,
                                        ._4x536e6:after,
                                        ._5tz36mm:after,
                                        ._6pvab1n:after,
                                        ._6sfkb57:after,
                                        ._7qmbcy6:after,
                                        ._37f7dcp:after {
                                            font-family: ecomicons;
                                            font-size: 16px;
                                            display: inline-block;
                                            color: #999;
                                            line-height: 1;
                                            -webkit-font-smoothing: antialiased;
                                            font-weight: 400;
                                            font-style: normal;
                                            font-variant: normal;
                                            text-transform: none
                                        }

                                        ._4x536e6:after {
                                            content: "\E759"
                                        }

                                        ._5tz36mm:after {
                                            content: "\E75B"
                                        }

                                        ._6sfkb57:after {
                                            content: "\E774"
                                        }

                                        ._37f7dcp:after {
                                            content: "\E755"
                                        }

                                        ._4jdtsxe:after {
                                            content: "\E756"
                                        }

                                        ._7qmbcy6:after {
                                            content: "\E757"
                                        }

                                        ._6pvab1n:after {
                                            content: "\606"
                                        }

                                        ._4sh7xe3 {
                                            background-image: url("../fonts/consult-4b14dbfbfb.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/consult-4b14dbfbfb.svg*/;
                                            width: 16px;
                                            height: 16px;
                                            display: inline-block;
                                            background-size: 16px 16px;
                                            vertical-align: middle;
                                            margin-top: -2px
                                        }

                                        ._5zszgvt,
                                        ._5zszgvt:after {
                                            color: #92b9f8
                                        }

                                        ._7y3z65k {
                                            background-image: url("../fonts/open-icon-79fc6653f2-1.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/open-icon-79fc6653f2-1.svg*/
                                        }

                                        ._74r5ngg {
                                            display: inline-block;
                                            width: 16px;
                                            height: 16px;
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            border-radius: 50%
                                        }

                                        ._74r5ngg:after {
                                            content: "";
                                            display: inline-block;
                                            width: 5px;
                                            height: 5px;
                                            border-top: 1px solid #858585;
                                            border-right: 1px solid #858585;
                                            transform: translateX(-1px) rotate(45deg)
                                        }

                                        ._54xbr9e {
                                            background-color: #f5f5f5
                                        }

                                        ._6u86wq4 {
                                            background: url("../fonts/speaker-icon-3aa8f67fc1.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/speaker-icon-3aa8f67fc1.svg*/ 50% no-repeat;
                                            width: 14px;
                                            height: 14px;
                                            background-size: 14px 14px
                                        }

                                        ._6u86wq4,
                                        .ec_font_consult_pc {
                                            position: relative;
                                            display: inline-block
                                        }

                                        .ec_font_consult_pc {
                                            background-image: url("../fonts/pc-consult-icon-a156b7d86e.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-consult-icon-a156b7d86e.svg*/;
                                            width: 16px;
                                            height: 16px;
                                            vertical-align: middle;
                                            top: -1px
                                        }

                                        .ec_font_consult_pc:hover {
                                            background-image: url("../fonts/pc-consult-icon-hover-06d499a5b3.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-consult-icon-hover-06d499a5b3.svg*/
                                        }

                                        ._7y3z65k {
                                            background-image: url("../fonts/open-icon-blue-e0c6800a71.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/open-icon-blue-e0c6800a71.svg*/;
                                            width: 12px;
                                            height: 12px;
                                            display: inline-block;
                                            background-size: 12px 12px;
                                            vertical-align: middle;
                                            margin-top: -1px
                                        }

                                        ._7gpwka5 {
                                            margin-left: 8px;
                                            color: #999
                                        }

                                        ._4jmhtq5 {
                                            margin-left: 0
                                        }

                                        body a._51jjbfu,
                                        body div._51jjbfu {
                                            font-family: Arial, Helvetica, sans-serif;
                                            text-decoration: none;
                                            color: #000;
                                            font-size: 19px;
                                            line-height: 29px;
                                            transform: translateY(.2631578947em);
                                            padding-top: 0;
                                            margin: 0;
                                            display: block
                                        }

                                        body a._51jjbfu:before,
                                        body div._51jjbfu:before {
                                            content: "";
                                            margin-top: -10px;
                                            display: block;
                                            height: 0
                                        }

                                        a._51jjbfu div {
                                            word-break: break-all
                                        }

                                        ._6cj9wec {
                                            font-size: 11px;
                                            line-height: 1.4em;
                                            height: 15px;
                                            font-weight: 500;
                                            padding: 0 4px;
                                            border-radius: 3px;
                                            vertical-align: middle;
                                            display: inline-block;
                                            margin-bottom: 4px;
                                            margin-right: 5px
                                        }

                                        ._6cj9wec._8veyujs {
                                            color: #f5a623;
                                            background: rgba(245, 166, 35, .15)
                                        }

                                        ._6cj9wec._63g1dyr {
                                            color: #00c8c8;
                                            background: rgba(0, 200, 200, .1)
                                        }

                                        ._2xpv9rs,
                                        ._48rxbrq {
                                            background-color: #fff;
                                            display: none;
                                            width: 42px;
                                            height: 25px;
                                            line-height: 25px;
                                            font-size: 14px;
                                            font-weight: 700;
                                            position: absolute;
                                            right: 0;
                                            bottom: 0
                                        }

                                        ._2xpv9rs ._8hpez5g,
                                        ._48rxbrq ._8hpez5g {
                                            color: #000
                                        }

                                        ._2xpv9rs:before,
                                        ._48rxbrq:before {
                                            pointer-events: none;
                                            position: absolute;
                                            bottom: 0;
                                            right: 41px;
                                            width: 86px;
                                            height: 25px;
                                            content: "";
                                            background-image: linear-gradient(270deg, #fff, hsla(0, 0%, 100%, 0))
                                        }

                                        ._2xpv9rs {
                                            transform: translateY(5px)
                                        }

                                        .ec-full-text-container {
                                            position: relative
                                        }

                                        ._56gyfe3 {
                                            font-size: 14px;
                                            line-height: 23px;
                                            transform: translateY(.3214285714em);
                                            padding-top: 0;
                                            font-weight: 400
                                        }

                                        ._56gyfe3:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        ._5bpzxtj {
                                            display: block
                                        }

                                        ._37mqdxs {
                                            margin-right: 5px
                                        }

                                        ._4vr35vh {
                                            color: #999
                                        }

                                        .rums34n {
                                            color: #555
                                        }

                                        ._27whkpu {
                                            font-size: 11px;
                                            line-height: 1.4em;
                                            height: 15px;
                                            font-weight: 500;
                                            padding: 0 4px;
                                            border-radius: 3px;
                                            vertical-align: middle;
                                            display: inline-block;
                                            margin-bottom: 2px
                                        }

                                        ._27whkpu._4mpewga {
                                            color: #f5a623;
                                            background: rgba(245, 166, 35, .15)
                                        }

                                        ._27whkpu.au19bqv {
                                            color: #00c8c8;
                                            background: rgba(0, 200, 200, .1)
                                        }

                                        ._27whkpu._3pymvqc {
                                            color: #5ba4fe;
                                            background: rgba(91, 164, 254, .1)
                                        }

                                        ._74hp95a {
                                            margin: 10.5px 0 7.5px;
                                            height: 1px;
                                            background: #f5f5f5
                                        }

                                        ._3bn6vrj {
                                            font-size: 16px;
                                            line-height: 31px;
                                            font-weight: 400
                                        }

                                        ._5d5vt24 {
                                            color: #1f1f1f
                                        }

                                        ._4r5qh71 {
                                            font-size: 15px;
                                            line-height: 24px;
                                            transform: translateY(.3em);
                                            padding-top: 0
                                        }

                                        ._4r5qh71:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        ._4r5qh71 .rums34n {
                                            color: #000
                                        }

                                        ._55agmkv {
                                            font-size: 16px;
                                            line-height: 25px;
                                            transform: translateY(.28125em);
                                            padding-top: 0
                                        }

                                        ._55agmkv:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        ._8wbvuuc,
                                        ._55agmkv .rums34n {
                                            color: #000
                                        }

                                        ._8wbvuuc {
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            margin-top: 12px;
                                            font-size: 14px;
                                            line-height: 14px
                                        }

                                        ._7jhame4,
                                        ._8wbvuuc ._23s6s41 {
                                            margin-left: 7px
                                        }

                                        ._7jhame4 {
                                            display: inline-block;
                                            width: 14px;
                                            height: 14px;
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            border-radius: 50%;
                                            background: #f5f5f5
                                        }

                                        ._7jhame4:after {
                                            content: "";
                                            display: inline-block;
                                            width: 5px;
                                            height: 5px;
                                            border-top: 1px solid #858585;
                                            border-right: 1px solid #858585;
                                            transform: translateX(-1px) rotate(45deg)
                                        }

                                        ._723gqe3 {
                                            position: relative
                                        }

                                        .pxbcy4v {
                                            overflow: hidden;
                                            font-size: 14px;
                                            line-height: 1;
                                            height: 14px;
                                            color: #555
                                        }

                                        ._31cdxy4,
                                        .pxbcy4v {
                                            display: flex;
                                            align-items: center
                                        }

                                        ._31cdxy4 {
                                            margin-right: 16px;
                                            position: relative
                                        }

                                        ._31cdxy4:after {
                                            content: ":";
                                            position: absolute;
                                            left: 18px;
                                            bottom: 1px
                                        }

                                        ._6yf7j8j {
                                            height: 100%;
                                            overflow: hidden;
                                            white-space: nowrap
                                        }

                                        ._3xmp823 {
                                            transform: translateY(0);
                                            line-height: 1
                                        }

                                        ._3xmp823 span {
                                            display: block
                                        }

                                        @font-face {
                                            font-family: ecomicons;
                                            src: url("style/images/img/iconfont_9a3d333.eot")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/iconfont_9a3d333.eot*/;
                                            src: url("style/images/img/iconfont_9a3d334.eot")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/iconfont_9a3d334.eot*/ format("embedded-opentype"), url("style/images/img/iconfont_9a3d333.woff")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/iconfont_9a3d333.woff*/ format("woff"), url("style/images/img/iconfont_9a3d333.ttf")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/iconfont_9a3d333.ttf*/ format("truetype"), url("style/images/img/iconfont_9a3d333.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/iconfont_9a3d333.svg*/ format("svg")
                                        }

                                        ._2cqtrwb,
                                        ._2zqdhkj,
                                        ._6be8zu2,
                                        ._8frgat9,
                                        ._8qfnasu,
                                        ._8sz993j {
                                            vertical-align: top
                                        }

                                        ._2cqtrwb:after,
                                        ._2hgbufc:after,
                                        ._2zqdhkj:after,
                                        ._6be8zu2:after,
                                        ._8frgat9:after,
                                        ._8qfnasu:after,
                                        ._8sz993j:after {
                                            font-family: ecomicons;
                                            font-size: 16px;
                                            display: inline-block;
                                            color: #999;
                                            line-height: 1;
                                            -webkit-font-smoothing: antialiased;
                                            font-weight: 400;
                                            font-style: normal;
                                            font-variant: normal;
                                            text-transform: none
                                        }

                                        ._2cqtrwb:after {
                                            content: "\E759"
                                        }

                                        ._6be8zu2:after {
                                            content: "\E75B"
                                        }

                                        ._8frgat9:after {
                                            content: "\E774"
                                        }

                                        ._8qfnasu:after {
                                            content: "\E755"
                                        }

                                        ._8sz993j:after {
                                            content: "\E756"
                                        }

                                        ._2zqdhkj:after {
                                            content: "\E757"
                                        }

                                        ._2hgbufc:after {
                                            content: "\606"
                                        }

                                        ._57nya52 {
                                            background-image: url("../fonts/consult-4b14dbfbfb.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/consult-4b14dbfbfb.svg*/;
                                            width: 16px;
                                            height: 16px;
                                            display: inline-block;
                                            background-size: 16px 16px;
                                            vertical-align: middle;
                                            margin-top: -2px
                                        }

                                        ._5nbnvsj,
                                        ._5nbnvsj:after {
                                            color: #92b9f8
                                        }

                                        ._63duvbg {
                                            background-image: url("../fonts/open-icon-79fc6653f2-1.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/open-icon-79fc6653f2-1.svg*/;
                                            width: 12px;
                                            height: 12px;
                                            display: inline-block;
                                            background-size: 12px 12px;
                                            vertical-align: middle;
                                            margin-top: -1px
                                        }

                                        ._445cacf {
                                            display: inline-block;
                                            width: 16px;
                                            height: 16px;
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            border-radius: 50%
                                        }

                                        ._445cacf:after {
                                            content: "";
                                            display: inline-block;
                                            width: 5px;
                                            height: 5px;
                                            border-top: 1px solid #858585;
                                            border-right: 1px solid #858585;
                                            transform: translateX(-1px) rotate(45deg)
                                        }

                                        ._27v25vj {
                                            background-color: #f5f5f5
                                        }

                                        ._4mh76sv {
                                            background: url("../fonts/speaker-icon-3aa8f67fc1.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/speaker-icon-3aa8f67fc1.svg*/ 50% no-repeat;
                                            width: 14px;
                                            height: 14px;
                                            background-size: 14px 14px
                                        }

                                        ._4mh76sv,
                                        .ec_font_consult_pc {
                                            position: relative;
                                            display: inline-block
                                        }

                                        .ec_font_consult_pc {
                                            background-image: url("../fonts/pc-consult-icon-a156b7d86e.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-consult-icon-a156b7d86e.svg*/;
                                            width: 16px;
                                            height: 16px;
                                            vertical-align: middle;
                                            top: -1px
                                        }

                                        .ec_font_consult_pc:hover {
                                            background-image: url("../fonts/pc-consult-icon-hover-06d499a5b3.svg")/*tpa=http://hpv96.chenkaiwu.top/hpv/bdjk66/style/css/style/images/img/pc-consult-icon-hover-06d499a5b3.svg*/
                                        }

                                        ._5cy6pgr {
                                            width: 100%;
                                            line-height: 2.33;
                                            background-color: #f5f5f5;
                                            font-size: 14px;
                                            color: #000;
                                            text-align: center;
                                            text-decoration: none;
                                            padding: 0 8px;
                                            border-radius: 3px;
                                            outline: 0;
                                            -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
                                        }

                                        ._5cy6pgr,
                                        ._8sjvxau {
                                            display: block;
                                            overflow: hidden;
                                            text-overflow: ellipsis;
                                            white-space: nowrap
                                        }

                                        ._21dg6ec {
                                            color: #1f1f1f
                                        }

                                        ._3ssqj7f {
                                            display: flex
                                        }

                                        .ck9bapt {
                                            flex: 1
                                        }

                                        ._4jwz67t {
                                            font-size: 14px;
                                            display: block;
                                            text-align: left;
                                            padding: 0 12px;
                                            line-height: 36px;
                                            border-radius: 9px
                                        }

                                        ._8hp6wyz {
                                            text-align: center;
                                            display: inline-block;
                                            background-color: #00c8c8;
                                            width: 22px;
                                            height: 22px;
                                            line-height: 22px;
                                            color: #fff;
                                            border-radius: 6px;
                                            margin-right: 8px
                                        }

                                        ._8hp6wyz i:after {
                                            font-size: 14px;
                                            color: #fff
                                        }

                                        ._2ggwcrt {
                                            padding-left: 8px;
                                            color: #00c8c8
                                        }

                                        ._85ehrpu {
                                            font-size: 15px
                                        }

                                        ._2h66zqw {
                                            font-size: 16px
                                        }

                                        ._2axwv19 {
                                            border-bottom: none;
                                            border-radius: 10px;
                                            margin-bottom: 8px;
                                            background-color: #fff
                                        }

                                        ._6wh1jme {
                                            position: relative;
                                            padding: 15px 0;
                                            margin: 0 13px;
                                            border-bottom: 1px solid #eee
                                        }

                                        ._6wh1jme h3 {
                                            padding: 0;
                                            font-weight: 400
                                        }

                                        ._6wh1jme a {
                                            text-decoration: none
                                        }

                                        ._6wh1jme em {
                                            color: #d81419;
                                            font-style: normal
                                        }

                                        ._6wh1jme:last-child {
                                            border-bottom: 0
                                        }

                                        ._38x9nh2 {
                                            margin: 0
                                        }

                                        ._7qwg9fa {
                                            padding-top: 0
                                        }

                                        ._6wh1jme,
                                        ._6wh1jme:last-child {
                                            border-bottom: none
                                        }

                                        ._5mect71 {
                                            margin-bottom: 15px
                                        }

                                        ._2fq9ypg {
                                            margin-bottom: 9px
                                        }

                                        ._5gpb42d {
                                            margin-top: 15px
                                        }

                                        ._7fn117y,
                                        .q1x4ab8 {
                                            margin-top: 9px
                                        }

                                        ._7kqdw3v {
                                            display: flex;
                                            align-items: center;
                                            height: 100%
                                        }

                                        ._6r7ru3c {
                                            margin-bottom: 15px
                                        }

                                        .upu236w {
                                            margin-top: 15px
                                        }

                                        ._5mect71+.q1x4ab8 {
                                            margin-top: -6px
                                        }

                                        ._7w2yt2x {
                                            width: 74px;
                                            float: right
                                        }

                                        ._2m47qtr {
                                            margin-top: -7px
                                        }

                                        ._79r9ap6 {
                                            margin-top: 12px
                                        }

                                        ._248ej2s {
                                            margin-bottom: 12px
                                        }

                                        body ._6p8yfe1 {
                                            font-family: Arial, Helvetica, sans-serif;
                                            font-size: 13px;
                                            line-height: 23px;
                                            transform: translateY(.4346153846em);
                                            padding-top: 0;
                                            color: #999;
                                            position: relative
                                        }

                                        body ._6p8yfe1:before {
                                            content: "";
                                            margin-top: -10px;
                                            display: block;
                                            height: 0
                                        }

                                        body ._6p8yfe1 a {
                                            color: #999;
                                            display: block
                                        }

                                        body ._6p8yfe1 a ._68mf235 {
                                            color: #999
                                        }

                                        body ._6p8yfe1 button {
                                            float: right;
                                            color: #38f;
                                            font-size: 12px;
                                            background: #fff;
                                            border: 1px solid;
                                            padding: 7px 13px;
                                            border-radius: 3px;
                                            line-height: 12px;
                                            position: absolute;
                                            right: 0;
                                            bottom: 0
                                        }

                                        body ._6p8yfe1 ._2t2xsea {
                                            margin-left: 5px
                                        }

                                        body ._6p8yfe1 ._69fe59w {
                                            display: inline-block;
                                            width: 22px;
                                            height: 22px;
                                            line-height: 0;
                                            vertical-align: middle;
                                            margin-right: 7px;
                                            margin-top: -2px;
                                            border: 1px solid #eee;
                                            border-radius: 50%
                                        }

                                        ._6mcpjf9 {
                                            position: absolute;
                                            right: 0
                                        }

                                        ._834h5ev {
                                            width: auto;
                                            -webkit-box-orient: horizontal;
                                            -webkit-box-align: stretch;
                                            display: -webkit-flex;
                                            -webkit-justify-content: space-between;
                                            -webkit-align-items: stretch;
                                            -webkit-align-content: flex-start;
                                            -webkit-flex-wrap: nowrap
                                        }

                                        ._5zjtxvk {
                                            flex: 1
                                        }

                                        ._797masa {
                                            margin-left: 10px
                                        }

                                        ._4pzx71y {
                                            margin-left: 0
                                        }

                                        body a._5ubfhs4,
                                        body div._5ubfhs4 {
                                            font-family: Arial, Helvetica, sans-serif;
                                            text-decoration: none;
                                            color: #1f1f1f;
                                            font-size: 17px;
                                            line-height: 27px;
                                            transform: translateY(.2941176471em);
                                            padding-top: 0;
                                            margin: 0;
                                            display: block
                                        }

                                        body a._5ubfhs4:before,
                                        body div._5ubfhs4:before {
                                            content: "";
                                            margin-top: -10px;
                                            display: block;
                                            height: 0
                                        }

                                        a._5ubfhs4 div {
                                            word-break: break-all
                                        }

                                        ._5stt4rv {
                                            font-size: 11px;
                                            line-height: 1.4em;
                                            height: 15px;
                                            font-weight: 500;
                                            padding: 0 4px;
                                            border-radius: 3px;
                                            vertical-align: middle;
                                            display: inline-block;
                                            margin-bottom: 4px;
                                            margin-right: 5px
                                        }

                                        ._5stt4rv._5npxamv {
                                            color: #f5a623;
                                            background: rgba(245, 166, 35, .15)
                                        }

                                        ._5stt4rv._62udscq {
                                            color: #00c8c8;
                                            background: rgba(0, 200, 200, .1)
                                        }

                                        body a._45ptg9p,
                                        body div._45ptg9p {
                                            font-size: 18px;
                                            line-height: 28px;
                                            transform: translateY(.2777777778em);
                                            padding-top: 0
                                        }

                                        body a._45ptg9p:before,
                                        body div._45ptg9p:before {
                                            content: "";
                                            margin-top: -10px;
                                            display: block;
                                            height: 0
                                        }

                                        ._5y6schg {
                                            font-size: 14px;
                                            line-height: 23px;
                                            transform: translateY(.3214285714em);
                                            padding-top: 0;
                                            font-weight: 400
                                        }

                                        ._5y6schg:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        ._49mdy9z {
                                            display: block
                                        }

                                        ._56qy2p3 {
                                            margin-right: 5px
                                        }

                                        ._2rsa3x2 {
                                            color: #999
                                        }

                                        ._37rdev6 {
                                            color: #555
                                        }

                                        ._457gwj8 {
                                            font-size: 11px;
                                            line-height: 1.4em;
                                            height: 15px;
                                            font-weight: 500;
                                            padding: 0 4px;
                                            border-radius: 3px;
                                            vertical-align: middle;
                                            display: inline-block;
                                            margin-bottom: 2px
                                        }

                                        ._457gwj8.u49srz8 {
                                            color: #f5a623;
                                            background: rgba(245, 166, 35, .15)
                                        }

                                        ._457gwj8._7wh1cby {
                                            color: #00c8c8;
                                            background: rgba(0, 200, 200, .1)
                                        }

                                        ._457gwj8._5xvr3jj {
                                            color: #5ba4fe;
                                            background: rgba(91, 164, 254, .1)
                                        }

                                        ._6u3957x {
                                            margin: 10.5px 0 7.5px;
                                            height: 1px;
                                            background: #f5f5f5
                                        }

                                        .fcdnc63 {
                                            font-size: 16px;
                                            line-height: 31px;
                                            font-weight: 400
                                        }

                                        ._3f1x4tu {
                                            color: #1f1f1f
                                        }

                                        ._3bzjua8 {
                                            font-size: 16px;
                                            line-height: 25px;
                                            transform: translateY(.28125em);
                                            padding-top: 0
                                        }

                                        ._3bzjua8:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        ._3bzjua8 ._37rdev6 {
                                            color: #000
                                        }

                                        body ._3mnxh11 {
                                            font-size: 14px;
                                            line-height: 23px;
                                            transform: translateY(.3214285714em);
                                            padding-top: 0
                                        }

                                        body ._3mnxh11:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        body ._3mnxh11 a,
                                        body ._3mnxh11 div {
                                            color: #555
                                        }

                                        body ._3mnxh11 ._6y7c33d {
                                            font-size: 15px;
                                            color: #999;
                                            line-height: 25px
                                        }

                                        body ._3mnxh11 ._4yh4xgn {
                                            margin-right: 5px
                                        }

                                        body ._68y7zg9 {
                                            font-size: 16px;
                                            line-height: 25px;
                                            transform: translateY(.28125em);
                                            padding-top: 0
                                        }

                                        body ._68y7zg9:before {
                                            content: "";
                                            margin-top: -9px;
                                            display: block;
                                            height: 0
                                        }

                                        body ._68y7zg9 a,
                                        body ._68y7zg9 div {
                                            color: #000
                                        }

                                        body a.gb789ea,
                                        body div.gb789ea {
                                            display: block;
                                            color: #999;
                                            font-size: 14px;
                                            line-height: 22px;
                                            transform: translateY(.2857142857em);
                                            padding-top: 0
                                        }

                                        body a.gb789ea:before,
                                        body div.gb789ea:before {
                                            content: "";
                                            margin-top: -8px;
                                            display: block;
                                            height: 0
                                        }

                                        body a.gb789ea ._5hber62,
                                        body div.gb789ea ._5hber62 {
                                            color: #999
                                        }

                                        body a.gb789ea ._73rrv2f,
                                        body div.gb789ea ._73rrv2f {
                                            color: #000
                                        }

                                        ._863gmzg {
                                            font-size: 16px;
                                            line-height: 24px;
                                            transform: translateY(.25em);
                                            padding-top: 0
                                        }

                                        ._863gmzg:before {
                                            content: "";
                                            margin-top: -8px;
                                            display: block;
                                            height: 0
                                        }

                                        ._59gbb58 {
                                            font-size: 14px;
                                            line-height: 22px;
                                            transform: translateY(.2857142857em);
                                            padding-top: 0
                                        }

                                        ._59gbb58:before {
                                            content: "";
                                            margin-top: -8px;
                                            display: block;
                                            height: 0
                                        }

                                        ._6dhtxhd {
                                            margin-right: 5px
                                        }

                                        ._61ty7an {
                                            margin-left: 5px
                                        }

                                        ._2gpa28v {
                                            font-size: 16px
                                        }

                                        ._3kp4e17 {
                                            max-width: 100%;
                                            float: left;
                                            overflow: hidden;
                                            text-overflow: ellipsis
                                        }

                                        .gctj2w5 {
                                            display: flex;
                                            overflow: hidden;
                                            white-space: nowrap;
                                            align-items: center
                                        }

                                        ._6axv4f3 {
                                            font-size: 12px;
                                            color: #999;
                                            flex: 0 0 auto
                                        }

                                        ._6k45zvn {
                                            font-size: 14px;
                                            color: #555
                                        }

                                        ._3ud18q6 {
                                            display: flex;
                                            line-height: 20px;
                                            height: 20px
                                        }

                                        ._4dpsmn8 {
                                            display: flex;
                                            margin-top: 6px;
                                            line-height: 12px;
                                            max-width: 100%
                                        }

                                        ._4dpsmn8 ._5hber62 {
                                            color: #999
                                        }

                                        ._72ft43n {
                                            flex: 1 1
                                        }

                                        ._4dm47v5 {
                                            margin-top: 9px;
                                            line-height: 14px;
                                            display: flex;
                                            max-width: 100%
                                        }

                                        ._52junsu {
                                            font-size: 12px;
                                            line-height: 12px
                                        }

                                        ._32g4gst,
                                        ._52junsu {
                                            color: #555;
                                            display: inline-block;
                                            vertical-align: top
                                        }

                                        ._32g4gst {
                                            font-size: 14px;
                                            line-height: 14px;
                                            max-width: 100%
                                        }

                                        ._7afpqd4 {
                                            flex: 0 1 auto;
                                            overflow: hidden;
                                            text-overflow: ellipsis;
                                            white-space: nowrap
                                        }

                                        ._4haqepq {
                                            flex: 0 0 auto
                                        }

                                        ._3xwkux5 {
                                            overflow: hidden;
                                            max-width: 100%;
                                            white-space: nowrap;
                                            word-break: break-all;
                                            text-overflow: ellipsis
                                        }

                                        ._8ad6szy {
                                            margin-left: 8px
                                        }

                                        ._2p11jyf {
                                            margin-right: 8px
                                        }

                                        ._3s195q3 div.gb789ea {
                                            line-height: normal
                                        }

                                        ._2z4fhk4 {
                                            font-size: 10px;
                                            border-radius: 21px;
                                            color: #2b99ff;
                                            height: 15px;
                                            padding: 0 4px;
                                            display: inline-block;
                                            line-height: 1.4em;
                                            margin-bottom: 2px;
                                            font-weight: 400;
                                            font-style: normal;
                                            vertical-align: middle;
                                            border: 1px solid rgba(43, 153, 255, .5);
                                            box-sizing: border-box
                                        }

                                        ._2z4fhk4 ._7sr5ms7 {
                                            color: #2b99ff;
                                            border-color: #2b99ff
                                        }

                                        ._9jye1cc {
                                            border-color: hsla(0, 0%, 60%, .5);
                                            background-color: #f7f7f7;
                                            background-color: hsla(0, 0%, 60%, .06)
                                        }

                                        ._2je6ex2 {
                                            color: #f60;
                                            border-color: rgba(255, 102, 0, .8)
                                        }

                                        ._6da6ju6 {
                                            color: #f60;
                                            border-color: rgba(255, 102, 0, .5);
                                            background: rgba(255, 102, 0, .1)
                                        }

                                        ._5zbrfvx {
                                            background: rgba(0, 200, 200, .1)
                                        }

                                        ._9jye1cc {
                                            color: #999;
                                            background: hsla(0, 0%, 60%, .06);
                                            border: 1px solid hsla(0, 0%, 60%, .5);
                                            border-radius: 23px
                                        }

                                        ._5zbrfvx {
                                            color: #00c8c8;
                                            background: rgba(0, 200, 200, .06);
                                            border: 1px solid rgba(0, 200, 200, .5);
                                            border-radius: 23px
                                        }

                                        ._7sr5ms7 {
                                            color: #5ba4fe;
                                            background: rgba(91, 164, 254, .06);
                                            border: 1px solid rgba(91, 164, 254, .5)
                                        }
                                        /* 添加提示 */
.prompt{
	position: fixed;
	z-index: 999;
	top: 80%;
	left: 0;
	text-align: center;
	width: 100%;
	display: none;
}
.prompt .written{
	border-radius: 32px;
	background: #696969;
	opacity: 1;
	padding: 8px 16px;
	font-size: 13px;
	color: #fff;
}