ContentDetails.wxss 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* pages/ContentDetails/ContentDetails.wxss */
  2. text {
  3. padding: 0;
  4. margin: 0;
  5. }
  6. .image {
  7. height: 300rpx;
  8. width: 100%;
  9. overflow: hidden;
  10. }
  11. .image image {
  12. height: 100%;
  13. width: 100%;
  14. }
  15. .content {
  16. padding: 0 10rpx;
  17. box-sizing: border-box;
  18. text-indent: 2em;
  19. display: block;
  20. font-size: 24rpx;
  21. line-height: 48rpx;
  22. text-align: left;
  23. letter-spacing: 3rpx;
  24. margin: 20rpx 0;
  25. }
  26. .content_img {
  27. height: 160rpx;
  28. width: 100%;
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-around;
  32. letter-spacing: 3rpx;
  33. margin-top: 10rpx;
  34. }
  35. .content_img image {
  36. height: 100%;
  37. width: 30%;
  38. }
  39. .process {
  40. height: 930rpx;
  41. width: 100%;
  42. background: #fff;
  43. }
  44. .process image {
  45. display: block;
  46. width: 90%;
  47. height: 100%;
  48. margin: 0 auto;
  49. }
  50. .phoneCall {
  51. text-align: center;
  52. margin: 40rpx 0;
  53. padding-bottom: 60rpx;
  54. }
  55. .phoneCall text {
  56. color: #fb752c;
  57. }