contact.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .contact-bg {
  2. top: 0;
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. background-color: rgba(0,0,0,0.56);
  7. z-index: 10001;
  8. }
  9. .contact-bg>view {
  10. background-color: white;
  11. width: 100%;
  12. height: 432rpx;
  13. position: fixed;
  14. bottom: -532rpx;
  15. padding-bottom: env(safe-area-inset-bottom);
  16. }
  17. .contact-bg>view>view:first-child {
  18. width: 100%;
  19. height: 148rpx;
  20. display: flex;
  21. }
  22. .contact-bg>view>view:first-child>text {
  23. font-size: 28rpx;
  24. color: #999999;
  25. text-align: center;
  26. line-height: 44rpx;
  27. margin: auto auto;
  28. }
  29. .contact-bg>view>view:nth-child(2), .contact-bg>view>view:nth-child(4),
  30. .contact-bg>view>view:nth-child(8) {
  31. width: 100%;
  32. height: 0.7px;
  33. margin-top: -0.7px;
  34. background-color: #eeeeee;
  35. }
  36. .contact-bg>view>view:nth-child(3), .contact-bg>view>view:nth-child(5),
  37. .contact-bg>view>view:nth-child(7) {
  38. width: 100%;
  39. height: 100rpx;
  40. font-size: 34rpx;
  41. color: #333333;
  42. text-align: center;
  43. line-height: 100rpx;
  44. }
  45. .contact-bg>view>view:nth-child(4) {
  46. width: 100%;
  47. height: 16rpx;
  48. background-color: #f5f5f5;
  49. }