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