12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- background: #FFFFFF;
- width: 100%;
- height: 100%;
- }
- page .content {
- height: 100%;
- }
- .top-image {
- width: 100%;
- height: 300rpx;
- }
- .list-box {
- padding: 25rpx 25rpx;
- }
- .list-item {
- padding-bottom: 15rpx;
- }
- .list-item .list-title {
- font-size: 34rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- }
- .list-item .list-title image {
- width: 56rpx;
- height: 44rpx;
- margin-right: 15rpx;
- }
- .list-item .list-tpl {
- margin: 25rpx 0rpx;
- padding: 25rpx 25rpx;
- background-color: #FEF6F7;
- border: 4rpx solid #C53335;
- color: #222222;
- font-size: 28rpx;
- border-radius: 25rpx;
- }
|