12345678910111213141516171819202122232425262728293031323334353637 |
- .ppy-bg{
- /* background: linear-gradient(#1243BC, #001243BC); */
- height: 100%;
- }
- .ppy_top {
- width: 90%;
- margin:0 auto 0;
- display: grid;
- grid-template-columns: repeat(6, 17%);
- height: 50rpx;
- }
- .ppy_item {
- width: 100rpx;
- text-align: center;
- height: 50rpx;
- line-height: 50rpx;
- color: #fff;
- font-size: 28rpx;
- /* background: #000; */
- border-radius: 30rpx;
- border: 1rpx solid #3E97F8;
- }
- .ppy-body{
- width: 95%;
- height: 100%;
- margin: 20rpx auto 0;
- }
- .ppy-body-item{
- width: 100%;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 30rpx;
- text-align: 30rpx;
- color: #fff;
- display: flex;
- }
|