myInterview.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* 我的面试 */
  2. .interview {
  3. &-list {
  4. padding: 44rpx 40rpx;
  5. &-item {
  6. border: solid 1px #e5e5e5;
  7. border-radius: 24rpx;
  8. padding: 24rpx 32rpx;
  9. margin-bottom: 30rpx;
  10. &-status {
  11. color: #505050;
  12. font-size: 32rpx;
  13. font-weight: bold;
  14. margin-bottom: 16rpx;
  15. }
  16. &-time {
  17. color: #2a82e4;
  18. font-size: 48rpx;
  19. margin-bottom: 16rpx;
  20. }
  21. &-address {
  22. font-size: 28rpx;
  23. color: #505050;
  24. margin-bottom: 40rpx;
  25. }
  26. &-company {
  27. display: flex;
  28. justify-content: space-between;
  29. .left {
  30. display: flex;
  31. image {
  32. width: 102rpx;
  33. height: 102rpx;
  34. border-radius: 10rpx;
  35. border: solid 1px #f2f2f2;
  36. margin-right: 38rpx;
  37. }
  38. &-info {
  39. color: #a6a6a6;
  40. font-size: 22rpx;
  41. view {
  42. line-height: 40rpx;
  43. &:first-child {
  44. color: #383838;
  45. font-weight: bold;
  46. font-size: 28rpx;
  47. }
  48. }
  49. }
  50. }
  51. .right {
  52. text-align: right;
  53. view {
  54. font-size: 22rpx;
  55. &:first-child {
  56. color: #ff5733;
  57. }
  58. &:last-child {
  59. margin-top: 10rpx;
  60. color: #a6a6a6;
  61. }
  62. }
  63. }
  64. }
  65. &-btn {
  66. .single-btn {
  67. color: #fff;
  68. font-size: 32rpx;
  69. border-radius: 46rpx;
  70. text-align: center;
  71. height: 80rpx;
  72. line-height: 80rpx;
  73. margin-top: 52rpx;
  74. }
  75. .not-arrive {
  76. background-color: #a6a6a6;
  77. }
  78. .arrive {
  79. background-color: #2a82e4;
  80. }
  81. .double-btn {
  82. display: flex;
  83. justify-content: space-between;
  84. view {
  85. width: 280rpx;
  86. height: 80rpx;
  87. line-height: 80rpx;
  88. text-align: center;
  89. font-size: 36rpx;
  90. border-radius: 46rpx;
  91. margin-top: 52rpx;
  92. &:first-child {
  93. background-color: #2a82e4;
  94. color: #fff;
  95. }
  96. &:last-child {
  97. border: solid 1px #2a82e4;
  98. color: #2a82e4;
  99. }
  100. }
  101. }
  102. }
  103. }
  104. }
  105. }