app.wxss 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. }
  13. [contenteditable="true"], input, textarea {
  14. -webkit-user-select: auto!important;
  15. -khtml-user-select: auto!important;
  16. -moz-user-select: auto!important;
  17. -ms-user-select: auto!important;
  18. -o-user-select: auto!important;
  19. user-select: auto!important;
  20. }
  21. /* 清除浮动 */
  22. .clearfix::after {
  23. content: '';
  24. display: block;
  25. clear: both;
  26. height:0;
  27. visibility: hidden;
  28. }
  29. /* /清除浮动 */
  30. /* 价格数字显示不同大小 */
  31. .symbol {
  32. font-size: 24rpx;
  33. }
  34. .big-num {
  35. font-size: 32rpx;
  36. }
  37. .small-num {
  38. font-size: 24rpx;
  39. }
  40. /* 底部弹出层的上、右圆角 */
  41. .border-radius-t-r{
  42. border-radius: 26rpx 26rpx 0 0;
  43. }
  44. /* 页面各栏目圆角 */
  45. .border-radius-box{
  46. border-radius: 20rpx;
  47. }