123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .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-indexes {
- position: relative;
- height: 100vh;
- }
- .t-indexes__sidebar {
- position: fixed;
- right: var(--td-indexes-sidebar-right, 16rpx);
- width: var(--td-indexes-sidebar-item-size, 40rpx);
- color: var(--td-indexes-sidebar-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9)));
- font-size: var(--td-indexes-sidebar-font-size, 24rpx);
- line-height: var(--td-indexes-sidebar-line-height, 40rpx);
- display: flex;
- flex-flow: column nowrap;
- top: 50%;
- transform: translateY(-50%);
- z-index: 1;
- }
- .t-indexes__sidebar-item {
- border-radius: 50%;
- position: relative;
- text-align: center;
- }
- .t-indexes__sidebar-item--active {
- background-color: var(--td-indexes-sidebar-active-bg-color, var(--td-primary-color, #0052d9));
- color: var(--td-indexes-sidebar-active-color, var(--td-white-color-1, #fff));
- }
- .t-indexes__sidebar-item + .t-indexes__sidebar-item {
- margin-top: 4rpx;
- }
- .t-indexes__sidebar-tips {
- width: var(--td-indexes-sidebar-tips-size, 96rpx);
- height: var(--td-indexes-sidebar-tips-size, 96rpx);
- line-height: var(--td-indexes-sidebar-tips-size, 96rpx);
- text-align: center;
- font-size: var(--td-indexes-sidebar-tips-font-size, 40rpx);
- font-weight: 700;
- color: var(--td-indexes-sidebar-tips-color, var(--td-primary-color, #0052d9));
- background-color: var(--td-indexes-sidebar-tips-bg-color, var(--td-primary-color-1, #ecf2fe));
- border-radius: 50%;
- position: absolute;
- top: 50%;
- bottom: 0;
- transform: translateY(-50%);
- right: var(--td-indexes-sidebar-tips-right, 76rpx);
- }
|