model-user-edit.component.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. :host {
  2. --primary-color: #b64d24;
  3. --border-radius: 12px;
  4. --input-background: #f8f9fa;
  5. }
  6. ion-card {
  7. margin: 0;
  8. border-radius: var(--border-radius);
  9. box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  10. background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  11. overflow: hidden;
  12. ion-card-header {
  13. padding: 24px;
  14. background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  15. color: white;
  16. ion-card-title {
  17. font-size: 20px;
  18. font-weight: 600;
  19. margin-bottom: 8px;
  20. color: white;
  21. }
  22. ion-card-subtitle {
  23. color: rgba(255, 255, 255, 0.9);
  24. font-size: 14px;
  25. }
  26. }
  27. ion-card-content {
  28. padding: 24px;
  29. ion-item {
  30. --background: var(--input-background);
  31. --border-radius: 10px;
  32. --padding-start: 16px;
  33. --padding-end: 16px;
  34. --min-height: 56px;
  35. margin-bottom: 16px;
  36. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  37. transition: all 0.3s ease;
  38. &:last-of-type {
  39. margin-bottom: 24px;
  40. }
  41. &.item-has-focus {
  42. --background: white;
  43. box-shadow: 0 0 0 2px var(--primary-color), 0 4px 12px rgba(182, 77, 36, 0.1);
  44. transform: translateY(-1px);
  45. }
  46. ion-input {
  47. --padding-start: 8px;
  48. --padding-end: 8px;
  49. --placeholder-color: #999;
  50. --placeholder-opacity: 0.8;
  51. font-size: 15px;
  52. &::part(label) {
  53. color: #666;
  54. font-size: 14px;
  55. margin-bottom: 4px;
  56. }
  57. }
  58. }
  59. ion-button {
  60. margin: 8px 0;
  61. height: 48px;
  62. --border-radius: 10px;
  63. font-size: 16px;
  64. font-weight: 600;
  65. letter-spacing: 0.5px;
  66. &:first-of-type {
  67. --background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  68. --background-hover: linear-gradient(135deg, #ff6b4a, var(--primary-color));
  69. --box-shadow: 0 4px 16px rgba(182, 77, 36, 0.25);
  70. }
  71. &:last-of-type {
  72. --background: transparent;
  73. --color: #666;
  74. --border-style: solid;
  75. --border-color: #ddd;
  76. --border-width: 1px;
  77. --box-shadow: none;
  78. &:hover {
  79. --background: #f8f9fa;
  80. }
  81. }
  82. }
  83. }
  84. }
  85. // 添加动画
  86. @keyframes slideIn {
  87. from {
  88. opacity: 0;
  89. transform: translateY(20px);
  90. }
  91. to {
  92. opacity: 1;
  93. transform: translateY(0);
  94. }
  95. }
  96. ion-card {
  97. animation: slideIn 0.3s ease-out;
  98. }