| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .item-image image{
- width: 749rpx;
- height: 360rpx;
- }
- .item-title{
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 400rpx;
- margin-top: 39rpx;
- margin-left: 30rpx;
- }
- .item-title-line{
- width: 10rpx;
- height: 32rpx;
- background-color: #3FB0FF;
- }
- .item-title-font{
- font-size: 32rpx;
- font-weight: 700;
- color: #333333;
- margin-left: 15rpx;
- margin-top: -5rpx;
- }
- .item-list{
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- width: 590rpx;
- margin-top: 40rpx;
- margin-left: 80rpx;
- }
- .item-list-one{
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- margin-right: 137rpx;
- }
- .img-btn{
- width: 90rpx;
- height: 90rpx;
- }
- .list-txt{
- font-size: 30rpx;
- margin-top: 29rpx;
- color: #333333;
- }
|