业务交流通
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

myAttention.wxss 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/myModule/components/myCollect/myAttention.wxss */
  2. .my-attention-page{
  3. min-height: calc(100vh - 140rpx);
  4. }
  5. .attention-view {
  6. background: #fff;
  7. padding: 30rpx;
  8. border-radius: 20rpx;
  9. box-shadow: -1px 3px 12px 4px
  10. rgba(186, 186, 186, 0.1);
  11. }
  12. .attention-view .attention-title-view{
  13. font-size: 30rpx;
  14. font-weight: bold;
  15. color: #333;
  16. margin-bottom: 5rpx;
  17. }
  18. .attention-view .attention-title-view .sub-title{
  19. font-size: 22rpx;
  20. font-weight: normal;
  21. color: #999;
  22. }
  23. .attention-view .attention-info{
  24. font-size: 22rpx;
  25. color: #556fb5;
  26. margin-bottom: 30rpx;
  27. }
  28. /* .attention-view .attention-type{
  29. padding-bottom: 10rpx;
  30. } */
  31. .types-box{
  32. box-sizing: border-box;
  33. padding: 0 10rpx;
  34. }
  35. .attention-view .attention-type .item-type{
  36. text-align: center;
  37. box-sizing: border-box;
  38. height: 59rpx;
  39. line-height: 59rpx;
  40. border: 1px solid #556fb5;
  41. border-radius: 34rpx;
  42. color: #556fb5;
  43. font-size: 26rpx;
  44. margin-bottom: 20rpx;
  45. font-family: SourceHanSansCN-Normal;
  46. }
  47. .attention-view .attention-type .item-type.isActive{
  48. color: #fff;
  49. border: 0;
  50. background: #5e73e5;
  51. }
  52. .submit-btn{
  53. margin-top: 60rpx;
  54. box-sizing: border-box;
  55. padding: 0 40rpx;
  56. }