components.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /******************** 这里放组件样式 ********************/
  2. /***** view *****/
  3. view{box-sizing: border-box;}
  4. /***** 对齐方式 *****/
  5. .ezy-tl{text-align: left;}
  6. .ezy-tc{text-align: center;}
  7. .ezy-tr{text-align: right;}
  8. /***** 状态栏 *****/
  9. .ezy-status-bar{height: var(--status-bar-height);width: 100%;background-color: red;}
  10. /***** 页面高度 *****/
  11. /* #ifdef H5 */
  12. //标题栏
  13. $titleBar-page: calc(100vh - var(--status-bar-height));
  14. //tabBar
  15. $titleBar-page: calc(100vh - var(--window-bottom));
  16. //标题栏 + tabBar
  17. $titleBar-tabBar-page: calc(100vh - var(--status-bar-height) - var(--window-bottom));
  18. /* #endif */
  19. /* #ifdef APP-PLUS */
  20. //标题栏
  21. $titleBar-page: calc(100vh - var(--status-bar-height));
  22. //tabBar
  23. $titleBar-page: 100vh;
  24. //标题栏 + tabBar
  25. $titleBar-tabBar-page: calc(100vh - var(--status-bar-height));
  26. /* #endif */
  27. /***** 页面背景图 *****/
  28. // no-repeat cover
  29. @mixin ezy-no-repeat-cover($position: center) {
  30. background-position: $position;background-size: cover;background-repeat: no-repeat;
  31. }
  32. // no-repeat contain
  33. @mixin ezy-no-repeat-contain($position: center) {
  34. background-position: $position;background-size: contain;background-repeat: no-repeat;
  35. }
  36. /***** tabbar *****/
  37. .ezy-custom-tabbar{
  38. width: 100%;height: 150rpx;position: fixed;left: var(-window-left);right: var(-window right);
  39. bottom: var(--window-bottom);padding-bottom: env(safe-area-inset-bottom);box-sizing: border-box;z-index: 9;
  40. .tabbar-item-box{display: flex;flex-wrap: nowrap;justify-content: space-evenly;
  41. box-sizing: border-box;padding: 0 46rpx;
  42. }
  43. .tabbar-item{width: 135rpx;height: 144rpx;@include ezy-no-repeat-cover;z-index: 2;}
  44. }
  45. .ezy-custom-tabbar::before{
  46. content: '';width: 750rpx;height: 100rpx;left: 0;bottom: 0;position: absolute;
  47. background-image: url("@/static/images/tabbar/tabbar-bg.png");@include ezy-no-repeat-cover(top);
  48. }
  49. /***** 标题栏 *****/
  50. // 三个元素
  51. .ezy-navBar-box{
  52. display: flex;align-items: center;justify-content: space-between;
  53. padding: 0 20rpx;box-sizing: border-box;
  54. .nav-bar-icon{
  55. width: 63rpx;height: 63rpx;
  56. background-image: url("@/static/images/common/navBar-return-btn.png");@include ezy-no-repeat-cover();
  57. }
  58. .nav-bar-title{
  59. font-size: 36rpx;color: #fff;
  60. }
  61. .nav-bar-other{
  62. font-size: 30rpx;color: #fff;
  63. .key-note{color: #ffff01;}
  64. }
  65. }
  66. /***** 单选题 *****/
  67. .ezy-danxuan-box{
  68. .danxuan-title{
  69. width: 231rpx;height: 63rpx;
  70. background-image: url("@/static/images/exam/danxuan-title.png");@include ezy-no-repeat-cover();
  71. }
  72. .danxuan-question{
  73. margin: 24rpx 0 42rpx;font-size: 32rpx;color: #333;line-height: 1.6;padding: 0 10rpx 0 20rpx;box-sizing: border-box;
  74. text-align: justify;
  75. }
  76. .danxuan-option{
  77. width: 615rpx;height: 96rpx;line-height:96rpx;background-color:#fff;border-radius: 8px;margin-bottom: 20rpx;
  78. font-size: 32rpx;color: #333;box-sizing: border-box;padding: 0 24rpx;@include ezy-no-repeat-cover();
  79. }
  80. .danxuan-option.active{
  81. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-active.png");
  82. }
  83. .danxuan-option.showError{
  84. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-error.png");
  85. }
  86. .danxuan-option.active_right{
  87. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-right.png");
  88. }
  89. }
  90. /***** 模拟标题栏 *****/
  91. .ezy-title-bar {
  92. height: calc(44px + env(safe-area-inset-top));
  93. position: fixed;top: var(--status-bar-height);left: var(--window-left);right: var(--window-right);
  94. background-color: rgb(248, 248, 248);color: rgb(0, 0, 0);box-sizing: border-box;
  95. display: flex;align-items: center;justify-content: center;overflow: hidden;z-index: 998;
  96. }