components.scss 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. .icon-title-navBar-box{
  68. display: flex;align-items: center;justify-content: center;
  69. padding: 0 20rpx;box-sizing: border-box;position: relative;
  70. .nav-bar-title{
  71. font-size: 36rpx;height: 63rpx;line-height: 63rpx;color: #fff;max-width: 70%;
  72. }
  73. .nav-bar-icon{
  74. width: 63rpx;height: 63rpx;position: absolute;left: 20rpx;top: 0;
  75. background-image: url("@/static/images/common/navBar-return-btn.png");@include ezy-no-repeat-cover();
  76. }
  77. }
  78. /***** 单选题 *****/
  79. .ezy-danxuan-box{
  80. margin: 0 10rpx;
  81. .danxuan-title{
  82. width: 231rpx;height: 63rpx;
  83. background-image: url("@/static/images/exam/danxuan-title.png");@include ezy-no-repeat-cover();
  84. }
  85. .danxuan-question{
  86. margin: 24rpx 0 42rpx;font-size: 32rpx;color: #333;line-height: 1.6;padding: 0 10rpx 0 20rpx;box-sizing: border-box;
  87. text-align: justify;word-wrap: break-word;word-break: break-all;
  88. }
  89. .danxuan-option{
  90. width: 596rpx;height: 93rpx;line-height:96rpx;background-color:#fff;border-radius: 8px;margin-bottom: 20rpx;
  91. font-size: 32rpx;color: #333;box-sizing: border-box;padding: 0 24rpx;@include ezy-no-repeat-cover();
  92. }
  93. .danxuan-option.active{
  94. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-active.png");
  95. }
  96. .danxuan-option.showError{
  97. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-error.png");
  98. }
  99. .danxuan-option.active_right{
  100. color: #fff;background-color: transparent;background-image: url("@/static/images/exam/option-right.png");
  101. }
  102. }
  103. /***** 试题白色的框 *****/
  104. .shiti-frame-box{
  105. flex: 1;width: 92%;height: auto;background-color: rgba(255, 255, 255, 0.6);border-radius: 10px;
  106. margin: 32rpx auto;position: relative;padding: 10% 0 6%;box-sizing: border-box;display: flex;flex-direction: column;
  107. }
  108. .shiti-frame-box::before{
  109. content: "";display: block;background-color: rgba(255, 255, 255, 0.6);border-radius: 0 0 10rpx 10rpx;
  110. position: absolute;top: 20rpx;left: 20rpx;right: 20rpx;bottom: 30rpx;z-index: 1;
  111. }
  112. /***** 模拟标题栏 *****/
  113. .ezy-title-bar {
  114. height: calc(44px + env(safe-area-inset-top));
  115. position: fixed;top: var(--status-bar-height);left: var(--window-left);right: var(--window-right);
  116. background-color: rgb(248, 248, 248);color: rgb(0, 0, 0);box-sizing: border-box;
  117. display: flex;align-items: center;justify-content: center;overflow: hidden;z-index: 998;
  118. }