companydetail.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* pages/companydetail/companydetail.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. }
  11. .top{
  12. width: 710rpx;
  13. height: 392rpx;
  14. background-color: white;
  15. border-radius: 20rpx;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: space-around;
  20. margin-bottom: 30rpx;
  21. }
  22. .top>view{
  23. width: 88%;
  24. }
  25. .one{
  26. color: #464646;
  27. font-size: 32rpx;
  28. font-weight: 600;
  29. }
  30. .two{
  31. color: #656565;
  32. font-size: 24rpx;
  33. }
  34. .three{
  35. display: flex;
  36. flex-direction: row;
  37. color: white;
  38. font-size: 24rpx;
  39. }
  40. .three>view{
  41. width: 218rpx;
  42. height: 44rpx;
  43. border-radius: 10rpx;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. }
  48. .three>view:first-child{
  49. background-color: #FF874E;
  50. }
  51. .three>view:last-child{
  52. background-color: #00B88C;
  53. margin-left: 20rpx;
  54. }
  55. .four{
  56. color: #656565;
  57. font-size: 24rpx;
  58. }
  59. .five{
  60. color: #656565;
  61. font-size: 24rpx;
  62. display: flex;
  63. flex-direction: row;
  64. justify-content: space-between;
  65. }
  66. .body{
  67. width: 100%;
  68. height: 170rpx;
  69. background-color: white;
  70. display: flex;
  71. align-items: center;
  72. justify-content: space-around;
  73. border-bottom: 1px solid #EBEBEB;
  74. }
  75. .center{
  76. display: flex;
  77. flex-direction: column;
  78. width: 340rpx;
  79. height: 65%;
  80. justify-content: space-between;
  81. white-space: nowrap;
  82. }
  83. .center>p:first-child{
  84. color: #464646;
  85. font-size: 28rpx;
  86. font-weight: 600;
  87. }
  88. .center>p:last-child{
  89. color: #656565;
  90. font-size: 24rpx;
  91. width: 300rpx;
  92. white-space: nowrap;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. }
  96. .foot{
  97. display: flex;
  98. flex-direction: column;
  99. height: 65%;
  100. justify-content: space-between;
  101. }
  102. .foot>p:first-child{
  103. color: #FF874E;
  104. display: flex;
  105. flex-direction: row-reverse;
  106. font-size: 32rpx;
  107. font-weight: 600;
  108. }
  109. .foot>p:last-child{
  110. color: #656565;
  111. font-size: 24rpx;
  112. }