body {
    font-family: -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    color: #212529;
    line-height: 1.5;
}

#app {
    background-color: #f5f5f5;
    height: 100vh;
    overflow: auto;
}

/* 特殊类 */
[v-cloak] {
    display: none;
}

/* 通用类 */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.vertical-middle {
    vertical-align: middle;
}

.font-weight-bold {
    font-weight: bold;
}

/* padding 相关 */
.p-2 {
    padding: .5rem;
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.p-3 {
    padding: 1rem;
    background-color: #fff;
}

.pt-3 {
    padding-top: 1rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* margin 相关 */
.mb-1 {
    margin-bottom: .25rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.small {
    font-size: 80%;
}

/* 文字颜色 */
.text-black-50 {
    color: rgba(0, 0, 0, .5);
}

.text-danger {
    color: #FE9F5F;
}

.text-warning {
    color: #ffc107;
}

.text-white {
    color: white;
}

.float-right {
    float: right;
}

.overflow-auto {
    overflow: auto;
}

.bg-white {
    background-color: white;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

button {
    overflow: visible;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.btn-block {
    display: block;
    width: 100%;
}

.reset-link {
    text-decoration: none;
    color: inherit;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.flex-row {
    flex-direction: row;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-grow-1 {
    flex-grow: 1;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.border-top {
    border-top: 1px solid #dee2e6;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

.border {
    border: 1px solid #dee2e6;
}

/* 向左的箭头 */
.left-arrow {
    line-height: 1;
    text-indent: 1rem;
    position: relative;
}

.left-arrow::before {
    content: "";
    width: 1rem;
    position: absolute;
    top: 0;
    left: .21rem;
    transform: rotate(45deg);
    bottom: 0;
    border-width: 0 0 1px 1px;
    border-style: solid;
    border-color: currentColor;
}

/* 首页样式 */
/* 顶部返回栏样式 */
.doctor-index header {
    line-height: 1.5rem;
}

.doctor-index header .van-icon,
.doctor-index header a {
    vertical-align: middle;
}

/* 专家列表项组件样式 */
.doctor-item {
    border-bottom:1px solid #E9E9E9;
    overflow: hidden;
}

.doctor-item+.doctor-item {
    margin-top: .625rem;
}

.doctor-item-header {
    box-sizing: content-box;
    padding: .75rem;
    
}

.doctor-item-header img {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    float: left;
}

.doctor-item-header-title {
    white-space: nowrap;
    width: auto;
    padding-left: 4.75rem;
}

.doctor-item-header-title .h6 {
    font-size: 1.125rem;
    float: left;
}

.doctor-item-header-title div.small {
    font-size: .75rem;
    background-color:rgb(254, 159, 95,0.09);
    overflow: hidden;
    line-height: 1.333333;
    padding: .0625rem .8125rem .125rem .625rem;
    margin-right: .3125rem;
    margin-bottom: .3125rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    float: left;
    color: #FE9F5F;
}

.doctor-item-center {
    clear: both;
    line-height: 1.33333;
    padding: 0.75rem 0.3rem;

}
.doctor-item-center-details {
    clear: both;
    line-height: 1.33333;
    padding: 1rem 0.75rem 1rem;

}

.doctor-item-descs {
    color: #6E6E6E;
    font-size: .875rem;
    padding: 0 .75rem .3125rem;
    text-indent: 1.6rem;
   
}

.doctor-item-descs-details {
    color: #6E6E6E;
    font-size: .875rem;
    padding: 0.5rem .75rem 0.5rem;
    text-indent: 1.6rem;
}

.doctor-item-footer {
    padding: .75rem;
    
  
}
.doctor-item-footer div{
    float: left;
    padding: 0 10px;
}
.go-detail{
  width:70px;
  height:30px;
  border-radius:18px;
  border:1px solid rgba(64,187,144,1);
  line-height: 30px;
  text-align: center;
  color:rgba(64,187,144);
  font-size: 12px;
}
.price-style{
    color: #333;
    font-size:12px;
    font-family:PingFangSC-Medium,PingFang SC;
    font-weight:500;
    margin-top: 7px;
}
.doctor-item-footer .iconfont {
    font-size: 1.5rem;
    margin-right: .375rem;
}
.my-text-warning{
    color: #ff8800;
}

.iconfont {
    
    font-size: 1rem;
    
}


.doctor-item-footer div:first-child::after {
    content: "";
    border-right: 1px solid #dddddd;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

/* 专家详情页面 */
.doctor-detail .doctor-item-header .doctor-item-header-title {
    padding-left: 0;
    padding-right: 4.75rem;
}

.doctor-detail .doctor-item-header img {
    float: right;
}

.doctor-detail .container .van-col>div {
    border-radius: .3125rem;
    padding: .1rem;
    height: 100%;
}

.doctor-detail .container .van-col div .price {
    font-size: .75rem;
    line-height: 1.33333;
    color: #FF6B6B;
    min-height: 1.33334em;
}

.doctor-detail .container .van-col div i {
    font-size: 2.5rem;
    line-height: 1.2;
}

.doctor-detail .container .van-col div .price {
    color: #FF6B6B;
}

.doctor-detail .container .van-col div.active {
    color: #40BB90;
    border-color: currentColor !important;
}

.doctor-detail div.content .timeTableHeader .active {
    color: #40BB90;
}

.doctor-detail div.content {
    display: none;
}

.doctor-detail div.content.active {
    display: block;
}

.doctor-detail div.content.active .el-1 {
    border-color: #40BB90;
}

.doctor-detail .content .el-1 {
    border-radius: .3125rem;
}

.doctor-detail .content .el-1::before {
    content: "";
    display: inline-block;
    position: absolute;
    border: .4rem solid;
    border-bottom-width: .6rem;
    border-top-width: 0;
    border-color: transparent transparent white transparent;
    top: -.6rem;
    z-index: 1;
}

.doctor-detail .content .el-1::after {
    content: "";
    display: inline-block;
    position: absolute;
    border: .4rem solid;
    border-bottom-width: .6rem;
    border-top-width: 0;
    border-color: transparent transparent #40BB90 transparent;
    top: calc(-.6rem - 1px);
}

.doctor-detail .content.msg .el-1::before,
.doctor-detail .content.msg .el-1::after {
    left: 2rem;
}

.doctor-detail .content.video .el-1::before,
.doctor-detail .content.video .el-1::after {
    right: 50%;
}

.doctor-detail .content.online .el-1::before,
.doctor-detail .content.online .el-1::after {
    left: 2rem;
}

.doctor-detail .content .el-1 ul li::before {
    content: "*";
}

.doctor-detail .btn-info1 {
    color: #fff;
    background-color: #40BB90;
    border-color: #40BB90;
    border-radius: 1.6875rem;
    font-size: 1.125rem;
}

.doctor-detail .del {
    text-decoration: line-through;
}

.header-title{
    margin: 0 auto;
    text-align: center;
    line-height: 50px;
   height: 50px;
   color: #666;
   font-size: 14px;
   border-bottom: 1px solid #e9e9e9;
}
.header-span{
    width: 13rem;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    height: 12px;
}
.header-title img{
    width: 13px;
    height: 7px;
}
/* 登录框样式 */
.login-wrapper {
    height: 100%;
}

.timeTable .van-button--primary {
    background-color: #40BB90;
    border-color:  #40BB90;;
}

.van-button.van-button--primary.van-button--disabled{
    background-color: #999;
    border-color: #999;
}