1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- .commonVview{
- display: flex;flex-direction: column;
- }
- .commonHview{
- display: flex;flex-direction: row;background-color: #FFFFFF;
- }
- .commonhline{
- background-color: #F2F2F2;height: 10rpx;width: 100%;
- }
- .comStyleColor{
- background-color: #e5973a;
- }
- .comGriView{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .comBtn{
- width: 40%;
- background-color: #FFFFFF ;
- color: #3C85EC;
- height: 80rpx;
- line-height: 80rpx;
- margin:50rpx auto;
- font-size: 30rpx;border: 1rpx solid #3C85EC;border-radius: 40rpx;
- }
- /* start 无数据时 样式 */
- .nodata_style{
- width:200rpx;
- height:200rpx;
- text-align:center;
- }
- .nodata_view{
- position: fixed;
- flex-direction: column;
- text-align:center;
- top:40%;left: 37%;
- }
- /* edn 无数据时 样式 */
- .commonclick-btn{
- background-color: #F5F5F5;
- }
- /* 公共单行末尾省略样式 */
- .com_omit{
- overflow:hidden; text-overflow:ellipsis;white-space:nowrap;
- }
|