app.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 200rpx 0;
  9. box-sizing: border-box;
  10. }
  11. .commonVview{
  12. display: flex;flex-direction: column;
  13. }
  14. .commonHview{
  15. display: flex;flex-direction: row;background-color: #FFFFFF;
  16. }
  17. .commonhline{
  18. background-color: #F2F2F2;height: 10rpx;width: 100%;
  19. }
  20. .comStyleColor{
  21. background-color: #e5973a;
  22. }
  23. .comGriView{
  24. display: flex;
  25. flex-direction: row;
  26. flex-wrap: wrap;
  27. }
  28. .comBtn{
  29. width: 40%;
  30. background-color: #FFFFFF ;
  31. color: #3C85EC;
  32. height: 80rpx;
  33. line-height: 80rpx;
  34. margin:50rpx auto;
  35. font-size: 30rpx;border: 1rpx solid #3C85EC;border-radius: 40rpx;
  36. }
  37. /* start 无数据时 样式 */
  38. .nodata_style{
  39. width:200rpx;
  40. height:200rpx;
  41. text-align:center;
  42. }
  43. .nodata_view{
  44. position: fixed;
  45. flex-direction: column;
  46. text-align:center;
  47. top:40%;left: 37%;
  48. }
  49. /* edn 无数据时 样式 */
  50. .commonclick-btn{
  51. background-color: #F5F5F5;
  52. }
  53. /* 公共单行末尾省略样式 */
  54. .com_omit{
  55. overflow:hidden; text-overflow:ellipsis;white-space:nowrap;
  56. }