123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- position: relative;
- padding: 20rpx 36rpx;
- box-sizing: border-box;
- }
- .wrap::after {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 300rpx;
- background-color: #F2501A;
- border-radius: 0 0 60rpx 60rpx;
- }
- .module {
- width: 100%;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- position: relative;
- padding: 40rpx 36rpx 24rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .module::after {
- content: "";
- width: calc(100% - 80rpx);
- height: 100rpx;
- position: absolute;
- top: -20rpx;
- left: 40rpx;
- background-color: #FFB39A;
- border-radius: 20rpx;
- z-index: -1;
- }
- .coumn {
- display: flex;
- flex-direction: column;
- z-index: 100;
- }
- .head {
- width: 100%;
- display: flex;
- flex-direction: column;
- margin-bottom: 60rpx;
- }
- .font-1 {
- color: #FFFFFF;
- font-size: 45rpx;
- margin-bottom: 3rpx;
- }
- .font-2 {
- color: #FFFFFF;
- font-size: 28rpx;
- }
- .module-row {
- width: 100%;
- padding: 14rpx 0;
- border-bottom: 1px solid #F2F2F2;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .module-row:last-child {
- border-bottom: none;
- margin-bottom: 0;
- }
- .module-label {
- width: 100%;
- color: #333333;
- font-size: 30rpx;
- position: relative;
- padding: 0 40rpx;
- box-sizing: border-box;
- margin-bottom: 15rpx;
- }
- .module-label::after {
- content: "";
- width: 10rpx;
- height: 28rpx;
- background-color: #F2501A;
- border-radius: 16rpx;
- position: absolute;
- left: 0;
- top: 50%;
- transform: translate(0, -50%);
- }
- .bottom-row {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 0 0 38rpx;
- box-sizing: border-box;
- }
- .placeholder {
- color: #BFBFBF;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- }
- .gray {
- flex: 1;
- font-size: 30rpx;
- color: #BFBFBF;
- }
- .selected {
- flex: 1;
- font-size: 30rpx;
- }
- .back-icon {
- width: 20rpx;
- }
- .textarea-box {
- width: 100%;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- padding: 20rpx 28rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .textarea-label {
- width: 100%;
- color: #333333;
- font-size: 30rpx;
- margin-bottom: 10rpx;
- }
- .textarea {
- width: 100%;
- height: 310rpx;
- font-size: 30rpx;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 46rpx 0;
- }
- .btn-box button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E0E0E0;
- color: #919191;
- font-size: 34rpx;
- border-radius: 100rpx;
- }
- .active {
- background-color: #F2501A !important;
- color: #fff !important;
- }
- .bottom-row-between {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .customer-service {
- display: flex;
- align-items: center;
- font-size: 26rpx;
- color: #F2501A;
- }
- .customer-service image {
- width: 28rpx;
- margin-right: 6rpx;
- }
- .select-btn {
- display: flex;
- align-items: center;
- border-radius: initial;
- background-color: initial;
- margin: 20rpx 0;
- color: #202020;
- font-size: 26rpx;
- }
- .select-btn image {
- width: 28rpx;
- height: 28rpx;
- margin-right: 20rpx;
- }
|