12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .hand_writing_container {
- width: 100%;
- padding: 0rpx 40rpx;
- box-sizing: border-box;
- }
- .tit_vi{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .tips_title {
- height: 40rpx;
- line-height: 60rpx;
- margin-bottom: 20rpx;
- font-size: 20rpx;
- font-weight: 500;
- color: #181818;
- text-align: left;
- }
- .canvas {
- width: 100%;
- height: 66.194968vh;
- margin-bottom: 3.7735849vh;
- box-sizing: border-box;
- border: 1rpx dashed #555;
- }
- .firstCanvas {
- background-color: white;
- width: 100%;
- height: 100%;
- }
- .btn_container {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- }
- .btn {
- width: 120rpx;
- height: 35rpx;
- padding: 0 10rpx;
- box-sizing: border-box;
- border-radius: 50rpx;
- /* justify-content:space-between; */
- display: flex;
- align-items: center;
- justify-content:center;
- margin-left: 20rpx;
- }
- .btn text {
- /* line-height: 35rpx; */
- font-size: 16rpx;
- color: #fff;
- padding-left: 10rpx;
- }
- .btn i {
- font-size: 16px;
- color: #fff;
- }
- .btn i.icon-wodetijiao {
- font-size: 22rpx;
- color: #fff;
- }
- .clean {
- background-color: #07c160;
- }
- .submit {
- background-color: #ff3d33;
- }
|