12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- page{
- width: 100%;
- height: 100%;
- }
- .float-left{
- float: left;
- }
- .float-right{
- float: right;
- }
- image{
- width: 100%;
- height: 100%;
- }
- /* 页面 */
- .container{
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- }
- .list{
- width: 100%;
- padding: 5rpx 20rpx;
- font-size: 28rpx;
- text-align: left;
- background-color: #ffffff;
- display: flex;
- overflow: hidden;
- }
- .list-item{
- padding: 10rpx 10rpx;
- }
- .icon{
- flex: 1;
- height: 60rpx;
- justify-content: center;
- }
- .icon image{
- width: 35rpx;
- height: 35rpx;
- }
- .title{
- flex: 5;
- font-size: 29rpx;
- font-weight: 540;
- height: 60rpx;
- justify-content: center;
- }
- .content{
- flex: 15;
- word-break: break-all;
- }
- .real-pic{
- margin: 20rpx 0rpx 20rpx 20rpx;
- width: 150rpx;
- height: 150rpx;
- }
|