|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* 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;
- }
- main-title{
- background-image: linear-gradient(to right, #2C8E68 , #B3DB62);
- color: #ffffff;
- font-size: 18rpx;
- padding: 10rpx 0;
- text-align: center;
- }
- .main-box{
- background: #ffffff;
- padding: 20rpx;
- width: 94%;
- margin: 0 auto;
- border-radius: 10rpx;
- box-shadow: 0px 5rpx 5rpx rgba(0, 0, 0, 0.16);
- margin-top: 20rpx;
- }
- .main-box block{
- float: right;
- }
- .title{
- padding: 10rpx calc(3% + 20px);
- color : #07c160;
- margin-top:30rpx;
- font-size:30rpx;
- }
- .table-box>view{
- display: flex;
- justify-content: space-between;
- border-bottom: 1rpx solid #ecebeb;
- line-height: 80rpx;
- }
- .table-box text{
- line-height: 80rpx;
- }
-
|