| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .UserSettingShow {
- width: 1000px !important;
- min-height: 790px;
- background: rgba(255, 255, 255, 1);
- .titleArea {
- width: calc(100% - 40px);
- height: 90px;
- margin: 0 20px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: 2px solid rgba(0, 0, 0, 0.06);
- p {
- font-size: 26px;
- font-weight: 500;
- color: rgba(29, 42, 58, 1);
- line-height: 37px;
- height: 37px;
- }
- }
- .bodyArea {
- width: 1000px;
- margin: 0 auto;
- .selectList {
- padding-top: 60px;
- .cell {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 62px;
- .left {
- width: 420px;
- text-align: right;
- }
- .right {
- padding-left: 8px;
- width: 580px;
- .el-radio {
- line-height: 1.41;
- }
- .tips {
- margin-left: 30px;
- height:17px;
- font-size:12px;
- font-weight:400;
- color:rgba(153,153,153,1);
- line-height:17px;
- }
- }
- }
- }
- .submitButton {
- margin-top: 50px;
- display: flex;
- align-items: center;
- height: 55px;
- justify-content: center;
- .right {
- margin-left: 17px;
- width: 153px;
- height: 46px;
- background: rgba(48, 142, 255, 1);
- box-shadow: 0px 2px 6px 0px rgba(48, 142, 255, 0.3);
- border-radius: 2px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- p {
- height: 20px;
- font-size: 14px;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- line-height: 20px;
- }
- }
- }
- }
- }
|