index.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .phone-pwd-dialog .el-dialog__header {
  2. padding-top: 47px;
  3. }
  4. .phone-pwd-dialog .el-dialog__title {
  5. font-size: 20px;
  6. color: #282828;
  7. }
  8. .phone-pwd-dialog .el-dialog__body {
  9. padding: 17px 56px 59px;
  10. }
  11. .phone-pwd-dialog .el-form-item {
  12. margin-bottom: 20px;
  13. }
  14. .phone-pwd-dialog .el-form-item:last-child {
  15. margin-top: 40px;
  16. }
  17. .phone-pwd-dialog .el-input__inner {
  18. height: 50px;
  19. border-radius: 25px;
  20. font-size: 14px;
  21. line-height: 50px;
  22. }
  23. .phone-pwd-dialog .el-form-item:nth-child(2) .el-input__inner {
  24. border-top-right-radius: 0;
  25. border-bottom-right-radius: 0;
  26. }
  27. .phone-pwd-dialog .el-input-group__append {
  28. border-top-right-radius: 25px;
  29. border-bottom-right-radius: 25px;
  30. background-color: #fff;
  31. }
  32. .phone-pwd-dialog .el-input-group__append .el-button {
  33. width: 112px;
  34. padding: 17px 0;
  35. border-top-right-radius: 24px;
  36. border-bottom-right-radius: 24px;
  37. color: #191C6E;
  38. }
  39. .phone-pwd-dialog .el-button.is-disabled, .phone-pwd-dialog .el-button.is-disabled:focus, .phone-pwd-dialog .el-button.is-disabled:hover {
  40. color: #ccc;
  41. }
  42. .phone-pwd-dialog .el-form-item:last-child .el-button {
  43. width: 100%;
  44. padding-top: 17px;
  45. padding-bottom: 17px;
  46. border-color: #409dff;
  47. border-radius: 25px;
  48. background: -webkit-gradient(linear, left top, right top, from(#409dff), to(#1e85fb));
  49. background: -webkit-linear-gradient(left, #409dff 0%, #1e85fb 100%);
  50. background: -moz-linear-gradient(left, #409dff 0%, #1e85fb 100%);
  51. background: -o-linear-gradient(left, #409dff 0%, #1e85fb 100%);
  52. background: linear-gradient(90deg, #409dff 0%, #1e85fb 100%);
  53. color: #fff;
  54. }