12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .main {
- position: relative;
- width: 100%;
- .one {
- position: relative;
- width: 100%;
- text-align: center;
- border-bottom: 1px dashed #000000;
- }
- .one button {
- margin: 10px;
- }
- .two {
- position: relative;
- padding: 10px;
- .list {
- float: left;
- width: 100%;
- margin: 0 0 8px 0;
- background-color: #f9f9f9;
- border-radius: 5px;
- padding: 8px 0;
- .name {
- font-size: 16px;
- margin: 0 0 5px 0;
- padding: 0 10px;
- }
- .other {
- .otherInfo {
- margin: 0 0 5px 0;
- font-size: 14px;
- color: #666666;
- padding: 0 10px;
- }
- .otherInfo text {
- color: #000000;
- }
- }
- .btn {
- text-align: center;
- }
- .btn button {
- margin: 0 5px;
- }
- }
- }
- }
- .dialog {
- min-height: 30px;
- max-height: 320px;
- overflow-y: auto;
- padding: 0 8px;
- .content {
- position: relative;
- padding: 8px 0;
- border-radius: 6px;
- margin: 0 0 5px 0;
- background-color: #f1f1f1;
- .left {
- float: left;
- margin: 0 10px;
- }
- .left text {
- font-size: 14px;
- color: #666666;
- }
- .right input {
- font-size: 12px;
- }
- }
- }
|