collection.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. img {
  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. }
  46. div{
  47. opacity: 0;
  48. width:300px;
  49. height: 0px;
  50. overflow: hidden;
  51. position: absolute;
  52. bottom: 0;
  53. left: 0 ;
  54. color: #ffff;
  55. padding: 15px;
  56. background: rgba(12, 12, 12, 0.5);
  57. transition: all .2s ease-out;
  58. p{
  59. position: absolute;
  60. left: 50%;
  61. top: 50%;
  62. font-size: 14px;
  63. transform: translate(-50%,-50%)
  64. }
  65. }
  66. .new{
  67. width: 46px;
  68. height: 40px;
  69. display: inline-block;
  70. background: url(../../../../image/achievmentDetail_7.png) no-repeat;
  71. background-size:100% 100%;
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. }
  76. }
  77. .txt {
  78. height: 40px;
  79. line-height: 40px;
  80. background: rgba(61, 110, 216, 0.7);
  81. color: #fff;
  82. text-align: center;
  83. }
  84. }
  85. .img:hover{
  86. cursor: pointer;
  87. img{
  88. transform: scale(1.02);
  89. transition: all .3s ease-out;
  90. }
  91. .imgHeader div{
  92. opacity: 1;
  93. height: 220px;
  94. transition: all .3s ease-in
  95. }
  96. }
  97. }
  98. .page {
  99. text-align: center;
  100. margin-top: 20px;
  101. margin-bottom: 20px;
  102. }
  103. }