123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- #app {
- width: 100%;
- height: 100%;
- }
- /* 步骤一页面 */
- .step-1 {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- margin-top: 10px;
- overflow-y: scroll;
- }
- .node-and-text {
- width: 95%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- margin-left: 10px;
- }
- .title-and-operate-buttons {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .title-and-alias {
- width: 40%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .alias-input-close {
- width: 80px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .operate-buttons {
- display: flex;
- flex-direction: row;
- justify-content: center;
- position: relative;
- top: 15px;
- }
- .step-1-buttons {
- width: 95%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-left: 10px;
- margin-bottom: 15px;
- }
- .last-guide {
- cursor: pointer;
- position: relative;
- top: 5px;
- }
- .touch-and-key {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .key-input-btn {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .touch-node-btn {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- /* 步骤二页面 */
- .step-2 {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- margin-top: 10px;
- overflow-y: scroll;
- }
- .section-list {
- width: 95%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- margin-left: 10px;
- }
- .section {
- display: flex;
- flex-flow: row wrap;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- }
- .img-checkbox {
- width: 50%;
- height: 90px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- margin-top: 20px;
- margin-bottom: 20px;
- }
- .text-pos-checkbox-list {
- margin-top: 15px;
- }
- .step-2-buttons {
- width: 95%;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- margin-top: 15px;
- margin-left: 10px;
- margin-bottom: 20px;
- }
- .textarea-btn {
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- position: relative;
- right: 1%;
- bottom: 24%;
- margin-top: -35px;
- }
|