12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @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;
- text-align: center;
- }
- .listbox .body table thead td{
- background: #5c9ad5;
- color: #fff;
- }
- .listbox li i{
- float: right;
- }
|