changePattern.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/changePattern/changePattern.wxss */
  2. .change_bg{
  3. display: block;
  4. width: 100%;
  5. height: 100vh;
  6. }
  7. /* 选择浏览模式 */
  8. .change_pattern_wrap{
  9. width: 100%;
  10. height: 100%;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. z-index: 10;
  15. background-color: rgba(0,0,0,0.6)
  16. }
  17. .change_pattern_content{
  18. position: absolute;
  19. left: 0;
  20. right: 0;
  21. top: 50%;
  22. margin-top: -352rpx;
  23. }
  24. .change_each_wrap{
  25. width: 292rpx;
  26. height: 258rpx;
  27. background-color: #fff;
  28. border-radius: 20px;
  29. padding-top: 34rpx;
  30. margin: 30rpx auto;
  31. }
  32. .change_each_icon{
  33. display: block;
  34. width: 52rpx;
  35. height: 56rpx;
  36. margin:0 auto 28rpx;
  37. }
  38. .change_each_title{
  39. font-size: 30rpx;
  40. line-height: 66rpx;
  41. color: #b4a078;
  42. text-align: center;
  43. }
  44. .change_each_cont{
  45. font-size: 24rpx;
  46. line-height: 34rpx;
  47. color: #a6a6a6;
  48. text-align: center;
  49. }
  50. .change_each_active{
  51. color: #fff;
  52. background-color:#b19e78;
  53. }
  54. .change_each_active .change_each_title,.change_each_active .change_each_cont,.change_each_active .change_each_cont{
  55. color: #fff;
  56. }