book_detail.wxss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* parents/pages/book_detail/book_detail.wxss */
  2. @import '../../../templates/loading/loading.wxss';
  3. page{
  4. background: #fff;
  5. }
  6. .header {
  7. position: relative;
  8. top: 400rpx;
  9. margin: 0 40rpx;
  10. }
  11. .header-one{
  12. text-align: center;
  13. color: #41414C;
  14. font-size: 32rpx;
  15. }
  16. .header-one-imgs{
  17. position: relative;
  18. }
  19. .header-one-imgs-big{
  20. width:100%;
  21. height:266rpx;
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. z-index: 100;
  26. background:rgba(65,65,76,0.7);
  27. }
  28. .header-one-imgs-big-items{
  29. width:100%;
  30. height:266rpx;
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. z-index: 1
  35. }
  36. .header-one-imgs-small{
  37. width:210rpx;
  38. height:220rpx;
  39. border-radius:10rpx;
  40. position: absolute;
  41. top: 154rpx;
  42. left: 36%;
  43. z-index: 1000;
  44. box-shadow:0px 0px 8rpx 0px rgba(204,204,204,1);
  45. }
  46. .header-one-name{
  47. margin: 0 150rpx;
  48. font-weight: bold;
  49. line-height: 35rpx;
  50. }
  51. .header-one-info{
  52. display: flex;
  53. justify-content: space-between;
  54. margin: 30rpx 28% 68rpx 28%;
  55. font-size: 24rpx;
  56. text-align: center;
  57. }
  58. .header-one-info-left{
  59. color: #20A3E0;
  60. padding: 9rpx 15rpx;
  61. background:rgba(226,243,251,1);
  62. border-radius:20rpx;
  63. font-weight: 400
  64. }
  65. .header-one-info-right{
  66. background:rgba(254,246,223,1);
  67. border-radius:20rpx;
  68. color: #D59F10;
  69. padding: 9rpx 15rpx;
  70. font-weight: 400
  71. }
  72. .detail{
  73. margin: 40rpx 0;
  74. padding: 0 30rpx 30rpx 30rpx;
  75. background:rgba(246,245,251,1);
  76. border-radius:18rpx;
  77. color: #6C6C80;
  78. font-size: 28rpx;
  79. font-weight: 500
  80. }
  81. .detail-title{
  82. width:160rpx;
  83. height:68rpx;
  84. line-height: 68rpx;
  85. font-size:30rpx;
  86. text-align: center;
  87. font-family:PingFang SC;
  88. font-weight:bold;
  89. color:rgba(255,255,255,1);
  90. margin: 0 auto;
  91. background:rgba(255,128,168,1);
  92. border-radius:0px 0px 36rpx 36rpx;
  93. margin-bottom: 36rpx;
  94. }