12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @import '/utils/styles/index.wxss';
- page{
- background: #fff;
- }
- .oyScroll>view{
- flex-shrink: 0;
- }
- /*隐藏滚动条*/
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- image{
- height: auto;
- }
- .picker_image{
- width: 18rpx;
- height: 18rpx;
- margin: 0 20rpx;
- flex-shrink: 0;
- }
- .mycontainer {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 0rpx 30rpx;
- box-sizing: border-box;
- }
- .myhover{
- opacity: 0.8;
- transform: scale(0.95,0.95);
- }
- .my-column{
- flex-direction: column;
- display: flex;
- }
- .my-row{
- flex-direction: row;
- display: flex;
- }
- .my-flex-sb{
- justify-content: space-between;
- }
- .my-align-c{
- align-items: center;
- }
- .my-just-c{
- justify-content: center;
- }
|