123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .table-box {
- margin-top: 40px;
- padding-left: 20px;
- padding-right: 20px;
- margin-bottom: 40px
- }
- .table-box > div > p {
- padding-left: 5px;
- border-left: 2px solid #05afef;
- font-size: 16px;
- color: #333333;
- display: inline-block;
- }
- .table-box > div > div > p {
- padding-left: 5px;
- /* border-left: 2px solid #2b64ce; */
- font-size: 16px;
- color: #333333;
- display: inline-block;
- background: #05afef;
- color: #fff;
- padding-left: 6px;
- }
- .table-box > div > span {
- float: right;
- /* line-height: 25px; */
- cursor:pointer;
- color: #05afef;
- font-size: 14px;
- }
- .table-box > div > table {
- width: 100%;
- font-size: 14px;
- color: #333333;
- text-align: center;
- }
- .table-box > div > table tr td {
- height: 34px;
- border: 1px solid #bee3f1;
- min-width: 100px;
- word-break: break-word;
- }
- p {
- line-height: normal;
- }
- .oper-td span {
- cursor: pointer;
- }
- .oper-td span:hover {
- opacity: 0.9;
- }
- .table-box > div:first-child {
- margin-bottom: 20px;
- border-bottom: 1px solid #05afef;
- }
- table tr:first-child td {
- background: #e0f4fb;
- }
- table tr:nth-child(odd){background:#f3f3f3;}
- /* table td:nth-child(even){color:#C00;} */
|