| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .container {
- background-color: #f0f0f0;
- color:#1e1e1e;
- font-weight: 500;
- justify-content: flex-start;
- }
- .panelTitle{
- width:100%;
- margin-top: 50rpx;
- justify-content: flex-start;
- }
- .panelTitle .panelTitle1{
- font-size:32rpx;
- margin-left: 30rpx;
- margin-bottom: 30rpx;
- }
- .panelItem{
- width:100%;
- justify-content: space-between;
- font-size:28rpx;
- min-height:100rpx;
- background-color: #fff;
- }
- .panelItem0{
- width:690rpx;
- height:100rpx;
- border-radius: 10rpx;
- margin-bottom: 30rpx;
- border:1rpx solid #E3E3E3;
- }
- .panelItemSelected{
- border:5rpx solid #fff;
- box-shadow:0 0 0 3px #1e1e1e;
- }
- .panelItem01{
- width:360rpx;
- line-height: 100rpx;
- padding-left: 30rpx;
- font-weight: 400;
- border-top-left-radius: 10rpx;
- border-bottom-left-radius: 10rpx;
- }
- .panelItem02{
- width:230rpx;
- height:100rpx;
- }
- .panelItem03{
- width:100rpx;
- height:100rpx;
- border-top-right-radius: 10rpx;
- border-bottom-right-radius: 10rpx;
- }
- .panelItem .panelItem1{
- margin-left: 30rpx;
- font-weight: 400;
- }
- .panelItem .panelItem2{
- margin-right: 30rpx;
- }
|