companydetailgroup.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/companydetailgroup/companydetailgroup.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. margin-bottom: 20rpx;
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. }
  18. .top-left {
  19. width: 322rpx;
  20. height: 76rpx;
  21. background-color: #FFFFFF;
  22. border-radius: 37rpx;
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. padding-left: 50rpx;
  27. padding-right: 40rpx;
  28. color: #3f3f3f;
  29. font-size: 28rpx;
  30. font-weight: 600;
  31. }
  32. .top-right {
  33. color: #656565;
  34. font-size: 24rpx;
  35. }
  36. .body{
  37. width: 100%;
  38. background-color: white;
  39. border-bottom: 1px solid #EBEBEB;
  40. display: flex;
  41. padding-top: 30rpx;
  42. padding-bottom: 28rpx;
  43. }
  44. .body image {
  45. width: 146rpx;
  46. height: 146rpx;
  47. border-radius: 10rpx;
  48. margin-left: 20rpx;
  49. }
  50. .body-right {
  51. margin-left: 22rpx;
  52. flex: 1;
  53. height: auto;
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-between;
  57. }
  58. .body-right-top {
  59. display: flex;
  60. font-size: 28rpx;
  61. font-weight: bold;
  62. color: #464646;
  63. align-items: center;
  64. }
  65. .body-right-top-left {
  66. width: 380rpx;
  67. }
  68. .body-right-top-right {
  69. color: #FF874E;
  70. font-weight: bold;
  71. font-size: 32rpx;
  72. }
  73. .body-right-bottom {
  74. font-size: 24rpx;
  75. color: #656565;
  76. margin-bottom: 10rpx;
  77. }