1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .main {
- position: relative;
- width: 100%;
- }
- .main .one {
- float: left;
- width: 100%;
- text-align: center;
- background-color: #fff;
- padding: 5px 0;
- margin: 0 0 10px 0;
- overflow-x: hidden;
- }
- .main .one button {
- font-size: 14px;
- background-color: #409eff;
- color: #fff;
- }
- .main .two {
- float: left;
- width: 95%;
- padding: 0 10px;
- overflow-x: hidden;
- margin: 10px 0 0 0;
- }
- .main .two .list {
- float: left;
- width: 95%;
- background-color: #fff;
- border-radius: 5px;
- padding: 10px;
- margin: 0 0 10px 0;
- }
- .main .two .list .name {
- float: left;
- width: 100%;
- font-size: 14px;
- font-weight: bold;
- margin: 0 0 5px 0;
- }
- .main .two .list .other {
- float: left;
- width: 100%;
- margin: 0 0 5px 0;
- }
- .main .two .list .other .otherInfo {
- float: left;
- width: 100%;
- font-size: 12px;
- margin: 0 0 5px 0;
- }
- .main .two .list .other .otherInfo text:nth-child(1) {
- color: #666;
- }
- .dialog_one {
- float: left;
- width: 100%;
- }
- .dialog_one .content {
- float: left;
- width: 100%;
- border-bottom: 1px solid #ccc;
- padding: 10px 0;
- font-size: 14px;
- }
- .dialog_one .content .label {
- float: left;
- width: 20%;
- }
- .dialog_one .content .value {
- float: left;
- width: 80%;
- text-align: right;
- }
- .dialog_one .btn {
- float: left;
- width: 100%;
- text-align: center;
- margin: 10px 0 0 0;
- }
- .dialog_one .btn button {
- font-size: 14px;
- }
|