123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .u-empty.data-v-b4243719,
- .u-empty__wrap.data-v-b4243719,
- .u-tabs.data-v-b4243719,
- .u-tabs__wrapper.data-v-b4243719,
- .u-tabs__wrapper__scroll-view-wrapper.data-v-b4243719,
- .u-tabs__wrapper__scroll-view.data-v-b4243719,
- .u-tabs__wrapper__nav.data-v-b4243719,
- .u-tabs__wrapper__nav__line.data-v-b4243719,
- .up-empty.data-v-b4243719,
- .up-empty__wrap.data-v-b4243719,
- .up-tabs.data-v-b4243719,
- .up-tabs__wrapper.data-v-b4243719,
- .up-tabs__wrapper__scroll-view-wrapper.data-v-b4243719,
- .up-tabs__wrapper__scroll-view.data-v-b4243719,
- .up-tabs__wrapper__nav.data-v-b4243719,
- .up-tabs__wrapper__nav__line.data-v-b4243719 {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-cell__body.data-v-b4243719 {
- display: flex;
- flex-direction: row;
- box-sizing: border-box;
- padding: 13px 15px;
- font-size: 15px;
- color: #303133;
- align-items: center;
- }
- .u-cell__body__content.data-v-b4243719 {
- display: flex;
- flex-direction: row;
- align-items: center;
- flex: 1;
- }
- .u-cell__body--large.data-v-b4243719 {
- padding-top: 13px;
- padding-bottom: 13px;
- }
- .u-cell__left-icon-wrap.data-v-b4243719, .u-cell__right-icon-wrap.data-v-b4243719 {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 16px;
- }
- .u-cell__left-icon-wrap.data-v-b4243719 {
- margin-right: 4px;
- }
- .u-cell__right-icon-wrap.data-v-b4243719 {
- margin-left: 4px;
- transition: transform 0.3s;
- }
- .u-cell__right-icon-wrap--up.data-v-b4243719 {
- transform: rotate(-90deg);
- }
- .u-cell__right-icon-wrap--down.data-v-b4243719 {
- transform: rotate(90deg);
- }
- .u-cell__title.data-v-b4243719 {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .u-cell__title-text.data-v-b4243719 {
- font-size: 15px;
- line-height: 22px;
- color: #303133;
- }
- .u-cell__title-text--large.data-v-b4243719 {
- font-size: 16px;
- }
- .u-cell__label.data-v-b4243719 {
- margin-top: 5px;
- font-size: 12px;
- color: #909193;
- line-height: 18px;
- }
- .u-cell__label--large.data-v-b4243719 {
- font-size: 14px;
- }
- .u-cell__value.data-v-b4243719 {
- text-align: right;
- margin-left: auto;
- font-size: 14px;
- line-height: 24px;
- color: #606266;
- }
- .u-cell__value--large.data-v-b4243719 {
- font-size: 15px;
- }
- .u-cell--required.data-v-b4243719 {
- overflow: visible;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .u-cell--required.data-v-b4243719:before {
- position: absolute;
- content: "*";
- left: -8px;
- margin-top: 4rpx;
- font-size: 14px;
- color: #f56c6c;
- }
- .u-cell--clickable.data-v-b4243719 {
- background-color: #f3f4f6;
- }
- .u-cell--disabled.data-v-b4243719 {
- color: #c8c9cc;
- cursor: not-allowed;
- }
- .u-cell--center.data-v-b4243719 {
- align-items: center;
- }
|