input{
    ime-mode: disabled;
}

/*滑块的样式*/
#btn_horizontal {
    animation: horizontal .6s .2s ease both;
}

@keyframes horizontal {
    0% {
        -webkit-transform: translate(0px, 0);
        -moz-transform: translate(0px, 0);
        transform: translate(0px, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate(-1px, 0);
        -moz-transform: translate(-1px, 0);
        transform: translate(-1px, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate(1px, 0);
        -moz-transform: translate(1px, 0);
        transform: translate(1px, 0)
    }

    100% {
        -webkit-transform: translate(0px, 0);
        -moz-transform: translate(0px, 0);
        transform: translate(0px, 0)
    }
}

.tab-nav-item {
    width: 50%
}

.tab-nav-item.tab-active a :after {
    width: 85px;
}

.tab-nav {
    box-shadow: none;
}

.progress0,
.progress2 {
    width: 75%;
    margin: 20px auto;
}

#img {
    width: 120px;
    height: 120px;
    position: relative;
}

.img_ico {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.img_f {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin: 20px auto 0 auto;
}

.canvas_text p {
    margin: 0 auto;
    text-align: center;
}

#mask {
    background: #000000;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 40;
    filter: alpha(opacity=60);
    opacity: 0.5 !important;
}

.canvas_text_1 {
    font-size: 14px;
    line-height: 21px;
    color: #9B9B9B;
    padding: 10px;
}

.canvas_text_2 {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.btn_ico {
    width: 25px;
    height: 25px;
    background-image: url("/img/000.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#closed {
    width: 10px;
    height: 10px;
    background-image: url(/img/closed.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 25px;
    right: 25px;
}

.mask-fotter {
    position: relative;
    top: 100px;
}

* {
    margin: 0;
    padding: 0;
}
.w310{
    width: 310px !important;
}
.ProgressBar {
    background: #f0f0f0;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    /* box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1) inset; */
}

/* .ProgressBar_v {
    width: 30px;
    height: 100%;
    border-radius: 15px;
    background: #f0f0f0;
    margin: 0 auto;
    box-sizing: border-box;
  } */
.ProgressLine {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    /*background: #eb3e3e;*/
}

.ProgressLine .btn {
    position: absolute;
    height: 100%;
    right: 0;
    border-radius: 50%;
    font-size: 8px;
    top: 50%;
    transform: translate(6px, -50%);
    box-sizing: content-box !important;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ProgressLine .btn.disable {
    background: #ddd;
    border-color: #fafafa;
}

.ProgressLine .btn .loading {
    display: none;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    background: url('../images/loading1.gif');
    background-position: center center;
    background-size: 130%;
    opacity: 0.5;
    /* animation: rate 2s linear infinite; */
}

@keyframes rate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.vertical {
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -6px) !important;
}

.ProgressBar .progressVal {
    position: absolute;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 45px;
    box-sizing: border-box;
    padding: 0 4px;
    font-size: 10px;
    color: #fff;
    height: 20px;
    line-height: 20px;
    border-radius: 4px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s linear;
}

.ProgressBar .progressVal.bottom {
    top: auto;
    bottom: -35px;
}

.ProgressBar .progressVal::after {
    position: absolute;
    content: '';
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.4) transparent transparent;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.ProgressBar .progressVal.bottom::after {
    bottom: auto;
    top: -5px;
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.4);
}

.ProgressBar .progressVal.left {
    top: auto;
    left: -40px;
}

.ProgressBar .progressVal.left::after {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: -5px;
    bottom: auto;
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.4);
}

.ProgressBar .progressVal.right {
    top: auto;
    right: -85px;
    left: auto;
}

.ProgressBar .progressVal.right::after {
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    left: -5px;
    bottom: auto;
    border-width: 5px 5px 5px 0;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.4) transparent transparent;
}

.clear {
    clear: both;
}

/*连续英文、数字换行*/

.wordwrap {
    word-break: break-all;
    word-wrap: break-word;
}

/*单行文字超出显示省略号*/

.omg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t-css {
    width: 100%;
    display: table;
}

.t-row-css {
    display: table-row;
    width: 100%;
}

.t-cell-css {
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

a,
span,
p,
h1,
h2,
h3,
div {
    font-family: '微软雅黑';
}

.fl {
    float: left;
}

.fr {
    float: right;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
    font-size: 14px;
    /* line-height: 100%; */
}

.container {
    width: 1100px;
    margin: 0 auto;
    /* position: relative; */
}

/**
 * Inspiration for this project found at:
 * https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart
 * 1. The `reverse` animation direction plays the animation backwards
 *    which makes it start at the stroke offset 100 which means displaying
 *    no stroke at all and animating it to the value defined in the SVG
 *    via the inline `stroke-dashoffset` attribute.
 * 2. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround.
 */

.circle-chart {
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 auto;
}

.circle-chart__circle {
    stroke: #00acc1;
    stroke-width: 2;
    stroke-linecap: square;
    fill: none;
    animation: circle-chart-fill 2s reverse;
    /* 1 */
    transform: rotate(0deg);
    /* 2, 3 */
    transform-origin: center;
    /* 4 */
}

/**
   * 1. Rotate by -90 degree to make the starting point of the
   *    stroke the top of the circle.
   * 2. Scaling mirrors the circle to make the stroke move right
   *    to mark a positive chart value.
   * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
   *    and Edge, use the transform attribute directly on the SVG element as a
   * .  workaround.
   */

.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1);
    /* 1, 2, 3 */
}

.circle-chart__background {
    stroke: #efefef;
    stroke-width: 2;
    fill: none;
}

.circle-chart__info {
    animation: circle-chart-appear 2s forwards;
    opacity: 0;
    transform: translateY(0.3em);
}

.circle-chart__percent {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 8px;
}

.circle-chart__subline {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 3px;
}

.success-stroke {
    stroke: #fc7432;
}

.warning-stroke {
    stroke: #fc7432;
}

.danger-stroke {
    stroke: #fc7432;
}

@keyframes circle-chart-fill {
    to {
        stroke-dasharray: 0 100;
    }
}

@keyframes circle-chart-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav {
    width: 100%;
    height: 40px;
    border-top: 4px solid #e63c1d;
    background: #fc5233;
}

.nav_wrap {
    width: 100%;
    height: 40px;
}

.nav_wrap li {
    float: left;
    width: 125px;
    height: 100%;
    line-height: 40px;
}

.nav_wrap li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.nav_now {
    background: #e63c1d;
}

/* 幻灯 */
.banner {
    width: 100%;
    height: 340px;
    /* position: relative; */
}

/* .swiper-button-next {
    right: 50% !important;
    margin-right: -598px;
} */

.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 340px;
    /* max-width: 1200px;
    max-height: 340px; */
    margin: 0 auto;
    object-fit: cover;
}
.cp50{
    padding: 20px;
}
.bgf2{
    background: #f2f2f2;
}
.banner .black_bg {
    position: absolute;
    left: 50%;
    top: 32px;
    margin-left: -550px;
    width: 530px;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    z-index: 9;
}

.banner .popup {
    position: absolute;
    left: 50%;
    top: 15px;
    width: 550px;
    height: 300px;
    background: #fff;
    margin-left: -540px;
    z-index: 10;
    box-sizing: border-box;
    box-shadow: rgba(35, 25, 25, 0.3) 0 0 4px;
}
.banner-select{
    padding: 12px;
}

.banner-item-select ul{
    background:#fc5233;
    color:#fff;
    height: 300px;
    width:130px;
}

.banner-item-select li{
     height: 40px;
     line-height:40px;

 }
.banner-item-select li span{
    display: block;
    height: 40px;
    line-height:40px;
    margin:0 15px 0 15px;
    border-bottom: dashed 1px #fd9785;
    cursor:pointer;
}
.item-selected{
    height: 40px;
    line-height:40px;
    background-color: #fff;
    border-left: solid 4px #fceb33;
    color:#fc5233;
}

.child-item-selected{
    font-size: 12px;
    margin: 10px 10px 0 10px;
    padding: 2px 10px 2px 10px;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    background-color: #fc5233;
    color:#fff;
}

.child-item,.d-child-item{
    width:330px;
}
.i_current{
    transform: rotateX(-180deg);
}
.child-item-li {
    background-color: #f2f2f2;
    font-size:12px;
    margin:10px 10px 0 10px;
    padding:2px 10px 2px 10px;
    height: 20px;
    line-height:20px;
    border-radius:10px;
    cursor:pointer;
}
.popup_wrap {
    width: 1200px;
    height: 340px;
    margin: 0 auto;
    position: relative;
    margin-top: -340px;
}

.popup .popup_nav {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #d2d2d2;
}

.popup .popup_nav .ask_online {
    position: absolute;
    right: 0;
    top: -4px;
    width: 100px;
    height: 26px;
}

.popup .popup_nav .ask_online i {
    display: block;
    width: 100px;
    height: 26px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -263px 0;
}

.popup .popup_nav li {
    float: left;
    position: relative;
    padding: 0 18px;
    font-size: 14px;
    color: #504e4e;
    cursor: pointer;
}
.mt10{
    margin-top:10px;
}
.popup .popup_nav li .i_current {
    width: 65px;
    height: 8px;
    position: absolute;
    bottom: -12px;
    left: 0;
    background: url(/img/jlt.png) no-repeat;
    background-position: -187px 0;
}

.font_color {
    color: #e6432d !important;
}

.popup_main {
    margin-top: 14px;
}

.popup_main .popup_item {
    display: none;
}

.popup_main .popup_hospital .popup_input {
    position: relative;
    margin: 30px 0 0 0;
}

.popup_main .popup_input_area {
    position: relative;
}

.popup_main .city_infos {
    width: 480px;
    background: #fff;
    position: absolute;
    left: 42px;
    top: 30px;
    z-index: 99;
    color: #676767;
    padding: 30px 10px 12px 10px;
    border: 1px solid #ccc;
    display: none;
}

.popup_close {
    position: absolute;
    right: 8px;
    top: 4px;
    font-size: 14px;
    cursor: pointer;
}

.popup_close:hover {
    color: #e6432d;
}



.popup_main .city_infos .city_nav {
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f0f0;
}

.popup_main .city_infos .city_nav li {
    font-size: 0;
    float: left;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 30px;
    position: relative;
    text-align: center;
}

.city_infos_item {
    display: none;
    padding: 10px 0;
}

.city_infos_item a {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #333;
    padding: 5px 15px 15px 15px;
}

.city_infos_item .city_infos_il {
    float: left;
    padding: 6px;
    font-size: 14px;
    width: 10px;
    text-align: center;
    color: #e6432d;
}

.city_infos_item .city_infos_ir {
    float: left;
    width: 450px;
    padding-left: 5px;
}

.popup_hospital {
    position: relative;
}

.popup_hospital .screen-project-tab {
    font-size: 12px;
}

.dsnone {
    display: none;
}

.popup_hospital .screen-project-right {
    width: 100%;
    padding-left: 18px;
}

.popup_hospital .title li {
    padding: 2px 4px;
}

.search_item {
    position: absolute;
    top: 29px;
    left: 50px;
    background: #fff;
    width: 415px;
    height: 200px;
    border: 1px solid #ccc;
}

.search_item #content {
    margin-top: 1px;
}

.search_item .mod ul li a {
    font-size: 12px;
}

.popup_main .city_infos .city_nav li .red_line {
    position: absolute;
    width: 32px;
    height: 2px;
    background: #fc462d;
    left: 50%;
    bottom: -7px;
    margin-left: -16px;
}

.popup_main .popup_hospital .last_p span {
    opacity: 0;
}

.popup_main .popup_hospital span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #000;
    margin-right: 6px;
    letter-spacing: 4px;
}

.popup_main .popup_hospital .popup_input_item span {
    margin-right: 2px;
}


.popup_main .city_infos .city_nav li span {
    font-size: 14px;
    margin: 0;
    letter-spacing: 0;
    color: #676767;
}

.popup_main .popup_hospital input,
.popup_main .popup_hospital select {
    display: inline-block;
    vertical-align: middle;
    width: 300px;
    height: 30px;
    border: 1px solid #d2d2d2;
    text-indent: 1em;
}


.popup_main .popup_hospital #hospital-item,
.popup_main .popup_hospital #doctor-item {
    width: 302px;
    height: 32px;
}


.popup_main .popup_hospital .last_p input {
    text-indent: 1em;
}

.popup_main .popup_hospital button {
    display: block;
    width: 90px;
    height: 25px;
    background: #fc5931;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 12px;
    float:right;
}

.popup_main .popup_hospital div b {
    position: absolute;
    right: 20px;
    top: 13px;
    width: 12px;
    height: 7px;
    background: url(/img/down_icon.jpg) no-repeat;
}

.online_top input {
    width: 120px;
    height: 32px;
    border: 1px solid #d2d2d2
}

.online_top span {
    margin-right: 8px;
    letter-spacing: 2px;
    font-size: 18px;
    color: #000;
}

.online_top .online_tl {
    position: relative;
    float: left;
    margin-right: 16px;
}

.online_top .online_tr {
    position: relative;
    float: left;
}

.online_top i {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 12px;
    height: 7px;
    background: url(/img/down_icon.jpg) no-repeat;
}

.online_middle {
    width: 354px;
    height: 70px;
    margin: 10px 0;
}

.online_middle textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #d2d2d2;
    padding: 4px;
    resize: none;
    font-size: 16px;
    box-sizing: border-box;
}

.online_bottom input {
    float: left;
    width: 230px;
    height: 32px;
    border: 1px solid #d2d2d2;
}

.online_bottom .btn {
    float: right;
    width: 110px;
    height: 35px;
    background: #fc5931;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}


/* 医院搜索 */
.hospital_search {
    margin: 48px 0 34px 0;
}

.hospital_search_nav,
.item_search_nav,
.case_search_nav {
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
}

.hospital_search_nav ul,
.item_search_nav ul,
.case_search_nav ul {
    float: left;
}

.hospital_search_nav .more_hospital,
.item_search_nav .more_hospital {
    float: right;
}

.hospital_search_nav .more_hospital a,
.item_search_nav .more_hospital a {
    font-size: 12px;
    color: #8d8a89;
}

.hospital_search_nav ul li,
.item_search_nav ul li,
.case_search_nav ul li {
    position: relative;
    float: left;
    padding: 0 24px;
    font-size: 16px;
    color: #202020;
    cursor: pointer;
}

.hospital_search_nav ul li .hospital_search_now,
.item_search_nav ul li .hospital_search_now,
.case_search_nav ul li .hospital_search_now {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: #fc462d;
    margin-left: -40px;
}

.hospital_search_wrap,
.item_search_wrap {
    margin-top: 24px;
}

.hospital_search_left,
.item_search_left {
    float: left;
    width: 880px;
}

.item_search_left {
    width: 100%;
}

.hospital_search_left ul li,
.item_search_left ul li {
    position: relative;
    float: left;
    width: 206px;
    height: 206px;
    margin: 0 14px 14px 0;
    overflow: hidden;
}

.item_search_index ul li {
    margin-right: 20px;
}

.item_search_index ul li:nth-child(5n) {
    margin-right: 0;
}

.hospital_search_left ul li .center_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .4);
}

