| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- // 导航栏
- .nav-bar {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 30rpx;
- padding: 0 40rpx;
- .nav-left {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .nav-title {
- color: rgba(51, 51, 51, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 700;
- line-height: 26px;
- text-align: center;
- }
- .nav-right {
- min-width: 38rpx;
- }
- }
- // 表单内容
- .form-container {
- padding: 0 40rpx;
-
- .form-item {
- margin-bottom: 32rpx;
- .form-label {
- color: rgba(31, 44, 55, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 500;
- line-height: 22px;
- letter-spacing: 0%;
- text-align: left;
- margin-bottom: 20rpx;
- position: relative;
- .word-count {
- font-size: 24rpx;
- color: #aaa;
- position: absolute;
- bottom: 0;
- right: 0;
- }
- .required-mark {
- color: #FF3B30;
- font-size: 18px;
- font-weight: 500;
- margin-right: 4rpx;
- }
- .label-text {
- color: rgba(31, 44, 55, 1);
- font-family: DM Sans;
- font-size: 16px;
- font-weight: 500;
- line-height: 22px;
- letter-spacing: 0%;
- text-align: left;
- }
- }
- }
- }
- .button-section {
- padding: 28rpx 40rpx;
- box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
- }
- .submit-btn {
- flex-shrink: 0;
- border-radius: 999px;
- box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
- background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
- color: rgba(255, 255, 255, 1);
- font-family: DM Sans;
- font-size: 32rpx;
- font-weight: 400;
- line-height: 48rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 16rpx 32rpx;
- box-sizing: border-box;
- }
- .link-btn {
- text-align: center;
- color: rgba(1, 107, 246, 1);
- font-size: 16px;
- font-weight: 400;
- line-height: 16px;
- margin-bottom: 32rpx;
- }
- // 底部提交按钮
- .fixed-section {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 40rpx;
- box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
- background-color: #fff;
- .submit-btn {
- height: 90rpx;
- font-size: 32rpx;
- border-radius: 90rpx;
- background: linear-gradient(90.00deg, rgba(13, 39, 247, 1),rgba(19, 193, 234, 1));
- }
- }
|