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