collection.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .user-content {
  2. overflow: hidden;
  3. .title {
  4. font-size: 20px;
  5. margin-bottom: 10px;
  6. }
  7. .btnGroup {
  8. margin-bottom: 20px;
  9. label {
  10. width: 200px;
  11. height: 40px;
  12. line-height: 40px;
  13. font-weight: 500;
  14. font-size: 16px;
  15. text-align: center;
  16. }
  17. }
  18. .ant-radio-button-wrapper-checked {
  19. background: orangered;
  20. border-color: transparent;
  21. color: #fff;
  22. box-shadow: 0 0 0 transparent;
  23. }
  24. .imgList {
  25. width: 90%;
  26. .img {
  27. width: 300px;
  28. margin: 0 auto 15px;
  29. .imgHeader {
  30. overflow: hidden;
  31. transition: all .2s ease-out;
  32. box-sizing: border-box;
  33. border: 1px solid rgba(180, 182, 182, 0.5);
  34. position: relative;
  35. height: 220px;
  36. width: 100%;
  37. .imgBj{
  38. box-sizing: border-box;
  39. position: absolute;
  40. border-radius: 5px;
  41. left: 3%;
  42. top: 3%;
  43. width: 94%;
  44. height: 94%;
  45. background: url(../../../../image/init.png)no-repeat;
  46. background-size:100% 100%;
  47. img {
  48. width: 100%;
  49. height: 100%;
  50. display: inline-block;
  51. }
  52. }
  53. .divP{
  54. opacity: 0;
  55. width:300px;
  56. height: 0px;
  57. overflow: hidden;
  58. position: absolute;
  59. bottom: 0;
  60. left: 0 ;
  61. color: #ffff;
  62. padding: 15px;
  63. background: rgba(12, 12, 12, 0.5);
  64. transition: all .2s ease-in-out;
  65. p{
  66. position: absolute;
  67. left: 50%;
  68. top: 50%;
  69. font-size: 14px;
  70. text-align: justify;
  71. transform: translate(-50%,-50%)
  72. }
  73. }
  74. .new{
  75. width: 46px;
  76. height: 40px;
  77. display: inline-block;
  78. background: url(../../../../image/achievement_26.png) no-repeat;
  79. background-size:100% 100%;
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. }
  84. }
  85. .txt {
  86. height: 40px;
  87. line-height: 40px;
  88. color: #000;
  89. padding:0 15px;
  90. overflow: hidden;
  91. white-space: nowrap;
  92. text-overflow: ellipsis;
  93. -o-text-overflow: ellipsis;
  94. }
  95. }
  96. .img:hover{
  97. cursor: pointer;
  98. img{
  99. transform: scale(1.02);
  100. transition: all .2s ease-in-out;
  101. }
  102. .imgHeader .divP{
  103. opacity: 1;
  104. height: 220px;
  105. transition: all .2s ease-in
  106. }
  107. }
  108. }
  109. .page {
  110. text-align: center;
  111. margin-top: 20px;
  112. margin-bottom: 20px;
  113. }
  114. }