index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**index.wxss**/
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .top{
  6. padding: 0 12px;
  7. display: flex;
  8. flex-wrap: wrap;
  9. justify-content: space-between;
  10. }
  11. .logo{
  12. /* height:200rpx; */
  13. background:linear-gradient(90deg,rgba(75,153,255,1) 0%,rgba(91,61,255,1) 100%);
  14. border-radius:6px;
  15. position: relative;
  16. padding: 48rpx 170rpx;
  17. width: 100%;
  18. }
  19. .logo view{
  20. font-size: 40rpx;
  21. color: #fff;
  22. }
  23. .logo text{
  24. color: #fff;
  25. font-size: 24rpx;
  26. }
  27. .logo image{
  28. width: 120rpx;
  29. height: 120rpx;
  30. position: absolute;
  31. left: 15px;
  32. top: 0;
  33. bottom: 0;
  34. margin: auto;
  35. }
  36. .part{
  37. width: 49%;
  38. background: #fff;
  39. margin-top: 8px;
  40. box-shadow:0px 4px 12px 0px rgba(0,0,0,0.08);
  41. border-radius:4px;
  42. position: relative;
  43. text-align: left;
  44. padding: 15px;
  45. }
  46. .part image{
  47. width: 80rpx;
  48. max-height: 100%;
  49. position: absolute;
  50. right: 15px;
  51. top:0;
  52. bottom: 0;
  53. margin: auto;
  54. }
  55. .part view{
  56. color: #333333;
  57. font-size: 32rpx;
  58. }
  59. .part text{
  60. color: #999999;
  61. font-size: 24rpx;
  62. }
  63. .news{
  64. width: 100%;
  65. padding: 10px 12px;
  66. background: #fff;
  67. margin-top: 12px;
  68. box-shadow:0px 4px 12px 0px rgba(0,0,0,0.08);
  69. border-radius:4px;
  70. }
  71. .news image{
  72. width: 53px;
  73. max-height: 30px;
  74. }
  75. .bottom{
  76. background: #fff;
  77. margin-top: 12px;
  78. }
  79. .tab{
  80. border-bottom: 1px solid #F2F3F4;
  81. display: flex;
  82. }
  83. .tab text{
  84. display:block;
  85. width: 33.33%;
  86. line-height: 44px;
  87. text-align: center;
  88. color: #999999;
  89. font-size: 14px;
  90. }
  91. .tab .active{
  92. color: #3566FF;
  93. border-bottom: 2px solid #3566FF;
  94. transition: all .3s linear;
  95. }
  96. .list{
  97. border-bottom: 1px solid #F2F3F4;
  98. padding: 15px;
  99. }
  100. .list text{
  101. color: #999;
  102. font-size: 24rpx;
  103. }