style:去掉翻转文字,按钮改为圆形;完成/顶部文字加粗加大

This commit is contained in:
ShenQiLun 2026-06-25 17:32:15 +08:00
parent 60cbfdd364
commit 62c9c342ca

View File

@ -28,7 +28,6 @@
<view class="cc-topbar-right">
<view class="cc-flip-btn" @click="flipCamera">
<text class="cc-flip-icon">↺</text>
<text class="cc-flip-label">翻转</text>
</view>
</view>
</view>
@ -215,8 +214,8 @@
}
.cc-topbar-title {
color: #ffffff;
font-size: 32rpx;
font-weight: 500;
font-size: 36rpx;
font-weight: 700;
}
.cc-topbar-right {
width: 120rpx;
@ -225,8 +224,8 @@
/* 翻转按钮(在右上角) */
.cc-flip-btn {
width: 80rpx; height: 64rpx;
border-radius: 32rpx;
width: 68rpx; height: 68rpx;
border-radius: 68rpx;
border-width: 2rpx;
border-color: rgba(255,255,255,0.3);
border-style: solid;
@ -235,14 +234,7 @@
}
.cc-flip-icon {
color: #ffffff;
font-size: 30rpx;
line-height: 36rpx;
text-align: center;
}
.cc-flip-label {
color: rgba(255,255,255,0.7);
font-size: 18rpx;
line-height: 22rpx;
font-size: 36rpx;
text-align: center;
}
@ -295,11 +287,11 @@
/* 完成按钮(在底部右侧) */
.cc-confirm-btn {
color: #ffffff;
font-size: 30rpx;
font-weight: bold;
padding-left: 30rpx; padding-right: 30rpx;
padding-top: 14rpx; padding-bottom: 14rpx;
border-radius: 40rpx;
font-size: 34rpx;
font-weight: 700;
padding-left: 36rpx; padding-right: 36rpx;
padding-top: 16rpx; padding-bottom: 16rpx;
border-radius: 44rpx;
background-color: #409eff;
}