.hospital_search_left ul li .center_text p {
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.hospital_search_left ul li .center_text .month_seal {
    font-size: 12px;
}

.hospital_search_left ul li .center_text .hospital_name {
    padding: 7px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.number span {
    color: #fe9b0f;
    font-weight: 700;
}

.hospital_search_left ul li img,
.hospital_search_left ul li a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.hospital_search_right,
.item_search_right {
    float: right;
    display: block !important;
    width: 220px;
    height: 426px;
    overflow: hidden;
}

.hospital_search_right img,
.hospital_search_right a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.hospital_search_wrap .hospital_search_left {
    display: none;
}

/* 商品 */
.item_search_left {
    display: none;
}

.item_search_left ul li {
    width: 204px;
    height: auto;
    overflow: visible;
}

.item_search_left .item_text {
    width: 182px;
    border: 1px solid #f0f0f0;
    padding: 10px;
    height: 78px;
}

.item_search_left .img_wrap {
    overflow: hidden;
}

.item_search_left .img_wrap img,
.item_search_left li a {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_search_left .item_text h2 {
    height: 36px;
    font-size: 14px;
    color: #202020;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: normal;
    overflow: hidden;
}

.item_search_left .item_text .name {
    font-size: 14px;
    color: #999999;
    margin: 10px 0 5px 0;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item_search_left .item_text .price {
    font-size: 14px;
    color: #fc9400;
}

.item_search_left .item_text .price i {
    font-size: 20px;
    margin-right: 8px;
}

.item_search_left .item_text .price span {
    color: #c4c4c4;
    text-decoration: line-through;
}

.item_search_right {
    overflow: visible;
    width: 220px;
    height: 734px;
    display: block !important;
}

.item_search_right img,
.item_search_right a {
    display: block;
    width: 100%;
    height: 362px;
    margin: 0 14px 14px 0;
}

/* 日记 */
.case {
    margin-top: 20px;
}

.case_wrap_left {
    float: left;
    width: 760px;
}

.case_wrap_left .case_item_show {
    display: none;
}

.case_wrap_left .case_item_show li {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #e4e4e4;
}

.case_wrap_left ul li a {
    width: 100%;
    height: 100%;
}

.case_wrap_left ul li .img_wrap {
    float: left;
    width: 368px;
    height: 180px;
    overflow: hidden;
}

.case_wrap_left ul li .img_wrap img {
    display: inline-block;
    vertical-align: middle;
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.case_wrap_left ul li .case_text {
    float: left;
    width: 390px;
    height: 180px;
    padding: 0 12px;
    box-sizing: border-box;
}

.case_wrap_left ul li .case_text .case_title {
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
    height: 46px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.case_wrap_left ul li .case_text .case_content {
    font-size: 14px;
    color: #6b6b6b;
    letter-spacing: 1px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.case_wrap_left ul li .case_text .case_item {
    margin-top: 10px;
}

.case_wrap_left ul li .case_text .case_item span,
.case_wrap_left ul li .case_text .case_item span img,
.case_wrap_left ul li .case_text .case_item span i {
    display: inline-block;
    vertical-align: middle;
    color: #878787;
    font-size: 14px;
}

.case_text .item_show {
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    margin-top: 6px;
    font-size: 14px;
    color: #999;
}

.case_text .case_item .avatar_wrap img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.case_wrap_left ul li .case_text .case_item .avatar_wrap i {
    color: #fdb267;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.case_item_top {
    margin-top: 4px;
}

.case_text .case_item .time {
    margin-right: 10px;
    color: #999999 !important;
}

.case_text .case_item .eye_see {
    margin-right: 10px;
}

.get_more {
    width: 180px;
    height: 40px;
    margin: 20px auto;
    background: #fc5931;
    border-radius: 6px;
}

.get_more a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

.case_wrap_right {
    float: right;
    width: 310px;
}

.case_wrap_right .case_wrap_rt {
    margin-bottom: 40px;
}

.case_wrap_right .doctor_title .attestation {
    float: left;
    font-size: 18px;
    color: #202020;
    padding-left: 10px;
    border-left: 4px solid #fc462d;
}

.case_wrap_right .doctor_title .more {
    float: right;
}

.case_wrap_right .doctor_title .more a {
    font-size: 12px;
    color: #999;
}

.case_wrap_right .authentication {
    display: block;
    margin-top: 20px;
    width: 380px;
    height: 110px;
}

.case_wrap_right .doctor_recommend ul {
    background: #fafafa;
    padding: 20px 0 20px 12px;
}

.case_wrap_right .doctor_recommend ul li {
    margin-bottom: 20px;
}

.case_wrap_right .doctor_recommend ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.case_wrap_right .doctor_recommend ul li div {
    display: inline-block;
    vertical-align: middle;
    width: 65px;
}

.case_wrap_right .doctor_recommend ul li .doctor_avatar img {
    display: inline-block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.case_wrap_right .doctor_recommend ul li .hospital_avatar img {
    border-radius: 0 !important;
}

.case_wrap_right .doctor_recommend ul li .doctor_text {
    padding: 0 12px;
    color: #727272;
    font-size: 16px;
    width: 200px;
}

.case_wrap_right .doctor_recommend ul li .doctor_text p {
    margin: 2px 0;
}

.case_wrap_right .doctor_recommend ul li .name {
    color: #454443;
}

.case_wrap_right .doctor_recommend ul li .name span {
    font-size: 12px;
    margin-left: 10px;
    color: #999999;
}

.case_wrap_right .doctor_recommend ul li .company {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-top: 8px;
}

.case_wrap_right .doctor_recommend ul li .mechanism {
    font-size: 14px;
}

.case_wrap_right .doctor_recommend ul li .mechanism i {
    color: #fc9400;
    margin-right: 6px;
}

.case_wrap_right .doctor_recommend ul li .title {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 商品内页 */
.goods_top {
    width: 100%;
    height: 40px;
    background: #f3f7f7;
}

.goods_top_left .goods_logo_wrap {
    margin-top: 6.5px;
}

.goods_top_left .goods_logo_wrap i {
    display: block;
    width: 107px;
    height: 27px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -296px -131px;
}

.position_relative {
    position: relative;
}

.goods_nav {
    margin-left: 40px;
}

.name_short {
    display: inline-block;
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goods_nav li {
    float: left;
    line-height: 40px;
    margin-right: 26px;
}

.goods_nav li a,
.goods_top_right ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #423a34;
    letter-spacing: 1px;
}

.goods_search {
    width: 150px;
    margin-top: 7px;
    border-radius: 30px;
    border: 1px solid #dedede;
    background: #f3f7f7;
    position: absolute;
    right: 180px;
    height: 24px;
}

.goods_search i {
    float: left;
    width: 20px;
    height: 20px;
    background: url(/img/jlt.png) no-repeat center center;
    background-position: -266px -75px;
    margin: 2px 0 0 4px;
}

.goods_search input {
    float: left;
    width: 126px;
    height: 24px;
    border-radius: 30px;
    background: #f3f7f7;
    text-indent: 0.25em;
}

.goods_top_right ul {
    margin-right: 10px;
}

.goods_top_right ul li {
    float: left;
    line-height: 40px;
}

.goods_top_right .goods_top_about i {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/jlt.png) no-repeat;
    margin: -5px 6px 0 0;
    background-position: -236px -71px;
    width: 27px;
    height: 27px;
    margin: 6.5px 0 6.5px 4px;
    cursor: pointer;
}

.goods_top_right .goods_top_about .wechat {
    background-position: -209px -71px;
}

/* 医院logo */
.hospital_logo_left {
    padding: 30px 0 24px 8px;
    font-size: 0;
}

.hospital_logo_left .hospital_logo_wrap,
.hospital_logo_left .hospital_info {
    display: inline-block;
    vertical-align: top;
}

.hospital_logo_left .hospital_logo_wrap img {
    display: block;
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 6px;
}

.hospital_logo_left .hospital_info {
    padding: 0 20px;
    width: 666px;
}

.hospital_logo_left .hospital_info .hospital_name_class {
    font-weight: normal;
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: middle;
    user-select: text;
}

.hospital_logo_left .hospital_info .hospital_name_class::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url(/img/jlt.png) no-repeat;
    background-position: -409px -131px;
    width: 24px;
    height: 24px;
    margin: -2px 10px 0 6px;
}

.hospital_logo_left .hospital_info .hospital_name {
    margin-bottom: 6px;
}

.hospital_logo_left .hospital_info .hospital_name span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 4px;
    color: #fc6b31;
    font-size: 14px;
    border: 1px solid #fc6b31;
    margin-right: 6px;
}

.hospital_logo_left .hospital_info .hospital_info_item {
    font-size: 14px;
    margin-bottom: 6px;
}

.hospital_logo_left .hospital_info .hospital_info_item span {
    margin-right: 10px;
    color: #616161;
}

.hospital_logo_left .hospital_info .hospital_info_item .equipment_name {
    margin-right: 0;
}

.hospital_logo_left .hospital_info .hospital_info_item span i {
    color: #fc6b31;
    font-size: 16px;
    margin-left: 4px;
}

.hospital_info_item {
    position: relative;
}

.equipment_drop {
    margin: 6px 0;
    display: none;
}

.equipment_drop i {
    color: #fc6b31;
    font-size: 14px;
    margin-right: 2px;
}

.equipment_drop_tog {
    display: block;
}

.equipment_deg_tog {
    transform: rotate(180deg);
}

.hospital_logo_left .hospital_info .hospital_info_item b {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -440px -131px;
    margin: -4px 0 0 8px;
}

.hospital_logo_left .hospital_info .bs_notice p {
    font-size: 12px;
    color: #999999
}

.hospital_logo_left .hospital_info .bs_notice span a {
    color: #fc6b31;
    font-weight: 600;
}

.hospital_logo_left .hospital_info .bs_notice .pinfo {
    font-weight: bold;
    color: #fc6b31;
    margin-right: 10px;
}

.hospital_logo_right {
    padding: 43px 0 0 0;
}

.hospital_logo_right ul li {
    float: right;
}

.hospital_logo_right ul li i {
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 70px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -296px -207px;
}

.hospital_logo_right ul li p {
    text-align: center;
    font-size: 12px;
    color: #999999;
    margin: 5px 0;
}

.hospital_logo_right .right_text {
    padding: 10px 6px 10px 0;
}

.hospital_nav li {
    width: auto;
    padding: 0 24px;
}

.hospital_nav li span {
    font-size: 14px;
}

.bread {
    margin: 16px 0;
}

.bread .bread_main {
    color: #363636;
    font-size: 12px
}

.bread_now {
    color: #fc4f30;
}

/* 商品详情*/
.goods_main_l {
    width: 820px;
}

.img_change {
    width: 350px;
}

.goods_img img {
    display: block;
    height: 350px;
    object-fit: cover;
    overflow: hidden;
}

.goods_imgs ul {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    margin-top: 10px;
}

.goods_imgs ul li {
    /*flex: 1;*/
    margin-right: 6px;
    cursor: pointer;
}

.goods_imgs ul li img {
    display: block;
    width: 87.5px;
    height: 87.5px;
    margin: 0 auto;
    object-fit: cover;
}

.goods_imgs ul li:nth-last-child(1) {
    margin-right: 0;
}

.goods_main_l_text {
    width: 460px;
    padding-left: 10px;
}

.goods_main_l_text .goods_title {
    width: 460px;
}

.goods_main_l_text .goods_title h1 {
    font-size: 20px;
    font-weight: normal;
    color: #1e1e1e;
    padding: 0 10px;
}

.area_time {
    width: 440px;
    padding: 0 10px;
    margin: 16px 0;
}

.area_time span {
    font-size: 14px;
    color: #5f5f5f;
}

.goods_price {
    width: 440px;
    padding: 10px;
    background: #f9f8f8;
}

.goods_price p {
    font-size: 14px;
    color: #686868;
}

.goods_price p .price_main {
    color: #fc4f30;
    display: inline-block;
    vertical-align: top;
    font-size: 26px;
    margin: 0 10px 0 36px;
}

.goods_price p .price_bs {
    margin-top: 6px;
    display: inline-block;
    vertical-align: middle;
}

.goods_price p i {
    font-size: 16px;
}

.goods_price p .old_price {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    height: 100%;
    margin-top: 10px;
    text-decoration: line-through;
}

.goods_price .goods_sc {
    margin-top: 8px;
    padding-left: 16px;
    border-left: 1px solid #d9d9d9;
    cursor: pointer;
}

.goods_price .goods_sc img {
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
}

.goods_material,
.goods_mumber,
.goods_guarantee,
.goods_paytype,
.book_money {
    padding: 0 10px;
    margin: 16px 0;
}

.goods_material p,
.goods_mumber p,
.goods_guarantee p,
.goods_paytype p,
.book_money p {
    font-size: 14px;
    color: #686868;
}

.goods_material p span {
    display: inline-block;
    margin-left: 36px;
    padding: 4px;
    border: 1px solid #fc4f30;
    font-size: 14px;
    color: #fc4f30;
}

.goods_mumber p {
    font-size: 0;
}

.goods_mumber p i {
    font-size: 14px;
}

.goods_mumber p input {
    width: 54px;
    height: 24px;
    border: 1px solid #f0efef;
    text-align: center;
    color: #2c2c2c;
}

.goods_mumber p span {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #f0efef;
    font-size: 14px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    background: #f8f8f8;
    color: #b5b4b4;
    cursor: pointer;
}

.goods_mumber p .decrease {
    margin-left: 36px;
    border-right: 0 none;
}

.goods_mumber p .add {
    border-left: 0 none;
}

.goods_guarantee .back_money {
    margin-left: 30px;
}

.goods_guarantee span {
    margin-right: 5px;
}

.goods_guarantee span::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(/img/duihao.png) no-repeat;
    margin: -2px 4px 0 0;
}

.goods_paytype {
    padding-bottom: 20px;
    border-bottom: 1px dashed #e7e7e7;
}

.goods_paytype span {
    cursor: pointer;
    margin-right: 6px;
}

.goods_paytype span i {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 13px;
    background: url(/img/zhifu.png) no-repeat;
    background-position: -16px 0;
    margin-top: -2px;
}

.goods_paytype span.paytype_zero {
    margin-left: 30px;
}

.goods_paytype span.paytype_one i {
    width: 18px;
    height: 18px;
    background-position: -33px 0;
}

.goods_paytype span.paytype_two i {
    width: 16px;
    height: 16px;
    background-position: 0 0;
}

.goods_paytype span.paytype_three i {
    width: 19px;
    height: 19px;
    background-position: -51px 0;
}

.book_money p span {
    font-size: 26px;
    color: #fc4f30;
}

.book_money p span i {
    font-size: 14px;
}

.arrive_hospital p span {
    font-size: 16px;
    color: #686868;
}

.arrive_hospital,
.book_money {
    margin: 10px 0;
}

.submission_wrap span {
    display: inline-block;
    vertical-align: middle;
    width: 160px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background: #fc6e32;
    border-radius: 4px;
    cursor: pointer;
}

.submission_wrap .online_ask {
    background: #ffede5;
    color: #fc6e32;
    border: 1px solid #fe8f7c;
    margin-left: 4px;
}

.goods_main_r {
    width: 236px;
    border: 1px solid #eee;
    padding: 15px 12px;
}

.relevant_top {
    position: relative;
}

.relevant_doctor .top_line {
    width: 100%;
    border-bottom: 1px dashed #dedede;
}

.relevant_doctor .doctor_title {
    position: absolute;
    left: 82px;
    top: -10px;
    background: #fff;
    font-size: 14px;
    color: #414141;
    padding: 0 6px;
}

.relevant_doctor .goods_doctor_avatar {
    width: 100%;
    margin: 18px 0 10px 0;
}

.relevant_doctor .goods_doctor_avatar img {
    display: block;
    width: 111px;
    height: 111px;
    border-radius: 50%;
    margin: 0 auto;
}

.goods_doctor_name p {
    text-align: center;
    color: #383838;
    font-size: 24px;
}

.goods_doctor_name p span {
    color: #a2a2a2;
    font-size: 14px;
    margin-left: 4px;
}

.goods_hospital_name p {
    text-align: center;
    font-size: 16px;
    color: #414141;
    margin: 10px 0 8px 0;
}

.goods_hospital_star p {
    text-align: center;
}

.goods_hospital_star p img {
    display: inline-block;
    width: 16px;
    height: 14px;
    margin: 0 auto;
}

.goods_doctor_year p {
    text-align: center;
    font-size: 14px;
    color: #414141;
}

.goods_doctor_year p span {
    color: #a4a3a3;
    margin: 0 4px;
}

.goods_hospital_des {
    margin-top: 12px;
    max-height: 133px;
    overflow: hidden;
}

.goods_hospital_des p {
    font-size: 14px;
    color: #4a4848;
    line-height: 26px;
}

.goods_item {
    margin: 30px 0;
}

.goods_item .goods_item_nav {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-right: 0;
}

.goods_item .goods_item_nav li {
    float: left;
    width: 24.87%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #757575;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
}

.goods_comment ul li {
    padding: 25px 0 18px 0;
    border-bottom: 1px solid #eee;
}

.goods_comment ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.goods_comment ul li .goods_comment_user {
    float: left;
    width: 100px;
    height: 100%;
}

.goods_comment ul li .goods_comment_user img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
}

.goods_comment ul li .goods_comment_user .user_name {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #717171;
    text-align: center;
    margin-top: 10px;
}

.goods_comment ul li .goods_comment_text {
    float: left;
    width: 620px;
}

.goods_comment ul li .goods_comment_text .add_time {
    font-size: 14px;
    color: #717171;
}

.goods_comment ul li .goods_comment_star img {
    display: inline-block;
    vertical-align: top;
    width: 13px;
    height: 12px;
    margin-top: 4px;
}

.goods_comment ul li .goods_comment_main {
    margin: 0 0 12px 0;
}

.goods_comment ul li .goods_comment_main p {
    font-size: 14px;
    color: #343434;
    line-height: 24px;
}

.w350 {
    width: 350px;
}

.goods_comment ul li .goods_comment_img img {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 100px;
    margin-right: 6px;
}

.goods_comment ul li .goods_comment_bottom span {
    font-size: 14px;
    color: #999999;
}

.goods_comment ul li .add_comment {
    width: 100%;
    border-top: 1px dashed #eee;
    margin: 10px 0;
}

.goods_comment ul li .add_comment p {
    margin: 16px 74px;
    width: 610px;
    font-size: 14px;
    color: #999999;
    line-height: 24px;
}

/*逛社区标题下项目信息样式*/
.community_item_info{
    border-bottom: 1px solid #eeeeed;
}

/*逛社区评论回复列表样式*/
.goods_comment ul li .add_new_comment p {
    background: #f7f7f7;
    padding: 10px;
}
.comment_reply_list span{
    display: block;
    padding: 10px;
}


.goods_comment ul li .add_comment .hospital_reply {
    background: #f7f7f7;
    padding: 20px 0;
}

.goods_nav_now {
    background: #fc6e32 !important;
    color: #fff !important;
}

.goods_case_item .goods_case_img {
    margin: 0 auto;
    width: 220px;
    height: 220px;
}

.goods_case_item .goods_case_img img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.goods_case_item .relevant_doctor .doctor_title {
    left: 70px;
}

.goods_case_wrap {
    width: 220px;
    border: 1px solid #eee;
    margin: 0 auto 16px;
}

.goods_case_item .goods_case_text .goods_case_des {
    font-size: 16px;
    color: #111111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.goods_case_item .goods_case_text {
    padding: 10px 6px 20px 6px;
}

.goods_case_item .goods_case_price {
    margin-top: 10px;
    font-size: 14px;
    color: #817f80;
}

.goods_case_item .goods_case_price .goods_case_pl {
    color: #fc4f30;
}

.goods_case_item .goods_case_price b {
    font-size: 20px;
    color: #fc4f30;
    font-weight: normal;
}

.goods_case_item .goods_case_price i {
    color: #817f80;
    text-decoration: line-through;
    margin-left: 4px;
}

.goods_case_item .goods_case_price .goods_case_pr {
    margin-top: 5px;
}

/* 商品详情分页 */
.goods_main_l .pages {
    margin: 40px 0;
}

.goods_main_l .pages ul {
    width: 100%;
    text-align: center;
}

.goods_main_l .pages ul li {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 10px;
    border: 1px solid #eee;
}

.goods_main_l .pages ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 24px;
    color: #696969;
}

.goods_main_l .pages ul li.up_page,
.goods_main_l .pages ul li.down_page {
    width: auto;
    border: 0 none;
}

.page_hover {
    background: #fc7432;
    color: #fff !important;
}

/* 预约优惠 */
.reservation_bread {
    margin: 20px 0;
}

.reservation_font span {
    display: inline-block;
    vertical-align: middle;
}

.reservation_fw {
    width: 25px;
    height: 24px;
}

.reservation_font .reservation_fw img {
    width: 100%;
    height: 100%;
    margin: 1px auto 0;
}

.reservation_ft {
    font-size: 20px;
    color: #333;
}

.reservation_nav {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

.reservation_nav ul li {
    float: left;
    padding: 0 20px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #404141;
    cursor: pointer;
    color: #737373;
    font-size: 14px;
    border: 1px solid #e5e5e5;
}

.reservation_nav_now {
    background: #fff;
    color: #fc4f30 !important;
}

.reservation_main {
    margin: 16px 0;
    min-height: 389px;
}

.reservation_main ul li {
    float: left;
    margin-right: 8px;
    margin-bottom: 16px;
}

.reservation_main ul li .reservation_imgwrap {
    width: 206px;
    height: 206px;
    overflow: hidden;
}

.reservation_main ul li .reservation_imgwrap img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.reservation_main ul li .reservation_text {
    width: 184px;
    border: 1px solid #eee;
    padding: 16px 10px;

}

.reservation_main ul li .reservation_text .reservation_price {
    margin-bottom: 12px;
}

.reservation_main ul li .reservation_text .reservation_so {
    font-size: 14px;
    color: #fc4f30;

}

.reservation_main ul li .reservation_text .reservation_so i {
    font-size: 20px;
}

.reservation_main ul li .reservation_text .reservation_so b {
    font-weight: normal;
    font-size: 14px;
    color: #817f80;
    text-decoration: line-through;
    margin-left: 4px;
}

.reservation_main ul li .reservation_text .reservation_st {
    font-size: 12px;
    color: #999999;
    margin-top: 5px;
}

.reservation_main ul li .reservation_text .reservation_des {
    width: 100%;
    margin-bottom: 12px;
}

.reservation_main ul li .reservation_text .reservation_des p {
    font-size: 14px;
    color: #111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 40px;
}

.reservation_main ul li .reservation_text .reservation_hn {
    font-size: 12px;
    color: #999999;
}

.reservation_page {
    width: 100%;
    margin: 24px 0 70px 0;
}

.reservation_page ul {
    text-align: center;
}

.reservation_page li {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #dfdfdf;
    margin: 0 8px;
}

.reservation_page li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 32px;
    text-align: center;
    color: #595959;
}

.reservation_page li.page_img {
    border: 0;
}

.reservation_page li.page_totle {
    width: auto;
}

.reservation_page li input {
    width: 36px;
    height: 30px;
    border: 1px solid #dfdfdf;
    margin: 0 4px;
    border-radius: 4px;
    text-align: center;
}

/* 医生列表 */
.doctor_fw {
    width: 20px;
    height: 24px;
}

.hospital_doctor_list {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 15px;
}

.hospital_doctor_list ul li {
    float: left;
    border: 1px solid #f0f0f0;
    padding: 12px;
    margin-right: 8px;
    margin-bottom: 14px;
}

.hospital_doctor_list ul li:nth-child(3n+3) {
    margin-right: 0px;
}

.hospital_doctor_list ul li .doctor_avatarwrap {
    display: inline-block;
    vertical-align: top;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.hospital_doctor_list ul li .doctor_avatarwrap img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.hospital_doctor_list ul li .doctor_infowrap {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    padding-left: 10px;
}

.hospital_doctor_list ul li .doctor_info_name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #111111;
    margin-right: 4px;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hospital_doctor_list ul li .doctor_info_zc {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    color: #999;
}

.hospital_doctor_list ul li .doctor_info_des {
    font-size: 12px;
    color: #999999;
    margin: 8px 0 4px 0;
    height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hospital_doctor_list ul li .doctor_info_jz {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.hospital_doctor_list ul li .doctor_info_jz span {
    color: #141414;
}

.doctor_info_ask span {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 85px;
    height: 25px;
    border-radius: 4px;
}

.doctor_info_ask span a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 25px;
    text-align: center;

}

.hospital_doctor_list ul li .doctor_index {
    background: #fc623c;
    margin-right: 12px;
    border: 1px solid #fc623c;
}

.hospital_doctor_list ul li .doctor_online_ask {
    background: #fff;
}

.hospital_doctor_list ul li .doctor_online_ask a {
    color: #fc623c;
    border: 1px solid #fc623c;
    border-radius: 4px;
}

/* 医生主页 */
.doctor_main_page .doctor_main_avatar,
.doctor_main_page .doctor_main_text {
    display: inline-block;
    vertical-align: top;
}

.doctor_main_page .doctor_main_info {
    border: 1px solid #eee;
    padding: 14px 0 14px 20px;
    margin-top: 10px;
}

.doctor_main_page .doctor_main_avatar {
    width: 170px;
}

.doctor_main_page .doctor_main_avatar img {
    width: 170px;
    height: 170px;
    overflow: hidden;
    object-fit: cover;
    margin: 0 auto;
}

.doctor_main_page .doctor_main_text {
    margin-left: 20px;
    width: 600px;
}

.doctor_main_page .doctor_main_text .doctor_main_name {
    font-size: 26px;
    color: #383838;
    margin-top: 6px;
    display: inline-block;
}

.doctor_main_page .doctor_main_text .doctor_main_name span {
    font-size: 16px;
    color: #888787;
    margin-left: 14px;
    font-weight: bold;
}

.intime{
    font-size: 14px;
    margin-left: 20px;
}


.doctor_main_page .doctor_main_text .base_wrap {
    margin: 12px 0;
    font-size: 14px;
    color: #888787;
}

.doctor_main_page .doctor_main_text .doctor_good_item {
    display: flex;
}

.doctor_scxm {
    display: inline-block;
    width: 82%;
}

.doctor_main_page .doctor_main_text .doctor_good_item span,
.doctor_main_page .doctor_main_text .doctor_hospital span,
.doctor_main_page .doctor_main_text .doctor_pl span {
    font-size: 14px;
    color: #252424;
    margin: 0 7px;
    display: inline-block;
    vertical-align: top;
}

.doctor_main_page .doctor_main_text .doctor_hospital span img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 14px;
}

.doctor_main_page .doctor_main_text .base_wrap i {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/icon_img.png) no-repeat;
    width: 17px;
    height: 17px;
    background-position: -50px 0;
    margin-right: 6px;
}

.doctor_main_page .doctor_main_text .doctor_hospital i {
    background-position: -67px 0;
}

.doctor_main_page .doctor_main_text .doctor_pl i {
    background-position: -33px 0;
}

.doctor_main_page .doctor_main_text .doctor_jz i {
    width: 16px;
    background-position: 0 0;
}

.doctor_main_page .doctor_main_text .doctor_cy i {
    background-position: -16px 0;
}

.doctor_main_page .doctor_ask_btn span {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    margin-top: 20px;
    border: 1px solid #fc7032;
}

.doctor_main_page .doctor_ask_online {
    background: #fc7032;
}

.doctor_main_page .doctor_ask_book {
    background: #fdd9c8;
    border: 1px solid #fc7032;
}

.doctor_main_page .doctor_ask_online a {
    display: block;
    padding: 4px 0;
    width: 80px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.doctor_main_page .doctor_ask_book a {
    padding: 4px 0;
    width: 80px;
    display: block;
    color: #fc4f30;
    font-size: 14px;
    text-align: center;
}

.doctor_main_page .doctor_main_nav {
    margin: 16px 0;
}

.doctor_main_page .doctor_main_nav .item_tab {
    float: left;
    width: 128px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border: 2px solid #eeeeed;
    margin-right: 10px;
    cursor: pointer;
}

.active_tab {
    border: 2px solid #fc7032 !important;
    color: #fc7032 !important;
}

.doctor_introduction {
    border: 1px solid #f0f0f0;
    margin-bottom: 16px;
    padding: 5px;
}

.doctor_introduction_title .content-pinglun-nav {
    margin: 0;
    color: #fe8522;
    font-size: 18px;
}

.doctor_introduction p {
    font-size: 16px;
    color: #353535;
    line-height: 30px;
    text-indent: 2em;
    padding: 0 6px;
}
/*医生主页医生简介 图标和文字*/
.doctor_info_icon{
    font-size: 18px;
    color:#fe8522;
}

.doctor_info_icon i{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    vertical-align: middle;
    margin-right: 8px;
}

.p_space{
    margin-top: 10px;
    padding: 0 20px;
}

.doc_intr{
    background: url(/img/jieshao.png) no-repeat;
}
.doc_honor{
    background: url(/img/rongyu.png) no-repeat;
}
.doc_exp{
    background: url(/img/jingli.png) no-repeat;
}
.doc_more_job{
    background: url(/img/zhiye.png) no-repeat;
}


/*逛社区页面评论和图标样式*/
.doctor_introduction .title_jj {
    font-size: 20px;
    color: #191919;
    margin-bottom: 20px;
    margin-left: 20px;
}

.doctor_introduction .title_jj::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url(/img/jieshao.png) no-repeat;
    width: 25px;
    height: 25px;
    background-size: 100%;
    margin-right: 10px;
}

/* 医生荣誉证书 */
.doctor_main_honor {
    position: relative;
}

.doctor_main_honor .title_ry::before {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/img/rongyu.png) no-repeat;
    background-size: 100%;
}

.doctor_main_honor .honor_list ul {
    width: 96%;
    margin: 0 auto;
}


.doctor_main_honor .honor_list ul li img {
    display: block;
    width: 255px;
    height: 159px;
}

.doctor_main_honor .honor_list ul li p {
    text-align: center;
    font-size: 16px;
    color: #191919;
    margin: 16px 0;
}

.doctor_main_honor .honor_list {
    position: relative;
}

.doctor_main_honor .click_move .click_move_left {
    position: absolute;
    left: 10px;
    top: 126px;
    background: url(/img/arr_left.png) no-repeat;
    width: 18px;
    height: 32px;
    z-index: 20;
}

.doctor_main_honor .click_move .click_move_right {
    position: absolute;
    right: 10px;
    top: 126px;
    background: url(/img/arr_right.png) no-repeat;
    width: 18px;
    height: 32px;
    z-index: 20;
}

.doctor_main_comment .title_dp::before {
    width: 24px;
    height: 24px;
    background: url(/img/dianping.png) no-repeat;
}

.doctor_comment_star {
    padding-left: 16px;
}

.doctor_comment_star img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 15px;
}

.doctor_comment_star .doctor_comment_hpd span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #80807f;
}

