12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- height: 100%;
- }
- .container {
- height: 100%;
- background-color: #f8f8f8;
- padding: 15rpx 0rpx;
- font-size: 28rpx;
- }
- .favorites {
- width: 90%;
- background-color: #ffffff;
- border-radius: 15rpx;
- margin: 15rpx auto;
- padding: 25rpx 25rpx;
- margin-bottom: 25rpx;
- }
- .favorites_img {
- width: 80px !important;
- height: 80px;
- }
- .favorites_img image {
- width: 100%;
- height: 100%;
- }
- .favorites_list {
- width: 70%;
- padding-left: 20rpx;
- }
- .icon_del {
- color: #606266;
- z-index: 9999;
- font-weight: bold;
- }
- .favorites_name {
- height: 80rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertial;
- -webkit-line-clamp: 2;
- }
- .favorites_peice {
- margin-top: 25rpx;
- color: #db1935;
- font-weight: bold;
- }
|