|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* pages/apply/index.wxss */
- .inComeUnit{
- border:1rpx solid #ddd;
- width:90%;
- margin:0 auto;
-
- }
- .top{
- display: flex;
- width: 94%;
- margin: 0 auto;
- background-color: #ffffff;
- border-radius: 10rpx;
- margin-top: 3vw;
- overflow: hidden;
- }
- .top view{
- padding: 40rpx 15rpx;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .top image{
- position: absolute;
- width: 94%;
- }
- .top-title{
- flex: 1;
- text-align: center;
- }
- .top-tit{
- color: #fff;
- }
- page {
- background: #fbfbfb;
- height: auto;
- overflow: hidden;
- }
-
- .wrapper {
- width: 100%;
- height: 100vh;
- overflow: hidden;
- display: flex;
- align-content: center;
- flex-direction: row;
- justify-content: center;
- font-size: 28rpx;
- }
-
- .hand-writing {
- background: #fff;
- width: 100%;
- height: 100vh;
- }
-
- .hand-right {
- display: inline-flex;
- align-items: center;
- height: 100%;
- width: 60px;
- }
-
- .hand-center {
- border: 1rpx dashed #e9e9e9;
- flex: 1;
- overflow: hidden;
- box-sizing: border-box;
- }
-
- .hand-title {
- transform: rotate(90deg);
- flex: 1;
- position: absolute;
- width: 100px;
- right: -19px;
- }
-
- .hand-left {
- height: 100vh;
- width: 60px;
- }
-
- .del-btn {
- position: absolute;
- top: 130px;
- bottom: 16px;
- transform: rotate(90deg);
- color: #02d000;
- height: 36px;
- }
-
- .del-btn image {
- position: absolute;
- top: 13rpx;
- left: 25rpx;
- }
-
- .sub-btn {
- position: absolute;
- bottom: 52rpx;
- color: #999999;
- transform: rotate(90deg);
- margin-bottom: 30rpx;
- }
|