|
|
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .tui-apply-detail-container.data-v-138bea45 {
- min-height: 100vh;
- background: #f7f7f7;
- padding-bottom: 160rpx;
- }
- .navbar.data-v-138bea45 {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100rpx;
- background: #fff;
- z-index: 10;
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
- padding: 0 32rpx;
- }
- .navbar .nav-left.data-v-138bea45 {
- flex: 0 0 48rpx;
- display: flex;
- align-items: center;
- height: 100%;
- }
- .navbar .nav-title.data-v-138bea45 {
- flex: 1;
- text-align: center;
- font-size: 36rpx;
- font-weight: bold;
- color: #222;
- line-height: 100rpx;
- }
- .navbar .nav-right.data-v-138bea45 {
- flex: 0 0 80rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- height: 100%;
- }
- .main-content.data-v-138bea45 {
- margin-top: 120rpx;
- margin-bottom: 40rpx;
- }
- .info-card.data-v-138bea45 {
- background: #fff;
- border-radius: 40rpx;
- margin: 0 32rpx 32rpx 32rpx;
- padding: 40rpx 36rpx 36rpx 36rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
- position: relative;
- }
- .card-title-row.data-v-138bea45 {
- display: flex;
- align-items: center;
- margin-bottom: 32rpx;
- }
- .card-title.data-v-138bea45 {
- font-size: 32rpx;
- font-weight: bold;
- color: #222;
- margin-right: 18rpx;
- }
- .status-tag.data-v-138bea45 {
- font-size: 28rpx;
- border-radius: 0 20rpx 0 0;
- padding: 8rpx 32rpx;
- font-weight: 400;
- position: absolute;
- right: 0;
- top: 0;
- }
- .status-tag.orange.data-v-138bea45 {
- background: #fff7e6;
- color: #ffb400;
- }
- .status-tag.red.data-v-138bea45 {
- background: #ffeaea;
- color: #ff4d4f;
- }
- .status-tag.gray.data-v-138bea45 {
- background: #f5f5f5;
- color: #999;
- }
- .info-row.data-v-138bea45 {
- display: flex;
- align-items: center;
- min-height: 60rpx;
- margin-bottom: 0;
- }
- .info-row .label.data-v-138bea45 {
- font-size: 26rpx;
- color: #b3b3b3;
- width: 180rpx;
- font-weight: 400;
- }
- .info-row .value.data-v-138bea45 {
- font-size: 30rpx;
- color: #222;
- font-weight: 500;
- flex: 1;
- word-break: break-all;
- }
- .divider.data-v-138bea45 {
- height: 2rpx;
- background: #f3f3f3;
- margin: 18rpx 0 18rpx 0;
- border: none;
- }
- .bottom-bar.data-v-138bea45 {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #f7f7f7;
- padding-bottom: env(safe-area-inset-bottom);
- padding-top: 24rpx;
- padding-bottom: 24rpx;
- z-index: 20;
- gap: 32rpx;
- }
- .action-btn.data-v-138bea45 {
- flex: 1;
- height: 80rpx;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-weight: 500;
- border: 2rpx solid #ffd36d;
- background: #fffbe6;
- color: #ffb800;
- box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.03);
- }
- .action-btn.primary.data-v-138bea45 {
- color: #fff;
- border: none;
- background: linear-gradient(90deg, #FFD36D 0%, #FFA800 100%);
- }
- .action-btn.danger.data-v-138bea45 {
- color: #ffb800;
- border: 2rpx solid #ffd36d;
- background: #fffbe6;
- }
|