123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /* pages/signature/signature.wxss */
- page {
- background: #fbfbfb;
- height: auto;
- overflow: hidden;
- }
- .wrapper {
- width: 100%;
- height: 95vh;
- margin: 30rpx 0;
- overflow: hidden;
- display: flex;
- align-content: center;
- flex-direction: row;
- justify-content: center;
- font-size: 28rpx;
- }
- .handWriting {
- background: #fff;
- width: 100%;
- height: 95vh;
- }
- .handRight {
- display: inline-flex;
- align-items: center;
- }
- .handCenter {
- border: 4rpx dashed #e9e9e9;
- flex: 5;
- overflow: hidden;
- box-sizing: border-box;
- }
- .handTitle {
- transform: rotate(90deg);
- flex: 1;
- color: #666;
- }
- .handBtn button {
- font-size: 28rpx;
- }
- .handBtn {
- height: 95vh;
- display: inline-flex;
- flex-direction: column;
- justify-content: space-between;
- align-content: space-between;
- flex: 1;
- }
- .delBtn {
- position: absolute;
- top: 250rpx;
- left: 0rpx;
- transform: rotate(90deg);
- color: #666;
- }
- .delBtn image {
- position: absolute;
- top: 13rpx;
- left: 25rpx;
- }
- .subBtn {
- position: absolute;
- bottom: 52rpx;
- left: -3rpx;
- display: inline-flex;
- transform: rotate(90deg);
- background: #008ef6;
- color: #fff;
- margin-bottom: 30rpx;
- text-align: center;
- justify-content: center;
- }
- /*Peach - 新增 - 保存*/
- .saveBtn {
- position: absolute;
- top: 375rpx;
- left: 0rpx;
- transform: rotate(90deg);
- color: #666;
- }
- .previewBtn {
- position: absolute;
- top: 500rpx;
- left: 0rpx;
- transform: rotate(90deg);
- color: #666;
- }
- .pdfBtn {
- position: absolute;
- top: 630rpx;
- left: 0rpx;
- transform: rotate(90deg);
- color: #666;
- }
- .uploadBtn {
- position: absolute;
- top: 625rpx;
- left: 0rpx;
- transform: rotate(90deg);
- color: #666;
- }
- /*Peach - 新增 - 保存*/
- .black-select {
- width: 60rpx;
- height: 60rpx;
- position: absolute;
- top: 30rpx;
- left: 25rpx;
- }
- .black-select.color_select {
- width: 90rpx;
- height: 90rpx;
- top: 30rpx;
- left: 10rpx;
- }
- .red-select {
- width: 60rpx;
- height: 60rpx;
- position: absolute;
- top:140rpx;
- left:25rpx;
- }
- .red-select.color_select {
- width: 90rpx;
- height: 90rpx;
- top: 120rpx;
- left: 10rpx;
- }
|