1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @import './fonticon.wxss';
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 36rpx;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- /* 通用 */
- /* page{
- background: #fff;
- } */
- .auto{
- margin:0 20rpx;
- }
- /* flex布局 */
- .f-box{
- display: flex;
- display: -webkit-flex; /* Safari */
- }
- .f-right{
- flex-direction:row-reverse
- }
- .f-item {
- flex-grow: 1; /* default 0 */
- }
- /* color */
- .c-green{
- color:#00af66
- }
- .c-orange{
- color:#e8976a;
- }
- .c-white{
- color:white
- }
- .c-black{
- color:black;
- }
- .bg-orange{
- color:#e8976a;
- }
- .bg-green{
- background:#00af66;
- }
- /* 通用样式 */
- .t-right{
- text-align: right
- }
- .f-s32{
- font-size:32rpx;
- }
- .f-s36{
- font-size:36rpx;
- }
- .mar-l20{
- margin-left:20rpx;
- }
- .mar-t20{
- margin-top:20rpx;
- }
- .mar-b20{
- margin-bottom:20rpx;
- }
- .mar-r20{
- margin-right:20rpx;
- }
|