123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- @keyframes breathe-30b8b720 {
- 0% {
- opacity: 0.3;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0.3;
- }
- }
- .u-char-box.data-v-30b8b720 {
- text-align: center;
- }
- .u-char-flex.data-v-30b8b720 {
- display: flex;
- flex-direction: row;
- justify-content: center;
- flex-wrap: wrap;
- position: relative;
- }
- .u-input.data-v-30b8b720 {
- position: absolute;
- top: 0;
- left: -100%;
- width: 200%;
- height: 100%;
- text-align: left;
- z-index: 9;
- opacity: 0;
- background: none;
- }
- .u-char-item.data-v-30b8b720 {
- position: relative;
- width: 90rpx;
- height: 90rpx;
- margin: 10rpx 10rpx;
- font-size: 60rpx;
- font-weight: bold;
- color: #303133;
- line-height: 90rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .u-middle-line.data-v-30b8b720 {
- border: none;
- }
- .u-box.data-v-30b8b720 {
- box-sizing: border-box;
- border: 2rpx solid #cccccc;
- border-radius: 6rpx;
- }
- .u-box-active.data-v-30b8b720 {
- overflow: hidden;
- animation-timing-function: ease-in-out;
- animation-duration: 1500ms;
- animation-iteration-count: infinite;
- animation-direction: alternate;
- border: 2rpx solid #3c9cff;
- }
- .u-middle-line-active.data-v-30b8b720 {
- background: #3c9cff;
- }
- .u-breathe.data-v-30b8b720 {
- animation: breathe-30b8b720 2s infinite ease;
- }
- .u-placeholder-line.data-v-30b8b720 {
- display: none;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 2rpx;
- height: 40rpx;
- background: #333333;
- animation: twinkling 1.5s infinite ease;
- }
- .u-animation-breathe.data-v-30b8b720 {
- animation-name: breathe-30b8b720;
- }
- .u-dot.data-v-30b8b720 {
- font-size: 34rpx;
- line-height: 34rpx;
- }
- .u-middle-line.data-v-30b8b720 {
- height: 4px;
- background: #000000;
- width: 80%;
- position: absolute;
- border-radius: 2px;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .u-bottom-line-active.data-v-30b8b720 {
- background: #3c9cff;
- }
- .u-bottom-line.data-v-30b8b720 {
- height: 4px;
- background: #000000;
- width: 80%;
- position: absolute;
- border-radius: 2px;
- bottom: 0;
- left: 50%;
- transform: translate(-50%);
- }
|