12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/nnzzd/nnzzd.wxss */
- .title{
- width: 100%;
- height: 500rpx;
- background: #fccccc;
- }
- .item-main{
- width: 80%;
- min-height: 300rpx;
- }
- .item-point {
- width: 15rpx;
- height: 15rpx;
- border-radius: 15rpx;
- background: #2e6bfc;
- box-shadow:0rpx 0rpx 10rpx 10rpx #d1ddf8;
- margin: 20rpx auto 0rpx;
- }
- .itme-line{
- width: 1rpx;
- min-height: 300rpx;
- background: #2e6bfc;
- margin: 0rpx auto ;
- }
- .item-left{
- width: 10%;
- height: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- float: left;
- }
- .item-right{
- width: 90%;
- height: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- float: left;
- }
|