123456789101112131415161718192021222324252627282930 |
- /* 开发者 */
- .header{
- display: flex;
- align-items: center;
- line-height: 60rpx;
- font-size: 32rpx;
- background-color: #fff;
- }
- .section{
- margin-bottom: 50px;
- }
- .section picker::after{
- font-family: "cuIcon";
- display: block;
- content: "\e6a3";
- position: absolute;
- font-size: 34rpx;
- color: var(--grey);
- line-height: 100rpx;
- width: 60rpx;
- text-align: center;
- top: 0;
- bottom: 0;
- right: -20rpx;
- margin: auto;
- margin-top: auto;
- margin-right: auto;
- margin-bottom: auto;
- margin-left: auto;
- }
|