| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**app.wxss**/
- @import 'style/weui.wxss';
- /* -------------------公用bejin ---------------------*/
- page{
- padding: 0;
- margin: 0;
- font-family: "PingFang-SC-Medium";
- color: #666;
- width: 100%;
- box-sizing: border-box;
- }
- view{
- box-sizing: border-box;
- width: 100%;
- }
- image{
- border-radius: 6px;
- }
- /* 隔离线 */
- .lineHeight{
- height: 20rpx;
- background:rgba(244,244,244,1);
- }
- /* 点 */
- .spot{
- width:28rpx;
- height:28rpx;
- background:#3573EA;
- border-radius:50%;
- margin-top: 8rpx;
- }
- .spot1{
- float: left;
- width:28rpx;
- height:28rpx;
- background:#359e08;
- border-radius:50%;
- margin-top: 8rpx;
- }
- .spot2{
- float: left;
- width:28rpx;
- height:28rpx;
- background:#e2c300;
- border-radius:50%;
- margin-top: 8rpx;
- }
- .spot3{
- float: left;
- width:28rpx;
- height:28rpx;
- background:#de1212;
- border-radius:50%;
- margin-top: 8rpx;
- }
- .content{
- padding: 30rpx;
- }
- /* 标题名 */
- .parkName{
- height: 88rpx;
- line-height: 88rpx;
- font-family: "PingFang-SC-Medium";
- color: #333;
- text-align: center;
- font-size: 20px;
- font-weight: 800;
- }
- .size14{
- font-size: 14px;
- }
- .weight700{
- font-weight: 700;
- }
- /* -------------------公用end ---------------------*/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- touch-action: none;
- box-sizing: border-box;
-
- }
|