components.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .ptc-button {
  2. width: 598px;
  3. height: 92px;
  4. background: $primary-color;
  5. border-radius: 8px;
  6. font-size: 32px;
  7. font-weight: 600;
  8. color: #fff;
  9. &:active {
  10. background: $primary-color-lighten;
  11. }
  12. &--stroke {
  13. background: none;
  14. border: 2Px solid $primary-color;
  15. color: $primary-color;
  16. }
  17. }
  18. .ptc-text {
  19. color: $primary-color;
  20. }
  21. .ptc-form {
  22. &-item {
  23. margin-top: 36px;
  24. }
  25. }
  26. .ptc-input {
  27. display: block;
  28. padding-left: 28px;
  29. width: 100%;
  30. height: 100px;
  31. border-radius: 8px;
  32. border: 2px solid #d9d9d9;
  33. font-size: 32px;
  34. color: #333;
  35. }
  36. .ptc-title {
  37. padding: 36px 24px;
  38. line-height: 56px;
  39. font-size: 40px;
  40. font-weight: 600;
  41. color: #333;
  42. }
  43. .ptc-block {
  44. margin-bottom: 24px;
  45. padding: 48px 36px;
  46. background: #fff;
  47. }
  48. .ptc-label {
  49. margin-bottom: 48px;
  50. line-height: 44px;
  51. font-size: 32px;
  52. color: #999;
  53. }
  54. .ptc-tag {
  55. display: inline-block;
  56. margin-left: 32px;
  57. padding: 0 24px;
  58. line-height: 52px;
  59. font-size: 28px;
  60. font-weight: 600;
  61. color: #fff;
  62. background: $danger-color;
  63. border-radius: 30px 4px 30px 4px;
  64. }