123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .container {
- display: flex;
- flex-direction: column;
- background: #FFFFFF;
- border-radius: 20Px;
- height: 100%;
- }
- .tools {
- padding: 32Px 32px 20px 32px;
- display: flex;
- align-items: center;
- flex-shrink: 0;
- :global {
- .n-input {
- margin-left: auto;
- width: 361Px;
- }
- }
- }
- .content {
- flex: 1;
- overflow-y: auto;
- padding: 20Px 36Px 36Px 36Px;
- }
- .item {
- position: relative;
- width: 214Px;
- cursor: pointer;
- transition: all .3s;
- .cover {
- position: relative;
- overflow: hidden;
- &::before {
- content: '';
- position: absolute;
- top: 107Px;
- left: 0;
- width: 214Px;
- height: 214Px;
- background: #DDF2FF;
- border-radius: 50%;
- }
- }
- &:hover {
- transform: scale(1.1);
- }
- .itemImg {
- position: relative;
- width: 158Px;
- height: 223Px;
- margin: auto;
- background-color: antiquewhite;
- :global {
- .n-image {
- width: 100%;
- height: 100%;
- }
- }
- }
- .itemName{
- margin-top: 16Px;
- font-size: 16Px;
- font-weight: 500;
- color: #333;
- text-align: center;
- }
- }
|