123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- @charset "UTF-8";
- .lists ul {
- margin: 0;
- display: block;
- }
- .headdate li {
- border-bottom: 0;
- width: 12%;
- }
- .headdate {
- margin: 0;
- padding: 5px 10px;
- background: #fff;
- display: flex;
- align-items: center;
- }
- .headdate .left {
- width: 3rem;
- color: #008a8a;
- border-right: 1px #ebebeb solid;
- padding: 0 10px;
- text-align: center;
- }
- .headdate .right{
- padding: 0 10px;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- text-align: center;
- }
- .headdate .right li .day {
- /*width: 25px;*/
- /*height: 25px;*/
- padding: .08rem .1rem;
- font-size: .7rem;
- border-radius: 100%;
- color: #A9A9A9;
- /*background: #0ac2d2;*/
- }
- .headdate .right li .week {
- font-size: 1rem;
- position: relative;
- }
- .headdate .right li.active .day {
- width: 15px;
- height: 15px;
- margin: 0 auto;
- padding: .08rem .1rem;
- font-size: .7rem;
- border-radius: 100%;
- color: #fff;
- background: #0ac2d2;
- }
- .headdate .right li.active .week {
- font-size: 1rem;
- color: #0ac2d2;
- }
- .headdate .right li.has-appointment .week:after {
- position: absolute;
- top: -2px;
- right: 7px;
- content: " ";
- background: red;
- border-radius: 100%;
- width: 6px;
- height: 6px;
- }
- .doctorbox{
- background: #fff;
- display: table;
- /*display: flex;*/
- align-items: center;
- margin-top: 10px;
- }
- .doctorbox .left{
- display: table-cell;
- border-right: 1px #ebebeb solid;
- padding: 10px;
- vertical-align: middle;
- }
- .doctorbox .right{
- display: table-cell;
- width: 100%;
- }
- .doctorbox .doctor{
- display: table;
- width: 100%;
- /*margin: 10px;*/
- }
- .doctorbox .doctor >div{
- display: table-cell;
- vertical-align: middle;
- }
- .doctorbox .doctor .avatar{
- width: 50px;
- height: 50px;
- padding: 10px;
- }
- .doctorbox .doctor .avatar img{
- width: 100%;
- border-radius: 100%;
- }
- .doctorbox .doctor .body{
- width: 50%;
- }
- .doctorbox .doctor .body .docname{
- color: #535353;
- }
- .doctorbox .doctor .body .doctitle{
- color: #a9a9a9;
- }
- .doctorbox .doctor .right{
- text-align: center;
- width: 30%;
- }
- .doctorbox .doctor .right .btn-green{
- width: 70px;
- height: 25px;
- line-height: 25px;
- background: transparent;
- color: #008a8a;
- border: 1px #008a8a solid;
- }
- .doctorbox .doctor .right .btn-gray{
- width: 70px;
- height: 25px;
- line-height: 25px;
- background: A9A9A9;
- color: #fff;
- }
- .doctorbox .doctor .right button[disabled]{
- width: 70px;
- height: 25px;
- line-height: 25px;
- background: #A9A9A9;
- color: #fff;
- }
- .font-green{
- color: #008a8a;
- }
|