|
- /* pages/mallInfo.wxss */
- @import "../../app.wxss";
-
- page {
- background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%);
- padding: 0;
- }
-
- .codeBox {
- background: linear-gradient(180deg, #FD832D 0%, #FE4A16 100%);
- height: 100%;
- overflow: auto;
- }
-
- .none {
- font-size: 24rpx;
- text-align: center;
- margin-top: 38rpx;
- color: #FFFFFF;
- float: none !important;
- }
-
- .fl {
- float: left;
- }
-
- .fr {
- float: right;
- }
-
- .goback {
- position: fixed;
- right: 50rpx;
- bottom: 60rpx;
- width: 100rpx !important;
- height: 100rpx;
- z-index: 100;
- background: rgba(255, 255, 255, 1);
- line-height: 95rpx;
- border: 1rpx solid rgba(227, 227, 227, 1);
- border-radius: 50%;
- }
-
- .goback image {
- position: absolute;
- width: 60rpx;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto;
- }
-
- .code {
- width: 690rpx;
- background: #fff;
- margin: 20rpx auto;
- border-radius: 10rpx;
- padding-top: 18rpx;
- padding-bottom: 18rpx;
- }
-
- .code image {
- display: block;
- width: 650rpx;
- margin: auto;
- }
-
- .info {
- width: 650rpx;
- background: #fff;
- margin: 20rpx auto;
- border-radius: 10rpx;
- padding: 20rpx;
- }
-
- .title {
- margin: 20rpx 0;
- text-align: center;
- font-size: 50rpx;
- }
-
- .phone,
- .park,
- .introduction {
- font-size: 30rpx;
- line-height: 40rpx;
- margin: 20rpx 0;
- }
-
- .time {
- margin: 20rpx 0;
- font-size: 30rpx;
- display: flex;
- }
-
- .timesBox {
- display: flex;
- flex-direction: column;
- }
-
- .times {
- margin-left: 10rpx;
- }
-
- .times text {
- line-height: 40rpx;
- }
-
- .park>text:nth-child(2),
- .phone>text:nth-child(2) {
- margin-left: 10rpx;
- }
-
- .tel {
- margin: 0 10rpx;
- width: 30rpx;
- height: 30rpx;
- }
-
- .phoneNum {
- color: #FD832D;
- }
-
- .version {
- position: absolute;
- color: #ffffff;
- bottom: 50rpx;
- right: 20rpx;
- }
|