1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/customerServe/customerServe.wxss */
- page {
- background: #F5F5F5;
- font-family: PingFang SC;
- }
- .head {
- width: 100%;
- height: 55px;
- background: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .head image {
- width: 37px;
- height: 49px;
- margin-right: 14px;
- }
- .inputRoom {
- width: 100%;
- height: 79px;
- background: #508FF4;
- border-top: 1px solid #cdcdcd;
- position: fixed;
- bottom: 0;
- display: flex;
- align-items: center;
- z-index: 20;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .inputRoom input{
- width: 345px;
- height: 35px;
- background: #FFFFFF;
- border-radius: 5px;
- font-size: 14px;
- padding-left: 10px;
- }
- .leftMsg {
- line-height: 40px;
- height: 40px;
- background: #FFFFFF;
- box-shadow: 0px 1px 3px 0px rgba(153, 153, 153, 0.3);
- border-radius: 5px;
- font-size: 14px;
- color: #333333;
- padding: 0 7px;
- z-index: 10;
- margin-left: -6px;
- z-index: 10;
- }
- .rightMsg {
- line-height: 40px;
- height: 40px;
- background: #D9ECFF;
- box-shadow: 0px 1px 3px 0px rgba(153, 153, 153, 0.3);
- border-radius: 5px;
- font-size: 14px;
- color: #333333;
- padding: 0 7px;
- z-index: 10;
- margin-right: -6px;
- z-index: 10;
- }
|