app.wxss 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. box-sizing: border-box;
  5. color: #333;
  6. font-family: helvetica,'Heiti SC',PingFangSC-Light;
  7. }
  8. .price{
  9. font-family: Arial;
  10. display: inline-block;
  11. color: #e43130;
  12. color: #FF4D3A;
  13. }
  14. [contenteditable="true"], input, textarea {
  15. -webkit-user-select: auto!important;
  16. -khtml-user-select: auto!important;
  17. -moz-user-select: auto!important;
  18. -ms-user-select: auto!important;
  19. -o-user-select: auto!important;
  20. user-select: auto!important;
  21. }
  22. /* 清除浮动 */
  23. .clearfix::after {
  24. content: '';
  25. display: block;
  26. clear: both;
  27. height:0;
  28. visibility: hidden;
  29. }
  30. /* /清除浮动 */
  31. /* 价格数字显示不同大小 */
  32. .symbol {
  33. font-size: 24rpx;
  34. }
  35. .big-num {
  36. font-size: 32rpx;
  37. }
  38. .small-num {
  39. font-size: 24rpx;
  40. }
  41. /* 底部弹出层的上、右圆角 */
  42. .border-radius-t-r{
  43. border-radius: 26rpx 26rpx 0 0;
  44. }
  45. /* 页面各栏目圆角 */
  46. .border-radius-box{
  47. border-radius: 20rpx;
  48. }