123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- @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;
- }
- .fixedbox button[disabled]{
- width: 100%;
- background: #A9A9A9;
- 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;
- }
|