1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- @charset "UTF-8";
- /* reset背景颜色 */
- body{
- background: #F0F1F7;
- overflow: auto;
- }
- /* 列表 */
- .listbox{
- margin-top: 50px;
- overflow: auto;
- }
- .listbox li{
- background: #fff;
- border-bottom: 1px #ebebeb solid;
- overflow: auto;
- }
- .listbox .title{
- padding: 15px;
- }
- .listbox .body{
- height: auto !important;
- padding: 0 15px 15px;
- background: #fff;
- display: none;
- }
- .listbox .body p{
- text-indent:20px;
- word-wrap: break-word;
- word-break: normal;
- text-align: justify;
- font-size: .9rem;
- line-height: 2rem;
- }
- .listbox .body table{
- border-collapse: collapse;
- }
- .listbox .body table td{
- border: 1px #424242 solid;
- padding: 10px;
- }
- .listbox .body table td:nth-child(odd){
- background: #aae2e1;
- }
- .listbox .body table td:nth-child(even){
- line-height: 1.5rem;
- }
- .listbox li i{
- float: right;
- }
|