.doctor_comment_star .doctor_comment_hl a {
    font-size: 14px;
    color: #80807f;
}

.doctor_comment_wrap {
    margin: 10px 0;
    padding-left: 16px;
}

.doctor_comment_wrap textarea {
    width: 836px;
    height: 87px;
    border: 1px solid #e5e5e5;
    resize: none;
    padding: 10px;
    font-size: 16px;
}

.doctor_comment_text {
    padding-left: 16px;
}

.doctor_comment_text .doctor_comment_tm li {
    float: left;
    width: 73px;
    height: 24px;
    border: 1px solid #eee;
    font-size: 14px;
    color: #757575;
    line-height: 24px;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.doctor_comment_text .doctor_comment_dz input {
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 17px;
}

.doctor_comment_text .doctor_comment_dz span {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #757575;
    cursor: pointer;
}

.doctor_comment_text .doctor_comment_dz .doctor_dz_btn {
    background: #fc7432;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 20px;
}

.doctor_comment_pf {
    padding: 12px 0;
    margin: 16px 0 0 16px;
    border: 1px solid #e5e5e5;
}

.doctor_comment_pf .doctor_comment_pl {
    width: 132px;
    border-right: 1px dashed #dbdbdb;
}

.doctor_comment_pf .doctor_comment_pl .star_pf {
    width: 100%;
    text-align: center;
}

.doctor_comment_pf .doctor_comment_pl .star_pf img {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 12px;
}

.doctor_comment_pf .doctor_comment_pr {
    padding-left: 20px;
    width: 672px;
}

.doctor_comment_pr .doctor_yx_title {
    font-size: 14px;
    color: #737373;
    margin-bottom: 10px;
    display: inline-block;
}

.doctor_comment_pf .doctor_comment_pr .doctor_comment_yx ul li {
    float: left;
    padding: 4px 10px;
    color: #fc7432;
    font-size: 14px;
    border: 1px solid #fc7432;
    margin: 0px 10px 10px 0;
    border-radius: 4px;
    cursor: pointer;
}

.goods_comment ul li:nth-last-child(1) {
    border-bottom: none;
}

.goods_comment p,
.hospital-infomation-desc p,
.hospital-infomation-desc div {
    font-size: 14px;
    color: #333;
    margin: 4px 0;
    line-height: 26px;
    text-indent: 2em;
}

.goods_comment p {
    text-indent: 0;
}

.hospital-infomation-desc p {
    font-size: 16px;
    line-height: 40px;
}

.goods_xiangqing p {
    text-align: left !important;
    text-indent: 2em;
}

.goods_xiangqing {
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-top: none;
}

.goods_xiangqing table, .goods_xiangqing tr, .goods_xiangqing td{
    border: none;
}

.goods_comment img {
    display: block;
    margin: 0 auto;
    width: 75%;
}

/*商品图片模糊处理*/
.goods_xiangqing img{
    filter: blur(7px);
    -webkit-filter: blur(7px);
}

/*医生工作经历*/
.doctor_main_job .title_jl::before {
    width: 31px;
    height: 31px;
    background: url(/img/jingli.png) no-repeat;
}

.doctor_main_job .doctor_job_show {
    padding-left: 16px;
    margin-bottom: 36px;
    position: relative;
}

.doctor_main_job .doctor_job_show div {
    display: inline-block;
    vertical-align: middle;
}

.doctor_main_job .doctor_job_show .doctor_job_left::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    background: url(/img/round.png) no-repeat;
    margin: 0 18px;
}

.doctor_main_job .doctor_job_show i {
    position: absolute;
    left: 38px;
    top: 20px;
    width: 2px;
    height: 50px;
    background: #f0f0ef;
}

.doctor_main_job .doctor_job_show:nth-last-child(1) i {
    display: none;
}

/*医生职业信息*/
.doctor_main_zy .title_zy::before {
    background: url(/img/zhiye.png) no-repeat;
    width: 25px;
    height: 25px;
}

.doctor_main_zy .doctor_zy_main {
    width: 98%;
    margin: 0 auto;
}

.doctor_main_zy .doctor_zy_main li {
    float: left;
    width: 49%;
    background: #f9f8f8;
    border-radius: 4px;
    margin-bottom: 14px;
}

.doctor_main_zy .doctor_zy_main li:nth-child(2n+2) {
    float: right;
    margin-right: 0;
}

