myInterview.scss 2.1 KB

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