12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .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-image-viewer {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 1001;
- height: 100%;
- transform: translateZ(0);
- overflow: hidden;
- }
- .t-image-viewer__mask {
- position: fixed;
- z-index: 1000;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .t-image-viewer__content {
- width: 100vw;
- display: inline-block;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- z-index: 1005;
- }
- .t-image-viewer__image {
- width: 100%;
- display: inline-block;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- .t-image-viewer .t-image--external {
- width: inherit;
- height: inherit;
- display: block;
- }
- .t-image-viewer__nav {
- width: 100%;
- position: fixed;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 48rpx;
- top: 68rpx;
- left: 0;
- color: #ffffff;
- z-index: 1005;
- }
- .t-image-viewer__nav-icon {
- flex: 0 0 48rpx;
- width: 48rpx;
- height: 48rpx;
- }
- .t-image-viewer__nav-close {
- margin-left: 36rpx;
- }
- .t-image-viewer__nav-delete {
- margin-right: 36rpx;
- }
- .t-image-viewer__nav-index {
- flex: 1;
- font-size: 28rpx;
- text-align: center;
- }
|