1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* pages/xunchaWu/xunchawu.wxss */
- .qy_con{
- display: flex;
- flex-direction: row;
- justify-content:space-around;
- text-align: center;
- margin: 30rpx 30rpx;
- }
- .qy_con view{
- height: 140rpx;
- color: #fff;
- display: flex;
- flex-direction: column;
- padding: 15rpx 40rpx;
- position: relative;
- }
- .qy_con view image{
- position: absolute;
- top:0px;
- left: 0px;
- width: 100%;
- height: 100%;
- z-index: -1;
- }
- .qy_con view h2{
- font-size: 58rpx;
- font-weight: bolder;
- padding-top: 10rpx;
- }
- .qy_con view p{
- font-size: 35rpx;
- }
- .data-loading {
- height: 100rpx;
- line-height: 100rpx;
- background-color: #fff;
- text-align: center;
- font-size: 14px;
- }
-
|