| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .m-item {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- padding-top: 40rpx;
- }
- .m-left {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- width: 120rpx;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- }
- .m-content {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- word-break: break-all;
- }
- .m-right {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- width: 120rpx;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: start;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- }
- .head_icon {
- width: 80rpx;
- height: 80rpx;
- border-radius: 100%;
- }
- .m-content-head {
- position: relative;
- }
- .m-content-head-right {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
- }
- .m-content-head-home {
- text-align: left;
- background: #1482d1;
- border: 1px #1482d1 solid;
- border-radius: 20rpx;
- padding: 20rpx 25rpx;
- font-size: 26rpx !important;
- color: white;
- display: inline-block;
- }
- .m-content-head-home:before {
- border: 15rpx solid transparent;
- border-right: 15rpx solid #1482d1;
- left: -26rpx;
- width: 0;
- height: 0;
- position: absolute;
- content: ' '
- }
- .m-content-head-customer {
- border: 1rpx white solid;
- font-size: 26rpx !important;
- background: white;
- border-radius: 20rpx;
- padding: 20rpx;
- background-color: #F7F7FB;
- }
- .m-content-head-customer:after {
- border: 15rpx solid transparent;
- border-left: 15rpx solid #F7F7FB;
- top: 20rpx;
- right: -26rpx;
- width: 0;
- height: 0;
- position: absolute;
- content: ' '
- }
|