123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**app.wxss**/
- @import "/pages/common.wxss";
- /* <!-- 导入文件 --> */
- @import "wxParse/wxParse.wxss";
- @import "static/style.wxss";
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- /* padding: 200rpx 0; */
- box-sizing: border-box;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- /*隐藏滚动条*/
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- page {
- padding-bottom: 1rpx;
- }
- .icon-dizhi {
- color: #FFDC2F;
- }
- /* 客服按钮 */
- .custCare{
- position: fixed;
- bottom: 0;
- right: 0;
- width: 160rpx;
- height: 160rpx;
- background-color: transparent;
- z-index: 10000;
- }
- .custCare image{
- height: 100%;
- width: 100%;
- }
- /* 富文本组件样式 */
- rich-text{
- word-break: break-all;
- }
- .price {
- display: flex;
- flex-direction: row;
- margin-top: 15rpx;
- align-items: baseline;
- }
-
- .price .p2 {
- font-size: 36rpx;
- font-family: FZZhunYuan-M02S;
- font-weight: 400;
- color: #EC2E26;
- line-height: 45rpx;
- }
-
- .price .p1 {
- font-size: 22rpx;
- color: #EC2E26;
- line-height: 52rpx;
- }
|