12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .contactSales {
- position: fixed;
- width: 100%;
- height: 140rpx;
- background-color: #fff;
- bottom: 0rpx;
- left: 0rpx;
- z-index: 9;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- border-top: 1rpx solid #CCCCCC;
- }
- .contactSales-left {
- flex: 2;
- display: flex;
- align-items: center;
- }
- .left-avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .left-msg {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- padding-left: 20rpx;
- }
- .left-name {
- display: flex;
- align-items: center;
- }
- .nameCard {
- width: 40rpx;
- height: 40rpx;
- margin-left: 10rpx;
- }
- .left-text {
- font-size: 24rpx;
- color: #999999;
- }
- .contactSales-right {
- flex: 1;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .rightmobile {
- width: 40rpx;
- height: 40rpx;
- }
- .right-box1 {
- width: 100rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .right-box1 .text1 {
- font-size: 24rpx;
- margin-top: 10rpx;
- }
|