1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- @charset "UTF-8";
- #content{
- background: #fff;
- }
- .dept-title{
- background: #fff;
- display: flex;
- justify-content: space-between;
- padding: 10px;
- border-bottom: 1px #ebebeb solid;
- margin-bottom: 10px;
- }
- .dept-title .dept-text-left{
- float: left;
- font-size: .7rem;
- }
- .dept-title .dept-text-right{
- float: right;
- color: #00a8a8;
- }
- .dept-favorite{
- float: right;
- margin-right: 10px;
- }
- .dept-favorite button{
- color: #00a8a8;padding: 0 10px;background: #fff;border: 1px #00a8a8 solid;
- }
- .doctor{
- width: 40%;
- margin: 0 auto;
- text-align: center;
- }
- .doctor img{
- width: 100%;
- border-radius: 100%;
- margin-bottom: 5px;
- }
- .doctor .title{
- color: #a9a9a9;
- }
- .context{
- padding: 10px;
- }
- .context p{
- margin-bottom: 5px;
- }
- .fixedbox{
- position: fixed;
- width: 100%;
- bottom: 0;
- }
- .fixedbox button{
- width: 100%;
- background: #00a8a8;
- border-radius: 0;
- color: #fff;
- }
- .lists{
- display: none;
- }
- .lists.active{
- display: block;
- }
- .lists .wrap{
- background: rgba(0, 0, 0, .6);
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- }
- .lists .subscribeList{
- position: fixed;
- width: 100%;
- bottom: 0;
- max-height: 80%;
- overflow: auto;
- }
- .close{
- font-size: 2rem;
- color: #00a8a8;
- }
|