1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/kids_information/kids_information.wxss */
- @import '../../templates/picker/picker.wxss';
- .list {
- background: #fff;
- border-bottom: solid 1rpx #f4f4f4;
- padding-left: 30rpx;
- }
- .li {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: solid 1rpx #f4f4f4;
- }
- .li-label {
- font-size: 30rpx;
- color: #393939;
- }
- .li-content {
- text-align: right;
- }
- .li-contents {
- text-align: right;
- width: 50rpx;
- height: 38rpx;
- }
- .li-arrow {
- position: relative;
- padding-right: 30rpx;
-
- }
- .li-arrow::after {
- position: absolute;
- top: 17%;
- right: 0;
- content: "";
- width: 17rpx;
- height: 17rpx;
- border-top: 5rpx solid #bfbfbf;
- border-right: 5rpx solid #bfbfbf;
- transform: rotate(45deg);
- }
- .li-arrow-img {
- position: relative;
- padding-right: 30rpx;
-
- }
- .li-arrow-img::after {
- position: absolute;
- top: 37%;
- right: 0;
- content: "";
- width: 17rpx;
- height: 17rpx;
- border-top: 5rpx solid #bfbfbf;
- border-right: 5rpx solid #bfbfbf;
- transform: rotate(45deg);
- }
- .li-image {
- width: 60rpx;
- height: 60rpx;
- border-radius: 60rpx;
- }
- .li-text {
- font-size: 28rpx;
- color: #7e7e7e;
- }
- .input-placeholder,
- .li-input {
- /* background: #bfbfbf; */
- font-size: 28rpx;
- color: #7e7e7e;
- }
- .button {
- margin: 30rpx 24rpx;
- padding: 34rpx;
- text-align: center;
- background: #FF6465;
- color: #fff;
- font-size: 34rpx;
- border-radius: 12rpx;
- }
- .li-label-star{
- color: #FF6465
- }
- .li-margin{
- justify-content: space-around !important;
- }
|