12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* nova-tourism/pages/collect/collect-detail/index.wxss */
- .all{
- width: 100vw;
- overflow-y: scroll;
- position: relative;
- .picturebox{
- width: 100%;
- height: 500rpx;
- position: relative;
- .img{
- width: 100%;
- height: 500rpx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .numberbox{
- position: absolute;
- bottom: 40rpx;
- right: 20rpx;
- border-radius: 45%;
- z-index: 10;
- color: white;
- width: 70rpx;
- height: 45rpx;
- font-size: 24rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: rgba(12, 12, 12, 0.5);
- }
- }
- .infobox{
- width: 100%;
- height: auto;
- position: absolute;
- top: 498rpx;
- left: 0;
- padding: 40rpx;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- background-color: white;
- .title{
- width: 100%;
- height: 90rpx;
- font-size: 30rpx;
- }
- .lebalbox{
- width: 100%;
- height: 60rpx;
- display: flex;
- margin-top: 10rpx;
- .lebal{
- font-size: 30rpx;
- border-radius: 15rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- background-color: #FBF5E1;
- color: #F8BB7F;
- margin-right: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .carbox{
- width: 100%;
- height: 60rpx;
- display: flex;
- margin-top: 10rpx;
- display:flex ;
- align-items: center;
- image{
- width: 48rpx;
- height: 40rpx;
- }
- .car-tex{
- font-size: 28rpx;
- color: #F8BB7F;
- margin-left: 10rpx;
- }
- }
- }
- }
|