12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* parents/pages/library/library.wxss */
- @import '../../../templates/loading/loading.wxss';
- @import '../../../templates/nodata/nodata.wxss';
- .section-label {
- padding: 24rpx 30rpx;
- }
- .section-icon {
- width: 34rpx;
- height: 34rpx;
- }
- .section-icon-two {
- width: 28rpx;
- height: 34rpx;
- }
- .section-text {
- font-size: 30rpx;
- color: #999;
- margin-left: 16rpx;
- }
- .section-list {
- padding-left: 30rpx;
- background: #fff;
- }
- .section-li {
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: solid 1rpx #e6e6e6;
- }
- .section-li:nth-last-of-type(1) {
- border-bottom: solid 1rpx transparent;
- }
- .section-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .section-col {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .section-flex {
- flex: 1;
- }
- .section-title {
- font-size: 30rpx;
- color: #333;
- }
- .section-text {
- font-size: 24rpx;
- color: #999;
- }
- .section-context {
- font-size: 24rpx;
- color: #999;
- margin-top: 20rpx;
- }
- .section-button {
- background: rgba(255,255,255,1);
- border-radius: 40rpx;
- border: 1rpx solid rgba(0,183,255,1);
- font-size: 28rpx;
- color: rgba(0,183,255,1);
- padding: 16rpx 20rpx;
- margin-left: 20rpx;
- }
- .header {
- /* background: #FAFAFA; */
- padding: 24rpx 40rpx;
- }
- page{
- background: #fff
- }
- .search-cancel{
- color: #00B7FF;
- font-size: 30rpx;
- margin: auto;
- }
- .list-items-title{
- padding: 24rpx 30rpx;
- }
|