1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // @import url("./root.css");
-
- [rise-fall='green_rise']{
- // 绿涨红跌
- .rise{
- color: #06c174;
- }
- .fall{
- color: red;
- }
- .rise-btn{
- background-color: #06c174;
- }
- .fall-btn{
- background-color: red;
- }
- }
- [rise-fall='red_rise']{
- // 红涨绿跌
- .fall{
- color: #06c174;
- }
- .rise{
- color: red;
- }
- // 红涨绿跌
- .fall-btn{
- background-color: #06c174;
- }
- .rise-btn{
- background-color: red;
- }
- }
-
-
- .popup-box {
- width: 100%;
- background-color: #Fff;
- border-radius: 50rpx 50rpx 0px 0px;
- .popup-title {
- width: 100%;
- height: 113rpx;
- border-radius: 50rpx 50rpx 0px 0px;
- background-color: #F7F7F7 !important;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 40rpx;
- font-weight: 700;
- .title-side {
- flex-shrink: 0;
- font-size: 28rpx;
- width: 40rpx;
- height: 100%;
- line-height: 113rpx;
- color: #666;
- font-weight: 400;
- }
- }
- }
|