12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /**app.wxss**/
-
- .container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
-
- .text-center {
- text-align: center;
- }
-
- .fl{
- float: left;
- }
- .fr{
- float: right;
- }
- .not-data {
- text-align: center;
- padding-top: 70rpx;
- }
- .not-data .not-data-img{
- width: 295rpx;
- height: 240rpx;
- }
- .not-data .not-info{
- color: #b3bfcb;
- }
-
-
- /* 通用page容器 */
- .page-container{
- background: #f5f9ff;
- padding: 20rpx;
- min-height: calc(100vh - 130rpx);
- padding-bottom: 120rpx;
- font-size: 26rpx;
- }
-
- /* 通用渐变感兴趣的 */
- .view-interested{
- background: #c9d6ff; /* fallback for old browsers */
- background: -webkit-linear-gradient(to right, #c9d6ff, #f4f9ff); /* Chrome 10-25, Safari 5.1-6 */
- background: linear-gradient(to right, #c9d6ff, #f4f9ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
- font-size: 24rpx;
- height: 52rpx;
- line-height: 52rpx;
- color: #5e73e5;
- box-sizing: border-box;
- padding-left: 28rpx;
- border-radius: 15rpx 0 0 0;
- }
-
- /* 通用list */
- /* list块 */
- .list-view {
- background: #fff;
- /* height: 315rpx; */
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- padding: 28rpx 18rpx;
- position: relative;
- }
-
- .list-loading {
- margin-top: 15vh;
- }
- .list-finished{
- color: #8c97c0;
- }
- .list-finished .finished-img{
- width: 25rpx;
- height: 25rpx;
- margin-right: 10rpx;
- position: relative;
- top: 1rpx;
- }
|