U_BS_L.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* login */
  2. .U_BS_L {
  3. display: flex;
  4. height: 100%;
  5. justify-content: center;
  6. align-items: center;
  7. background: url(../images/backgroundBanner.jpg) no-repeat top/cover padding-box border-box;
  8. background-size: cover;
  9. }
  10. .U_BS_L_H_Form {
  11. padding: 75px;
  12. /* box-shadow: #dbdbdb 2px 0 37px 2px; */
  13. background: #fff;
  14. border: 1px solid #e7e7e7;
  15. border-radius: 20px;
  16. text-align: center;
  17. }
  18. .U_BS_L_H_Form h4 {
  19. margin-bottom: 70px;
  20. font-size: 22px;
  21. font-weight: normal;
  22. font-stretch: normal;
  23. color: #828283;
  24. }
  25. .form-control {
  26. display: block;
  27. width: 275px;
  28. height: 35px;
  29. padding: 6px 12px;
  30. font-size: 14px;
  31. line-height: 1.42857143;
  32. color: #b7b7b7;
  33. background-color: #fff;
  34. border: solid 1px rgba(77, 77, 77, 0.2);
  35. border-radius: 15px;
  36. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  37. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  38. -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  39. -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  40. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  41. }
  42. .form-control::-webkit-input-placeholder {
  43. color: #b7b7b7;
  44. }
  45. .form-control:-moz-placeholder {
  46. color: #b7b7b7;
  47. }
  48. .form-control::-moz-placeholder {
  49. color: #b7b7b7;
  50. }
  51. .form-control:-ms-input-placeholder {
  52. color: #b7b7b7;
  53. }
  54. .U_BS_L_Info {
  55. display: block;
  56. height: 20px;
  57. padding: 10px 3px;
  58. color: #e4393c;
  59. font-size: 14px;
  60. text-align: left;
  61. }
  62. .U_BS_L_Submit {
  63. width: 100%;
  64. height: 49px;
  65. border-radius: 20px;
  66. border: 0;
  67. background: #5ea7fd;
  68. color: #fff;
  69. outline:none;
  70. }
  71. /* login end */