12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/beerFactory/beerFactory.wxss */
- .fac-box{
- display: flex;
- flex-direction: column;
- position: relative;
- }
- .beer-box{
- margin-top: 40rpx;
- width: 750rpx;
- height: 84rpx;
- display: flex;
- flex-direction: row;
- }
- .beer-box>image:nth-child(1){
- margin: 0 24rpx 0 32rpx;
- width: 84rpx;
- height: 84rpx;
- border-radius: 50%;
- }
- .beer-name{
- width: auto;
- height: 84rpx;
- display: flex;
- flex-direction: column;
- }
- .beer-name>text:nth-child(1){
- width: auto;
- height: 52rpx;
- font-size: 34rpx;
- font-weight: 500;
- color: rgba(0, 0, 0, 0.87);
- line-height: 52rpx;
- text-align: left;
- }
- .beer-name>text:nth-child(2){
- width: auto;
- height: 32rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.4);
- line-height: 32rpx;
- text-align: left;
- }
- .beer-btn{
- margin: 14rpx 32rpx 14rpx auto;
- width: 128rpx;
- height: 56rpx;
- border-radius: 28px;
- border: 1px solid rgba(0, 0, 0, 0.87);
- font-size: 26rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.87);
- line-height: 56rpx;
- text-align: center;
- }
- .beer-img{
- margin: 24rpx 32rpx auto;
- width: 686rpx;
- height: 360rpx;
- border-radius: 4px;
- }
- .img-bg{
- position: absolute;
- bottom: 0;
- left: 32rpx;
- width: 686rpx;
- height: 132rpx;
- background: linear-gradient(360deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
- border-radius: 0px 0px 4px 4px;
- }
- .img-bg>text{
- position: absolute;
- bottom: 32rpx;
- left: 32rpx;
- width: auto;
- height: 42rpx;
- font-size: 15px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #FFFFFF;
- line-height: 42rpx;
- text-align: left;
- }
- .beer-more{
- width: 750rpx;
- height: 32rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.4);
- line-height: 32rpx;
- text-align: center;
- padding-bottom: env(safe-area-inset-bottom);
- margin: 278rpx 0 48rpx;
- }
|