mysuggest.wxss 659 B

1234567891011121314151617181920212223242526272829
  1. /* pages/mysuggest/mysuggest.wxss */
  2. .content{
  3. background-color:#F9F9F9;
  4. }
  5. .mysuggest_area{
  6. display: block;
  7. padding: 30rpx 38rpx;
  8. height: 220rpx;
  9. width:674rpx;
  10. line-height: 36rpx;
  11. color: black;
  12. font-size: 24rpx;
  13. text-align: left;
  14. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  15. background-color: white;
  16. border:1rpx solid rgba(235, 235, 235, 1);
  17. }
  18. .mysuggest_bt{
  19. margin:40rpx auto 0rpx;
  20. width: 620rpx;
  21. height: 68rpx;
  22. line-height: 68rpx;
  23. border-radius: 6rpx;
  24. background: linear-gradient(270deg,#FFD800,#FFE600);
  25. color: rgba(56, 55, 53, 1);
  26. font-size: 26rpx;
  27. text-align: center;
  28. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  29. }