activeDetail.wxss 604 B

1234567891011121314151617181920212223242526272829303132
  1. /* pages/activeDetail/activeDetail.wxss */
  2. .line{
  3. display: flex;
  4. color: #999999;
  5. margin-top: 30rpx;
  6. }
  7. .title{
  8. margin-left:35rpx;
  9. margin-top:35rpx;
  10. display: flex;
  11. }
  12. .btn_area{
  13. width: 750rpx;
  14. height: 150rpx;
  15. /* border: 1px solid red; */
  16. box-shadow: 0px 0px 10px rgba(0,0,0,.2);
  17. position: relative;
  18. }
  19. .btn{
  20. width: 680rpx;
  21. height: 80rpx;
  22. line-height: 80rpx;
  23. /* margin-top: 35rpx; */
  24. border-radius: 35rpx;
  25. /* margin-left: 75rpx; */
  26. background: -webkit-linear-gradient(left, #bd64ff, #8873ff);
  27. color: white;
  28. text-align: center;
  29. position: absolute;
  30. top: 35rpx;
  31. left: 35rpx;
  32. }