customerService.wxss 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. page {
  2. background-color: #F4F4F4;
  3. font-size: 32rpx;
  4. box-sizing: border-box;
  5. }
  6. .pages {
  7. width: 100%;
  8. height: 100%;
  9. box-sizing: border-box;
  10. }
  11. .top {
  12. height: 500rpx;
  13. box-sizing: border-box;
  14. padding: 108rpx 0 40rpx;
  15. text-align: center;
  16. }
  17. .top .image {
  18. box-sizing: border-box;
  19. margin: 0 auto 60rpx;
  20. }
  21. .top image {
  22. width: 210rpx;
  23. height: 200rpx;
  24. }
  25. .footer {
  26. box-sizing: border-box;
  27. height: calc(100vh - 500rpx);
  28. background: #FFFFFF;
  29. border-radius: 16rpx 56rpx 0px 0px;
  30. padding: 76rpx 30rpx 0;
  31. }
  32. .footer .number {
  33. box-sizing: border-box;
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. margin-bottom: 30rpx;
  38. }
  39. .footer .number image {
  40. width: 26rpx;
  41. height: 34rpx;
  42. margin-bottom: -8rpx;
  43. }
  44. .footer .btn {
  45. box-sizing: border-box;
  46. color: #1E9F6A;
  47. width: 154rpx;
  48. height: 60rpx;
  49. line-height: 60rpx;
  50. background: #FFFFFF;
  51. border-radius: 8rpx 24rpx 8rpx 24rpx;
  52. border: 1px solid #1E9F6A;
  53. text-align: center;
  54. }