share.wxss 514 B

123456789101112131415161718192021222324252627282930313233
  1. .tip {
  2. position: relative;
  3. background: rgb(255, 245, 244);
  4. color: #FD4F5F;
  5. padding: 10rpx 20rpx;
  6. margin-top: 15px;
  7. }
  8. .tip::before {
  9. content: "";
  10. position: absolute;
  11. top: -10px;
  12. width: 0;
  13. height: 0;
  14. border-left: 10px solid transparent;
  15. border-right: 10px solid transparent;
  16. border-bottom: 20px solid rgb(255, 245, 244);
  17. }
  18. .price {
  19. margin-left: 5rpx;
  20. }
  21. .cartbtn {
  22. border: 1px solid #FD4F5F;
  23. color: #FD4F5F;
  24. margin-left: 30rpx;
  25. }
  26. .btn {
  27. background: #FD4F5F;
  28. color: #ffffff;
  29. }