| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @use '@/styles/variables.scss' as *;
- .info-container__header {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .title {
- font-size: 20px;
- font-weight: 600;
- color: rgba($text-color, 0.85);
- margin-bottom: 18px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .notice {
- display: flex;
- gap: 370px;
- margin-bottom: 16px;
- }
- .info-item {
- color: rgba($text-color, 0.85);
- }
- .info-content,
- .content {
- color: rgba($text-color, 0.65);
- }
- .content {
- white-space: pre-wrap;
- word-break: break-word;
- }
- .divider {
- width: 100%;
- height: 1px;
- background-color: #979797;
- opacity: 0.26;
- margin-top: 18px;
- margin-bottom: 18px;
- }
- .file {
- margin-top: 18px;
- a {
- font-size: 14px;
- color: $primary-color;
- cursor: pointer;
- }
- }
- .file-list {
- display: flex;
- flex-wrap: wrap;
- gap: 10px;
- margin-top: 10px;
- }
- .file-item {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 220px;
- height: 81px;
- padding: 16px 10px;
- background: #eee;
- border-radius: 8px;
- cursor: pointer;
- transition: all 0.3s ease;
- &:hover {
- background: #ddd;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
- &--name {
- width: 100%;
- font-size: 14px;
- color: #333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- &--footer {
- @include flex-center;
- justify-content: space-between;
- font-size: 14px;
- .info {
- @include flex-center;
- gap: 2px;
- img {
- width: 16px;
- height: 16px;
- }
- span {
- color: #999;
- }
- }
- }
- }
|