item.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* pages/item/item.wxss */
  2. page{
  3. background: #000;
  4. color: #ffffff;
  5. margin-top: 30px;
  6. }
  7. ec-canvas {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .title{
  12. background:#1C1C1C;
  13. padding: 10px;
  14. }
  15. .title .title-button{
  16. text-align: right;
  17. }
  18. .title .title-button button{
  19. background: none;
  20. border: 1px solid slategrey;
  21. width: 80px;
  22. height: 25px;
  23. font-size: 12px;
  24. color: #ffffff;
  25. }
  26. .title .title-name{
  27. border-bottom: 1px solid slategrey;
  28. height: 50px;
  29. margin-top: -20px;
  30. }
  31. .title .title-name .title-name-Big{
  32. font-size: 28px;
  33. }
  34. .title .title-name .title-name-small{
  35. font-size: 18px;
  36. color: #d6d1d1;
  37. margin-left: 10px;
  38. }
  39. .title .tile-number{
  40. margin-top: 10px;
  41. }
  42. .title .tile-number .tile-number-Volume{
  43. }
  44. .title .tile-number .tile-number-float{
  45. color: crimson;
  46. margin-left: 20px;
  47. }
  48. .swiper-tab {
  49. width: 100%;
  50. text-align: center;
  51. line-height: 80rpx;
  52. }
  53. .swiper-tab-list {
  54. font-size: 30rpx;
  55. display: inline-block;
  56. width: 30%;
  57. color: #777;
  58. }
  59. .on {
  60. color: #D81E06;
  61. border-bottom: 5rpx solid #D81E06;
  62. }
  63. .swiper-box {
  64. display: block;
  65. height: 100%;
  66. width: 100%;
  67. overflow: hidden;
  68. color: #fff;
  69. }
  70. .swiper-box .swiper-box-view {
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. margin: 10rpx;
  75. border-bottom: 1rpx slategray solid;
  76. }
  77. .map{
  78. background:#1C1C1C;
  79. padding: 10px;
  80. margin-top: 10px;
  81. }
  82. .map .map-line {
  83. float: right;
  84. display: flex;
  85. align-items: center;
  86. }
  87. .map .map-line text{
  88. margin-left: 5px;
  89. }
  90. .map .map-line .map-line-red{
  91. display: inline-block;
  92. width: 30px;
  93. height: 2px;
  94. background: #D81E06;
  95. }
  96. .map .map-line .map-line-blue{
  97. display: inline-block;
  98. width: 30px;
  99. height: 2px;
  100. background:#80CDF8;
  101. }