subscribe.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .zskk-subscribe {
  2. height: calc(100vh - 367px);
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. }
  7. .zskk-subscribe .zskk-label {
  8. height: 120px;
  9. width: 760px;
  10. display: flex;
  11. align-items: center;
  12. font-size: 30px;
  13. color: #8c362e;
  14. font-weight: 600;
  15. }
  16. .zskk-subscribe .zskk-content {
  17. width: 760px;
  18. background: #ffffff;
  19. padding: 20px 40px 30px;
  20. box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  21. border-radius: 3px;
  22. box-sizing: border-box;
  23. }
  24. .zskk-subscribe .zskk-content form {
  25. height: 100%;
  26. width: 100%;
  27. }
  28. .zskk-subscribe .zskk-content form section {
  29. height: 50px;
  30. display: flex;
  31. align-items: center;
  32. }
  33. .zskk-subscribe .zskk-content form section .zskk-label {
  34. width: 80px;
  35. display: flex;
  36. font-size: 14px;
  37. color: #213644;
  38. justify-content: flex-end;
  39. align-items: center;
  40. }
  41. .zskk-subscribe .zskk-content form section .zskk-value {
  42. margin-left: 25px;
  43. flex: 1;
  44. display: flex;
  45. align-items: center;
  46. font-size: 14px;
  47. color: #213644;
  48. }
  49. .zskk-subscribe .zskk-content form section .zskk-value select,
  50. .zskk-subscribe .zskk-content form section .zskk-value input {
  51. margin: 0;
  52. padding: 0;
  53. box-sizing: border-box;
  54. height: 32px;
  55. width: 100%;
  56. border: 1px solid #f3f3f3;
  57. padding: 0 12px;
  58. color: #8d8596;
  59. }
  60. .zskk-subscribe .zskk-content form section .zskk-value input:disabled {
  61. background-color: #f3f7fa;
  62. }
  63. .zskk-subscribe .zskk-content form section .zskk-value label {
  64. display: flex;
  65. align-items: center;
  66. }
  67. .zskk-subscribe .zskk-content form section .zskk-value label input {
  68. width: 25px;
  69. height: 13px;
  70. }
  71. .zskk-subscribe .zskk-content form .zskk-submit {
  72. margin-left: 105px;
  73. color: #fff;
  74. background: #7a4928;
  75. border: #7a4928;
  76. padding: 8px 12px;
  77. cursor: pointer;
  78. }