brandDetail.wxss 874 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. page {
  2. background: #f4f4f4;
  3. }
  4. .brand-info .name {
  5. width: 100%;
  6. height: 290rpx;
  7. position: relative;
  8. }
  9. .brand-info .img {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 290rpx;
  15. }
  16. .brand-info .info-box {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. width: 100%;
  21. height: 290rpx;
  22. text-align: center;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. }
  27. .brand-info .info {
  28. display: block;
  29. }
  30. .brand-info .txt {
  31. display: block;
  32. height: 37.5rpx;
  33. font-size: 37.5rpx;
  34. color: #fff;
  35. }
  36. .brand-info .line {
  37. margin: 0 auto;
  38. margin-top: 16rpx;
  39. display: block;
  40. height: 2rpx;
  41. width: 145rpx;
  42. background: #fff;
  43. }
  44. .brand-info .desc {
  45. background: #fff;
  46. width: 100%;
  47. height: auto;
  48. overflow: hidden;
  49. padding: 41.5rpx 31.25rpx;
  50. font-size: 30rpx;
  51. color: #666;
  52. line-height: 41.5rpx;
  53. text-align: center;
  54. }