123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .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-search {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .t-search__label {
- padding: 8rpx;
- color: rgba(0, 0, 0, 0.9);
- }
- .t-search__input-box {
- flex: 1;
- box-sizing: border-box;
- display: flex;
- height: 80rpx;
- align-items: center;
- border: 2rpx solid #f3f3f3;
- background: #f3f3f3;
- padding: 16rpx 24rpx;
- }
- .t-search__input-box.t-is-focused {
- border-color: #f3f3f3;
- }
- .t-search__input-box--round {
- border-radius: 40rpx;
- }
- .t-search__input-box--square {
- border-radius: 8rpx;
- }
- .t-search__input-box--center {
- text-align: center;
- }
- .t-search__input-box .t-input__keyword {
- display: inline-block;
- flex: 1;
- color: rgba(0, 0, 0, 0.9);
- font-size: 32rpx;
- padding-left: 16rpx;
- }
- .t-search__input-box .t-icon {
- color: rgba(0, 0, 0, 0.26);
- }
- .t-search__right {
- position: relative;
- margin-left: 10px;
- }
- .t-search__right.relative {
- position: relative;
- }
- .t-search__right::after {
- content: '';
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- transform: scale(1.5);
- }
- .t-search__search-action {
- margin-left: 30rpx;
- font-size: 32rpx;
- color: rgba(0, 0, 0, 0.26);
- }
- .t-search__placeholder {
- color: rgba(0, 0, 0, 0.26);
- }
- .t-search__placeholder--center {
- text-align: center;
- }
|