123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /* components/camera-face/index.wxss */
- .page-body {
- width: 100%;
- height: 100%;
- background: #ffffff;
- }
- .camera-box {
- width: 750rpx;
- height: 750rpx;
- margin-top: 50rpx;
- position: relative;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .camera-circle {
- width: 540rpx;
- height: 540rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- border: 2px solid #6699cc;
- }
- .camera {
- width: 480rpx;
- height: 480rpx;
- z-index: 1;
- border-radius: 50%;
- }
- .half-circle {
- width: 480rpx;
- height: 100rpx;
- background-color: rgba(0, 0, 0, 0.2);
- border-radius: 50% 50% 0 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .half-circle p {
- font-family: "Microsoft YaHei";
- font-size: 30rpx;
- color: white;
- line-height: 70rpx;
- }
- .img-view {
- width: 750rpx;
- height: 505rpx;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 999;
- }
- .mask-img {
- width: 750rpx;
- height: 505rpx;
- }
- .bottom-view {
- width: 100%;
- height: 120rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 30rpx;
- }
- /* 底部按钮和提示文字 */
- .bottom-btn {
- font-family: "Microsoft YaHei";
- font-size: large;
- width: 300rpx;
- height: 70rpx;
- line-height: 70rpx;
- text-align: center;
- background: rgba(250, 250, 250, 0.8);
- border-radius: 35rpx;
- }
- .bottom-tips {
- width: 100%;
- height: 35rpx;
- color: black;
- line-height: 35rpx;
- text-align: center;
- }
- /* 顶部提示文字 */
- .top-view {
- width: 100%;
- height: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .top-tips {
- font-family: "Microsoft YaHei UI Bold";
- font-size: 50rpx;
- color: black;
- text-align: center;
- }
|