| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .container {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- .topView {
- position: sticky;
- top: 0;
- z-index: 999;
- width: 100%;
- }
- .remark-info, .credentials-info, .step-info {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-content: center;
- align-items: center;
- margin-bottom: 20px;
- width: 95%;
- text:nth-child(1) {
- width: 80px;
- color: #333;
- font-size: 14px;
- }
- text:nth-child(2) {
- width: 100%;
- color: #333;
- font-size: 14px;
- margin-left: 15px;
- }
- textarea {
- border: 1px solid #f0f0f0;
- border-radius: 10px;
- color: #333;
- padding: 10px;
- margin-right: 5px;
- font-size: 14px;
- }
- .credentials-top-view {
- display: flex;
- flex-direction: column;
- width: 80%;
- height: 160px;
- border-radius: 10px;
- .value {
- width: 100%;
- height: 30px;
- color: #888;
- }
- .upload {
- padding-top: 10px 0px 0px 0px;
- display: flex;
- justify-content: left;
- align-items: center;
- }
- }
- }
- .step-info {
- margin: 20px 0px;
- }
- .button-view {
- border-radius: 10px;
- width: 95%;
- padding-top: 15px;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- }
- van-button {
- width: 100%;
- }
- }
|