| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .listAll{
- background: url(https://www.icelook.cn/exhibition/images/page/bg.jpg) no-repeat;
- background-size: cover;
- height: 100vh;
- }
- .title{
- width: 100%;
- z-index: 10;
- background: #F5EAD2;
- padding-bottom: 20rpx;
- .titles{
- text-align: center;
- color: #000;
- font-size: 36rpx;
- font-family: Georgia, 'Times New Roman', Times, serif;
- font-weight: bold;
- padding-top: 10rpx;
- }
- .back{
- position: absolute;
- left: 30rpx;
- width: 80rpx;
- height: 35rpx;
- image{
- width: 18rpx;
- height: 100%;
- }
- }
- }
- .list{
- padding:30rpx 30rpx;
- li{
- width: 326rpx;
- height: 362rpx;
- background: #fff;
- box-shadow: 0 0 10px rgba(0,0,0,.1);
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- position: relative;
- overflow: hidden;
- text-align: center;
- image{
- width: 100%;
- height: 280rpx;
- }
- .text{
- padding:0 30rpx;
- }
- }
- li:nth-child(2n){
- float: right;
- }
- .nodata{
- text-align: center;
- padding-top: 200rpx;
- color: #666;
- image{
- width: 440rpx;
- height: 240rpx;
- }
- }
- }
|