123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /* pages/recommend/recommend.wxss */
- .re_service{
- width: 750rpx;
- height: 50rpx;
- line-height: 50rpx;
- text-align: center;
- font-size: 34rpx;
- padding:30rpx 0;
- background: #FFF;
- }
- .re_service text{
- font-size: 44rpx;
- font-weight: 700;
- color: red;
- text-decoration:underline;
- }
- .card{
- width: 690rpx;
- height: 1000rpx;
- margin: 30rpx;
- position: relative;
- }
- .card_img{
- position: absolute;
- left: 0;
- top: 0;
- width: 690rpx;
- max-height: 1000rpx;
- z-index: 1;
- }
- .verify{
- position: absolute;
- top: 20rpx;
- left: 0;
- width: auto;
- height: 36rpx;
- line-height: 36rpx;
- padding: 10rpx 20rpx;
- color: #FFF;
- background: #0FBD0D;
- z-index: 100;
- }
- .card_love{
- position: absolute;
- top: 30rpx;
- right: 30rpx;
- width: 100rpx;
- height: 100rpx;
- border: 2rpx solid #B7B6B6;
- border-radius: 50%;
- box-shadow: 0px 0px 2px 2px rgba(183, 182, 182, 1);
- display: flex;
- z-index: 100;
- }
- .card_love image{
- width: 68rpx;
- height: 68rpx;
- margin: auto;
- }
- .card_data{
- position: absolute;
- bottom: 0;
- left: 0;
- width: 690rpx;
- height: 500rpx;
- background: rgb(0, 0, 0, 0.5);
- z-index: 2;
- }
- .crad_list{
- position: absolute;
- top: 0;
- left: 0;
- width: 630rpx;
- height: 400rpx;
- padding: 0 30rpx;
- display: flex;
- flex-flow: row wrap;
- z-index: 3;
- }
- .crad_list view{
- position: relative;
- font-size: 36rpx;
- font-weight: 700;
- color: #FFF;
- width: 315rpx;
- height: 100rpx;
- line-height: 100rpx;
- z-index: 4;
- }
- .card_btn{
- position: absolute;
- bottom: 0;
- left: 0;
- width: 630rpx;
- height: 100rpx;
- padding: 0 30rpx;
- display: flex;
- flex-flow: row wrap;
- justify-content: space-around;
- z-index: 3;
- }
- .share{
- width: 250rpx;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 36rpx;
- font-weight:700;
- color: #FFF;
- background: #0FBD0D;
- border-radius: 60rpx;
- text-align: center;
- }
- .check{
- width: 250rpx;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 36rpx;
- font-weight:700;
- color: #FFF;
- background: #E51C23;
- border-radius: 60rpx;
- text-align: center;
- }
- .re_title{
- width: 750rpx;
- height: 100rpx;
- line-height: 50rpx;
- font-size: 32rpx;
- font-weight: 700;
- color: #E51C23;
- text-align: center;
- margin: 20rpx auto 30rpx;
- }
- .re_btn{
- width: 600rpx;
- height: 96rpx;
- line-height: 96rpx;
- color: #FFF;
- font-size: 40rpx;
- font-weight: 700;
- background: #E51C23;
- text-align: center;
- border-radius: 60rpx;
- margin: 30rpx auto 80rpx;
- }
|