| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- @import '@/utils/common.scss';
- .day_night_top {
- display: flex;
- flex-direction: row;
- align-items: center;
- color: #fff;
- // background-color: red;
- }
- .day_night_title {
- font-size: 32px;
- line-height: 32px;
- opacity: 0.6;
- }
- .free {
- height: 36px;
- line-height: 35px;
- border-radius: 18px;
- font-size: 20px;
- display: flex;
- // align-items: center;
- // justify-content: center;
- padding-left: 16px;
- padding-right: 16px;
- margin-left: 6px;
- }
- .day_night_card_footer {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding-top: 20px;
- margin-top: 20px;
- border-top-style: solid;
- border-top-color: #D8D8D852;
- border-top-width: 1px;
- }
- .day_night_value {
- font-size: 32px;
- line-height: 32px;
- font-weight: bold;
- left: 0;
- // background-color: red;
- }
- .day_night_desc {
- font-size: 20px;
- line-height: 32px;
- color: #fff;
- opacity: 0.2;
- width: 468px;
- margin-top: 8px;
- // background-color: red;
- }
- .day_night_card_btn {
- // width: 598px;
- height: 88px;
- border-radius: 44px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #000;
- font-size: 28px;
- font-weight: bold;
- }
- /* #ifdef weapp */
- .buy_night {
- background: linear-gradient(to right, #1446B9, #AAFF00);
- }
- .buy_day {
- background: linear-gradient(to right, #C9DAFF, #AAFF00);
- }
- /* #endif */
- /* #ifdef rn */
- /* #endif */
- .day_location_btn {
- background-color: #C9DAFF33;
- color: #C9DAFF;
- height: 72px;
- padding-left: 48px;
- padding-right: 48px;
- border-radius: 36px;
- text-align: center;
- font-size: 24px;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .night_location_btn {
- background-color: #1446B933;
- color: #1446B9;
- height: 72px;
- padding-left: 48px;
- padding-right: 48px;
- border-radius: 36px;
- text-align: center;
- font-size: 24px;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .night_choose_location {
- margin-top: 8px;
- line-height: 32px;
- font-weight: bold;
- font-size: 24px;
- width: 438px;
- font-weight: bold;
- color: #1446B9;
- }
- .day_choose_location {
- margin-top: 8px;
- line-height: 32px;
- font-weight: bold;
- font-size: 24px;
- width: 438px;
- font-weight: bold;
- color: #C9DAFF;
- }
- .switch {
- transform: scale(0.85);
- transform-origin: right center;
- margin-right: -10px;
- }
- .day_night_detail {
- display: flex;
- flex-direction: row;
- margin-top: 18px;
- margin-bottom: 14px;
- // background-color: pink;
- }
- .day_night_detail_icon {
- margin-right: 22px;
- // background-color: red;
- }
- .duration_title2 {
- font-size: 32px;
- line-height: 32px;
- color: #fff;
- font-weight: 400;
- opacity: 0.6;
- }
- .duration_value22 {
- font-weight: bold;
- font-size: 36px;
- line-height: 36px;
- margin-top: 8px;
- display: flex;
- flex-shrink: 0;
- }
- .daynightsummary {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .sunicon {
- width: 72px;
- height: 72px;
- margin-right: -8px; //-40px;
- }
- .sunicon_bg {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .content_icon_bg {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- // background-color: pink;
- }
- .sunrise_item {
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- }
- .arrow2 {
- width: 48px;
- height: 48px;
- opacity: 0.2;
- }
- .myMap {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 0;
- }
- .day_card_header{
- position: absolute;
- right: 0;
- top: -16px;
- }
- .day_card_footer {
- position: absolute;
- right: 0px;
- bottom: -8px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .day_card_footer_date {
- opacity: 0.4;
- color: #767676;
- font-size: 24px;
- line-height: 48px;
- }
- .card_arrow {
- width: 40px;
- height: 40px;
- opacity: 0.2;
- }
- .footer_desc_text{
- font-size: 24px;
- line-height: 24px;
- margin-left: 5px;
- }
|