123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- .t-float-left {
- float: left;
- }
- .t-float-right {
- float: right;
- }
- @keyframes tdesign-fade-out {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- .hotspot-expanded.relative {
- position: relative;
- }
- .hotspot-expanded::after {
- content: '';
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- transform: scale(1.5);
- }
- .t-notice-bar {
- display: flex;
- align-items: flex-start;
- padding: 26rpx 32rpx;
- font-size: var(--td-font-size-base, 28rpx);
- }
- .t-notice-bar__content-wrap {
- flex: 1;
- overflow-x: hidden;
- line-height: 44rpx;
- color: var(--td-notice-bar-font-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9)));
- }
- .t-notice-bar__content {
- display: inline-block;
- white-space: nowrap;
- }
- .t-notice-bar__content-wrapable {
- white-space: normal;
- }
- .t-notice-bar__content--vertical {
- height: 44rpx;
- line-height: 44rpx;
- }
- .t-notice-bar__content--vertical-item {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .t-notice-bar__prefix-icon {
- color: inherit;
- }
- .t-notice-bar__prefix-icon:not(:empty) {
- padding-right: var(--td-spacer, 16rpx);
- }
- .t-notice-bar__suffix-icon {
- color: var(--td-notice-bar-suffix-icon-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
- }
- .t-notice-bar__prefix-icon,
- .t-notice-bar__suffix-icon {
- font-size: 44rpx;
- }
- .t-notice-bar__extra {
- color: var(--td-notice-bar-extra-font-color, var(--td-primary-color-8, #0052d9));
- line-height: 44rpx;
- font-weight: 700;
- }
- .t-notice-bar__extra:not(:empty),
- .t-notice-bar__suffix-icon:not(:empty) {
- padding-left: var(--td-spacer, 16rpx);
- }
- .t-notice-bar--info {
- color: var(--td-notice-bar-info-color, var(--td-primary-color-8, #0052d9));
- background-color: var(--td-notice-bar-info-bg-color, var(--td-primary-color-1, #ecf2fe));
- }
- .t-notice-bar--success {
- color: var(--td-notice-bar-success-color, var(--td-success-color-5, #00a870));
- background-color: var(--td-notice-bar-success-bg-color, var(--td-success-color-1, #e8f8f2));
- }
- .t-notice-bar--warning {
- color: var(--td-notice-bar-warning-color, var(--td-warning-color-5, #ed7b2f));
- background-color: var(--td-notice-bar-warning-bg-color, var(--td-warning-color-1, #fef3e6));
- }
- .t-notice-bar--error {
- color: var(--td-notice-bar-error-color, var(--td-error-color-6, #e34d59));
- background-color: var(--td-notice-bar-error-bg-color, var(--td-error-color-1, #fdecee));
- }
|