123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /* pages/corporatebanktransfer/corporatebanktransfer.wxss */
- page {
- background-color: #F7F7F7;
- padding-bottom: 158rpx;
- }
- /* 身体 */
- .body {
- width: 93%;
- margin: 0 auto;
- }
- .group {
- margin-top: 40rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .group-title p:first-child {
- color: #FF4C1A;
- font-size: 32rpx;
- }
- .group-title p:last-child {
- color: #656565;
- font-size: 32rpx;
- font-weight: 600;
- }
- .group input {
- height: 92rpx;
- width: 92%;
- color: #656565;
- font-size: 28rpx;
- border-radius: 20rpx;
- }
- .group-content {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 20rpx;
- margin-top: 24rpx;
- }
- .group-content-row {
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #656565;
- font-size: 32rpx;
- }
- .group-content-row>view:nth-child(1) {
- width: 332rpx;
- height: 100%;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .group-content-row>view:nth-child(2) {
- color: #989898;
- font-size: 32rpx;
- }
- .group-content-row>view:nth-child(3) {
- width: 332rpx;
- height: 100%;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .group-content-row-left {
- color: #656565;
- font-size: 32rpx;
- margin-left: 30rpx;
- }
- .group-content-row-right {
- margin-right: 24rpx;
- }
- .additional-text {
- color: #FF874E;
- font-size: 24rpx;
- margin-top: 30rpx;
- margin-left: 4rpx;
- }
- .jieshao-area {
- width: 93%;
- height: 170rpx;
- padding-top: 26rpx;
- }
- .leng {
- width: 93%;
- display: flex;
- flex-direction: row-reverse;
- color: #989898;
- font-size: 24rpx;
- margin-bottom: 18rpx;
- }
- /* 上传 */
- .upload {
- display: flex;
- flex-wrap: wrap;
- padding: 40rpx 0;
- }
- .upload-item {
- background-color: #989898;
- border-radius: 20rpx;
- position: relative;
- }
- .column3 {
- height: 216rpx;
- width: calc((100% - 4 * 16rpx) / 3);
- margin-bottom: 32rpx;
- }
- .column3:not(:nth-child(3n+1)) {
- margin-left: 32rpx;
- }
- .upload-box {
- display: flex;
- flex-direction: column;
- text-align: left;
- margin-left: 32rpx;
- }
- .upload-button {
- width: 146rpx;
- height: 140rpx;
- background-color: #FFFFFF;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .upload-box text {
- color: #656565;
- font-size: 28rpx;
- font-weight: 600;
- }
- .upload-text {
- width: 140rpx;
- text-align: center;
- margin-top: 10rpx;
- }
- /* 底部 */
- .foot {
- width: 100%;
- bottom: 0;
- height: 158rpx;
- background-color: #F7F7F7;
- position: fixed;
- display: flex;
- justify-content: center;
- }
- .foot>button {
- width: 622rpx;
- height: 74rpx;
- background-color: #FF874E;
- color: white;
- border-radius: 37rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 22rpx;
- font-size: 28rpx;
- font-weight: 600;
- }
|