12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* 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: 28%;
- right: 0;
- content: "";
- width: 20rpx;
- height: 20rpx;
- 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
- }
|