account-info.component.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .all {
  2. position : absolute;
  3. transform : translate(-50%, -50%);
  4. top : 50%;
  5. left : 50%;
  6. padding : 10px 50px;
  7. text-align : center;
  8. width : 944px;
  9. min-height : 518px;
  10. margin : 0 auto;
  11. background : #fff;
  12. border-radius: 8px;
  13. overflow : hidden;
  14. }
  15. .region {
  16. width: 600px;
  17. margin: 20px auto 10px;
  18. .nav {
  19. text-align: left;
  20. margin: 10px 0 20px;
  21. font-family: PingFang SC;
  22. font-size: 24px;
  23. font-weight: 600;
  24. line-height: 33.6px;
  25. .tips {
  26. font-family: PingFang SC;
  27. font-size: 14px;
  28. font-weight: 400;
  29. line-height: 19.6px;
  30. text-align: left;
  31. color: #545968;
  32. }
  33. }
  34. .account-form {
  35. // height: 320px;
  36. overflow-y: scroll;
  37. // scrollbar-width: none; /* firefox */
  38. // -ms-overflow-style: none; /* IE 10+ */
  39. overflow-x: hidden;
  40. }
  41. .account-form::-webkit-scrollbar {
  42. // display: none; /* Chrome Safari */
  43. width: 4px;
  44. height: 16px;
  45. }
  46. .account-form::-webkit-scrollbar-thumb {
  47. border-radius: 10px;
  48. -webkit-box-shadow: inset 0 0 5px #b62749;
  49. background: #b62749;
  50. }
  51. .account-form::-webkit-scrollbar-track { //滚动条里面轨道
  52. -webkit-box-shadow: inset 0 0 5px #ffffff00;
  53. border-radius: 10px;
  54. background: #ffffff00;
  55. }
  56. nz-form-item {
  57. // display: flex;
  58. // flex-direction: column;
  59. // justify-content: space-between;
  60. // align-items: self-start;
  61. margin-bottom: 10px;
  62. width: calc(100% - 6px);
  63. }
  64. }
  65. .label{
  66. text-align: start;
  67. }
  68. .ant-input-group{
  69. text-align: left;
  70. }
  71. input:-webkit-autofill,
  72. input:-webkit-autofill:hover,
  73. input:-webkit-autofill:focus,
  74. input:-webkit-autofill:active {
  75. -webkit-transition-delay: 99999s;
  76. -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
  77. }
  78. .form-button {
  79. width: 100%;
  80. height: 46px;
  81. margin: 10px 0;
  82. background-color: #c6233f;
  83. color: white !important;
  84. border-radius: 4px;
  85. }
  86. .loading{
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. width: 100vw;
  91. text-align: center;
  92. height: 100vh;
  93. display: flex;
  94. align-items: center;
  95. justify-content: center;
  96. background: rgb(0 0 0 / 30%);
  97. }
  98. ::ng-deep .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  99. color: #c6233f;
  100. }
  101. ::ng-deep .ant-tabs-ink-bar {
  102. background: #c6233f;
  103. }
  104. ::ng-deep .ant-tabs-tab:hover {
  105. color: #e97488;
  106. }
  107. ::ng-deep .ant-tabs-tab-btn:active {
  108. color: #e97488;
  109. }
  110. // ::ng-deep .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover{
  111. // border-color: #c6233f;
  112. // }
  113. ::ng-deep .ant-checkbox-checked .ant-checkbox-inner {
  114. background-color: #c6233f;
  115. border-color: #c6233f;
  116. }
  117. ::ng-deep .ant-checkbox-wrapper:hover .ant-checkbox-inner {
  118. border-color: #c6233f;
  119. }