contribution.wxss 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background-color: #f8f8f8;
  13. }
  14. .content .box .box-item {
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: flex;
  18. -webkit-box-align: center;
  19. -webkit-align-items: center;
  20. align-items: center;
  21. border-bottom: 1rpx solid #f2f2f2;
  22. }
  23. .content .buttom {
  24. width: 660rpx;
  25. height: 100rpx;
  26. background: -webkit-gradient(linear, left bottom, left top, from(#C90F1B), to(#F14D33));
  27. background: -webkit-linear-gradient(bottom, #C90F1B, #F14D33);
  28. background: linear-gradient(0deg, #C90F1B, #F14D33);
  29. -webkit-border-radius: 50rpx;
  30. border-radius: 50rpx;
  31. margin: 50rpx auto;
  32. font-size: 36rpx;
  33. font-weight: 400;
  34. color: #FFFFFF;
  35. line-height: 100rpx;
  36. text-align: center;
  37. }
  38. .content .buttom.action {
  39. background: #999999;
  40. }