123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*一般公用样式*/
- #condition ul{
- list-style: none;
- margin: 0;
- padding: 0;
- }
- #condition li{
- text-align: center;
- color: #4b5162;
- padding: 1vh 0;
- }
- p {
- margin: 0;
- padding: 0;
- }
- /*筛选条件远离边界*/
- #condition{
- width: 96%;
- margin: 0 auto;
- }
- /*题头的字体颜色*/
- .heading{
- color: #4b5162;
- }
- /*表格公用样式*/
- table {
- /*设置相邻单元格的边框间的距离*/
- border-spacing: 0;
- /*表格设置合并边框模型*/
- border-collapse: collapse;
- /*margin: 0 auto;*/
- display: table;
- width: 100%;
- border: 1px solid #d9e1ec;
- box-sizing: border-box;
- table-layout: fixed;
- }
- tr, td{
- border: 1px solid #d9e1ec;
- text-align: center;
- }
- td {
- padding: 1vh 0;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- box-sizing: border-box;
- }
- ::-webkit-scrollbar {
- width: 0;
- }
- #content {
- display: block;
- overflow: scroll;
- table-layout: fixed;
- -webkit-overflow-scrolling: touch;
- }
- #content table, #content tr:first-child, #content tr:first-child td {
- border-top: 0;
- }
- /*优化表格样式*/
- #table td{
- color: #3d4f5e;
- background: linear-gradient(#f8fcff,#def2ff);
- border-color: #d9e1ec;
- }
- #content td{
- color: #4b5162;
- border-color: #d9e1ec;
- }
- #content tr:nth-child(odd){
- background: #fff;
- }
- #content tr:nth-child(even){
- background: #f7fbff;
- }
- /*跳转界面*/
- input[type=button], input[type=submit], input[type=file], button {
- cursor: pointer;
- -webkit-appearance: none;
- }
|