myInterview.scss 2.1 KB

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