index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /**index.wxss**/
  2. page{
  3. height: 100%;
  4. background-color: #fff;
  5. }
  6. .container{
  7. height: 100%;
  8. background-color: #fff;
  9. padding-bottom: 50rpx;
  10. }
  11. .top-container{
  12. height: 380rpx;
  13. position: relative;
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .bg-img{
  18. position: absolute;
  19. width: 100%;
  20. height: 380rpx;
  21. z-index: 1;
  22. }
  23. .title{
  24. padding: 30rpx 0;
  25. font-size: 32rpx;
  26. color: #333;
  27. font-weight: bold;
  28. padding-left: 30rpx;
  29. }
  30. .menu-container{
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: space-between;
  34. padding: 40rpx 74rpx 40rpx 95rpx;
  35. background-color: #FFFFFF;
  36. border-radius: 10rpx;
  37. box-sizing: border-box;
  38. box-shadow: 0 0 10rpx #efefef
  39. }
  40. .ul-item{
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. }
  45. .item{
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. position: relative;
  50. }
  51. .item-img{
  52. width: 64rpx;
  53. height: 64rpx;
  54. }
  55. .item-name{
  56. padding-top: 13rpx;
  57. font-size: 24rpx;
  58. color: #666666;
  59. min-width: 80rpx;
  60. text-align: center;
  61. }
  62. .tui-notice-board {
  63. width: 100%;
  64. padding-right: 30rpx;
  65. box-sizing: border-box;
  66. font-size: 28rpx;
  67. height: 60rpx;
  68. background: #fff;
  69. display: flex;
  70. align-items: center;
  71. top: 0;
  72. z-index: 999;
  73. }
  74. .tui-icon-bg {
  75. padding-left: 10rpx;
  76. position: relative;
  77. z-index: 10;
  78. }
  79. .tui-rolling-icon {
  80. margin-right: 12rpx;
  81. }
  82. .tui-scorll-view {
  83. flex: 1;
  84. line-height: 1;
  85. white-space: nowrap;
  86. overflow: hidden;
  87. color: #999;
  88. font-size: 24rpx;
  89. }
  90. .tui-notice{
  91. transform: translateX(100%);
  92. }
  93. .tui-animation {
  94. -webkit-animation: tui-rolling 9s linear infinite;
  95. animation: tui-rolling 9s linear infinite;
  96. }
  97. @-webkit-keyframes tui-rolling {
  98. 0% {
  99. transform: translateX(100%);
  100. }
  101. 100% {
  102. transform: translateX(-100%);
  103. }
  104. }
  105. @keyframes tui-rolling {
  106. 0% {
  107. transform: translateX(100%);
  108. }
  109. 100% {
  110. transform: translateX(-100%);
  111. }
  112. }
  113. .common-list-row{
  114. display: flex;
  115. flex-direction: column;
  116. align-items: center;
  117. position: relative;
  118. }
  119. .common-list-row .common-name{
  120. font-weight: 600;
  121. }
  122. .common-list-row .common-name-ex{
  123. font-size:24rpx;
  124. color:#999;
  125. }
  126. .common-list-row .common-img{
  127. float:right;
  128. flex-direction: column;
  129. align-items: center;
  130. height:100rpx;
  131. width:100rpx;
  132. }
  133. .common-list-row .common-img image{
  134. height:100rpx;
  135. width:100rpx;
  136. }