sharefooter.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .contactSales {
  2. position: fixed;
  3. width: 100%;
  4. height: 140rpx;
  5. background-color: #fff;
  6. bottom: 0rpx;
  7. left: 0rpx;
  8. z-index: 9;
  9. display: flex;
  10. align-items: center;
  11. box-sizing: border-box;
  12. padding: 20rpx 30rpx;
  13. border-top: 1rpx solid #CCCCCC;
  14. }
  15. .contactSales-left {
  16. flex: 2;
  17. display: flex;
  18. align-items: center;
  19. }
  20. .left-avatar {
  21. width: 80rpx;
  22. height: 80rpx;
  23. border-radius: 50%;
  24. }
  25. .left-msg {
  26. display: flex;
  27. flex-direction: column;
  28. box-sizing: border-box;
  29. padding-left: 20rpx;
  30. }
  31. .left-name {
  32. display: flex;
  33. align-items: center;
  34. }
  35. .nameCard {
  36. width: 40rpx;
  37. height: 40rpx;
  38. margin-left: 10rpx;
  39. }
  40. .left-text {
  41. font-size: 24rpx;
  42. color: #999999;
  43. }
  44. .contactSales-right {
  45. flex: 1;
  46. display: flex;
  47. flex-direction: row;
  48. justify-content: space-between;
  49. }
  50. .rightmobile {
  51. width: 40rpx;
  52. height: 40rpx;
  53. }
  54. .right-box1 {
  55. width: 100rpx;
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. }
  60. .right-box1 .text1 {
  61. font-size: 24rpx;
  62. margin-top: 10rpx;
  63. }