app.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**app.wxss**/
  2. @import "/pages/common.wxss";
  3. /* <!-- 导入文件 --> */
  4. @import "wxParse/wxParse.wxss";
  5. @import "static/style.wxss";
  6. @import "/assets/iconfont/iconfont.wxss";
  7. .container {
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: space-between;
  13. /* padding: 200rpx 0; */
  14. box-sizing: border-box;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. white-space: nowrap;
  18. }
  19. /*隐藏滚动条*/
  20. ::-webkit-scrollbar {
  21. width: 0;
  22. height: 0;
  23. color: transparent;
  24. }
  25. page {
  26. padding-bottom: 1rpx;
  27. }
  28. .icon-dizhi {
  29. color: #FFDC2F;
  30. }
  31. /* 客服按钮 */
  32. .custCare{
  33. position: fixed;
  34. bottom: 0;
  35. right: 0;
  36. width: 160rpx;
  37. height: 160rpx;
  38. background-color: transparent;
  39. z-index: 10000;
  40. }
  41. .custCare image{
  42. height: 100%;
  43. width: 100%;
  44. }
  45. /* 富文本组件样式 */
  46. rich-text{
  47. word-break: break-all;
  48. }
  49. .price {
  50. display: flex;
  51. flex-direction: row;
  52. margin-top: 15rpx;
  53. align-items: baseline;
  54. }
  55. .price .p2 {
  56. font-size: 36rpx;
  57. font-family: FZZhunYuan-M02S;
  58. font-weight: 400;
  59. color: #EC2E26;
  60. line-height: 45rpx;
  61. }
  62. .price .p1 {
  63. font-size: 22rpx;
  64. color: #EC2E26;
  65. line-height: 52rpx;
  66. }