12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- page{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- /* overflow-y: scroll; */
- }
- map{
- width: 100%;
- }
- .box{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 10rpx;
- padding-bottom: 20rpx;
- /* height: 540rpx; */
- overflow-y: scroll;
- }
- .box .title{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box .title text:nth-of-type(1){
- font-size:32rpx;
- font-family:PingFang-SC-Regular;
- font-weight:400;
- color:rgba(42,42,42,1);
- }
- .box .title text:nth-of-type(2){
- width:80rpx;
- height:4rpx;
- background:rgba(24,213,185,1);
- border-radius:2rpx;
- margin-top: 18rpx;
- }
- .box .list{
- width: 80%;
- display: flex;
- flex-direction: column;
- margin-top: 40rpx;
- }
- .box .list view{
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin-bottom: 34rpx;
- }
- .box .list view text{
- font-size:24rpx;
- font-family:PingFang-SC-Regular;
- font-weight:400;
- color:rgba(42,42,42,1);
- }
- .box .bottom{
- display: flex;
- width: 80%;
- justify-content: space-between;
- align-items: center;
- margin-top: -6rpx;
- }
- .box .bottom .left{
- display: flex;
- flex-direction: column;
- }
- .box .bottom .right{
- display: flex;
- align-items: center;
- justify-content: center;
- font-size:24rpx;
- font-family:PingFang-SC-Regular;
- font-weight:400;
- margin-right: -14rpx;
- }
|