123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .main {
- height: 88vh;
- }
- .main .one {
- width: 100%;
- }
- .main .two {
- flex-grow: 1;
- position: relative;
- width: 96vw;
- }
- .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 {
- display: flex;
- flex-direction: column;
- width: 96vw;
- padding: 10px;
- background-color: #ffffff;
- margin: 2px 0 0 0;
- }
- .main .two .scroll-view .list-scroll-view .list .name {
- font-size: 14px;
- font-weight: bold;
- margin: 0 0 5px 0;
- }
- .main .two .scroll-view .list-scroll-view .list .other {
- font-size: 12px;
- margin: 0 0 5px 0;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 {
- padding: 2px 0;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 text:nth-child(1) {
- color: #666;
- }
- .main .two .scroll-view .list-scroll-view .list .btn {
- text-align: center;
- }
- .main .two .scroll-view .list-scroll-view .list .btn button {
- color: #216EC7;
- }
- .dialog_one {
- margin: 10px 0 0 0;
- }
- .dialog_one .one_1 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- border: 1px solid #ccc;
- border-radius: 5px;
- margin: 0 0 10px 0;
- padding: 10px;
- }
- .dialog_one .one_1 .text {
- width: 20vw;
- color: #666;
- font-size: 14px;
- }
- .dialog_one .one_1 .text1 {
- font-size: 14px;
- color: #000;
- }
- .dialog_one .one_1 .image {
- width: 15vw;
- height: 15vw;
- }
|