12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* pages/myModule/components/myCollect/myAttention.wxss */
- .my-attention-page{
- min-height: calc(100vh - 140rpx);
- }
-
- .attention-view {
- background: #fff;
- padding: 30rpx;
- border-radius: 20rpx;
- box-shadow: -1px 3px 12px 4px
- rgba(186, 186, 186, 0.1);
- }
-
- .attention-view .attention-title-view{
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 5rpx;
- }
- .attention-view .attention-title-view .sub-title{
- font-size: 22rpx;
- font-weight: normal;
- color: #999;
- }
-
- .attention-view .attention-info{
- font-size: 22rpx;
- color: #556fb5;
- margin-bottom: 30rpx;
- }
-
- /* .attention-view .attention-type{
- padding-bottom: 10rpx;
- } */
- .types-box{
- box-sizing: border-box;
- padding: 0 10rpx;
- }
- .attention-view .attention-type .item-type{
- text-align: center;
- box-sizing: border-box;
- height: 59rpx;
- line-height: 59rpx;
- border: 1px solid #556fb5;
- border-radius: 34rpx;
- color: #556fb5;
- font-size: 26rpx;
- margin-bottom: 20rpx;
- font-family: SourceHanSansCN-Normal;
- }
- .attention-view .attention-type .item-type.isActive{
- color: #fff;
- border: 0;
- background: #5e73e5;
- }
-
- .submit-btn{
- margin-top: 60rpx;
- box-sizing: border-box;
- padding: 0 40rpx;
- }
|