1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .index-wrap {
- flex-direction: column;
-
-
- .fixed-tabbar {
- flex-direction: column;
- .tabbar-item__wrap {
- height: 120px;
- flex-shrink: 0;
- background-color: #fff;
- }
- .tabbar-item {
- flex: 1;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- image {
- width: 46px;
- // height: 46px;
- }
- text {
- color: #999;
- font-size: 24px;
- }
- .tabbar-name__cur {
- color: #EF5952;
- }
- }
- }
- .tab-content {
- flex: 1;
- }
- }
- .stack-popup {
- background-color: rgba(0, 0, 0, .6);
- width: 100%;
- height: 100%;
- justify-content: center;
- align-items: center;
- .customer-popup {
- width: 600px;
- border-radius: 6px;
- background-color: #fff;
- flex-direction: column;
- align-items: center;
- .title {
- width: 100%;
- font-size: 30px;
- text-align: center;
- color: #333;
- line-height:104px;
- border-bottom: 2px solid #f7f7f7;
- }
- .desc{
- margin:40px 80px;
- font-size:28px;
- color:#666;
- text-align: center;
- }
- image {
- margin: 0 auto 10px;
- width: 280px;
- height: 280px;
- }
- .duplication{
- margin-bottom: 40px;
- }
- .duplication-text{
- font-size:24px;
- }
- .duplication-button{
- color:#EF5952;
- border:2px solid #EF5952;
- padding:2px 8px;
- border-radius: 20px;
- font-size:20px;
- margin-left:10px;
- }
- }
- }
- .sign-icon{
- position: fixed;
- width:150px;
- height:150px;
- right:20px;
- bottom: 300px;
- }
|