myInterview.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* 我的面试 */
  2. .interview {
  3. min-height: calc(100vh - 44px);
  4. background-color: #F2F2F2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. &-list {
  7. padding: 26rpx 30rpx;
  8. &-item {
  9. border-radius: 10rpx;
  10. background-color: #fff;
  11. padding: 30rpx 32rpx;
  12. margin-bottom: 20rpx;
  13. &-title {
  14. font-size: 32rpx;
  15. color: #000;
  16. display: flex;
  17. align-items: center;
  18. image {
  19. width: 24rpx;
  20. height: 24rpx;
  21. margin-left: 10rpx;
  22. }
  23. }
  24. &-date {
  25. color: #028DFE;
  26. font-size: 50rpx;
  27. font-weight: 600;
  28. line-height: 70rpx;
  29. }
  30. &-way {
  31. font-size: 22rpx;
  32. color: #9B9B9B;
  33. margin-bottom: 22rpx;
  34. }
  35. &-position {
  36. display: flex;
  37. justify-content: space-between;
  38. .left {
  39. display: flex;
  40. align-items: center;
  41. image {
  42. width: 98rpx;
  43. height: 98rpx;
  44. border-radius: 6rpx;
  45. margin-right: 22rpx;
  46. }
  47. .info {
  48. color: #9B9B9B;
  49. font-size: 24rpx;
  50. line-height: 40rpx;
  51. view {
  52. &:first-child {
  53. color: #000;
  54. font-size: 32rpx;
  55. }
  56. }
  57. }
  58. }
  59. .right {
  60. view {
  61. font-size: 24rpx;
  62. color: #9B9B9B;
  63. text-align: right;
  64. &:first-child {
  65. color: #EF651F;
  66. margin-bottom: 12rpx;
  67. }
  68. }
  69. }
  70. }
  71. &-button {
  72. margin-top: 52rpx;
  73. .btn {
  74. width: 100%;
  75. height: 80rpx;
  76. line-height: 80rpx;
  77. text-align: center;
  78. font-size: 30rpx;
  79. color: rgba(255, 255, 255, 0.8);
  80. }
  81. .submit {
  82. background-color: #028DFE;
  83. }
  84. .not {
  85. background-color: #D2D2D2;
  86. }
  87. }
  88. .double {
  89. display: flex;
  90. justify-content: space-between;
  91. .btn {
  92. width: 280rpx;
  93. height: 80rpx;
  94. line-height: 80rpx;
  95. text-align: center;
  96. font-size: 30rpx;
  97. &:first-child {
  98. background-color: #028DFE;
  99. color: #fff;
  100. }
  101. &:last-child {
  102. border: solid 1px #028DFE;
  103. color: #028DFE;
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }