1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**app.wxss**/
- @import "/pages/common.wxss";
- /* <!-- 导入文件 --> */
- @import "wxParse/wxParse.wxss";
- @import "static/style.wxss";
- @import "/assets/iconfont/iconfont.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;
- }
|