effect.wxss 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* pages/components/blocks/effect/effect.wxss */
  2. .function_masker_box {
  3. margin-bottom: 40rpx;
  4. min-height: 340rpx;
  5. position: relative;
  6. }
  7. .function_img {
  8. display: block;
  9. }
  10. .function_item_container {
  11. display: flex;
  12. flex-direction: row;
  13. flex-wrap: wrap;
  14. }
  15. .function_item {
  16. width: 25%;
  17. }
  18. .subitem_img {
  19. display: block;
  20. width: 70%;
  21. margin: 0 auto;
  22. }
  23. .subitem_title {
  24. font-size: 24rpx;
  25. text-align: center;
  26. margin-bottom: 40rpx;
  27. }
  28. .m_title {
  29. color: #fff;
  30. font-size: 50rpx;
  31. text-align: center;
  32. text-shadow: 0 0 2rpx rgba(0, 0, 0, 0.5);
  33. font-weight: 500;
  34. position: absolute;
  35. left: 0;
  36. right: 0;
  37. top: 50%;
  38. -webkit-transform: translateY(-50%);
  39. transform: translateY(-50%);
  40. }
  41. .function_rounds {
  42. display: inline-block;
  43. width: 24rpx;
  44. height: 24rpx;
  45. background: #fff;
  46. border-radius: 50%;
  47. margin: 0 10rpx;
  48. line-height: 15rpx;
  49. }
  50. .look_btn {
  51. display: inline-block;
  52. font-size: 28rpx;
  53. border: 1rpx solid #fff;
  54. border-radius: 10rpx;
  55. padding: 10rpx 20rpx;
  56. }