| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .doctor_list {
- padding: 230rpx 30rpx 0;
- display: inline-block;
- width: 100%;
- }
- .doctor_item {
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
- margin-bottom: 30rpx;
- padding: 20rpx 30rpx;
- position: relative;
- border-radius: 24rpx;
- }
- .doctor_item_nav {
- display: flex;
- align-items: flex-start;
- padding: 20rpx 0;
- width: 79%;
- }
- .doctor_item_img {
- width: 110rpx;
- height: 103rpx;
- border-radius: 50%;
- margin-right: 23rpx;
- overflow: hidden;
- }
- .doctor_item_nav_tit {
- width: 70%;
- }
- .doctor_item_nav_subtit_val {
- font-size: 32rpx;
- font-family: Source Han Sans CN;
- font-weight: 500;
- color: #222326;
- margin-right: 20rpx;
- }
- .doctor_item_nav_subtit_txt {
- font-size: 22rpx;
- font-family: PingFang SC;
- background: #FFFBF4;
- border: 1rpx solid ;
- border-radius: 6rpx;
- padding: 7rpx 10rpx;
- }
- .doctor_item_nav_subtit_dept{
- font-size: 26rpx;
- font-family: PingFang SC;
- color: #222326;
- line-height: 65rpx;
- }
- .doctor_item_info {
- font-size: 26rpx;
- font-family: PingFang SC;
- color: #8A8A99;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- width: 100%;
- }
- .goBtn{
- width: 132rpx;
- height: 60rpx;
- line-height: 58rpx;
- border: 1px solid;
- border-radius: 30rpx;
- text-align: center;
- font-size: 26rpx;
- font-family: PingFang SC;
- }
|