1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* pages/tabber/builds/index.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F8F8F8;
- }
- .contioner {
- background: #FFFFFF;
- padding: 30rpx;
- }
- .contioner .input {
- width: 690rpx;
- height: 80rpx;
- background: #F6F6F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- padding: 0 30rpx;
- color: #666666;
- }
- .contioner .input .icon {
- width: 36rpx;
- height: 36rpx;
- }
- .contioner .box {
- width: 210rpx;
- height: 112rpx;
- background: #F8F8F8;
- border-radius: 8rpx;
- flex-direction: column;
- }
- .contioner .box .tit {
- font-size: 40rpx;
- color: #333333;
- }
- .contioner .box .tips {
- font-size: 24rpx;
- color: #999999;
- }
- .contioner .le {
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- }
- .contioner .lr {
- font-size: 26rpx;
- color: #999999;
- }
- .contioner .list {
- padding: 10rpx 0;
- flex-wrap: wrap;
- }
- .contioner .list .item {
- flex-direction: column;
- width: 20%;
- margin-bottom: 40rpx;
- }
- .contioner .list .item .top {
- width: 80rpx;
- height: 80rpx;
- border: 1rpx solid #CCCCCC;
- border-radius: 50%;
- line-height: 80rpx;
- font-size: 50rpx;
- font-weight: 600;
- color: #333333;
- text-align: center;
- }
- .contioner .list .item .foot {
- font-size: 26rpx;
- color: #333333;
- }
- .contioner .list .item .foot.blue{
- color: #4699FF;
- }
- .contioner .list .item .foot.green{
- color: #0F8800;
- }
|