index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* components/zyh_card/zyh_card.wxss */
  2. @import '../../styles/index.wxss';
  3. /* 标题栏 */
  4. .title {
  5. height: 90rpx;
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: center;
  9. padding: 0 24rpx;
  10. color: #A8AEBE;
  11. font-size: 26rpx;
  12. }
  13. /* 分割线 */
  14. .cut-line {
  15. border-top: 1rpx solid #F3F4F5;
  16. }
  17. /* 内容栏 */
  18. .content {
  19. position: relative;
  20. padding: 32rpx 24rpx;
  21. display: flex;
  22. justify-content: flex-start;
  23. align-items: flex-start;
  24. flex-direction: column;
  25. }
  26. .content>.name {
  27. font-size: 28rpx;
  28. font-weight: 400;
  29. line-height: 50rpx;
  30. color: #464D66;
  31. }
  32. .content>.phone {
  33. font-size: 30rpx;
  34. font-weight: 400;
  35. color: #606266;
  36. margin-top: 10rpx;
  37. }
  38. .content>.code {
  39. font-size: 26rpx;
  40. font-weight: 400;
  41. color: #B0B3B9;
  42. margin-top: 18rpx;
  43. }
  44. .content>.photo {
  45. position: absolute;
  46. font-weight: 400;
  47. width: 100rpx;
  48. height: 100rpx;
  49. border-radius: 32rpx;
  50. right: 24rpx;
  51. display: flex;
  52. justify-content: center;
  53. align-items: center;
  54. color: white;
  55. font-size: 30rpx;
  56. font-weight: 500;
  57. }
  58. .wait {
  59. background: linear-gradient(153.73deg, #EFD4D9 4.88%, #FB868D 79.63%);
  60. }
  61. .pass {
  62. background: linear-gradient(153.73deg, #CCDEF4 4.88%, #74A7F3 79.63%);
  63. }
  64. .reject {
  65. background: linear-gradient(158.33deg, #DFE5ED 4.2%, #A7B5CB 77.65%);
  66. }
  67. .entrance {
  68. background: linear-gradient(153.73deg, #CCE8F4 4.88%, #76C4F0 79.63%);
  69. }