companyrecord.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* pages/companyrecord/companyrecord.wxss */
  2. page {
  3. background-color: #f7f7f7;
  4. }
  5. .cont {
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. margin-top: 30rpx;
  11. }
  12. .tab {
  13. display: flex;
  14. width: 80%;
  15. height: 80rpx;
  16. color: #656565;
  17. font-size: 32rpx;
  18. display: flex;
  19. justify-content: space-around;
  20. margin-bottom: 20rpx;
  21. font-weight: 600;
  22. }
  23. .tab>view {
  24. display: flex;
  25. flex-direction: column;
  26. align-items: center;
  27. }
  28. .tab>view>view>image {
  29. width: 52rpx;
  30. height: 8rpx;
  31. }
  32. .body {
  33. width: 710rpx;
  34. height: 178rpx;
  35. background-color: white;
  36. border-radius: 20rpx;
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. justify-content: space-around;
  41. margin-bottom: 30rpx;
  42. }
  43. .body>view {
  44. width: 90%;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. height: 49%;
  49. }
  50. .body>view:first-child>p:first-child {
  51. font-size: 32rpx;
  52. color: #464646;
  53. }
  54. .body>view:first-child>p:last-child {
  55. color: #11CD6A;
  56. font-size: 24rpx;
  57. }
  58. .body>view:last-child {
  59. display: flex;
  60. }
  61. .body>view:last-child>button {
  62. height: 56rpx;
  63. width: 156rpx;
  64. font-size: 24rpx;
  65. border-radius: 50rpx;
  66. border: 1px solid #FF874E;
  67. color: #FF874E;
  68. background-color: white;
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. margin-right: 0rpx;
  73. }
  74. .body>view:last-child>view>p:first-child {
  75. color: #FF874E;
  76. font-size: 32rpx;
  77. }
  78. .body>view:last-child>view>p:last-child {
  79. font-size: 42rpx;
  80. color: #FF874E;
  81. }