.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-cell { position: relative; display: flex; box-sizing: border-box; width: 100%; overflow: hidden; padding: var(--td-cell-vertical-padding, 32rpx) var(--td-cell-horizontal-padding, 32rpx); font-size: var(--td-cell-font-size, var(--td-font-size-m, 32rpx)); line-height: var(--td-cell-line-height, 48rpx); height: var(--td-cell-height, auto); color: var(--td-cell-text-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9))); background-color: var(--td-cell-bg-color, var(--td-bg-color-block, #fff)); } .t-cell::after { position: absolute; box-sizing: border-box; content: ' '; pointer-events: none; right: 0; left: 0; bottom: 0; border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7)); transform: scaleY(0.5); left: 32rpx; } .t-cell--borderless::after { display: none; } .t-cell__description { font-size: var(--td-cell-description-font-size, var(--td-font-size-base, 28rpx)); line-height: var(--td-cell-description-line-height, 44rpx); color: var(--td-cell-description-color, var(--td-font-gray-2, rgba(0, 0, 0, 0.6))); } .t-cell__description-text { margin-top: 8rpx; } .t-cell__note { display: flex; align-items: center; justify-content: flex-end; overflow: hidden; color: var(--td-cell-note-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4))); font-size: var(--td-cell-note-font-size, var(--td-font-size-m, 32rpx)); } .t-cell__title, .t-cell__note { flex: 1 1 auto; } .t-cell__title:empty, .t-cell__note:empty { display: none; } .t-cell__title-text { display: flex; font-size: 16px; font-weight: 400; } .t-cell__left, .t-cell__right { display: flex; align-items: center; font-size: var(--td-cell-icon-size, 48rpx); line-height: var(--td-cell-line-height, 48rpx); } .t-cell__left:not(:empty) { margin-right: 16rpx; } .t-cell__left-icon { font-size: var(--td-cell-icon-size, 48rpx); } .t-cell__left-image { height: var(--td-cell-image-height, 96rpx); width: var(--td-cell-image-width, 96rpx); } .t-cell__right { margin-left: 8rpx; color: var(--td-cell-right-icon-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4))); } .t-cell__right-icon { color: var(--td-cell-right-icon-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4))); font-size: var(--td-cell-icon-size, 48rpx); line-height: var(--td-cell-line-height, 48rpx); } .t-cell--hover.t-cell--hover-class { background-color: var(--td-cell-hover-color, var(--td-gray-color-1, #f3f3f3)); } .t-cell--required { font-size: var(--td-cell-font-size, var(--td-font-size-m, 32rpx)); color: var(--td-cell-required-color, var(--td-error-color-6, #e34d59)); } .t-cell--middle { align-items: center; } .t-cell--top { align-items: flex-start; } .t-cell--bottom { align-items: flex-end; }