cooperativeEnterprise.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* 企业列表 */
  2. .enterprose-list {
  3. background-color: #f2f2f2;
  4. min-height: calc(100vh - 44px);
  5. /* 搜索 */
  6. &-search {
  7. width: calc(100% - 60rpx);
  8. margin: 0 auto;
  9. padding: 29rpx 0;
  10. }
  11. /* tab */
  12. &-tab {
  13. background-color: #fff;
  14. border-top-left-radius: 5px;
  15. border-top-right-radius: 5px;
  16. padding: 5px 0;
  17. }
  18. /* 列表 */
  19. &-content {
  20. &-item {
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. padding: 40rpx 30rpx;
  25. background-color: #fff;
  26. margin-bottom: 20rpx;
  27. border-radius: 10rpx;
  28. &:first-child {
  29. border-top: solid 1px #DBDBDB;
  30. border-top-left-radius: 0;
  31. border-top-right-radius: 0;
  32. }
  33. &-left {
  34. display: flex;
  35. align-items: center;
  36. .image {
  37. margin-right: 22rpx;
  38. image {
  39. width: 112rpx;
  40. height: 112rpx;
  41. border: solid 1px #E1E1E1;
  42. border-radius: 10rpx;
  43. }
  44. }
  45. .info {
  46. font-family: 'PingFangSC-Regular, PingFang SC;';
  47. color: #000;
  48. font-size: 32rpx;
  49. font-weight: 600;
  50. .company {
  51. display: flex;
  52. font-size: 24rpx;
  53. color: #6F6F6F;
  54. margin-top: 18rpx;
  55. .icon {
  56. margin-right: 83rpx;
  57. view:first-child {
  58. margin-right: 10rpx;
  59. }
  60. }
  61. }
  62. }
  63. }
  64. }
  65. }
  66. }