auctioneer.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @import "../../template/template.wxss";
  2. page{
  3. background: #f1f1f1;
  4. }
  5. .container{
  6. width: 100%;
  7. }
  8. .auctioneer-hader{
  9. width: 100%;
  10. padding-top: 40rpx;
  11. background: #fff;
  12. margin-bottom: 10rpx;
  13. }
  14. .auctioneer-hader .hader-img{
  15. width: 200rpx;
  16. height: 200rpx;
  17. margin: 0 auto;
  18. margin-bottom: 20rpx;
  19. }
  20. .auctioneer-hader .hader-img image{
  21. width: 100%;
  22. height: 100%;
  23. border-radius: 50%;
  24. background: #fb752c;
  25. }
  26. .auctioneer-hader .auctioneer-name{
  27. text-align: center;
  28. font-size: 34rpx;
  29. position: relative;
  30. margin-bottom: 15rpx;
  31. }
  32. .auctioneer-hader .auctioneer-name .sign{
  33. font-size: 20rpx;
  34. color:#2abf01;
  35. border:1px solid #2abf01;
  36. background:#efffea;
  37. margin-left: 15rpx;
  38. position: absolute;
  39. top: 10rpx;
  40. padding: 0 5rpx;
  41. }
  42. .auctioneer-hader .auctioneer-company{
  43. font-size: 28rpx;
  44. color: #333;
  45. text-align: center;
  46. margin-bottom: 15rpx;
  47. }
  48. .auctioneer-hader .auctioneer-describe{
  49. height: 100rpx;
  50. color: #999;
  51. font-size: 28rpx;
  52. padding: 0 20rpx;
  53. text-align: center;
  54. }
  55. .company{
  56. width: 100%;
  57. background: #fff;
  58. }
  59. .company .company-title{
  60. border-bottom: 1px solid #f1f1f1;
  61. height: 80rpx;
  62. }
  63. .company .company-title .company-title-content{
  64. width: 100%;
  65. margin: 0 auto;
  66. }
  67. .company-title-content::after{
  68. content: '';
  69. display: block;
  70. clear: both;
  71. }
  72. .company .company-title .company-title-content view{
  73. font-size: 34rpx;
  74. text-align: center;
  75. width: 50%;
  76. float: left;
  77. }
  78. .company .company-title .company-title-content view text{
  79. padding: 15rpx 0;
  80. display: block;
  81. width: 60%;
  82. margin: 0 auto;
  83. }
  84. .company .company-title .company-title-content .on{
  85. color: #fb752c;
  86. border-bottom: 2px solid #fb752c;
  87. }
  88. .company .company-content::after{
  89. content: "";
  90. display: block;
  91. clear: both;
  92. }
  93. .company .company-content{
  94. background: #f1f1f1;
  95. }
  96. .position-fixed{
  97. background: #fff;
  98. width: 100%;
  99. position: fixed;
  100. left: 0;
  101. top: 0;
  102. z-index: 999;
  103. box-shadow: 5rpx 0rpx 10rpx rgba(0, 0, 0, 0.3)
  104. }