123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- .main {
- height: 88.8vh;
- }
- .main .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .main .zero:last-child {
- margin: 0;
- }
- .main .one {
- display: flex;
- flex-direction: column;
- }
- .main .one .one_1 {
- width: 92vw;
- padding: 2vw;
- margin: 0 0 1vw 0;
- background-color: #f1f1f1;
- }
- .main .one .one_2 {
- text-align: center;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- width: 96vw;
- }
- .main .one .one_2 button {
- width: 100%;
- margin: 0 2vw;
- font-size: 14px;
- }
- .main .two {
- flex-grow: 1;
- position: relative;
- }
- .main .two .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .main .two .scroll-view .list-scroll-view {
- display: flex;
- flex-wrap: wrap;
- align-content: flex-start;
- justify-content: space-between;
- }
- .main .two .scroll-view .list-scroll-view .list {
- background-color: #ffffff;
- border-bottom: 1px solid #cccccc;
- width: 96vw;
- padding: 2vw;
- }
- .main .two .scroll-view .list-scroll-view .list .name {
- font-size: 18px;
- margin: 0 0 1vw 0;
- font-weight: bold;
- }
- .main .two .scroll-view .list-scroll-view .list .name text {
- color: #ff0000;
- font-size: 20px;
- padding: 0 2vw;
- }
- .main .two .scroll-view .list-scroll-view .list .other {
- margin: 0 0 1vw 0;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 {
- margin: 0 0 1vw 0;
- font-size: 15px;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 text {
- color: #000000;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 text:nth-child(1) {
- color: #858585;
- }
- .main .two .scroll-view .list-scroll-view .list .btn {
- text-align: center;
- }
- .main .two .scroll-view .list-scroll-view .list .btn button {
- margin: 0 2vw;
- font-size: 14px;
- }
- .main .two .scroll-view .list-scroll-view .list:last-child {
- border-bottom: none;
- }
- .dialog_one {
- width: 80vw;
- }
- .dialog_one .content {
- background-color: #ffffff;
- border-bottom: 1px solid #cccccc;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 2vw;
- width: 76vw;
- }
- .dialog_one .content .label {
- width: 25vw;
- text-align: left;
- font-size: 14px;
- }
- .dialog_one .content .value {
- width: 65vw;
- text-align: right;
- font-size: 14px;
- }
- .dialog_one .content .value textarea {
- width: 65vw;
- }
- .dialog_one .btn {
- margin: 2vw 0 0 0;
- text-align: center;
- }
|