* {
    margin: 0;
    padding: 0;
    list-style: none;
    /*去除ios手机点击时有阴影*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    /*解决rem页面页面加载闪烁问题*/
    font-size: 50px;
}

body {
    /*为了解决rem设置的fontSize对行内元素的影响必须设置*/
    font: 12px 'Microsoft YaHei', '宋体', Heiti SC, HelveticaNeue, Helvetica;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: auto;
    color: #373737;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
    max-width: 750px;
    -webkit-text-size-adjust: none;
    /*在苹果手机内容滚动的时候不会卡顿*/
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-weight: normal;
    font-size: 13px;
}


/*旋转屏幕时，字体大小调整的问题*/

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    height: 100%;
}

img {
    display: block;
    border: none;
    vertical-align: bottom;
    width: 100%;
}

input {
    outline: none;
    border: none 0;
    -webkit-appearance: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

select,
select:focus {
    outline: none;
}

input,
textarea,
select,
button {
    background: none;
    border: none;
    outline: none;
    line-height: normal;
    margin: 0;
    padding: 0;
}

input[type=button],
input[type=radio],
input[type=checkbox],
select {
    -webkit-appearance: none;
}

.clear:after {
    clear: both;
    content: '';
    display: block;
}

.lf {
    float: left;
}

.rt {
    float: right;
}


/*弹性布局*/


/*居中*/

.flex-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.flex-direction-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
}

.flex-direction-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.flex-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
}


/*多行省略*/

.overflow-two {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.overflow-three {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.overflow-four {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.overflow-normal {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex1 {
    -moz-box-flex: 1.0;
    -webkit-box-flex: 1.0;
    -ms-flex: 1.0;
    box-flex: 1.0;
    flex: 1;
    -webkit-flex: 1;
    min-width: 0;
}


/*外边框溢出*/

.overflow:before {
    content: '';
    display: table;
}


/*防止手机点击图片被放大*/


/*img{ pointer-events: none; }*/

div,
span,
h1,
p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 320px) {
    html {
        font-size: 266.667%;
    }
}

@media (min-width: 360px) {
    html {
        font-size: 300%;
    }
}

@media (min-width: 375px) {
    html {
        font-size: 312.5%;
    ;
    }
}

@media (min-width: 384px) {
    html {
        font-size: 320%;
    }
}

@media (min-width: 414px) {
    html {
        font-size: 345%;
    }
}

@media (min-width: 448px) {
    html {
        font-size: 373.333%;
    }
}

@media (min-width: 480px) {
    html {
        font-size: 400%;
    }
}

@media (min-width: 512px) {
    html {
        font-size: 426.667%;
    }
}

@media (min-width: 544px) {
    html {
        font-size: 453.333%;
    }
}

@media (min-width: 576px) {
    html {
        font-size: 480%;
    }
}

@media (min-width: 608px) {
    html {
        font-size: 506.667%;
    }
}

@media (min-width: 640px) {
    html {
        font-size: 533.333%;
    }
}

@media (min-width: 750px) {
    html {
        font-size: 625%;
    ;
    }
}

/*病例交流列表*/
.comment_box {}
.comment_tit { padding: 10px 4%; border-bottom: 1px solid #e3e3e3; font-size: 17px; line-height: 30px; color: #43a0ff;}
.comment_block { margin: 0 4%; border-bottom: 1px solid #e3e3e3; width: 92%; display: -webkit-box; padding: 15px 0; border-bottom: 1px solid #e3e3e3;}
.comment_left { width: 30px; margin-right: 10px; margin-top: 3px;}
.comment_left img { width: 30px; height:30px; border-radius: 50%;}
.comment_right { width: 100%; -webkit-box-flex: 1; margin: 0;}
.comment_user { font-size: 12px; line-height: 20px; color: #8d99a8;}
.comment_name { font-size: 14px; color: #16191c;}
.comment_cont { padding: 8px 0; font-size: 15px; line-height: 24px; color: #16191c;}
.comment_infor {display: -webkit-box; width: 100%;}
.comment_time { font-size: 12px;  margin: 0; color: #8d99a8;}
.comment_reply { text-align: right; -webkit-box-flex: 1; margin: 0; width: 100%;}
.praise2 { color: #8d959c; display: inline-block; background: url("../images/praise.png") no-repeat left center; -webkit-background-size: 13px 13px; padding-left: 20px; margin-right: 10px; text-align: left;}
.praise2_sele { background-image: url("../images/praise_sele.png"); color: #43a0ff;}
.reply { color: #8d959c; display: inline-block; background: url("../images/reply.png") no-repeat left center; -webkit-background-size: 13px 13px; padding-left: 20px; margin-right: 5px;}
.comment_other_block { margin: 10px 0; border: 1px solid #e3e3e3; background-color: #f7f7f9; padding: 0; border-radius: 5px; position: relative;}
.comment_user .comment_reply { text-align: left;}
.comment_user .comment_time { text-align: right;}
.angle_bg { border: 10px solid #e3e3e3; border-color: transparent transparent #e3e3e3 transparent; position: absolute; left: 30px; top: -20px;}
.angle { border: 8px solid #f7f7f9; border-color: transparent transparent #f7f7f9 transparent; position: absolute; left: -8px; top: -6px;}
.comment_lable_block { padding:0 4%; font-size: 15px; line-height: 50px; color: #16191c;}
.comment_area_block { padding: 0 4%;}
.com_area_txt { border: 1px solid #e3e3e3; border-radius: 5px; background-color: #f7f7f9; width: 90%; padding: 10px 5%;font-size: 15px; line-height: 20px; color: #16191c; height: 94px; resize: none;}
.comment_btm_block { text-align: center; padding: 19px 4%;}
.submit_com { background-color: #43a0ff; border-radius: 5px; width: 78px; font-size: 16px; line-height: 33px; color: #ffffff; text-align: center;}
.comment_no_block { text-align: center; padding: 20px 4%; font-size: 15px; line-height: 20px; color: #5a6675;}
.comment_time a{ color: #8d99a8; }
.detail_box .comment_block { border-bottom: medium none;}