.doctor_main_zy .doctor_zy_main li div {
    display: inline-block;
    vertical-align: middle;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_wrap {
    width: 114px;
    height: 114px;
    overflow: hidden;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_wrap img {
    display: block;
    width: 114px;
    height: 114px;
    margin: 0 auto;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_text {
    padding-left: 6px;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_text p {
    margin-bottom: 6px;
    padding-left: 0;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_text .zy_one {
    color: #80807f;
}

.doctor_main_zy .doctor_zy_main .doctor_zy_text .zy_two {
    color: #191919;
}

.doctor_main_item .relevant_doctor .doctor_title {
    left: 83px;
}

.doctor_main_item {
    margin-top: 10px;
}

/* 社区 */
.community_main_show .community_mt {
    font-size: 20px;
    color: #2c2c2c;
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
}

.community_main_show .community_mt::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    background: url(/img/shequ.png) no-repeat;
    width: 26px;
    height: 22px;
    margin-top: 2px;
    margin-right: 6px;
}

.community_main_show .community_top_ul {
    margin-bottom: 16px;
}

.community_main_show .community_top_ul li {
    display: inline-block;
    width: 128px;
    height: 38px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #383838;
    margin-right: 5px;
}

.community_main_show .community_top_ul li a {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #eeeeed;
}

.community_mainwrap ul {
    width: 100%;
}

.community_mainwrap ul li {
    float: left;
    width: 257px;
    margin-bottom: 20px;
    margin-right: 16px;
}

.community_mainwrap ul li .community_imgwrap {
    width: 257px;
    height: 257px;
}

.community_mainwrap ul li .community_imgwrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(7px);
    -webkit-filter: blur(7px); */
}

.community_mainwrap ul li .community_textwrap {
border: 1px solid #f0f0f0;
width: 235px;
padding: 10px;
border-radius: 0 0 6px 6px;
}

.community_mainwrap ul li .community_textwrap .community_title {
margin-bottom: 20px;
font-size: 16px;
color: #2b2b2b;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
height: 40px;
}


/*贝色专栏列表头像和浏览量处样式*/
.community_user_info{display: flex;justify-content: space-between;height: 30px;overflow: hidden;line-height: 30px;}
.community_user_info .avatar-box{flex: 2; }
.community_user_info .avatar-box img{width: 30px;height: 30px;}
.community_user_info .avatar-box .nickname-box{display: inline-block;width: 130px;height: 30px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.community_user_info .num-box img{vertical-align: middle;}


.community_user_info span {
display: inline-block;
vertical-align: middle;
color: #686b69;
font-size: 14px;
max-width: 170px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.community_mainwrap ul li .community_user_avatar {
width: 30px;
height: 30px;
overflow: hidden;
}

.community_mainwrap ul li .community_user_avatar img {
display: block;
width: 100%;
height: 100%;
margin: 0 auto;
border-radius: 50%;
}

.community_mainwrap ul li .community_user_eye {
width: 24px;
height: 15px;
}

.community_mainwrap ul li .community_user_eye img {
display: block;
width: 100%;
height: 100%;
margin: 0 auto;
}

.community_mainwrap ul li .community_ir {
margin-top: 3px;
}



.community_main .community_main_l {
width: auto;
}

/* 社区内页 */
.community_banner ul li img {
    display: block;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.w950 {
    width: 950px;
}

.w620 {
    width: 620px;
}

.w520 {
    width: 520px;
}

body .pb75 {
    padding-bottom: 75px;
}

.p50 {
    padding: 20px 50px 16px 50px;
}

.community_introduction {
    position: relative;
    padding-bottom: 120px;
    border-bottom: none;
    margin-bottom: 0;
}

.community_inner_img {
    position: absolute;
    left: 50.1%;
    transform: translate(-50%, 0%);
    bottom: 6px;
    z-index: 99;
    width: 100%;
    text-align: center;
}

.community_inner_img ul li {
    width: 90px;
    height: 90px;
    float: left;
    margin: 0 6px;
}

.community_inner_img ul li img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: 4px;
}

.community_pagination {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
    z-index: 100;
}

.community_pagination span {
    margin: 4px 1.2px;
}

.community_pagination .swiper-pagination-bullet {
    width: 52.5px;
    height: 50px;
    border-radius: 0;
}

.community_pagination .swiper-pagination-bullet-active {
    border: 1px solid #fe8e32;
    background: transparent;
}

.community_inner_img span {
    display: inline-block;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
/*社区内容页顶部轮播左右按钮样式*/
.swiper-button-next{
    width: 38px;
    height: 38px;
    right: 0;
    background: url(/img/banner_r.png) no-repeat;
}

.swiper-button-prev{
    width: 38px;
    height: 38px;
    left: 0;
    background: url(/img/banner_l.png) no-repeat;
}

.community_inner_text {
    border: 1px solid #f0f0f0;
    padding: 20px 30px;
    margin-bottom: 16px;
}

.community_inner_text_no_border {
    border: none;
}

.community_inner_text .community_inner_tt {
    font-size: 24px;
    color: #111;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
}

.community_inner_text ul {
    margin: 16px 0 0 0;
    padding-bottom: 16px;
}

.community_item_info  ul li {
    float: left;
    margin-right: 20px;
}

.community_inner_text ul li span {
    font-size: 14px;
    color: #817f80;
}

.community_inner_text ul li span b {
    color: #fe8e32;
}

.community_inner_text ul li i {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/icon_img.png) no-repeat;
    width: 17px;
    height: 17px;
    background-position: -85px 0;
}

.community_inner_text ul .community_ul_lf i {
    background-position: -50px 0;
}

.community_inner_text ul .community_ul_lt i {
    background-position: -16px 0;
}

.community_sc_wrap {
    margin-top: 16px;
    cursor: pointer;
}

.community_sc img {
    display: block;
    width: 13px;
    height: 12px;
    margin: 0 auto;
}

.community_sc {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
    border-right: 1px solid #eee;
}

.community_sc_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

.community_text_main, .hospital-notice-content-desc {
    margin-top: 16px;
    font-size: 16px;
    color: #353535;
}

.community_text_main a, .hospital-notice-content-desc a{
    text-decoration: underline;
    color: blue;
}

.community_text_main p, .hospital-notice-content-desc p{
    line-height: 35px;
    margin-bottom: 15px;
    text-indent: 2em;
    letter-spacing: 2px;
}

.community_text_main p span, .hospital-notice-content-desc p span {
    text-wrap: wrap!important;
}

.community_text_main h3, .hospital-notice-content-desc h3{
   margin: 15px auto;
   border-left: 4px solid #d94327;
   padding-left: 10px;
   color: #d94327;
}

.community_text_main p img, .hospital-notice-content-desc p img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}


.community_text_main table {
	width: 95%;
	border-collapse: collapse;
	margin: 24px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.community_text_main table th {
	background: #CAE8EA;
	color: #4f6b72;
	border: 1px solid #C1DAD7;
	padding: 8px;
	text-align: left;
	letter-spacing: 0.5px;
}

.community_text_main table td {
	border: 1px solid #C1DAD7;
	padding: 5px;
	color: #666;
	background: #fff;
}

.community_text_main table tr:nth-child(even) td {
	background: #F5FAFA;
}


.community_publish_time {
    margin-top: 30px;
    font-size: 14px;
    color: #817f80;
}

.community_publish_time_new{
    margin-top: 30px;
    font-size: 14px;
    color: #817f80;
    text-align: right;
}

.community_main_r {
    padding: 0;
}

.l_title {
    margin: 16px 0;
    display: block;
    font-size: 16px;
    color: #414141;
    padding-left: 10px;
    border-left: 4px solid #fc462d;
}

/* 个人中心评论 */
.center_wrap {
    width: 1000px;
    margin: 0 auto;
}

.center_top_info {
    width: 1000px;
    height: 189px;
    background: url(/img/pinglun_bg.png) no-repeat;
    margin: 20px 0;
}

.center_top_info .center_user_avatar {
    width: 128px;
    height: 128px;
    display: inline-block;
    vertical-align: middle;
    margin: 26px 0 0 50px;
    border: 4px solid #f8c996;
    border-radius: 50%;
}

.center_top_info .center_user_avatar img {
    display: block;
    width: 128px;
    height: 128px;
    border-radius: 50%;
}

.center_top_info .center_user_info {
    display: inline-block;
    vertical-align: middle;
}

.center_info_main {
    margin-top: 20px;
}

.center_info_main span {
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    font-size: 26px;
    color: #ffffff;
}

.center_info_main .center_info_sex {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 25px;
    background: url(/img/nv.png) no-repeat;
    margin: 0 12px;
}

.center_info_main .level {
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 24px;
    padding: 0 6px;
    background: #ffad41;
    border-radius: 6px;
}

.center_info_main b {
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
    cursor: pointer;
}

.center_info_main b a {
    font-weight: normal;
    font-size: 18px;
    color: #fff;
}

.center_info_main b a::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 23px;
    height: 23px;
    background: url(/img/bianji.png) no-repeat;
    margin-right: 4px;
}

.center_info_main .user_des {
    font-size: 18px;
    color: #fff;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 500px;
}

.center_nav ul {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    width: 670px;
}

.center_nav ul li {
    float: left;
    width: 133px;
    height: 42px;
    line-height: 42px;
}

.center_nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    color: #404141;
    border-right: 1px solid #e5e5e5;
}

.center_nav_now {
    background: #fff !important;
    color: #fc4f30 !important;
}

.center_comment .center_comment_main .comment_top {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.comment_top_left .comment_top_avatar {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
}

.comment_top_left .comment_top_avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0 auto;
}

.comment_top_left .comment_top_text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.comment_tr_del {
    margin-top: 23px;
}

.comment_top_left .comment_top_text .nick_name {
    font-size: 16px;
    color: #333;
}

.comment_top_left .comment_top_text .time_show {
    font-size: 14px;
    color: #999;
}

.center_comment .center_comment_main .comment_top .top_color {
    color: #5a9ee2;
}

.center_comment .center_comment_main {
    margin: 10px 0;
}

.center_comment .center_comment_main ol li {
    border: 1px solid #eee;
    padding: 16px;
    margin: 20px 0;
}

.center_comment .center_comment_main .comment_top_left span {
    font-size: 16px;
    color: #8e8e8e;

}

.center_comment .center_comment_main .comment_top_left span i {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url(/img/dianping.png) no-repeat;
    background-size: 18px 18px;
    margin: -5px 10px 0 32px;
}

.center_comment .center_comment_main .comment_top_left span .sc_img {
    background: url(/img/star_o.png) no-repeat center center;
    margin-right: 0;
    background-size: 18px 18px;
}

.center_comment .center_comment_main .comment_top_left span .dz_img {
    background: url(/img/dianzan.png) no-repeat center center;
    margin-right: 0;
    background-size: 18px 18px;
}

.center_comment .center_comment_main .comment_top_right img {
    width: 20px;
}

.comment_midddle {
    font-size: 20px;
    color: #454545;
    margin: 20px 0;
}

.comment_bottom {
    background: #faf9f9;
    border-radius: 6px;
    padding: 10px;
}

.comment_bottom .comment_bl {
    width: 94px;
    height: 94px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

.comment_bottom .comment_bl img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 6px;
}

.comment_bottom .comment_br {
    display: inline-block;
    vertical-align: middle;
    width: 520px;
}


/*我的发布列表页面样式调整*/
.center_comment .center_comment_main .myworks {
    border: 1px solid #eee;
    padding: 16px 8px;
    margin: 20px 0;
}
.comment_bottom .works_comment_br {
    display: inline-block;
    width: 520px;
    margin-left: 10px;
    vertical-align: middle;
}

.work_comment_no_margin_left{
    margin-left: 0px;
}

.comment_bottom .works_comment_br .title, .comment_bottom .work_comment_no_margin_left .title{
    color: #454545;
    font-size: 18px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment_bottom .works_comment_br .des,.comment_bottom .work_comment_no_margin_left .des{
    color: #8d8b8b;
    font-size: 13px;
    padding-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all
}

.comment_bottom .comment_br .zhicheg {
    font-style: 14px;
    color: #999;
}

.comment_bottom .accept_br {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.comment_bottom .comment_br p.title {
    color: #454545;
    font-size: 18px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment_bottom .comment_br p.des {
    color: #646363;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment_bottom .comment_br p.time {
    font-size: 14px;
    text-align: right;
    color: #9c9b9b;
}

.center_comment_right {
    width: 310px;
    border: 1px solid #eee;
}

.center_comment_right .hot_title {
    display: block;
    font-size: 20px;
    color: #505050;
    height: 50px;
    line-height: 50px;
    padding-left: 16px;
    border-bottom: 1px solid #eee;
}

.center_right_story {
    width: 287px;
    margin: 12px auto;
    border: 1px solid #eee;
}

.center_right_story .story_img {
    width: 289px;
    height: 289px;
    display: block;
    margin: 0 auto;
}

.center_right_story .story_des {
    margin: 20px 16px;
    font-size: 16px;
    color: #2b2b2b;
}

.center_right_story .community_user_info {
    margin: 0 16px 16px 16px;
}

.center_right_story .community_user_avatar {
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.center_right_story .community_user_avatar img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.center_right_story .community_user_eye img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.center_right_story .community_ir {
    margin-top: 3px;
}

/* 会员签到 */
.center_register_left {
    padding: 36px 45px;
    width: 580px;
}

.center_register_left {
    border: 1px solid #eee;
}

.register_wrap .register_tl div span {
    color: #f85f31;
}

.register_wrap .register_tl .register_days {
    font-size: 26px;
    color: #333333;
    margin: 4px 0;
}

.register_wrap .register_tl .register_score {
    font-size: 16px;
    color: #999999;
}

.register_tr img {
    display: block;
    width: 214px;
    height: 69px;
    cursor: pointer;
}

.register_progress,
.register_imgwrap {
    margin-top: 36px;
    position: relative;
}

.register_progress ol li {
    float: left;
    margin-right: 30px;
}

.register_progress ol li p {
    text-align: center;
    font-size: 18px;
    color: #999999;
    margin-top: 10px;
}

.register_progress .progress_line {
    position: absolute;
    left: 0;
    top: 26px;
    width: 540px;
    height: 1px;
    background: #ededed;
    z-index: -1;
}

.integral {
    margin: 20px 0;
}

.integral .integral_text_left span {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color: #333333;
}

.integral_text_right {
    line-height: 43px;
    font-size: 18px;
    color: #939393;
}

.integral_text_right span {
    color: #f4792f;
}

.integral_text_show .text_show_left .notice {
    font-size: 16px;
    color: #000000;
}

.integral_text_show li {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.integral_text_show .text_show_left .time {
    font-size: 14px;
    color: #939393;
    margin-top: 4px;
}

.integral_text_show .text_show_right {
    font-size: 24px;
    color: #000000;
    line-height: 44px;
    margin-right: 20px;
}

/* 足迹 */
.footmark {
    margin: 30px 0;
}

.footmark ol li {
    margin-bottom: 30px;
}

.footmark_linewrap {
    width: 80px;
    height: 103px;
    background: #fff;
    position: relative;
    float: left;
}

.footmark_line {
    width: 1px;
    height: 103px;
    margin: 0 auto;
    background: #eeeeee;
}

.footmark_linewrap .footmark_round {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}

.footmark_text {
    float: left;
    width: 564px;
    background: #f9f8f8;
}

.footmark_text .footmark_imgwrap {
    width: 103px;
    height: 103px;
}

.footmark_text .footmark_imgwrap img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.footmark_text .footmark_imgwrap,
.footmark_text .footmark_textwrap {
    display: inline-block;
    vertical-align: middle;
}

.footmark_text .footmark_textwrap {
    width: 430px;
    margin-left: 10px;
}

.footmark_linewrap .small_line {
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    top: 95px;
    width: 1px;
    height: 40px;
    background: #eeeeee;
}

.center_footmark_left {
    border: 1px solid #eee;
}

/* 云问诊 */
.center_wenzhen_right ol li .ask_phone {
    margin-left: 32px;
    margin-top: 2px;
    font-size: 12px;
    color: #686b69;
}

.center_wenzhen_right ol li .ask_title {
    font-size: 14px;
    color: #3d3d3d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center_wenzhen_right ol li .ask_title::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(/img/ask_img.png) no-repeat;
    margin: 0 6px;
}

.center_wenzhen_right ol li {
    padding: 10px 6px;
    border-bottom: 1px solid #eee;
}

.center_wenzhen_right {
    margin-top: 16px;
}

.personal_info input,
.personal_info select {
    width: 290px;
    height: 36px;
    border: 1px solid #eee;
}

.personal_info .choose_item_code {
    position: relative;
}

.personal_info .choose_item_code .code_btn {
    position: absolute;
    right: 16px;
    top: 4px;
    height: 30px;
    background: none;
    font-size: 14px;
    color: #8e8e8e;
    line-height: 30px;
    padding-left: 6px;
    border-left: 1px solid #eee;
    cursor: pointer;
}

.center_wenzhen_left .info_btn {
    width: 210px;
    height: 50px;
    margin-left: 24px;
    border-radius: 30px;
    background: #f0942d;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
}

.personal_info .choose_item_show {
    margin: 20px 0;
    padding-left: 24px;
    width: 400px;
}

.personal_info .choose_item_show span {
    display: inline-block;
    font-size: 16px;
    color: #5d5d5d;
    width: 100px;
}

.personal_info .choose_item_area span {
    width: 96px;
}

.center_wenzhen_middle .camera {
    padding: 0 24px;
    margin: 16px 0;
}

.center_wenzhen_middle .camera .camera_img,
.center_wenzhen_middle .camera .camera_text {
    display: inline-block;
    vertical-align: middle;
}

.center_wenzhen_middle .camera .camera_text p {
    font-size: 14px;
    color: #8e8e8e;
    margin: 2px 0;
}

.center_wenzhen_left {
    width: 670px;
    margin-top: 16px;
    border: 1px solid #eee;
    padding: 20px 0;
}

.center_wenzhen_top .choose_item {
    display: block;
    padding-left: 14px;
    border-left: 4px solid #ec5946;
    font-size: 20px;
    color: #3b3b3b;
}

.wenzhen_radio {
    padding-left: 30px;
    margin: 20px 0;
}

.wenzhen_radio input[type="radio"] {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
    margin-right: 10px;
}

input:checked {
    border: 1px solid red;
}

.wenzhen_radio input[type="text"] {
    width: 290px;
    height: 36px;
    border: 1px solid #eee;
    margin-left: 10px;
    color: #8e8e8e;
    text-indent: 1em;
}

.wenzhen_radio span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 80px;
    margin-top: -3px;
    font-size: 16px;
    color: #5d5d5d;
}

.wenzhen_radio .other_radio {
    margin-right: 0;
}

.center_wenzhen_middle textarea {
    display: block;
    width: 600px;
    height: 130px;
    margin: 10px auto;
    border: 1px solid #eee;
    resize: none;
    padding: 10px;
    font-size: 16px;
    color: #666;
}

/* 登陆后下拉 */
#login_click {
    position: relative;
}

.top_left .y_login {
    position: absolute;
    left: 0;
    top: 40px;
    background: #fff;
    border: 1px solid #eee;
    display: none;
}

.top_left .y_login li {
    width: 88px;
    border-bottom: 1px solid #eee;
}

.top_left .y_login li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.logo_drop {
    display: block !important;
}

#login_tab_bar {
    position: relative;
}

.goods_top_right .y_login ol li {
    float: none;
}

.goods_top_right .y_login li {
    width: 88px;
    border-bottom: 1px solid #eee;
}

.goods_top_right .y_login {
    position: absolute;
    left: 0;
    top: 40px;
    background: #fff;
    border: 1px solid #eee;
    display: none;
}

.goods_top_right .y_login li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* 写经历按钮 */
.write_jl {
    width: 130px;
    height: 40px;
    background: #fc8630;
    border-radius: 4px;
    margin-right: 24px;
}

.write_jl a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.write_jl i {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/shequ_xjl.png) no-repeat;
    width: 21px;
    height: 21px;
    margin: -2px 8px 0 0;
}

/* 写经历 */
.submit_text {
    text-align: right;
    margin: 20px 0;
}

.submit_text span {
    display: inline-block;
    width: 140px;
    height: 40px;
    background: #d3d2d2;
    text-align: center;
    line-height: 40px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
}

.submit_text .public_jl {
    background: #f0942d;
}

.write_main_r .tigs {
    margin: 20px 0;
}

.write_main_r .tigs span {
    display: inline-block;
    vertical-align: middle;
    padding: 6px 10px;
    background: #f4f3f3;
    border-radius: 4px;
    margin: 5px;
}

.write_main_r .tigs i {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(/img/close_tigs.png) no-repeat;
    background-size: 100% 100%;
    margin: -2px 0 0 10px;
}

.write_itemtext {
    font-size: 18px;
    color: #505050;
    margin: 12px 0;
}

.write_itemtext .write_icon {
    color: #de3636;
    display: inline-block;
    vertical-align: middle;
}

.write_iteminput {
    width: 330px;
    height: 38px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.write_iteminput input {
    display: inline-block;
    vertical-align: middle;
    width: 286px;
    height: 38px;
    text-indent: 1em;
}

.write_iteminput i {
    display: inline-block;
    vertical-align: middle;
    width: 38px;
    height: 38px;
    border-left: 1px solid #f0f0f0;
    background: url(/img/down_xjl.png) no-repeat center center;
    background-size: 10px 6px;
}

.write_item {
    margin-bottom: 20px;
}

.write_select {
    width: 100%;
    height: 100%;
    text-indent: 1em;
    font-size: 14px;
    color: #666;
}

.editor_wrap {
    margin-top: 24px;
}

.write_main {
    width: 746px;
    margin-right: 24px;
}

.write_main_r {
    width: 324px;
}

.write_xjl_top {
    width: 1920px;
    height: 394px;
    background: url(/img/xjl_bg.png) no-repeat;
    margin: 0 auto;
}

.write_xjl_top ul {
    padding-top: 50px;
    text-align: center;
}

.write_xjl_top ul li {
    position: relative;
    width: 140px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 40px;
}

.write_xjl_top .write_title {
    display: block;
    width: 900px;
    height: 50px;
    margin: 80px auto 0;
    border-radius: 4px;
    text-indent: 2em;
    font-size: 16px;
    color: #333;
}

.write_iteminput {
    position: relative;
}

.iteminput_wrap {
    position: absolute;
    width: 330px;
    height: 200px;
    left: 0;
    top: 38px;
    background: #fff;
    border: 1px solid #eee;
    max-height: 200px;
    overflow-y: scroll;
    z-index: 10;
    display: none;
}

.iteminput_wrap li {
    padding: 10px 4px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.set_name_class {
    height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.search-list-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
}

/* wrn css */
.crumbs {
    margin: 10px 0;
}

.crumbs .crumbs-item {
    display: inline-block;
    font-size: 12px;
}

.crumbs .active {
    color: #e63c1d;
}

.border {
    border: 1px solid #f2f2f2;
}

.e5border {

    border: 1px solid #e5e5e5;
}

.screen .screen-item {
    display: flex;
    border-bottom: none;
}

.screen .screen-item .screen-item-left {
    width: 10%;
    color: #7f7e7e;
    text-align: center;
    line-height: 183px;
}

.screen .screen-item-right {
    height: 183px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.screen_margin {
    margin: 12px 0;
}

.screen-next .screen-item .screen-item-left {
    height: 492px;
}

.screen-item-right .screen-item-right-box {
    width: 15%;
    margin: 25px 5px;
}

.screen-item-right .screen-item-right-box a{
    display: block;
}

.screen-item-right .screen-item-right-box-img {
    width: 70%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.screen-item-right .screen-item-right-box-desc {
    padding: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.screen-next-item {
    width: 10%;
}

.screen-next-item-title {
    line-height: 50px;
    color: #7f7e7e;
    text-align: left;
    padding-left: 40px;
}

.screen-next-list {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}

.screen-next-list-item {
    text-align: left;
    line-height: 50px;
    margin: 0 10px;
    color: #676767;
}

.screen-next-list .active {
    color: #fff;
    background: #fc6b31;
    border-radius: 20px;
    display: inline-block;
    padding: 4px 10px;
    line-height: 20px;
    text-align: center;
}


.list-hospital {
    display: flex;
    justify-content: space-between;
}

.list-hospital-left {
    width: 875px;
}

.list-hospital-right {
    width: 325px;
}

/*医院列表页样式*/
.hover-box:hover{
    background-color: #f2f2f2;
}

/*鼠标移动到hospital-item-box上时改变元素下子元素的文字的颜色*/
.hover-box:hover .list-hospital-left-item-desc-title-name,
.hover-box:hover .case_title,
.hover-box:hover .name,
.hover-box:hover .mabe_wz_title,
.hover-box:hover .community_mabe_title{
    color: #fc6b31!important;
    font-weight: bold!important;
}

.list-hospital-left-item {
    display: flex;
    border-bottom: 1px solid #f2f2f2;
    padding: 16px;
}

.list-hospital-left-item-img {
    width: 190px;
    height: 190px;
    overflow: hidden;
}

.list-hospital-left-item-img img {
    width: 100%;
}

.list-hospital-left-item-desc {
    width: 370px;
    margin: 0 13px;
    border-right: 1px solid #f2f2f2;
}

.list-hospital-left-item-desc-title div {
    display: inline-block;
}

.list-hospital-left-item-desc-title-img img {
    width: 16px;
    display: inline-block;
}

.list-hospital-left-item-desc-title-img {
    vertical-align: middle;
}

.list-hospital-left-item-desc-title-name {
    font-size: 20px;
    color: #1e1e1e;
}

.list-hospital-left-item-desc-appraise {
    padding-top: 5px;
    padding-left: 5px;
}

.list-hospital-left-item-desc-appraise-score {
    display: inline-block;
    color: #fc6b31;
    font-size: 18px;
}

.list-hospital-left-item-desc-appraise-good {
    display: inline-block;
    color: #fc6b31;
    font-size: 18px;
}

.list-hospital-left-item-desc-appraise-comment {
    display: inline-block;
    font-size: 14px;
    color: #616161;
}

.list-hospital-left-item-desc-address {
    font-size: 14px;
    color: #999999;
    padding-top: 5px;
}

.list-hospital-address {
    margin-top: 4px;
    width: 350px;
    color: #999999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-hospital-left-item-desc-nature {
    padding-top: 10px;
}

.list-hospital-left-item-desc-nature-item {
    width: auto;
    border: 1px solid #fc6b31;
    color: #fc6b31;
    padding: 1px 5px;
    display: inline-block;
    border-radius: 5px;
}

.list-hospital-right-item {
    width: 120px;
    display: inline-block;
}

.list-hospital-right-item {
    margin: 13px;
    text-align: center;
}

.list-hospital-right-item-price {
    color: #fc6b31;
    font-size: 20px;
    padding-top: 40px;
}

.list-hospital-right-item-price span {
    color: #323232;
    font-size: 12px;
}

.list-hospital-right-item-xm {
    padding: 5px 5px;
    color: #fff;
    background: #fc6b31;
    border-radius: 5px;
    margin: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 18px;
}

.list-hospital-right-item-more {
    margin-top: 10px;
}

.list-hospital-name {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #505050;
}

.list-hospital-img {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/jlt.png) no-repeat;
    background-position: -689px -177px;
    width: 28px;
    height: 26px;
    margin-top: -4px;
}

.list-doctor-img {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/jlt.png) no-repeat;
    background-position: -640px -177px;
    width: 24px;
    height: 27px;
    margin-top: -4px;
}

.list-hospital-pm {
    padding: 16px;
    border-bottom: 0 none;
}

/*医院列表右侧热门日记样式*/
.hot-case{
    padding: 10px;
    margin: 5px;
}
.hot-case .case-title{
    padding-top: 10px;
    font-size: 14px;
    color: #505050;
    text-align: center;
}
.case-img-box{
    text-align: center;
}
.case-img-box img{
    width: 136px;
}


.list-hospital-left-item-desc-servers {
    padding: 20px 0 0 0;
}

.list-hospital-left-item-desc-servers img {
    margin-right: 5px;
}

.screen-project-tab {
    margin-bottom: -2px
}

.title li {
    display: inline-block;
    background: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    padding: 2px 15px;
}

.title .active {
    border-top: 1px solid #eae9e9;
    border-bottom: 2px solid #fafafa;
    border-left: 1px solid #eae9e9;
    border-right: 1px solid #eae9e9;
    background: #fafafa;
}

#content {
    margin: 0;
    border: 1px solid #eae9e9;
    width: 95%;
    background: #fafafa;
}

#content div {
    display: none;
    padding: 10px 0
}

#content .mod {
    display: block;
}

.screen-project {
    display: flex;
    padding: 10px 0;
}

.screen-project-left {
    height: 150px;
    color: #7f7e7e;
    text-align: left;
    padding-left: 40px;
    width: 7%;
    padding-top: 5px;
}

.screen-project-right {
    width: 90%;
}

.hospital-subscribe {
    margin-top: 20px;
}

.hospital-subscribe-title i {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 24px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -664px -177px;
    margin-top: -4px;
}

.hospital-subscribe-title span {
    color: #333;
    font-size: 18px;
}

.hospital-subscribe-item {
    margin-top: 10px;
    padding: 20px;
    color: #80807f;
}

.hospital-subscribe-item-list div {
    display: inline-block;
    width: 110px;
    line-height: 30px;
    height: 31px;
    text-align: center;
    background: #f4f4f4;
    border-radius: 20px;
    margin-right: 20px;
    color: #737373;
    margin-top: 15px;
}

.hospital-subscribe-width {
    width: 780px;
}

.hospital-subscribe-item-list-active {
    color: #fff !important;
    background: #fc6b31 !important;
}

.hospital-goods-item {
    display: inline-block;
    width: 180px;
}

.hospital-goods-item-price {
    padding: 10px 8px 5px 8px;
    color: #fc6b31;
}

.hospital-goods-item-price div {
    display: inline-block;
}

.hospital-goods-item-price-area {
    float: right;
    font-size: 12px;
    color: #999999;
    padding-top: 7px;
}

.hospital-goods-item-price-now {
    font-size: 20px;
}

.hospital-goods-item-price-now span {
    font-size: 12px;
}

.hospital-goods-item-price-before {
    font-size: 14px;
    color: #817f80;
    text-decoration: line-through;
}

.hospital-goods-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    padding: 0 8px;
    height: 38px;
}

.hospital-goods-item-name {
    font-size: 12px;
    margin-top: 7px;
    color: #999999;
    padding: 0px 8px 15px 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hospital-goods-item {
    margin: 15px 5px 0 0;
}

.hospital-map {
    height: 210px;
    overflow: hidden;
}

.hospital-trafficInfo {
    background: #f5f5f5;
    margin-bottom: 20px;
}

.hospital-trafficInfo-title {
    padding: 10px 0 0 10px;
    font-size: 16px;
}

.hospital-trafficInfo-item-img {
    display: inline-block;
    width: 16px;
    height: 18px;
}

.hospital-trafficInfo-item-img i {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 18px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -499px -131px;
    margin-top: -2px;
}

.hospital-trafficInfo-item-desc {
    display: inline-block;
    font-size: 14px;
    width: 250px;
    margin-left: 10px;
}

.hospital-trafficInfo-item {
    height: 35px;
    display: flex;
    padding: 15px;
    border-bottom: 1px dashed #c1bfbf;
}

.hospital-trafficInfo-item-desc-area .right {
    font-size: 12px;
    float: right;
    color: #fc6b31;
}

.hospital-trafficInfo-item-desc-area .right a {
    color: #fc6b31;
}

.hospital-trafficInfo-item-desc-area .left {
    display: inline-block;
    font-size: 12px;
}

.hospital-infomation {
    margin-top: 20px;
}

.fontcolor {
    color: #fc7432 !important;
}

.border-bottom {
    border-bottom: 1px solid #f2f2f2;
}

.hospital-infomation-desc {
    padding: 15px 25px;
}

.focus {
    height: 405px;
    width: 695px;
    display: inline-block;
}

.focus .left {
    float: left;
    width: 550px;
    height: 405px;
    position: relative;
    overflow: hidden;
}

.focus .left li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus .left li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 405px;
    z-index: 1;
    opacity: 0;
    filter: alpha(opacity=0);
}

.focus .left li.active {
    z-index: 2;
}

.focus .left li p {
    display: none;
}

.focus .right {
    float: right;
    width: 135px;
    height: 405px;
    overflow-y: auto;
    overflow-x: hidden;
}

.focus .right li {
    width: 135px;
    height: 100px;
    overflow: hidden;
    background-position: -120px 0;
    color: #33cccc;
    font-size: 24px;
    line-height: 88px;
    margin-bottom: 3px;
    cursor: pointer;
}

.hospital-right {
    width: 400px;
    height: 400px;
    float:right;
}

.focus .right li:hover,
.focus .right li.active {
    color: #fff;
    background-position: -120px -120px;
}

.mt20 {
    margin-top: 15px;
}

.hospital-right-one {
    width: 365px;
    padding: 10px 10px 10px 30px;
}

.hospital-right-one-desc div {
    display: inline-block;
    font-size: 14px;
    height: 25px;
    line-height: 25px;
}

.hospital-right-one-desc-time {
    float: right;
}

.hospital-right-one-desc-img {
    max-width: 230px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice_more {
    margin-top: -2px;
}

.notice_more a {
    color: #666;
    font-size: 14px;
}

.hospital-right-one-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.hospital-right-one-title i {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 20px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -341px -177px;
    margin-top: -2px;
}

.hospital-right-one-desc-time {
    color: #ccc;
    font-size: 12px !important;
}

.hospital-right-two-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.hospital-right-two-title span {
    color: #5a9ee2;
}

#r-result {
    font-size: 14px;
    color: #666666;
    line-height: 50px;
    padding: 12px;
}

.hospital-right-two-desc {
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #999999;
}

.hospital-right-three i {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -323px -177px;
    margin-top: -2px;
}

.hospital-right-three b {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 17px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -462px -131px;
    margin-top: -2px;
}

.hospital-right-three div {
    margin-bottom: 5px;
}

.hospital-right-three div:nth-of-type(4) {
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.hospital-right-three div:nth-of-type(1) {
    color: #999;
    font-size: 14px;
}

.hospital-right-three div:nth-of-type(3) {
    color: #999;
    font-size: 14px;

}

.hospital-right-three div:nth-of-type(2) {
    margin-left: 20px;
}

.hospital-right-three div:nth-of-type(4) {
    margin-left: -7px;
    padding-left: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hospital-right-two {
    height: 115px;
    width: 360px;
    margin: 5px 30px 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.hospital-right-three {
    padding: 10px 30px 6px 30px;
    width: 340px;
}

.hospital-right-four {
    padding: 0px 30px 0 30px;
    height: 21px;

}

.hospital-right-four i,
.hospital-infomation-service-img b {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin: 2px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -556px -177px;
}

.hospital-right-four .service_pic_6950,
.hospital-infomation-service-img .service_pic_6950 {
    background-position: -437px -178px;
    width: 19px;
    height: 19px;
}

.hospital-right-four .service_pic_6952,
.hospital-infomation-service-img .service_pic_6952 {
    background-position: -496px -177px;
}

.hospital-right-four .service_pic_6953,
.hospital-infomation-service-img .service_pic_6953 {
    background-position: -518px -177px;
    width: 16px;
    height: 20px;
}

.hospital-right-four .service_pic_6954,
.hospital-infomation-service-img .service_pic_6954 {
    background-position: -536px -177px;
}

.hospital-right-four .service_pic_6955,
.hospital-infomation-service-img .service_pic_6955 {
    background-position: -600px -177px;
    width: 15px;
}

.hospital-right-four .service_pic_6956,
.hospital-infomation-service-img .service_pic_6956 {
    background-position: -476px -179px;
    height: 16px;
}

.hospital-right-four .service_pic_6957,
.hospital-infomation-service-img .service_pic_6957 {
    background-position: -576px -178px;
    width: 20px;
    height: 18px;
}

.hospital-right-four .service_pic_6958,
.hospital-infomation-service-img .service_pic_6958 {
    background-position: -356px -178px;
    width: 19px;
    height: 19px;
}

.hospital-right-four .service_pic_6959,
.hospital-infomation-service-img .service_pic_6959 {
    background-position: -377px -177px;
    width: 18px;
    height: 20px;
}

.hospital-right-four .service_pic_6960,
.hospital-infomation-service-img .service_pic_6960 {
    background-position: -416px -178px;
    width: 20px;
    height: 18px;
}

.hospital-right-four .service_pic_6961,
.hospital-infomation-service-img .service_pic_6961 {
    background-position: -458px -177px;
    width: 16px;
    height: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    width: 100%;
    height: 100%;
}

.product-list-item {
    display: inline-block;
    width: 354px;
    height: 240px;
    border-radius: 10px;
    margin-right: 10px;
    overflow: hidden;
}

.product-list-item-img {
    width: 171px;
    height: 171px;
    display: inline-block;
}

.product-list-item-img img {
    display: inline-block;
    width: 100%;
}

.product-list-item-title {
    width: 338px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    background: #eeeeed;
    color: #4c4c4c;
    text-align: center;
    padding: 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-title-img {
    width: 24px;
    height: 20px;
    display: inline-block;
}

.product-title-title {
    display: inline-block;
    font-size: 20px;
}

.product-nav {
    width: 100%;
    text-align: left;
    font-size: 20px;
    margin: 20px 0;
}

.product-nav div {
    display: inline-block;
    line-height: 19px;
}

.product-jump li {
    float: left;
    width: 110px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 14px;
}

.product-jump {
    height: 40px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

.product-jump-active {
    background: #fff;
    color: #fd7b64;
}

.content-pinglun-nav {
    font-size: 20px;
    margin: 20px;
    color: #505050;
    margin-bottom: 0;
}

.content-pinglun-nav i {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(/img/dianping.png) no-repeat;
    background-size: 100%;
    margin-right: 8px;
}

.hosipital_dp {
    margin-top: 20px;
    padding-bottom: 10px;
}

.hosipital_dp .content-pinglun-nav {
    font-size: 18px;
    color: #fc7432;
    margin-bottom: 0;
}

.get_more_doctor {
    margin-top: 3px;
}

.get_more_doctor a {
    font-size: 14px;
    color: #999;
}

.content-login {
    width: 100%;
    text-align: right;
    margin: 0 -20px;
}

.content-pinglun-text-area textarea {
    width: 720px;
    height: 95px;
    margin: 20px;
    padding: 10px;
    resize: none;
    font-size: 14px;
    color: #333;
    line-height: 28px;
}

.content-conmint {
    text-align: right;
    margin: 0 20px;

}

.content-conmint-noname {
    display: inline-block;
}

.content-conmint-btn {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background: #fe8e32;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
}

.content-pinglun-item {
    margin: 20px;
    font-size: 14px;
}

.content-pinglun-item-img {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 50%;
}

.content-pinglun-item-left {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 20px 40px 20px;
}

.content-pinglun-item-right {
    display: inline-block;
    vertical-align: middle;
    width: 560px;
}

.content-pinglun-item-right-good {
    display: inline-block;
}

.content-pinglun-item-right-good img {
    margin-top: 3px;
}

.content-pinglun-item-right-time {
    display: inline-block;
}

.content-pinglun-item-right-desc {
    margin-top: 15px;
    width: 560px;
}

.content-pinglun-item-right-hf {
    text-align: right;
    margin: 10px 10px;
}

.content-addTo {
    margin: 20px;
    font-size: 14px;
}

.content-addTo-desc {
    margin-left: 120px;
}

.content-addTo-desc-person {
    padding: 10px 5px;
}

.content-addTo-desc-hospital {
    background: #f2f2f2;
    padding: 10px 5px;
}

.hospital-anli-content-banner {
    padding: 20px;
    width: 760px;
    height: 625px;
    margin: 0 auto;
    position: relative;
}

.content-img {
    width: 625px;
    height: 625px;
    overflow: hidden;
    left: 74px;
    position: absolute;
}

.content-img img {
    width: 100%;
}

.content-show {
    display: flex;
    flex-wrap: wrap;
}

.content-show-item {
    display: inline-block;
    width: 30%;
    height: 40%;
    margin: 0 auto;
}

.content-item {
    margin: 23px auto;
    height: 120px;
    margin-top: 0;
    width: 650px;
    position: relative;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #535353;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.content-show-item {
    width: 97px;
    height: 97px;
}

.content-show img {
    width: 100%;
}

.content-show {
    height: 100px;
}

.content-hospital {
    background: #f9f9f9;
    margin-top: 20px;
}

.content-hospital-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 13px;
    overflow: hidden;
}

.content-hospital-img img {
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 50%;
}

.content-hospital-name {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    height: 64px;
    padding-top: 7px;
    margin: 13px;
    margin-left: 0;
}

.content_hospital_name {
    width: 230px;
    height: 26px;
    color: #666;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.content-desc-item{
    text-align: center;
}
.content-hospital-time {
    font-size: 14px;
    color: #817f80;
    margin-top: 8px;
}

.content-hospital-ask {
    height: 100px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

.content-hospital-ask-btn {
    width: 130px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    line-height: 40px;
    background: #fe8e32;
    margin: 30px 0 0 160px;
}

.content-hospital-ask-btn img {
    margin-top: 6px;
}

.content-select {
    border: 1px solid #fc7432;
    color: #fc7432;
}

.content-desc {
    margin: 25px 35px;
}

.content-desc-title {
    font-size: 24px;
    text-align: center;
    color: #111;
    font-weight: 500;
    letter-spacing: 2px;
}

.content-desc-item-list {
    display: inline-block;
    margin-bottom: 17px;
    margin-top: 10px;
    margin-right: 10px;
    font-size: 14px;
    color: #878383;
}

.content-desc-item-list img {
    margin-top: 1px;
    margin-right: 5px;
}

.content-desc-item-list span {
    color: #fe8e32;
}

.select-border-left {
    border-left: 3px solid #fe8e32;
}

.maybe-line {
    background: url(/img/mabe-line.png) no-repeat;
    background-position: center;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding-right: 0px;
}


.content-content,
.content-content p {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    text-indent: 2em;
    margin-bottom: 30px;
}


.pt0 {
    padding-left: 0;
}

.pl10 {
    padding-left: 10px;
}

.maybe-hospital {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    font-size: 14px;
}

.community_mabe_img {
    width: 76px;
    height: 76px;
}

.community_mabe {
    flex-wrap: nowrap;
}

.maybe-hospital-img {
    width: 42px;
    height: 42px;
    display: inline-block;
}

.community_score .left_score {
    font-size: 12px;
    color: #fc7432;
    font-weight: 600;
}

.community_mabe_area {
    font-size: 12px;
    padding-top: 1px;
    color: #999;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.community_score .dianping {
    font-size: 12px;
    color: #999999;
}

.community_mabe_right {
    width: 60%;
    padding-left: 20px;
}

.community_mabe_title {
    font-size: 15px;
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.display_flex {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    padding-left: 0;
}

.mabe_wenzhang {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
}

.mabe_wz_img {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.mabe_wz_right {
    padding-left: 20px;
    width: 70%;
}

.mabe_wz_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    color: #000;
}

.community_mabe_span span {
    border: 1px solid #fc7432;
    border-radius: 5px;
    color: #fc7432;
    font-size: 12px;
    padding: 0 2px;
}

.mabe_sp {
    width: 50%;
}

.mabe_wz_look {
    position: relative;
    margin-top: 7px;
}

.mabe_wz_hmyl {
    position: absolute;
    left: 0;
    font-size: 12px;
}

.mabe_wz_time {
    position: absolute;
    font-size: 12px;
    right: 0;
}

.mabe_wz_hmyl img {
    width: 15px;
    margin-top: 3px;
}

.community_mabe_span {
    padding-top: 2px;
}

.maybe-hospital-name {
    font-size: 18px;
    width: 215px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    margin-bottom: 10px;
}

.maybe-desc {
    display: flex;
    margin-top: 10px;
}

.maybe-desc-left {
    width: 42px;
    display: inline-block;
    color: #818181;
}

.maybe-desc-right {
    width: 210px;
    padding-left: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.maybe_desc_right {
    height: 96px;
}

.m10 {
    margin: 10px;
}

.maybe-btn {
    margin: 16px auto;
    width: 237px;
}

.maybe-btn div {
    display: inline-block;
}

.maybe-btn-left {
    margin-right: 22px;
    width: 105px;
    height: 30px;
    line-height: 30px;
    background: #fe8e32;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
}

.maybe-btn-right {
    width: 103px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #fe8e32;
    border: 1px solid #fe8e32;
    font-size: 14px;
    border-radius: 3px;
}

.maybe-product {
    margin-left: 10px;
}

.maybe-product-img {
    width: 100%;
}

.maybe-product-img img {
    width: 100%;
}

.maybe-product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    font-size: 12px;
}

.maybe-product-price {
    color: #fe8e32;
}

.maybe-product-area {
    float: right;
    margin-top: 6px;
}

.maybe-product-price-before {
    font-size: 14px;
    color: #7f7e7e;
    text-decoration: line-through;
}

.maybe-product-price-after {
    font-size: 14px;
}

.maybe-product-price-after span {
    font-size: 14px;
}

.maybe-product-hospital-name {
    font-size: 14px;
    margin-top: 6px;
    color: #7f7e7e;
}

.maybe-doctor {
    text-align: center;
}

.maybe-doctor-img {
    height: 98px;
    width: 98px;
    border-radius: 50%;
    margin: 10px auto;
    overflow: hidden;
}

.maybe-doctor-desc {
    padding: 10px 15px;
    font-size: 14px;
}

.maybe-doctor-desc span {
    padding-left: 3px;
}

.hospital-infomation-items-img {
    display: inline-block;
    line-height: 10px;
}

.hospital-infomation-items-img i {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 11px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -481px -131px;
}

.hospital-infomation-items-title {
    display: inline-block;
    width: 65px;
    height: 20px;
    color: #fff;
    background: #fc7432;
    margin: 0 10px 15px 0px;
    font-size: 14px;
    text-align: center;
}

.hosp_cont_border {
    border-bottom: 1px dotted #dedede;
    margin: 0 10px 15px 25px;
}

.hospital-infomation-items-list {
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
}

.hospital-infomation-wh {
    width: 640px;
}

.hospital-infomation-service-img {
    line-height: 16px;
}

.maybe-doctor-name-title {
    font-size: 16px;
}

.maybe-doctor-name-desc {
    font-size: 12px;
    color: #a2a2a2;
}

.maybe-doctor-hospital {
    font-size: 16px;
    color: #999999;
    padding-top: 10px;
    padding-bottom: 10px;
}

.maybe-doctor-content {
    padding: 10px 15px;
    font-size: 14px;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.content-pinglun-item-name {
    text-align: center;
}

.hospital-doctor {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    width: 780px;
    min-height: 305px;
    margin: 20px auto;
}

.content-pinglun-item-img img {
    width: 100%;
}

.hospital-doctor-item {
    display: inline-block;
    width: 182px;
    height: 100%;
    border: 1px solid #f0f0f0;
    text-align: center;
    margin-right: 7px;
}

.hospital-doctor-item:hover .hospital-doctor-item-btn-sen {
    background: #fc6b31;
    color: #fff;
}

.hospital-doctor-item:first-of-type {
    margin-left: 10px;
}

.hospital-doctor-item-active {
    border: 1px solid #fc7432;
}

.hospital-doctor-item-img {
    width: 182px;
    height: 182px;
    margin-bottom: 5px;
    overflow: hidden;
}

.hospital-doctor-item-img img {
    width: 100%;
}

.hospital-doctor-item-btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

.hospital-doctor-item-btn-first {
    width: 93px;
    background: #f7f7f7;
    display: inline-block;
}

.hospital-doctor-item-btn-sen {
    display: inline-block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #f7f7f7;
}

.content-haoping {
    float: left;
    margin-left: 40px;
}

.content-conmint-select {
    float: left;
    font-size: 12px;
    user-select: none;
}

.content-conmint-noname input {
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

.quanxingxing i {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 12px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -310px -177px;
}

.quanxingxing b {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 12px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -297px -177px;
}

.content-conmint-noname label {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #757575;
    cursor: pointer;
}

.content-conmint-select .content-score-span,
.content-score-right-items .content-score-span {
    width: 73px;
    height: 24px;
    border: 1px solid #eee;
    font-size: 14px;
    color: #757575;
    line-height: 24px;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.content-score-right-items .content-score-span {
    width: auto;
}

.content-score-active {
    color: #fc7432 !important;
    border: 1px solid #fc7432 !important;
}

.content-pinglun-item-right-desc img {
    width: 96px;
}

.content-score {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px 20px;
}

.content-score-left {
    text-align: center;
    width: 135px;
    height: 115px;
    border-right: 1px dotted #7f7e7e;
}

.content-score-right {
    width: 620px;
    height: 115px;
    margin-left: 20px;
}

.content-score-right-items span {
    padding: 4px 10px;
    color: #757575;
    font-size: 14px;
    border: 1px solid #eee;
    margin: 0px 10px 10px 0;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.content-score-right-title {
    margin-bottom: 10px;
    font-size: 14px;
}

.content-tab {
    width: 96%;
    margin: 20px;
    height: 50px;
    background: #f5f5f5;
}

.content-tab-item {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 10px;
    min-width: 80px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.no_name {
    font-size: 14px;
    color: #666;
}

.no_name i {
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    border: 1px solid #999;
    margin: -2px 4px 0 0;
    border-radius: 2px;
}

.content-tab-item-active {
    border-bottom: 2px solid #f86442;
    color: #f86442;
}

.hospital-notice-title {
    margin: 20px 0;
    color: #333;
    font-size: 20px;
}

.hospital-notice-title img {
    width: 28px;
    height: 28px;
}

.hospital-notice-item {
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.hospital-notice-item-left {
    width: 40px;
    display: inline-block;
}

.hospital-notice-item-right {
    width: 800px;
}

.hospital-notice-item-right-title {
    font-size: 16px;
    padding-top: 2px;
}

.hospital-notice-item-right-time {
    float: right;
    font-size: 14px;
    color: #707070;
    margin-top: 6px;
}

.hospital-notice-item-right-desc {
    font-size: 14px;
    color: #707070;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
    line-height: 24px;
}

.hospital-notice-content {
    padding: 20px;
}

.hospital-notice-content-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.hospital-notice-content-time {
    font-size: 14px;
    color: #a1a1a1;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.emptyBox{text-align: center;padding: 20px;}
.emptyBox img{width: 60px;margin: 10% auto;}

.orther-notice-img {
    height: 45px;
    width: 25px;
    display: inline-block;
}

.orther-notice-img img {
    height: 25px;
    width: 25px;
    margin-top: 10px;
}

.orther-notice {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f2f2f2;
}

.orther-notice-desc {
    display: inline-block;
    margin-top: 10px;
    width: 235px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.picture-titile {
    font-size: 20px;
}

.picture-titile img {
    margin-top: 3px;
    margin-right: 8px;
}

.picture-btn {
    width: 415px;
    margin: 0 auto;
}

.picture-btn span {
    margin: 0 auto;
    display: inline-block;
    width: 130px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #f2f2f2;
    text-align: center;
    cursor: pointer;
}

.picture-btn .picture-btn-active {
    color: #f86442;
    border: 1px solid #f86442;
}

.picture-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
}

.picture-box{
    /* border: 1px solid blue; */
    margin-bottom: 10px;
}
.picture-item-accessory, .picture-item {
    display: inline-block;
    width: 260px;
    height: 200px;
    overflow: hidden;
    margin-right: 10px;
    position: relative;
    /* margin-bottom: 8px; */
}
.itemT{
    text-align: center;
    color: #969696!important;
}

.picture-item-img {
    width: 260px;
    height: 200px;
    overflow: hidden;
}

.picture-item-img img {
    width: 100%;
    height: 200px;
}

.picture-item-name {
    position: absolute;
    bottom: 0px;
    height: 40px;
    line-height: 40px;
    width: 260px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    color: #fff;
}

.picture-item-hj {
    width: 260px;
    bottom: 0;
    left: 0;
}

.order-id div {
    display: inline-block;
    color: #817f80;
    font-size: 14px;
    margin: 20px 20px 0 0;
}

.order-id-title img {
    margin-top: 1px;
    margin-right: 5px;
}

.order-desc table {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.order-desc thead th {
    font-weight: 400;
    background: #f3f3f3;
    height: 40px;
    text-align: center;
}

.order-desc tbody td {
    height: 125px;
    border: 1px solid #eeeeee;
    padding: 18px;
}

.order-product {
    display: flex;
}

.order-product-img {
    width: 82px;
    height: 82px;
}

.order-product-title {
    display: inline-block;
    margin-top: 20px;
    width: 175px;
    height: 35px;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.order-desc table tbody .goods_mumber p span {
    width: 20px;
    height: 24px;
    margin-left: 0;
}

.order-desc table tbody .goods_mumber p input {
    width: 20px;
    height: 24px;
}

.order-doctor-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 5px;
}

.order-price {
    color: #fc623c;
    font-size: 26px;
}

.order-pay {
    padding: 20px;
}

.order-price span {
    font-size: 16px;
}

.order-pay-title {
    font-size: 18px;
    font-weight: 700;
}

.order-pay-title span {
    font-weight: 400;
    font-size: 14px;
}

.order-pay-btn {
    margin-top: 20px;
}

.order-pay-btn div {
    width: 165px;
    height: 55px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    text-align: center;
    display: inline-block;
    margin-right: 20px;
}

.order-pay-wechat img {
    margin-top: 10px;
    margin-left: -10px;
}

.order-pay-alipay img {
    margin-top: 10px;
}

.order-pay .order-pay-btn .pay-active {
    border: 1px solid #fc623c;
    background: url(/img/pay_active.png) 141px 32px no-repeat;
}

.order-true {
    text-align: right;
}

.order-need-pay span:first-of-type {
    font-size: 18px;
    color: #000;
}

.order-need-pay span {
    font-size: 34px;
    color: #fc623c;
}

.order-arrive-pay span {
    font-size: 18px;
    color: #979797;
    margin-left: 40px;
}

.order-arrive-pay span:first-of-type {
    color: #000;
    margin-left: 0;
}


.order-quick-pay span {
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fc623c;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
}

.pay-desc {
    margin: 20px;
}

.pay-desc-title,
.product-bz-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.pay-desc>div span:nth-child(1),
.product-bz>div span:nth-child(1) {
    display: inline-block;
    width: 80px;
}

.pay-desc>div span:nth-child(2),
.product-bz>div span:nth-child(2) {
    text-indent: 0.5em;
}

.pay-desc-next,
.pay-desc-phone,
.pay-desc-name,
.product-bz-time,
.product-bz-services,
.product-bz-liuyan {
    font-size: 14px;
    margin: 16px 16px 16px 0;
}

.pay-desc-next span:first-of-type,
.pay-desc-phone span:first-of-type,
.pay-desc-name span:first-of-type,
.product-bz-services span:first-of-type,
.product-bz-time span:first-of-type,
.product-bz-liuyan span:first-of-type {
    color: #888888;
    font-size: 14px;
}

.product-bz-time span:first-of-type {
    margin-right: 6px;
}

.product-bz-time span:nth-child(2) {
    margin-left: 4px;
}

.pay-desc-name input,
.pay-desc-phone input {
    margin-left: 10px;
    border: 1px solid #ccc;
}

.pay-desc-name input,
.pay-desc-phone input {
    padding: 8px 0;
    text-indent: 0.5em;
}

.product-bz {
    margin: 20px;
}

.product-bz-services img {
    width: 18px;
    margin-left: 10px;
}

.product-bz-liuyan {
    display: flex;
}

.product-bz-liuyan textarea {
    width: 630px;
    height: 85px;
    margin-left: 7px;
    border: 1px solid #ccc;
}

.tj-title {
    padding: 10px;
    text-align: center;
}

.mod ul {
    display: flex;
    flex-wrap: wrap;
}

.mod ul li {
    min-width: 70px;
    height: 20px;
    text-align: center;
    margin: 10px;
}

.mod ul li a {
    font-size: 14px;
}

.mod-active {
    background: #fc6b31;
    border-radius: 20px;
}

.mod-active a {
    color: #fff;
}

.screen-price {
    display: inline-block;
    padding-top: 9px;
    color: #676767;
}

.screen-price input {
    border: 1px solid #ccc;
    padding: 6px 10px;
    width: 100px;
    border-radius: 5px;
}

.screen-price-btn {
    width: 50px;
    display: inline-block;
    padding: 6px;
    text-align: center;
    border-radius: 5px;
    background: #fe8e32;
    color: #fff;
    cursor: pointer;
}

.map-img {
    width: 770px;
    height: 555px;
}

.map-desc {
    padding: 20px;
}

.map-desc img {
    width: 520px;
    margin: 0 auto;
}

.map-title {
    font-size: 20px;
    color: #333;
}

.map-title img {
    width: 20px;
}

.mt68 {
    margin-top: 56px;
}

.goods-width {
    display: inline-block;
    width: 210px;
    margin: 15px 8px 0 0;
}

/*商品等鼠标移动上去的效果*/
.item_hover:hover{
    display: inline-block;
    opacity:0.7;
    box-shadow:2px 2px 2px #e0e0e0;
}

/*医院列表右侧日记鼠标移动上去的效果*/
.case_hover:hover{
    display: block;
    opacity:0.7;
    box-shadow:2px 2px 2px #e0e0e0;
}

.goods-width:nth-child(5n) {
    margin-right: 0;
}

.maybe-desc-right.maybe-desc-rightc.hospital-list-choose {
    padding: 10px 20px;
}

.hospital-list-choose div {
    display: inline-block;
}

.hospital_list_show {
    padding: 12px 0 12px 40px;
    border-top: none;
    width: 1058px;
}

.hospital-list-choose-title {
    font-size: 14px;
    color: #4d4d4d;
    margin-right: 30px;
    cursor: pointer;
}

.hospital-list-choose-title span {
    color: #fd6a50;
    font-size: 24px;
    margin-right: 5px;
    cursor: pointer;
}

.hospital-list-choose-item {
    color: #fd6a50;
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;
}

.hospital-list-choose-item-active {
    color: #fff;
    background: #fd6a50;
    padding: 2px 5px;
    text-align: center;
    border-radius: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.hospital-list-choose-item-active span {
    margin-left: 10px;
}

.hotcity {
    padding-top: 26px;
    padding-bottom: 26px;
}

.underline {
    border-bottom: 1px solid #f0f0f0;
}

.container .hot-title {
    font-size: 16px;
    line-height: 22px;
    color: #666;
    font-weight: 700;
}

.hotcity p {
    display: inline-block;
}

.onecity {
    color: #333;
    cursor: pointer;
}

.alphabet {
    padding: 27px 0;
}

.alphabet .letter,
.onecity {
    font-size: 14px;
    margin: 0 15px;
}

.alphabet .letter {
    color: #666;
    cursor: pointer;
}

.alphabet p {
    display: inline-block;
}

.main-citylist .letter-item {
    margin-bottom: 12px;
    position: relative;
}

.main-citylist .letter-item .oneletter {
    display: inline-block;
    font-size: 24px;
    color: #666;
    position: absolute;
    top: 13px;
    left: 20px;
    transition: color .5s;
}

.main-citylist .letter-item .terms {
    display: inline-block;
    border-left: 8px solid #f8f8f8;
    width: 1143px;
    margin-left: 57px;
    padding: 9px 0;
    height: 48px;
    overflow: hidden;
    background-color: #fff;
    transition: background-color .5s;
    transition: border-color .5s;
}

.main-citylist .letter-item .terms .findHeight {
    width: 1075px;
}

.main-citylist .letter-item .terms .link {
    display: inline-block;
    padding: 13px 0;
}

.main-citylist .letter-item .more,
.main-citylist .letter-item .up {
    position: absolute;
    right: -80px;
    font-size: 14px;
    color: #999;
    width: 40px;
    cursor: pointer;
}

.main-citylist .letter-item .more {
    top: 22px;
}

.main-index .icon-down,
.main-index .icon-up {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-color: #999;
    border-width: 0 0 1px 1px;
    border-style: solid;
    position: absolute;
    right: 0;
}

.main-citylist .letter-item .up {
    bottom: 29px;
}

.main-index .icon-down {
    transform: rotate(-45deg);
    top: 4px;
}

.main-index .icon-up {
    transform: rotate(135deg);
    top: 8px;
}

.main-citylist .letter-item:hover .oneletter {
    color: #f63
}

.main-citylist .letter-item:hover .terms {
    border-left: 8px solid #f63;
    background-color: #fafafa
}

.login-tab-left {
    width: 350px;
    display: inline-block;

}

.login-tab-left img {
    display: block;
    width: 297px;
    height: 380px;
    object-fit: cover;
    margin: 0 auto;
}

.login-tab-right {
    display: inline-block;
    width: 250px;
    padding: 50px;
    position: relative;
}

.login-tab-right-title span {
    font-size: 16px;
    margin-right: 20px;
    cursor: pointer;
}

.login-tab-right-title .s_span {
    border-bottom: 2px solid #fb5c34;
    display: inline-block;
    padding-bottom: 5px;
    color: #fb5c34;
}

.login-right-phone,
.login-right-yzm {
    border-bottom: 1px solid #f2f2f2;
    padding-top: 8px;
}

.login-tab-right-input {
    display: none;
}

.login-tab-right-input input {
    height: 50px;
    width: 100%;
}

.find_back {
    text-align: right;
    margin-top: 4px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
}

.login-right-yzm-left {
    width: 170px;
    display: inline-block;
}

.login-right-yzm-right {
    width: 85px;
    display: inline-block;
    font-size: 14px;
    color: #fb5c34;
    padding-left: 5px;
    margin-bottom: 8px;
    line-height: 42px;
    cursor: pointer;
    border-left: 1px solid #f2f2f2;
}

.login-right-yzm {
    display: flex;
    position: relative;
}

.login-right-yzm .eye {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(/img/eye.png)no-repeat;
    background-size: 16px;
    background-position: center;
    right: 0;
}

.login-success {
    width: 250px;
    height: 42px;
    line-height: 42px;
    background: #fb5c34;
    color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    text-align: center;
    margin-top: 23px;
    cursor: pointer;
}

.login-notice {
    font-size: 10px;
    color: #ccc;
    text-align: center;
    margin-top: 13px;
}

.login-xieyi {
    margin-top: 10px;
    font-size: 12px;
    display: flex;
}

.login-xieyi-left {
    display: inline-block;
    width: 20px;
}

.login-xieyi-left input {
    width: 25px;
    height: 17px;
    margin-top: 8px;
    border: 1px solid #fb5c34;
}

.checkbox {
    position: relative;
    height: 30px;
}

.checkbox input[type='checkbox'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    opacity: 0;
}

.checkbox label {
    position: absolute;
    left: 30px;
    top: 0;
    height: 20px;
    line-height: 20px;
}

.checkbox label:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.checkbox label:after {
    content: '';
    position: absolute;
    left: -25px;
    top: 2px;
    width: 2px;
    height: 7px;
    border: 0;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.checkbox input[type='checkbox']:checked+label:before {
    background: #fb5c34;
    border-color: #fb5c34;
}

.checkbox input[type='checkbox']:checked+label:after {
    background: #fb5c34;
}

.hyzx {
    width: 1000px;
    margin: 0 auto;
}

.hyzx-header {
    background: url(/img/pc_hyzx.png) no-repeat;
    width: 950px;
    height: 190px;
    background-size: 100%;
    display: flex;
}

.w675 {
    width: 675px;
}

.w315 {
    width: 315px;
    margin-left: 10px;
}

.hyzx-myscore,
.hyzx-buy {
    margin: 20px;
}

.hyzx-myscore-title,
.hyzx-buy-title {
    font-size: 20px;
}

.hyzx-myscore-qd {
    background: url(/img/pc_qd.png) no-repeat;
    width: 100%;
    height: 180px;
    margin-top: 20px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.hyzx-myscore-now {
    padding-top: 50px;
    padding-left: 35px;
}

.hyzx-myscore-now span {
    font-size: 18px;
    color: #fff;
    padding-left: 5px;
}

.hyzx-myscore-jf {
    color: #fff;
    font-size: 52px;
    padding-left: 35px;
}

.hyzx-myscore-btn {
    color: #fff;
    font-size: 20px;
    width: 160px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50px;
    background: #ff7052;
    position: absolute;
    top: 65px;
    left: 240px;
}

.hyzx-myscore-btn img {
    margin-top: 13px;
}

.hyzx-buy-btn-item {
    width: 70px;
    height: 105px;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

.hyzx-counts {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    text-align: center;
    height: 20px;
    font-size: 14px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    background: #e63c1d;
    text-indent: 2px;
}

.hyzx-buy-btn-item-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.hyzx-buy-btn-item-name {
    width: 70px;
    text-align: center;
    color: #5d5d5d;
}

.hyzx-buy-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.maybe-user-img img {
    width: 30px;
    height: 30px;
    margin-top: -3px;
}

.maybe-user-look {
    float: right;
}

.maybe-user-look img {
    width: 20px;
    margin-top: 5px;
}

.hyzx-header {
    padding-top: 30px;
    padding-left: 50px;
    cursor: pointer;
}

.hyzx-header-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #f7cc96;
    overflow: hidden;
    margin-right: 20px;
    display: inline-block;
}

.hyzx-header-img img {
    width: 100%;
}

.hyzx-header-desc {
    display: inline-block;
}

.hyzx-header-desc-one {
    margin-top: 25px;
}

.hyzx-header-desc-one span {
    font-size: 26px;
    color: #fff;
}

.hyzx-header-desc-one span:nth-of-type(3) {
    width: 58px;
    height: 28px;
    line-height: 28px;
    display: inline-block;
    font-size: 20px;
    border-radius: 5px;
    background: #ffad40;
    text-align: center;
}

.hyzx-header-desc-one span:nth-of-type(4) {
    font-size: 18px;
}

.hyzx-header-desc-one span:nth-of-type(4) img {
    width: 20px;
    margin-left: 20px;
    margin-top: 10px;
}

.hyzx-sex {
    font-weight: bold;
}

.hyzx-header-desc-two {
    font-size: 18px;
    color: #fff;
    margin-top: 25px;
}

.all-order {
    display: flex;
    flex-wrap: nowrap;
    width: 673px;
    height: 45px;
}

.all-order-item {
    width: 133.8px;
    line-height: 45px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    background: #f5f5f5;
    cursor: pointer;
}

.e5border a:nth-child(5) .all-order-item {
    border-right: 1px solid #f5f5f5;
}

.all-order-item-active {
    background: #fff;
    color: #fc6b31;
}

.hyzx-order {
    border: 10px solid #e5e5e5;
    border-bottom: none;
    background-color: #fff;
}

.loadOrder {
    background-color: #e5e5e5;
    padding: 10px;
}

.hyzx-order-id {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    padding-left: 20px;
}

.border_10 {
    border-top: 10px solid #e5e5e5;
}

.pl20 {
    padding-left: 20px;
}

body .bt0 {
    border-top: 0px;
}

.hyzx-order-desc,
.hyzx-doctor {
    padding-left: 20px;
}

body .hyzx-order-zt {
    float: right;
    color: #fc6b31;
}

.hyzx-order-desc a {
    display: flex;
}

.hyzx-order-desc-img {
    width: 155px;
    height: 155px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.img_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 24px;
    color: #fff;
    font-size: 14px;
}

.op_bg {
    opacity: 0.4;
}

#op_color {
    color: #7d7e7e !important;
}

.hyzx-order-desc-all {
    width: 440px;
    height: 155px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.hyzx-order-desc-all-title {
    font-size: 18px;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #333;
    overflow: hidden;
}

.hyzx-order-price {
    text-align: right;
    padding-right: 20px;
}

.hy_sysj {
    padding-left: 20px;
}

.hyzx-order-desc-all-doc,
.hyzx-order-desc-all-time,
.hyzx-order-desc-all-yh {
    color: #7d7e7e;
    font-size: 14px;
    margin: 4px 0;
}

.hyzx-order-desc-all-yh span {
    display: inline-block;
    padding: 2px 5px;
    color: #fff;
    background: #fc6b31;
    border-radius: 5px;
    margin-right: 5px;
}

.hyzx-order-price .font {
    font-size: 30px;
}

.alert_change,
.alert_password {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 10px 20px 20px 20px;
    width: 400px;
    height: 220px;
    background: #fff;
    border: 1px solid #e5e5e5;
    z-index: 30;
    box-shadow: 10px 10px 20px 10px #9E9E9E, -10px 10px 10px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.alert_password {
    height: auto;
}

.alert_password div i {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 90px;
    color: #333;
}

.alert_password div .tip_show {
    font-size: 12px;

}

.chang_password_input {
    border: 1px solid #e5e5e5;
    width: 180px;
    height: 30px;
    text-indent: 0.25em;
}

.alert_change_head {
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.alert_change input {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    height: 35px;
    width: 100%;
    text-indent: 10px;
}

.alert_btn {
    text-align: center;
}

.alert_btn span {
    display: inline-block;
    width: 200px;
    color: #fff;
    background: #fc7432;
    border-radius: 5px;
}

.alert_change_yzm input {
    width: 240px;
}

.alert_change_yzm_btn {
    margin-left: 25px;
    background: #fc7432;
    padding: 0 10px;
    border-radius: 5px;
    margin-top: 4px;
    height: 35px;
    line-height: 35px;
    color: #fff;
}

.alert_change_yzm {
    display: flex;
    flex-wrap: nowrap;
}

.alert_change_head span {
    float: right;
    cursor: pointer;
}

.close_alert {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -304px -71px;
    margin-top: 6px;
}

.alert_password .mt20 {
    position: relative;
}

.mt20 .eye {
    width: 30px;
    height: 30px;
    display: block;
    left: 245px;
    top: 7px;
    position: absolute;
    background: url(/img/eye.png)no-repeat;
    background-size: 16px;
    background-position: center;
    ;
}

.login_mm .eye {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(/img/eye.png)no-repeat;
    background-size: 16px;
    background-position: center;
    left: 200px;
}

.hyzx-order-btn {
    text-align: right;
    margin-top: 20px;
    border-top: 2px dotted #e5e5e5;
    padding: 20px 20px 20px 0;
}

.hyzx-addBorder {
    background-color: #fff;
}

.hyzx-order-btn1 {
    padding: 10px 20px;
    color: #7d7e7e;
    border: 1px solid #7d7e7e;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    margin-right: 10px;
}

.hyzx-order-btn form {
    display: inline-block;
}

.hyzx-order-btn2 {
    padding: 10px 20px;
    color: #fc6b31;
    border: 1px solid #fc6b31;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    background: #fff;
    font-size: 14px;
}

.hospital-goods-item-img img {
    width: 100%;
}

.hyzx-header-desc-one span:nth-of-type(4) a {
    color: #fff;
}
/*分页样式*/
/*.pages-list {*/
/*    text-align: center;*/
/*    margin: 30px auto;*/
/*}*/

/*.pages-list ul.pagination {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    display: inline-block;*/
/*}*/

/*.pages-list ul.pagination li {*/
/*    display: inline-block;*/
/*    margin: 0 4px;*/
/*}*/

/*.pages-list ul.pagination li a {*/
/*    text-align: center;*/
/*    line-height: 24px;*/
/*    color: #696969;*/
/*    display: inline-block;*/
/*    width: 34px;*/
/*    height: 24px;*/
/*    border: 1px solid #eee;*/
/*    font-size: 12px;*/
/*}*/

/*.pages-list ul.pagination li:first-child a,*/
/*.pages-list ul.pagination li:last-child a {*/
    width: 70px; /* “共xx条”“上一页”“下一页” 这种宽度大一点 */
/*}*/

.pages-list ul.pagination li.active a {
    background: #fc7432;
    color: #fff;
    border: 1px solid #eee;
}

.pagination {
    text-align: center;
    margin: 30px auto;
    display: inline-block;
    padding-left: 0;
}

.pagination > li {
    display: inline-block;
    margin: 0 4px;
}

.pagination > li > a,
.pagination > li > span {
    text-align: center;
    line-height: 24px;
    color: #696969;
    display: inline-block;
    width: 34px;
    height: 24px;
    border: 1px solid #eee;
    font-size: 12px;
    text-decoration: none;
    background: #fff;
}

/* 设置“上一页”和“下一页”的宽度为70px */
.pages-list ul.pagination li:first-child a,
.pages-list ul.pagination li:last-child a,
.pages-list ul.pagination li:nth-child(2) a {
    width: 70px;
}

/* hover 效果 */
.pagination > li > a:hover,
.pagination > li > a:focus {
    background: #f5f5f5;
    border-color: #eee;
    color: #333;
}

/* 当前页 */
.pagination > .active > span,
.pagination > .active > a {
    background: #fc7432;
    color: #fff;
    border: 1px solid #eee;
    cursor: default;
}


textarea {
    resize: none
}

.hyzx-revise {
    padding: 20px;
    display: flex;
    color: #979797;
    flex-wrap: wrap;
}

.hyzx-revise-left {
    display: inline-block;
    width: 95px;
    line-height: 42px;
    font-size: 14px;
}

.hyzx_code {
    display: none;
}

.change_phone,
.change_password {
    display: inline-block;
    vertical-align: middle;
    padding: 0 12px;
    color: #fff;
    background: #fc7432;
    border-radius: 4px;
    cursor: pointer;
}

.hyzx-revise-right {
    display: inline-block;
    width: 515px;
    position: relative;
    border: 0;
    line-height: 42px;
}

.hyzx-revise-img-left {
    width: 155px;
    display: inline-block;
    height: 155px;
}

.hyzx-revise-img-right {
    display: inline-block;
}

.hyzx-revise-img {
    margin-top: 20px;
}

.hyzx-revise-nickname {
    border: 1px solid #f2f2f2;
    width: 515px;
    height: 40px;
    text-indent: 0.5em;
}

.a-radio {
    display: none;
}

.b-radio {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    overflow: hidden;
}

.b-radio:before {
    content: '';
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #fc7432;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    display: none;
}

.a-radio:checked~.b-radio:before {
    display: block;
}

.hyzx-revise-phone {
    width: 300px;
    height: 40px;
    text-indent: 0.5em;
}

.hyzx-revise-xym {
    width: 300px;
    height: 40px;
    text-indent: 0.5em;
}

.hyzx-revise-right label {
    margin-right: 10px;
}

.h40 {
    height: 40px;
}

.get-xym {
    position: absolute;
    top: 10px;
    left: 200px;
    cursor: pointer;
}

.hyzx-revise-jj {
    width: 515px;
    height: 150px;
    margin-bottom: 50px;
    padding: 6px;
}

.sel_year,
.sel_month,
.sel_day {
    width: 150px;
    height: 40px;
    border: 1px solid #f2f2f2;
}

.hyzx-revise-img-right {
    width: 90px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    background: #fc7432;
    border-radius: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.hyzx-revise-upimg {
    width: 110px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
}

.hyzx-revise-upimg img {
    margin-top: 14px;
}

.tailor-bg {
    width: 100%;
    height: 1000px;
    background: #0000009c;
    position: fixed;
    z-index: 30;
    top: 0;
    display: none;
}

.tailor-all {
    position: relative;
    width: 760px;
    height: 540px;
    margin: 0 auto;
    margin-top: 200px;
    background: #fff;
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.tailor-all .tailor-close {
    position: absolute;
    right: 7px;
    top: 4px;
    font-size: 18px;
    cursor: pointer;
}

.tailor-left {
    width: 454px;
    padding: 20px;
    height: 420px;
}

.tailor-right {
    width: 222px;
    padding: 20px;
    height: 420px;
}

.tailor-right-show {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
}

.tailor-right-circle {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%;
    margin-top: 20px;
}

.tailor-btn {
    width: 760px;
    height: 40px;
    text-align: right;
}

#province,
#city,
#town {
    width: 150px;
    height: 40px;
    border: 1px solid #f2f2f2;
}

.list-hospital-more {
    float: right;
    color: #b5b4b4;
}

.hot-search {
    padding: 20px;
}

.hot-search-item {
    border-bottom: 1px solid #f2f2f2;
    height: 40px;
    line-height: 40px;
}

.hot-search-item img {
    width: 17px;
    vertical-align: middle;
    margin-top: -4px;
}

.hot-search-item-look {
    float: right;
    color: #b5b4b4;
}

.hot-search-item-look img {
    width: 20px;
    vertical-align: middle;
    margin-top: -4px;
}

.border-top {
    border-top: 1px solid #f2f2f2;
}

.search-doctor {
    display: flex;
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f2f2f2;
}

.search-doctor-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
}

.search-doctor-desc {
    width: 506px;
    color: #888787;
    padding: 15px 20px;
}

.ml20 {
    margin-left: 20px;
}

.search-doctor-btn {
    width: 110px;
    padding: 23px 0;
}

.search-doctor-desc-ms {
    height: 40px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-doctor-desc-name span {
    color: #000;
    font-size: 20px;
}

.search-doctor-desc-jzl span {
    color: #000;
}

.search-doctor-btn-jr {
    width: 105px;
    border: 1px solid #888788;
    color: #888788;
    line-height: 32px;
    border-radius: 10px;
    text-align: center;
}

.search-doctor-btn-zx {
    width: 105px;
    border: 1px solid #fba826;
    color: #fba826;
    line-height: 32px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
}

.search-goods-width {
    display: inline-block;
    width: 175px;
    height: 315px;
    margin: 15px 4px 0 0;
}

.search-note-user {
    display: flex;
}

.search-note-user-img {
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.search-note-user-name {
    display: inline-block;
    height: 32px;
    color: #fba826;
    line-height: 32px;
    margin-left: 10px;
}

.search-note-content {
    height: 46px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #888788;
}

.search-note {
    display: flex;
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f2f2f2;
}

.search-note-img {
    width: 150px;
    height: 150px;
}

.search-note-desc {
    width: 600px;
    padding-left: 20px;
    padding-top: 10px;
}

.search-note-title {
    font-size: 20px;
}

.search-width {
    width: 760px;
    margin-bottom: 20px;
}

.search-width .all-order-item {
    width: 25%;
}

.search-width .all-order-item a {
    display: block;
    width: 100%;
    height: 100%;
}

#finalImg {
    width: 100%;
}

/* 支付页面 微信二维码 */
.login_bg {
    display: none;
}

.wechat_text p {
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.wechat_text .wechat_text_pt {
    color: #f66262;
    font-size: 28px;
    margin-top: 4px;
}

.wechat_text .wechat_text_pt span {
    font-size: 12px;
}

.wechat_qr {
    width: 100%;
    height: 246px;
    margin: 30px 0 10px 0;
}

.wechat_qr img {
    display: block;
    width: 246px;
    height: 100%;
    margin: 0 auto;
}

.wecha-tab {
    width: 365px;
    height: 430px;
}

.wecha-tab-top {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #eee;
}

.wecha_pay {
    margin-left: 20px;
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #000000;
}

.wecha_pay_close {
    margin-right: 20px;
    line-height: 50px;
    cursor: pointer;
}

.goods_top_about {
    position: relative;
}

.phone_qrwrap {
    position: absolute;
    left: -70px;
    top: 36px;
    width: 175px;
    height: 199px;
    display: none;
}

.phone_qrwrap b {
    display: block;
    width: 175px;
    height: 199px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -921px 2px;
}

.wechat_qrwrap {
    position: absolute;
    right: -64px;
    top: 36px;
    width: 175px;
    height: 199px;
    display: none;
}

.wechat_qrwrap b {
    display: block;
    width: 174px;
    height: 199px;
    background: url(/img/jlt.png) no-repeat;
    background-position: -746px 2px;
}


.qr_show {
    display: block !important;
}

.btn-fb {
    text-align: right;
}

.btn-fb span {
    display: inline-block;
    background: #fc7432;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

.hyzx-border {
    padding: 12px 20px;
}

.hyzx-dfk {
    font-size: 20px;
    margin-bottom: 10px;
}

.hyzx-dfk img {
    width: 30px;
    height: 30px;
}

.hyzx-dfk-alert {
    color: #80807f;
    font-size: 14px;
    margin-bottom: 10px;
}


.hyzx-dfk-btn .pay {
    border: 1px solid #d2d2d2;
    padding: 5px 18px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    color: #7d7e7e;
    font-size: 16px;
    background: #fff;
}

.hyzx-dfk-btn form {
    display: inline-block;
}

.hyzx-dfk-btn .delete {
    border: 1px solid #d2d2d2;
    padding: 5px 18px;
    border-radius: 5px;
    display: inline-block;
    color: #7d7e7e;
    cursor: pointer;
}

.hyzx-hospital,
.hyzx-doctor {
    display: flex;
    flex-wrap: nowrap;
}

.hosp_sx_bottom span {
    display: inline-block;
    padding: 2px 4px;
    border: 1px solid #5a9ee2;
    color: #5a9ee2;
}


.hyzx-hospital-img,
.hyzx-doctor-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
}

.hyzx-hospital-desc,
.hyzx-doctor-desc {
    width: 460px;
    height: 80px;
    padding: 20px;
}

.hyzx-hospital-name,
.hyzx-doctor-name {
    font-size: 20px;
    margin-bottom: 10px;
}

.hyzx-hospital-lei span {
    border: 1px solid #5a9ee2;
    display: inline-block;
    color: #5a9ee2;
    font-size: 12px;
    padding: 0 5px 0 5px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.hyzx-hospital-name img {
    margin-top: 5px;
}

.hyzx-doctor-btn {
    float: right;
    margin-top: -60px;
}

.hyzx-doctor-name span {
    color: #80807f;
    font-size: 16px;
}

.hyzx-doctor-btn div:first-of-type a {
    color: #5a9ee2;
    border: 1px solid #5a9ee2;
}

.hyzx-doctor-btn a {
    display: inline-block;
    display: inline-block;
    border-radius: 5px;
    color: #fba700;
    border: 1px solid #fcbe44;
    margin-bottom: 10px;
    padding: 2px 5px;
}

.hyzx-spxq {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #2b2b2b;
    font-size: 20px;
}

.hyzx-product {
    font-size: 14px;
    color: #2b2b2b;
    cursor: pointer;
    padding-left: 20px;
}

.hyzx-product span {
    color: #80807f;
    display: inline-block;
    width: 70px;
}

.hyzx-product div {
    margin-bottom: 10px;
}

.order_sx {
    margin-right: 320px;
    padding-left: 20px;
}

.order-yzm-id {
    font-size: 35px;
    margin: 0 0 10px 20px;

}

.order-yzm-id-del {
    font-size: 35px;
    margin: 0 0 10px 20px;

}

.order-yzm-id-del .del-check-code {
    text-decoration: line-through;
    color: red;
}

.order-yzm-id-del .failure-notice {
    font-size: 20px;
    color: #A6A1A1;
    margin-left: 15px;
}

.order-yzm-time {
    margin: 0 0 10px 20px;
    color: #727272;
}

.select {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 250px;
    height: 40px;
    margin-left: 104px;
    border-top: 1px solid #ccc;
}

.option {
    padding: 0 30px 0 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
    order: 2;
    z-index: 1;
    transition: background .4s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;

}

.option:hover {
    background: #f2f2f2;
    ;
}

.select:focus .option {
    position: relative;
    pointer-events: all;
}

.select input {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

.select input:checked+label {
    order: 1;
    z-index: 2;
    background: #fff;
    position: relative;
}

.select input:checked+label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    right: 10px;
    top: calc(50% - 2.5px);
    pointer-events: none;
    z-index: 3;
}

.select input:checked+label:before {
    position: absolute;
    right: 0;
    height: 40px;
    width: 40px;
    content: '';
    background: #fff;
}

.order-tk-yy {
    display: inline-block;
    float: left;
    line-height: 39px;
    height: 40px;
}

.order-tk {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.order-tk span {
    display: inline-block;
    width: 100px;
    height: 40px;
    line-height: 40px;
}

.order-tk-sm {
    width: 248px;
    height: 40px;
    border: 1px solid #ccc;
}

.order-tk-pz {
    display: inline-block;
    width: 100px;
    height: 40px;
    line-height: 40px;
}

.order-pz-img {
    display: inline-block;
    width: 455px;
    margin-bottom: 50px;
    margin-left: 4px;
}

.order-pz-img img {
    width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.order-pz {
    display: flex;
}

/* 个人中心评价详情页面 */
.pc_star_text,
.pc_star_wrap {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
}

.pc_star_wrap {
    width: auto;
}

.hyzx_item_wrap {
    margin: 20px 0;
}

.hy_jgpj {
    width: 100%;
    border: none;
    height: 100px;
}

.hy_addimg {
    width: 120px;
}

.hy_adddp {
    display: inline-block;
    padding: 10px 100px;
    border-radius: 20px;
    color: #fff;
    background: #5aa3ec;
}

/* 注册用户协议 */
.agreement_submit {
    width: 120px;
    height: 40px;
    margin: 0 auto;
    background: #e63c1d;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.other_agreement {
    margin-top: 20px;
}

.other_agreement a {
    display: block;
    width: 100%;
    color: #e63c1d;
    margin: 4px 0;
    font-size: 14px;
}

.register_main {
    width: 720px;
    margin: 40px auto;
}

.register_main .login-tab {
    margin-top: 0;
}

.agreement_wrap {
    width: 100%;
    padding: 20px;
    position: relative;
}

.close_agreement {
    position: absolute;
    right: 8px;
    top: 0;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.agreement_content {
    width: 100%;
    max-height: 224px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 10px 0;
}

.agreement_content p {
    margin: 10px 0 !important;
}

.agreement_content p span {
    font-size: 14px !important;
}

.register_title_Wrap {
    width: 100%;
    background: #fc4f2f;
}

.register_title {
    width: 1900px;
    height: 110px;
    margin: 0 auto;
    background: url(/img/zhuce.png) no-repeat;
}

.register-tab {
    width: 1200px;
    height: 524px;
    margin: 60px auto 0;
    border: 1px solid #f1f1f1;
    border-top: 6px solid #fe613a;
}

.register-tab-left {
    width: 750px;
    float: left;
    border-right: 1px dashed #f6f2f1;
}

.register-tab-right {
    width: 450px;
    float: right;
}

.register-tab-lw {
    width: 340px;
    height: 350px;
    margin: 86px auto;
}

.left-top {
    width: 100%;
    text-align: center;
    display: flex;
}

.left-top .line {
    flex: 1;
    position: relative;
    top: -10px;
    border-bottom: 1px solid #f6f2f1;
}

.left-top .text {
    font-size: 18px;
    color: #212121;
    padding: 0 30px;
}

.phone-inpunt-wrap {
    width: 100%;
    margin: 40px 0 20px 0;
}

.code-input-wrap {
    width: 100%;
    height: 39px;
}

.phone-inpunt-wrap input {
    width: 100%;
    height: 100%;
    text-indent: 1em;
    border: 1px solid #f6f2f1;
    padding: 10px 0;
}

.code-input-wrap input {
    width: 234px;
    float: left;
    padding: 10px 0;
    text-indent: 1em;
    padding: 10px 0;
    border: 1px solid #f6f2f1;
}

.code-input-wrap button {
    width: 104px;
    float: right;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #f6f2f1;
    border-left: none;
    color: #fb5d30;
    cursor: pointer;
}

.register-xieyi {
    font-size: 12px;
    margin: 40px 0;
}

.register-button {
    width: 100%;
    height: 50px;
    background: #fc4f2f;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    border-radius: 4px;
    cursor: pointer;
}

.register-tab-right {
    width: 330px;
    height: 340px;
    margin: 86px auto;
}

.tab-right-text p {
    color: #4c4948;
    font-size: 18px;
    margin-bottom: 6px;
}

.tab-right-text p a {
    color: #fc4f2f;
}

.register-img-wrap {
    width: 100%;
    height: 200px;
}

.register-img-wrap img {
    display: block;
    width: 236px;
    height: 164px;
    margin: 32px auto;
}

.tab-bottom-text {
    font-size: 14px;
    color: #4c4948;
}

/* 逛社区视频 */
.video_box{
    padding: 10px;
}
.video_box .video_style{
    display: block;
    max-width: 620px;
    min-width: 350px;
    height: 350px;
    margin: 0 auto;
}
.no_comment {
    text-align: center;
    margin-top: 40px !important;
    font-size: 14px;
    color: #333;
}

/* 视频列表，内容页 */
.video_tj {
    font-size: 20px;
    color: #111;
}

.text_show_wrap p {
    font-size: 16px;
    color: #353535;
    line-height: 24px;
    margin: 8px 0;
}

.text_show_wrap p span {
    display: inline-block;
    font-size: 16px !important;
    color: #353535;
    line-height: 24px;
    text-indent: 0 !important;
    margin: 5px 0;
}

.video_text_wrap .text_time {
    font-size: 14px;
    color: #817f80;
    margin: 10px 0;
}

.video_text_wrap .text_time .text_item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.video_text_wrap .text_item_main i {
    display: inline-block;
    vertical-align: middle;
    background: url(/img/icon_img.png) no-repeat;
    width: 17px;
    height: 17px;
    background-position: -50px 0;
}

.video_text_wrap .text_item_main span {
    color: #fe8e32;
    margin: 0 4px;
}

.video_text_wrap h1 {
    font-size: 20px;
    color: #111;
    font-weight: normal;
}

.video_text_wrap {
    margin: 20px 0;
}

.user_comment ul {
    height: 86px;
    overflow: hidden;
}

.user_comment ul li {
    font-size: 14px;
    margin: 6px 0;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.user_comment ul li span {
    color: #818181;
}


.user_comment .page {
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: #646464;
    cursor: pointer;
}

.user_comment .page span {
    margin-right: 10px;
}

.comment_input {
    margin: 12px 0;
}

.comment_input input {
    width: 224px;
    height: 30px;
    border: 1px solid #eee;
    text-indent: 1em;
}

.comment_input .push_btn {
    width: 45px;
    height: 30px;
    background: #fe8e32;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    cursor: pointer;
}

.video_main_rb {
    width: 289px;
    padding: 16px 10px;
}

.video_main_rb .hos_comment {
    font-size: 16px;
    color: #101010;
}

.hos_ask {
    width: 227px;
    height: 30px;
    margin: 0 auto;
}

.hos_ask span {
    width: 100px;
    height: 100%;
    background: #fe8e32;
    border-radius: 4px;
    border: 1px solid #fe8e32
}

.hos_ask .hos_index {
    background: #fff;
    border: 1px solid #fe8e32
}

.hos_ask span a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
}

.hos_ask .hos_index a {
    color: #fe8e32;
}

.hos_des {
    margin: 10px 0;
}

.des_title {
    display: inline-block;
    vertical-align: top;
    width: 42px;
    color: #818181;
    font-size: 14px;
}

.des_main {
    display: inline-block;
    vertical-align: top;
    width: 240px;
    color: #101010;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
}

.hos_name {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    margin-left: 6px;
    color: #000;
    max-width: 230px;
}

.hos_logo {
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
}

.hos_logo img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: 4px;
}

.video_main_rm {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 289px;
    height: 320px;
    padding: 10px;
}

.video_main_rt {
    padding: 10px 0;
    font-size: 16px;
    color: #414141;
    margin-left: 12px;
}

.video_other {
    margin-top: 24px;
}

.video_main_left {
    width: 777px;
    height: 584px;
    background: #8d8d8d;
    position: relative;
}

.video_main_left .heart_icon {
    position: absolute;
    right: 20px;
    top: 10px;
}

.video_main_left .heart_icon img {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 16px;
}

.video_main_left .heart_icon span {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
}

.video_main_right {
    width: 309px;
    height: 584px;
    border: 1px solid #ebebeb;
}

.video_main_left video {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.video_list {
    width: 740px;
    margin: 20px 0;
    padding: 0 10px;
}

.video_list ul li {
    float: left;
    width: 264px;
    border-radius: 4px;
    margin-right: 12px;
    margin-bottom: 20px;
}

.video_list ul li:nth-child(4n) {
    margin-right: 0;
}

.video_list .video_img {
    position: relative;
    width: 264px;
    height: 411px;
    overflow: hidden;
}

.video_list .video_img img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
}

.video_list .video_time {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    width: 50px;
    height: 20px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.video_text {
    width: 100%;
    height: 80px;
    background: #f3f3f5;
    padding: 10px 0;
    border-radius: 0 0 6px 6px;
}

.video_text .video_title {
    font-size: 17px;
    color: #151515;
    margin: 0 10px;
    height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.video_text .video_des {
    font-size: 14px;
    color: #151515;
    margin: 10px 10px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search_video ul li {
    width: 236px;
}

.search_video .video_img {
    position: relative;
    width: 236px;
    height: 378px;
    overflow: hidden;
}

.search_video .video_img img {
    width: 236px;
    height: 378px;
    margin: 0;
}

.search_video ul li:nth-child(3n) {
    margin-right: 0;
}

.search_video ul li:nth-child(4n) {
    margin-right: 12px;
}

.goods_comment_main {
    word-wrap: break-word;
    word-break: normal;
}

.env-box {
    width: 100%;
    height: 1000px;
    position: fixed;
    display: none;
    background-color: #000000a1;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.env-left {
    width: 50px;
    background: url(/img/env-left.png) no-repeat;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
}

.env-right {
    width: 50px;
    background: url(/img/env-right.png) no-repeat;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
}

.wide {
    width: 60%;
    height: auto;
    margin: 0 auto;
}

.wide .goods-name {
    width: 100%;
    height: 28px;
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
}

.env-count {
    width: 100%;
    position: absolute;
    bottom: 0px;
    text-align: center;
    color: #fff;
}

.img-wrap {
    /*重点从这里开始*/
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
    margin-top: 240px;
}

.img-wrap>div {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap>div img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.env-close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    background: url(/img/env-close.png) no-repeat;
    z-index: 99999;
}

/* 内容页修改 */
.w380{
    width: 380px;
}
.w950 {
    width: 1200px;
}
/* .community_text_main img,.mabe_wz_img img,.community_mabe_img img{
    filter: blur(7px);
    -webkit-filter: blur(7px);
} */

.w620 {
    width: 740px;
    padding: 30px;
    border: 1px solid #f2f2f2;
    padding-top: 20px;
}

.p50 {
    padding: 20px 0;
    margin: 0 32px;
    background: #eeeeee;
}

.community_inner_text ul {
    margin-left: 65px;
}

.community_sc_wrap {
    margin-right: 65px;
}

.community_sc_wrap_new {
    margin:16px 0 0 10px;
    color:#353535;
    display: inline-block;
}

.community_inner_text_new ul {
    margin-left: 18px;
}

.community_mabe_title {
    color: #2b2b2b;
}

.maybe-hospital {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 0 20px 0;
    font-size: 14px;
    margin: 0 20px;
    border-bottom: 1px solid #f2f2f2;
}

.display_flex {
    padding: 0 25px 0 0;
}

.maybe-product {
    margin-left: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.maybe-product-title {
    color: #2b2b2b;
    font-size: 14px;
    margin: 16px auto;
}

.hot-right-item{
    padding: 10px;
    border-top: 1px solid #f2f2f2;
}

.maybe-product-price-after {
    color: #f6630a;
    font-size: 18px;
}

.maybe-product-price {
    margin-top: 16px
}
.nmsl_line{
    border-top: 1px solid #f2f2f2;
    width: 100%;
    height: 1px;
    margin-left: 25px;
    margin-bottom:28px
}
.maybe-line {
    font-size: 18px;
}

.mabe_wenzhang {
    padding: 20px 0;
    margin: 0 25px;
    border-bottom: 1px solid #f2f2f2;
}

/*设置贝色网站内容页表格显示样式*/
table,tr,td{
    border: 1px solid #cfcdcd;
    padding: 5px;
    margin:10px 5px;
}

tr,td{
    text-align: center;
}