framework7rails 4.0.0 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +20 -22
- data/lib/framework7rails/version.rb +2 -2
- data/update_from_vendor.rb +5 -5
- data/vendor/assets/javascripts/framework7.js +286 -145
- data/vendor/assets/javascripts/framework7.js.map +1 -1
- data/vendor/assets/javascripts/framework7.min.js +22 -0
- data/vendor/assets/javascripts/framework7.min.js.map +1 -0
- data/vendor/assets/javascripts/my-app.js +48 -0
- data/vendor/assets/stylesheets/framework7.css +355 -250
- data/vendor/assets/stylesheets/framework7.min.css +15 -0
- data/vendor/assets/stylesheets/framework7.rtl.css +557 -0
- data/vendor/assets/stylesheets/framework7.rtl.min.css +15 -0
- data/vendor/assets/stylesheets/framework7.themes.css +2 -2
- data/vendor/assets/stylesheets/framework7.themes.min.css +15 -0
- data/vendor/assets/stylesheets/my-app.css +0 -0
- metadata +11 -4
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* Framework7 1.0.
|
2
|
+
* Framework7 1.0.2
|
3
3
|
* Full Featured Mobile HTML Framework For Building iOS Apps
|
4
4
|
*
|
5
5
|
* http://www.idangero.us/framework7
|
@@ -10,7 +10,7 @@
|
|
10
10
|
*
|
11
11
|
* Licensed under MIT
|
12
12
|
*
|
13
|
-
* Released on: February
|
13
|
+
* Released on: February 22, 2015
|
14
14
|
*/
|
15
15
|
html,
|
16
16
|
body {
|
@@ -378,38 +378,28 @@ p {
|
|
378
378
|
top: 0;
|
379
379
|
width: 100%;
|
380
380
|
height: 100%;
|
381
|
-
overflow: hidden;
|
382
381
|
background: #efeff4;
|
383
382
|
-webkit-transform: translate3d(0, 0, 0);
|
384
383
|
transform: translate3d(0, 0, 0);
|
385
|
-
opacity: 1;
|
386
|
-
-webkit-box-shadow: none;
|
387
|
-
box-shadow: none;
|
388
384
|
}
|
389
385
|
.page.cached {
|
390
386
|
display: none;
|
391
387
|
}
|
392
388
|
.page-on-left {
|
393
389
|
opacity: 0.9;
|
394
|
-
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
395
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
396
390
|
-webkit-transform: translate3d(-20%, 0, 0);
|
397
391
|
transform: translate3d(-20%, 0, 0);
|
398
392
|
}
|
399
|
-
.page-on-center {
|
393
|
+
.page-on-center .swipeback-page-shadow {
|
400
394
|
opacity: 1;
|
401
|
-
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
402
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
403
|
-
-webkit-transform: translate3d(0, 0, 0);
|
404
|
-
transform: translate3d(0, 0, 0);
|
405
395
|
}
|
406
396
|
.page-on-right {
|
407
|
-
-webkit-box-shadow: none;
|
408
|
-
box-shadow: none;
|
409
|
-
opacity: 1;
|
410
397
|
-webkit-transform: translate3d(100%, 0, 0);
|
411
398
|
transform: translate3d(100%, 0, 0);
|
412
399
|
}
|
400
|
+
.page-on-right .swipeback-page-shadow {
|
401
|
+
opacity: 0;
|
402
|
+
}
|
413
403
|
.page-content {
|
414
404
|
overflow: auto;
|
415
405
|
-webkit-overflow-scrolling: touch;
|
@@ -417,65 +407,126 @@ p {
|
|
417
407
|
-moz-box-sizing: border-box;
|
418
408
|
box-sizing: border-box;
|
419
409
|
height: 100%;
|
410
|
+
position: relative;
|
411
|
+
z-index: 1;
|
412
|
+
}
|
413
|
+
.swipeback-page-shadow {
|
414
|
+
position: absolute;
|
415
|
+
right: 100%;
|
416
|
+
top: 0;
|
417
|
+
width: 16px;
|
418
|
+
height: 100%;
|
419
|
+
background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
|
420
|
+
background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
|
421
|
+
z-index: -1;
|
422
|
+
content: '';
|
420
423
|
}
|
421
|
-
.page-
|
424
|
+
html.android .swipeback-page-shadow {
|
425
|
+
display: none;
|
426
|
+
-webkit-animation: none;
|
427
|
+
animation: none;
|
428
|
+
}
|
429
|
+
.page-transitioning,
|
430
|
+
.page-transitioning .swipeback-page-shadow {
|
422
431
|
-webkit-transition-duration: 400ms;
|
423
432
|
transition-duration: 400ms;
|
424
433
|
}
|
434
|
+
.page-from-right-to-center:before,
|
435
|
+
.page-from-center-to-right:before {
|
436
|
+
position: absolute;
|
437
|
+
right: 100%;
|
438
|
+
top: 0;
|
439
|
+
width: 16px;
|
440
|
+
height: 100%;
|
441
|
+
background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
|
442
|
+
background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.2) 100%);
|
443
|
+
z-index: -1;
|
444
|
+
content: '';
|
445
|
+
}
|
446
|
+
html.android .page-from-right-to-center:before,
|
447
|
+
html.android .page-from-center-to-right:before {
|
448
|
+
display: none;
|
449
|
+
-webkit-animation: none;
|
450
|
+
animation: none;
|
451
|
+
}
|
425
452
|
.page-from-right-to-center {
|
426
453
|
-webkit-animation: pageFromRightToCenter 400ms forwards;
|
427
454
|
animation: pageFromRightToCenter 400ms forwards;
|
428
455
|
}
|
456
|
+
.page-from-right-to-center:before {
|
457
|
+
-webkit-animation: pageFromRightToCenterShadow 400ms forwards;
|
458
|
+
animation: pageFromRightToCenterShadow 400ms forwards;
|
459
|
+
}
|
429
460
|
.page-from-center-to-right {
|
430
461
|
-webkit-animation: pageFromCenterToRight 400ms forwards;
|
431
462
|
animation: pageFromCenterToRight 400ms forwards;
|
432
463
|
}
|
464
|
+
.page-from-center-to-right:before {
|
465
|
+
-webkit-animation: pageFromCenterToRightShadow 400ms forwards;
|
466
|
+
animation: pageFromCenterToRightShadow 400ms forwards;
|
467
|
+
}
|
433
468
|
@-webkit-keyframes pageFromRightToCenter {
|
434
469
|
from {
|
435
|
-
-webkit-box-shadow: none;
|
436
|
-
box-shadow: none;
|
437
470
|
-webkit-transform: translate3d(100%, 0, 0);
|
438
471
|
}
|
439
472
|
to {
|
440
|
-
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
441
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
442
473
|
-webkit-transform: translate3d(0, 0, 0);
|
443
474
|
}
|
444
475
|
}
|
476
|
+
@keyframes pageFromRightToCenter {
|
477
|
+
from {
|
478
|
+
transform: translate3d(100%, 0, 0);
|
479
|
+
}
|
480
|
+
to {
|
481
|
+
transform: translate3d(0, 0, 0);
|
482
|
+
}
|
483
|
+
}
|
484
|
+
@-webkit-keyframes pageFromRightToCenterShadow {
|
485
|
+
from {
|
486
|
+
opacity: 0;
|
487
|
+
}
|
488
|
+
to {
|
489
|
+
opacity: 1;
|
490
|
+
}
|
491
|
+
}
|
492
|
+
@keyframes pageFromRightToCenterShadow {
|
493
|
+
from {
|
494
|
+
opacity: 0;
|
495
|
+
}
|
496
|
+
to {
|
497
|
+
opacity: 1;
|
498
|
+
}
|
499
|
+
}
|
445
500
|
@-webkit-keyframes pageFromCenterToRight {
|
446
501
|
from {
|
447
|
-
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
448
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
449
502
|
-webkit-transform: translate3d(0, 0, 0);
|
450
503
|
}
|
451
504
|
to {
|
452
|
-
-webkit-box-shadow: none;
|
453
|
-
box-shadow: none;
|
454
505
|
-webkit-transform: translate3d(100%, 0, 0);
|
455
506
|
}
|
456
507
|
}
|
457
|
-
@keyframes
|
508
|
+
@keyframes pageFromCenterToRight {
|
458
509
|
from {
|
459
|
-
|
460
|
-
|
510
|
+
transform: translate3d(0, 0, 0);
|
511
|
+
}
|
512
|
+
to {
|
461
513
|
transform: translate3d(100%, 0, 0);
|
462
514
|
}
|
515
|
+
}
|
516
|
+
@-webkit-keyframes pageFromCenterToRightShadow {
|
517
|
+
from {
|
518
|
+
opacity: 1;
|
519
|
+
}
|
463
520
|
to {
|
464
|
-
|
465
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
466
|
-
transform: translate3d(0, 0, 0);
|
521
|
+
opacity: 0;
|
467
522
|
}
|
468
523
|
}
|
469
|
-
@keyframes
|
524
|
+
@keyframes pageFromCenterToRightShadow {
|
470
525
|
from {
|
471
|
-
|
472
|
-
box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
473
|
-
transform: translate3d(0, 0, 0);
|
526
|
+
opacity: 1;
|
474
527
|
}
|
475
528
|
to {
|
476
|
-
|
477
|
-
box-shadow: none;
|
478
|
-
transform: translate3d(100%, 0, 0);
|
529
|
+
opacity: 0;
|
479
530
|
}
|
480
531
|
}
|
481
532
|
.page-from-center-to-left {
|
@@ -496,19 +547,8 @@ p {
|
|
496
547
|
-webkit-transform: translate3d(-20%, 0, 0);
|
497
548
|
}
|
498
549
|
}
|
499
|
-
@-webkit-keyframes pageFromLeftToCenter {
|
500
|
-
from {
|
501
|
-
opacity: 0.9;
|
502
|
-
-webkit-transform: translate3d(-20%, 0, 0);
|
503
|
-
}
|
504
|
-
to {
|
505
|
-
opacity: 1;
|
506
|
-
-webkit-transform: translate3d(0, 0, 0);
|
507
|
-
}
|
508
|
-
}
|
509
550
|
@keyframes pageFromCenterToLeft {
|
510
551
|
from {
|
511
|
-
opacity: 1;
|
512
552
|
transform: translate3d(0, 0, 0);
|
513
553
|
}
|
514
554
|
to {
|
@@ -516,59 +556,25 @@ p {
|
|
516
556
|
transform: translate3d(-20%, 0, 0);
|
517
557
|
}
|
518
558
|
}
|
519
|
-
|
559
|
+
@-webkit-keyframes pageFromLeftToCenter {
|
520
560
|
from {
|
521
561
|
opacity: 0.9;
|
522
|
-
transform: translate3d(-20%, 0, 0);
|
562
|
+
-webkit-transform: translate3d(-20%, 0, 0);
|
523
563
|
}
|
524
564
|
to {
|
525
565
|
opacity: 1;
|
526
|
-
transform: translate3d(0, 0, 0);
|
527
|
-
}
|
528
|
-
}
|
529
|
-
html.android .page {
|
530
|
-
box-shadow: none !important;
|
531
|
-
}
|
532
|
-
html.android .page-from-right-to-center {
|
533
|
-
-webkit-animation: pageFromRightToCenterDegrade 400ms forwards;
|
534
|
-
animation: pageFromRightToCenterDegrade 400ms forwards;
|
535
|
-
}
|
536
|
-
html.android .page-from-center-to-right {
|
537
|
-
-webkit-animation: pageFromCenterToRightDegrade 400ms forwards;
|
538
|
-
animation: pageFromCenterToRightDegrade 400ms forwards;
|
539
|
-
}
|
540
|
-
@-webkit-keyframes pageFromRightToCenterDegrade {
|
541
|
-
from {
|
542
|
-
-webkit-transform: translate3d(100%, 0, 0);
|
543
|
-
}
|
544
|
-
to {
|
545
566
|
-webkit-transform: translate3d(0, 0, 0);
|
546
567
|
}
|
547
568
|
}
|
548
|
-
|
549
|
-
from {
|
550
|
-
-webkit-transform: translate3d(0, 0, 0);
|
551
|
-
}
|
552
|
-
to {
|
553
|
-
-webkit-transform: translate3d(100%, 0, 0);
|
554
|
-
}
|
555
|
-
}
|
556
|
-
@keyframes pageFromRightToCenterDegrade {
|
569
|
+
@keyframes pageFromLeftToCenter {
|
557
570
|
from {
|
558
|
-
transform: translate3d(
|
571
|
+
transform: translate3d(-20%, 0, 0);
|
559
572
|
}
|
560
573
|
to {
|
574
|
+
opacity: 1;
|
561
575
|
transform: translate3d(0, 0, 0);
|
562
576
|
}
|
563
577
|
}
|
564
|
-
@keyframes pageFromCenterToRightDegrade {
|
565
|
-
from {
|
566
|
-
transform: translate3d(0, 0, 0);
|
567
|
-
}
|
568
|
-
to {
|
569
|
-
transform: translate3d(100%, 0, 0);
|
570
|
-
}
|
571
|
-
}
|
572
578
|
/* === Toolbars === */
|
573
579
|
.navbar-inner,
|
574
580
|
.toolbar-inner {
|
@@ -823,7 +829,7 @@ html.ios-gt-6.pixel-ratio-3 .subnavbar:after {
|
|
823
829
|
.page .subnavbar {
|
824
830
|
position: absolute;
|
825
831
|
}
|
826
|
-
.page .subnavbar {
|
832
|
+
.page > .subnavbar {
|
827
833
|
top: 0;
|
828
834
|
margin-top: 0;
|
829
835
|
}
|
@@ -1049,6 +1055,7 @@ html.ios-gt-6.pixel-ratio-3 .toolbar:before {
|
|
1049
1055
|
opacity: 0;
|
1050
1056
|
}
|
1051
1057
|
.navbar-on-left .subnavbar.sliding {
|
1058
|
+
opacity: 1;
|
1052
1059
|
-webkit-transform: translate3d(-100%, 0, 0);
|
1053
1060
|
transform: translate3d(-100%, 0, 0);
|
1054
1061
|
}
|
@@ -1123,7 +1130,9 @@ html.ios-gt-6.pixel-ratio-3 .toolbar:before {
|
|
1123
1130
|
padding-top: 88px;
|
1124
1131
|
}
|
1125
1132
|
.navbar-through .page .subnavbar,
|
1126
|
-
.navbar-fixed .page .subnavbar
|
1133
|
+
.navbar-fixed .page .subnavbar,
|
1134
|
+
.navbar-through.page .subnavbar,
|
1135
|
+
.navbar-fixed.page .subnavbar {
|
1127
1136
|
top: 44px;
|
1128
1137
|
}
|
1129
1138
|
.toolbar-through .page-content,
|
@@ -1280,7 +1289,10 @@ html.ios-gt-6.pixel-ratio-3 .searchbar:after {
|
|
1280
1289
|
font-size: 14px;
|
1281
1290
|
font-weight: normal;
|
1282
1291
|
padding: 0 28px;
|
1283
|
-
background: #
|
1292
|
+
background-color: #fff;
|
1293
|
+
background-repeat: no-repeat;
|
1294
|
+
background-position: 8px center;
|
1295
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2013'%20enable-background%3D'new%200%200%2013%2013'%3E%3Cg%3E%3Cpath%20fill%3D'%23939398'%20d%3D'M5%2C1c2.2%2C0%2C4%2C1.8%2C4%2C4S7.2%2C9%2C5%2C9S1%2C7.2%2C1%2C5S2.8%2C1%2C5%2C1%20M5%2C0C2.2%2C0%2C0%2C2.2%2C0%2C5s2.2%2C5%2C5%2C5s5-2.2%2C5-5S7.8%2C0%2C5%2C0%20L5%2C0z'%2F%3E%3C%2Fg%3E%3Cline%20stroke%3D'%23939398'%20stroke-miterlimit%3D'10'%20x1%3D'12.6'%20y1%3D'12.6'%20x2%3D'8.2'%20y2%3D'8.2'%2F%3E%3C%2Fsvg%3E");
|
1284
1296
|
-webkit-background-size: 13px 13px;
|
1285
1297
|
background-size: 13px 13px;
|
1286
1298
|
}
|
@@ -1299,7 +1311,9 @@ html.ios-gt-6.pixel-ratio-3 .searchbar:after {
|
|
1299
1311
|
top: 0;
|
1300
1312
|
opacity: 0;
|
1301
1313
|
pointer-events: none;
|
1302
|
-
background:
|
1314
|
+
background-position: center;
|
1315
|
+
background-repeat: no-repeat;
|
1316
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2028'%3E%3Ccircle%20cx%3D'14'%20cy%3D'14'%20r%3D'14'%20fill%3D'%238e8e93'%2F%3E%3Cline%20stroke%3D'%23ffffff'%20stroke-width%3D'2'%20stroke-miterlimit%3D'10'%20x1%3D'8'%20y1%3D'8'%20x2%3D'20'%20y2%3D'20'%2F%3E%3Cline%20fill%3D'none'%20stroke%3D'%23ffffff'%20stroke-width%3D'2'%20stroke-miterlimit%3D'10'%20x1%3D'20'%20y1%3D'8'%20x2%3D'8'%20y2%3D'20'%2F%3E%3C%2Fsvg%3E");
|
1303
1317
|
-webkit-background-size: 14px 14px;
|
1304
1318
|
background-size: 14px 14px;
|
1305
1319
|
-webkit-transition-duration: 300ms;
|
@@ -1462,28 +1476,28 @@ i.icon {
|
|
1462
1476
|
i.icon.icon-back {
|
1463
1477
|
width: 12px;
|
1464
1478
|
height: 20px;
|
1465
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1479
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
1466
1480
|
}
|
1467
1481
|
i.icon.icon-forward {
|
1468
1482
|
width: 12px;
|
1469
1483
|
height: 20px;
|
1470
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1484
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
1471
1485
|
}
|
1472
1486
|
i.icon.icon-bars {
|
1473
1487
|
width: 21px;
|
1474
1488
|
height: 13px;
|
1475
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1489
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
1476
1490
|
}
|
1477
1491
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
1478
1492
|
i.icon.icon-bars {
|
1479
1493
|
height: 14px;
|
1480
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1494
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
1481
1495
|
}
|
1482
1496
|
}
|
1483
1497
|
i.icon.icon-camera {
|
1484
1498
|
width: 25px;
|
1485
1499
|
height: 20px;
|
1486
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1500
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20x%3D'0px'%20y%3D'0px'%20viewBox%3D'0%200%2025%2020'%3E%3Cpath%20fill%3D'%238C8D92'%20d%3D'M13.3%2C5.5c-2.7%2C0-5%2C2.2-5%2C5s2.2%2C5%2C5%2C5c2.7%2C0%2C5-2.2%2C5-5S16%2C5.5%2C13.3%2C5.5z'%2F%3E%3Cpath%20fill%3D'%238C8D92'%20d%3D'M22.8%2C1.8h-3.3c-0.2-1.3-1-1.8-2-1.8H8.1c-1%2C0-1.8%2C0.4-2%2C1.8H2.8C1.4%2C1.8%2C0%2C2.8%2C0%2C4.2v12.6%20c0%2C1.4%2C1.4%2C2.5%2C2.8%2C2.5h20c1.4%2C0%2C2.2-1.1%2C2.2-2.5V4.2C25%2C2.8%2C24.2%2C1.8%2C22.8%2C1.8z%20M3.5%2C6.4C2.6%2C6.4%2C2%2C5.8%2C2%2C5c0-0.8%2C0.7-1.5%2C1.5-1.5%20S5%2C4.1%2C5%2C5C5%2C5.8%2C4.3%2C6.4%2C3.5%2C6.4z%20M13.3%2C16.8c-3.5%2C0-6.3-2.7-6.3-6.2c0-3.3%2C2.5-6.2%2C5.7-6.2h1.2c3.2%2C0%2C5.7%2C2.9%2C5.7%2C6.2%20C19.6%2C14.1%2C16.7%2C16.8%2C13.3%2C16.8z'%2F%3E%3C%2Fsvg%3E");
|
1487
1501
|
}
|
1488
1502
|
i.icon.icon-f7 {
|
1489
1503
|
width: 29px;
|
@@ -1546,10 +1560,10 @@ i.icon.icon-prev {
|
|
1546
1560
|
height: 15px;
|
1547
1561
|
}
|
1548
1562
|
i.icon.icon-next {
|
1549
|
-
background: url("data:image/svg+xml;charset=utf-8
|
1563
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
1550
1564
|
}
|
1551
1565
|
i.icon.icon-prev {
|
1552
|
-
background: url("data:image/svg+xml;charset=utf-8
|
1566
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
1553
1567
|
}
|
1554
1568
|
i.icon.icon-plus {
|
1555
1569
|
width: 25px;
|
@@ -1979,7 +1993,7 @@ html.ios-gt-6.pixel-ratio-3 .list-block .item-inner:after {
|
|
1979
1993
|
}
|
1980
1994
|
.list-block .item-link .item-inner {
|
1981
1995
|
padding-right: 35px;
|
1982
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
1996
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
|
1983
1997
|
background-size: 10px 20px;
|
1984
1998
|
background-repeat: no-repeat;
|
1985
1999
|
background-position: 95% center;
|
@@ -2179,7 +2193,7 @@ html.ios-gt-6.pixel-ratio-3 .list-block .item-link.list-button:after {
|
|
2179
2193
|
.list-block li.media-item .item-link .item-title-row {
|
2180
2194
|
padding-right: 20px;
|
2181
2195
|
background: no-repeat right center;
|
2182
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2196
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
|
2183
2197
|
background-size: 10px 20px;
|
2184
2198
|
}
|
2185
2199
|
.list-block.media-list .item-media,
|
@@ -2269,7 +2283,7 @@ html.ios-gt-6.pixel-ratio-3 .list-block .list-group-title:before {
|
|
2269
2283
|
background-size: 18px 12px;
|
2270
2284
|
background-position: center;
|
2271
2285
|
width: 35px;
|
2272
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2286
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2018%2012'%20fill%3D'%23c7c7cc'%3E%3Cpath%20d%3D'M0%2C2V0h22v2H0z'%2F%3E%3Cpath%20d%3D'M0%2C7V5h22v2H0z'%2F%3E%3Cpath%20d%3D'M0%2C12v-2h22v2H0z'%2F%3E%3C%2Fsvg%3E");
|
2273
2287
|
opacity: 0;
|
2274
2288
|
visibility: hidden;
|
2275
2289
|
cursor: pointer;
|
@@ -2717,7 +2731,7 @@ label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-check
|
|
2717
2731
|
label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox:after,
|
2718
2732
|
label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox:after {
|
2719
2733
|
background: no-repeat center;
|
2720
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2734
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20x%3D'0px'%20y%3D'0px'%20viewBox%3D'0%200%2012%209'%20xml%3Aspace%3D'preserve'%3E%3Cpolygon%20fill%3D'%23ffffff'%20points%3D'12%2C0.7%2011.3%2C0%203.9%2C7.4%200.7%2C4.2%200%2C4.9%203.9%2C8.8%203.9%2C8.8%203.9%2C8.8%20'%2F%3E%3C%2Fsvg%3E");
|
2721
2735
|
-webkit-background-size: 12px 9px;
|
2722
2736
|
background-size: 12px 9px;
|
2723
2737
|
}
|
@@ -2735,7 +2749,7 @@ label.label-radio input[type="radio"] ~ .item-inner {
|
|
2735
2749
|
label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
2736
2750
|
label.label-radio input[type="radio"]:checked ~ .item-inner {
|
2737
2751
|
background: no-repeat center;
|
2738
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2752
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23007aff'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
2739
2753
|
background-position: 90% center;
|
2740
2754
|
background-position: -webkit-calc(100% - 15px) center;
|
2741
2755
|
background-position: calc(100% - 15px) center;
|
@@ -2774,7 +2788,7 @@ label.label-radio.active-state .item-inner:after {
|
|
2774
2788
|
padding-right: 35px;
|
2775
2789
|
background: no-repeat -webkit-calc(100% - 15px) center;
|
2776
2790
|
background: no-repeat calc(100% - 15px) center;
|
2777
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2791
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
|
2778
2792
|
background-size: 10px 20px;
|
2779
2793
|
}
|
2780
2794
|
html:not(.watch-active-state) .list-block .accordion-item-toggle:active,
|
@@ -2801,7 +2815,7 @@ html:not(.watch-active-state) .list-block .accordion-item-toggle:active > .item-
|
|
2801
2815
|
}
|
2802
2816
|
.list-block .accordion-item-expanded .accordion-item-toggle .item-inner,
|
2803
2817
|
.list-block .accordion-item-expanded > .item-link .item-inner {
|
2804
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
2818
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20transform%3D'translate(115%2C%2030)%20rotate(90)'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
|
2805
2819
|
background-size: 20px 20px;
|
2806
2820
|
}
|
2807
2821
|
.list-block .accordion-item-expanded .accordion-item-toggle .item-inner:after,
|
@@ -3058,12 +3072,6 @@ html.ios-gt-6.pixel-ratio-3 .card-footer:before {
|
|
3058
3072
|
visibility: visible;
|
3059
3073
|
opacity: 1;
|
3060
3074
|
}
|
3061
|
-
html.ios .modal-overlay.modal-overlay-visible,
|
3062
|
-
html.ios .preloader-indicator-overlay.modal-overlay-visible,
|
3063
|
-
html.ios .popup-overlay.modal-overlay-visible {
|
3064
|
-
overflow: auto;
|
3065
|
-
-webkit-overflow-scrolling: touch;
|
3066
|
-
}
|
3067
3075
|
.popup-overlay {
|
3068
3076
|
z-index: 10200;
|
3069
3077
|
}
|
@@ -4219,13 +4227,13 @@ html.with-statusbar-overlay body .panel {
|
|
4219
4227
|
content: "";
|
4220
4228
|
width: 100%;
|
4221
4229
|
height: 100%;
|
4222
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
4230
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
4223
4231
|
background-position: 50%;
|
4224
4232
|
background-size: 100%;
|
4225
4233
|
background-repeat: no-repeat;
|
4226
4234
|
}
|
4227
4235
|
.preloader-white:after {
|
4228
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
4236
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
4229
4237
|
}
|
4230
4238
|
@-webkit-keyframes preloader-spin {
|
4231
4239
|
0% {
|
@@ -4336,7 +4344,7 @@ html.with-statusbar-overlay body .panel {
|
|
4336
4344
|
margin-left: -6px;
|
4337
4345
|
margin-top: -10px;
|
4338
4346
|
background: no-repeat center;
|
4339
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
4347
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2026%2040'%3E%3Cpolygon%20points%3D'9%2C22%209%2C0%2017%2C0%2017%2C22%2026%2C22%2013.5%2C40%200%2C22'%20fill%3D'%238c8c8c'%2F%3E%3C%2Fsvg%3E");
|
4340
4348
|
background-size: 13px 20px;
|
4341
4349
|
z-index: 10;
|
4342
4350
|
-webkit-transform: rotate(0deg) translate3d(0, 0, 0);
|
@@ -4467,19 +4475,28 @@ html.with-statusbar-overlay body .panel {
|
|
4467
4475
|
margin-top: -22px;
|
4468
4476
|
z-index: 10;
|
4469
4477
|
cursor: pointer;
|
4478
|
+
-moz-background-size: 27px 44px;
|
4479
|
+
-webkit-background-size: 27px 44px;
|
4480
|
+
background-size: 27px 44px;
|
4481
|
+
background-position: center;
|
4482
|
+
background-repeat: no-repeat;
|
4470
4483
|
}
|
4471
4484
|
.swiper-button-prev.swiper-button-disabled,
|
4472
4485
|
.swiper-button-next.swiper-button-disabled {
|
4473
4486
|
opacity: 0.35;
|
4474
4487
|
cursor: auto;
|
4475
4488
|
}
|
4476
|
-
.swiper-button-prev
|
4477
|
-
|
4489
|
+
.swiper-button-prev,
|
4490
|
+
.swiper-container-rtl .swiper-button-next {
|
4491
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
4478
4492
|
left: 10px;
|
4493
|
+
right: auto;
|
4479
4494
|
}
|
4480
|
-
.swiper-button-next
|
4481
|
-
|
4495
|
+
.swiper-button-next,
|
4496
|
+
.swiper-container-rtl .swiper-button-prev {
|
4497
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
4482
4498
|
right: 10px;
|
4499
|
+
left: auto;
|
4483
4500
|
}
|
4484
4501
|
/* Pagination Styles */
|
4485
4502
|
.swiper-pagination {
|
@@ -4659,6 +4676,12 @@ html.with-statusbar-overlay body .panel {
|
|
4659
4676
|
width: 100%;
|
4660
4677
|
height: 100%;
|
4661
4678
|
}
|
4679
|
+
.swiper-container-cube.swiper-container-rtl .swiper-slide {
|
4680
|
+
-webkit-transform-origin: 100% 0;
|
4681
|
+
-moz-transform-origin: 100% 0;
|
4682
|
+
-ms-transform-origin: 100% 0;
|
4683
|
+
transform-origin: 100% 0;
|
4684
|
+
}
|
4662
4685
|
.swiper-container-cube .swiper-slide-active,
|
4663
4686
|
.swiper-container-cube .swiper-slide-next,
|
4664
4687
|
.swiper-container-cube .swiper-slide-prev,
|
@@ -5518,7 +5541,9 @@ html.ios-gt-6.pixel-ratio-3 .picker-calendar.picker-modal-inline .picker-calenda
|
|
5518
5541
|
.notifications .close-notification {
|
5519
5542
|
width: 19px;
|
5520
5543
|
height: 19px;
|
5521
|
-
background: url("data:image/svg+xml;charset=utf-8
|
5544
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2019%2019'%3E%3Cg%3E%3Cpath%20fill%3D'%23bcbfc4'%20d%3D'M9.5%2C1C14.2%2C1%2C18%2C4.8%2C18%2C9.5S14.2%2C18%2C9.5%2C18S1%2C14.2%2C1%2C9.5S4.8%2C1%2C9.5%2C1%20M9.5%2C0C4.3%2C0%2C0%2C4.3%2C0%2C9.5%20S4.3%2C19%2C9.5%2C19S19%2C14.7%2C19%2C9.5S14.7%2C0%2C9.5%2C0L9.5%2C0z'%2F%3E%3C%2Fg%3E%3Cline%20stroke%3D'%23bcbfc4'%20stroke-miterlimit%3D'10'%20x1%3D'5.2'%20y1%3D'5.2'%20x2%3D'13.8'%20y2%3D'13.8'%2F%3E%3Cline%20stroke%3D'%23bcbfc4'%20stroke-miterlimit%3D'10'%20x1%3D'14.1'%20y1%3D'4.9'%20x2%3D'4.9'%20y2%3D'14.1'%2F%3E%3C%2Fsvg%3E");
|
5545
|
+
background-position: center top;
|
5546
|
+
background-repeat: no-repeat;
|
5522
5547
|
-webkit-background-size: 100% auto;
|
5523
5548
|
background-size: 100% auto;
|
5524
5549
|
position: relative;
|
@@ -5631,33 +5656,33 @@ i.icon.theme-gray {
|
|
5631
5656
|
i.icon-next.color-gray,
|
5632
5657
|
i.icon-next.theme-gray,
|
5633
5658
|
.theme-gray i.icon-next {
|
5634
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5659
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%238e8e93'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5635
5660
|
}
|
5636
5661
|
i.icon-prev.color-gray,
|
5637
5662
|
i.icon-prev.theme-gray,
|
5638
5663
|
.theme-gray i.icon-prev {
|
5639
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5664
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%238e8e93'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5640
5665
|
}
|
5641
5666
|
i.icon-back.color-gray,
|
5642
5667
|
i.icon-back.theme-gray,
|
5643
5668
|
.theme-gray i.icon-back {
|
5644
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5669
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%238e8e93'%2F%3E%3C%2Fsvg%3E");
|
5645
5670
|
}
|
5646
5671
|
i.icon-forward.color-gray,
|
5647
5672
|
i.icon-forward.theme-gray,
|
5648
5673
|
.theme-gray i.icon-forward {
|
5649
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5674
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%238e8e93'%2F%3E%3C%2Fsvg%3E");
|
5650
5675
|
}
|
5651
5676
|
i.icon-bars.color-gray,
|
5652
5677
|
i.icon-bars.theme-gray,
|
5653
5678
|
.theme-gray i.icon-bars {
|
5654
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5679
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%238e8e93'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
5655
5680
|
}
|
5656
5681
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
5657
5682
|
i.icon-bars.color-gray,
|
5658
5683
|
i.icon-bars.theme-gray,
|
5659
5684
|
.theme-gray i.icon-bars {
|
5660
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5685
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%238e8e93'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
5661
5686
|
}
|
5662
5687
|
}
|
5663
5688
|
.theme-gray a,
|
@@ -5665,11 +5690,15 @@ i.icon-bars.theme-gray,
|
|
5665
5690
|
color: #8e8e93;
|
5666
5691
|
}
|
5667
5692
|
.theme-gray .tabbar a,
|
5668
|
-
.tabbar.theme-gray a
|
5693
|
+
.tabbar.theme-gray a,
|
5694
|
+
.theme-gray .tabbar a i,
|
5695
|
+
.tabbar.theme-gray a i {
|
5669
5696
|
color: inherit;
|
5670
5697
|
}
|
5671
5698
|
.theme-gray .tabbar a.active,
|
5672
|
-
.tabbar.theme-gray a.active
|
5699
|
+
.tabbar.theme-gray a.active,
|
5700
|
+
.theme-gray .tabbar a.active i,
|
5701
|
+
.tabbar.theme-gray a.active i {
|
5673
5702
|
color: #8e8e93;
|
5674
5703
|
}
|
5675
5704
|
.theme-gray .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -5682,7 +5711,7 @@ i.icon-bars.theme-gray,
|
|
5682
5711
|
}
|
5683
5712
|
.theme-gray label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
5684
5713
|
.theme-gray label.label-radio input[type="radio"]:checked ~ .item-inner {
|
5685
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5714
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%238e8e93'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
5686
5715
|
}
|
5687
5716
|
.theme-gray .swiper-pagination-bullet-active {
|
5688
5717
|
background-color: #8e8e93;
|
@@ -5691,12 +5720,16 @@ i.icon-bars.theme-gray,
|
|
5691
5720
|
background-color: #8e8e93 !important;
|
5692
5721
|
}
|
5693
5722
|
.swiper-button-next.color-gray,
|
5694
|
-
.
|
5695
|
-
|
5723
|
+
.swiper-container-rtl .swiper-button-prev.color-gray,
|
5724
|
+
.theme-gray .swiper-button-next,
|
5725
|
+
.theme-gray .swiper-container-rtl .swiper-button-prev {
|
5726
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%238e8e93'%2F%3E%3C%2Fsvg%3E");
|
5696
5727
|
}
|
5697
5728
|
.swiper-button-prev.color-gray,
|
5698
|
-
.
|
5699
|
-
|
5729
|
+
.swiper-container-rtl .swiper-button-next.color-gray,
|
5730
|
+
.theme-gray .swiper-button-prev,
|
5731
|
+
.theme-gray .swiper-container-rtl .swiper-button-next {
|
5732
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%238e8e93'%2F%3E%3C%2Fsvg%3E");
|
5700
5733
|
}
|
5701
5734
|
.bg-gray,
|
5702
5735
|
.button.button-fill.bg-gray,
|
@@ -5753,33 +5786,33 @@ i.icon.theme-white {
|
|
5753
5786
|
i.icon-next.color-white,
|
5754
5787
|
i.icon-next.theme-white,
|
5755
5788
|
.theme-white i.icon-next {
|
5756
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5789
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ffffff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5757
5790
|
}
|
5758
5791
|
i.icon-prev.color-white,
|
5759
5792
|
i.icon-prev.theme-white,
|
5760
5793
|
.theme-white i.icon-prev {
|
5761
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5794
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ffffff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5762
5795
|
}
|
5763
5796
|
i.icon-back.color-white,
|
5764
5797
|
i.icon-back.theme-white,
|
5765
5798
|
.theme-white i.icon-back {
|
5766
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5799
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
5767
5800
|
}
|
5768
5801
|
i.icon-forward.color-white,
|
5769
5802
|
i.icon-forward.theme-white,
|
5770
5803
|
.theme-white i.icon-forward {
|
5771
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5804
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
5772
5805
|
}
|
5773
5806
|
i.icon-bars.color-white,
|
5774
5807
|
i.icon-bars.theme-white,
|
5775
5808
|
.theme-white i.icon-bars {
|
5776
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5809
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23ffffff'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
5777
5810
|
}
|
5778
5811
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
5779
5812
|
i.icon-bars.color-white,
|
5780
5813
|
i.icon-bars.theme-white,
|
5781
5814
|
.theme-white i.icon-bars {
|
5782
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5815
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23ffffff'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
5783
5816
|
}
|
5784
5817
|
}
|
5785
5818
|
.theme-white a,
|
@@ -5787,11 +5820,15 @@ i.icon-bars.theme-white,
|
|
5787
5820
|
color: #ffffff;
|
5788
5821
|
}
|
5789
5822
|
.theme-white .tabbar a,
|
5790
|
-
.tabbar.theme-white a
|
5823
|
+
.tabbar.theme-white a,
|
5824
|
+
.theme-white .tabbar a i,
|
5825
|
+
.tabbar.theme-white a i {
|
5791
5826
|
color: inherit;
|
5792
5827
|
}
|
5793
5828
|
.theme-white .tabbar a.active,
|
5794
|
-
.tabbar.theme-white a.active
|
5829
|
+
.tabbar.theme-white a.active,
|
5830
|
+
.theme-white .tabbar a.active i,
|
5831
|
+
.tabbar.theme-white a.active i {
|
5795
5832
|
color: #ffffff;
|
5796
5833
|
}
|
5797
5834
|
.theme-white .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -5804,7 +5841,7 @@ i.icon-bars.theme-white,
|
|
5804
5841
|
}
|
5805
5842
|
.theme-white label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
5806
5843
|
.theme-white label.label-radio input[type="radio"]:checked ~ .item-inner {
|
5807
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5844
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23ffffff'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
5808
5845
|
}
|
5809
5846
|
.theme-white .swiper-pagination-bullet-active {
|
5810
5847
|
background-color: #ffffff;
|
@@ -5813,12 +5850,16 @@ i.icon-bars.theme-white,
|
|
5813
5850
|
background-color: #ffffff !important;
|
5814
5851
|
}
|
5815
5852
|
.swiper-button-next.color-white,
|
5816
|
-
.
|
5817
|
-
|
5853
|
+
.swiper-container-rtl .swiper-button-prev.color-white,
|
5854
|
+
.theme-white .swiper-button-next,
|
5855
|
+
.theme-white .swiper-container-rtl .swiper-button-prev {
|
5856
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
5818
5857
|
}
|
5819
5858
|
.swiper-button-prev.color-white,
|
5820
|
-
.
|
5821
|
-
|
5859
|
+
.swiper-container-rtl .swiper-button-next.color-white,
|
5860
|
+
.theme-white .swiper-button-prev,
|
5861
|
+
.theme-white .swiper-container-rtl .swiper-button-next {
|
5862
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
|
5822
5863
|
}
|
5823
5864
|
.bg-white,
|
5824
5865
|
.button.button-fill.bg-white,
|
@@ -5875,33 +5916,33 @@ i.icon.theme-black {
|
|
5875
5916
|
i.icon-next.color-black,
|
5876
5917
|
i.icon-next.theme-black,
|
5877
5918
|
.theme-black i.icon-next {
|
5878
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5919
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23000000'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5879
5920
|
}
|
5880
5921
|
i.icon-prev.color-black,
|
5881
5922
|
i.icon-prev.theme-black,
|
5882
5923
|
.theme-black i.icon-prev {
|
5883
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5924
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23000000'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
5884
5925
|
}
|
5885
5926
|
i.icon-back.color-black,
|
5886
5927
|
i.icon-back.theme-black,
|
5887
5928
|
.theme-black i.icon-back {
|
5888
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5929
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
5889
5930
|
}
|
5890
5931
|
i.icon-forward.color-black,
|
5891
5932
|
i.icon-forward.theme-black,
|
5892
5933
|
.theme-black i.icon-forward {
|
5893
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5934
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
5894
5935
|
}
|
5895
5936
|
i.icon-bars.color-black,
|
5896
5937
|
i.icon-bars.theme-black,
|
5897
5938
|
.theme-black i.icon-bars {
|
5898
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5939
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23000000'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
5899
5940
|
}
|
5900
5941
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
5901
5942
|
i.icon-bars.color-black,
|
5902
5943
|
i.icon-bars.theme-black,
|
5903
5944
|
.theme-black i.icon-bars {
|
5904
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5945
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23000000'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
5905
5946
|
}
|
5906
5947
|
}
|
5907
5948
|
.theme-black a,
|
@@ -5909,11 +5950,15 @@ i.icon-bars.theme-black,
|
|
5909
5950
|
color: #000000;
|
5910
5951
|
}
|
5911
5952
|
.theme-black .tabbar a,
|
5912
|
-
.tabbar.theme-black a
|
5953
|
+
.tabbar.theme-black a,
|
5954
|
+
.theme-black .tabbar a i,
|
5955
|
+
.tabbar.theme-black a i {
|
5913
5956
|
color: inherit;
|
5914
5957
|
}
|
5915
5958
|
.theme-black .tabbar a.active,
|
5916
|
-
.tabbar.theme-black a.active
|
5959
|
+
.tabbar.theme-black a.active,
|
5960
|
+
.theme-black .tabbar a.active i,
|
5961
|
+
.tabbar.theme-black a.active i {
|
5917
5962
|
color: #000000;
|
5918
5963
|
}
|
5919
5964
|
.theme-black .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -5926,7 +5971,7 @@ i.icon-bars.theme-black,
|
|
5926
5971
|
}
|
5927
5972
|
.theme-black label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
5928
5973
|
.theme-black label.label-radio input[type="radio"]:checked ~ .item-inner {
|
5929
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
5974
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23000000'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
5930
5975
|
}
|
5931
5976
|
.theme-black .swiper-pagination-bullet-active {
|
5932
5977
|
background-color: #000000;
|
@@ -5935,12 +5980,16 @@ i.icon-bars.theme-black,
|
|
5935
5980
|
background-color: #000000 !important;
|
5936
5981
|
}
|
5937
5982
|
.swiper-button-next.color-black,
|
5938
|
-
.
|
5939
|
-
|
5983
|
+
.swiper-container-rtl .swiper-button-prev.color-black,
|
5984
|
+
.theme-black .swiper-button-next,
|
5985
|
+
.theme-black .swiper-container-rtl .swiper-button-prev {
|
5986
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
5940
5987
|
}
|
5941
5988
|
.swiper-button-prev.color-black,
|
5942
|
-
.
|
5943
|
-
|
5989
|
+
.swiper-container-rtl .swiper-button-next.color-black,
|
5990
|
+
.theme-black .swiper-button-prev,
|
5991
|
+
.theme-black .swiper-container-rtl .swiper-button-next {
|
5992
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
|
5944
5993
|
}
|
5945
5994
|
.bg-black,
|
5946
5995
|
.button.button-fill.bg-black,
|
@@ -5997,33 +6046,33 @@ i.icon.theme-lightblue {
|
|
5997
6046
|
i.icon-next.color-lightblue,
|
5998
6047
|
i.icon-next.theme-lightblue,
|
5999
6048
|
.theme-lightblue i.icon-next {
|
6000
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6049
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%235ac8fa'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6001
6050
|
}
|
6002
6051
|
i.icon-prev.color-lightblue,
|
6003
6052
|
i.icon-prev.theme-lightblue,
|
6004
6053
|
.theme-lightblue i.icon-prev {
|
6005
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6054
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%235ac8fa'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6006
6055
|
}
|
6007
6056
|
i.icon-back.color-lightblue,
|
6008
6057
|
i.icon-back.theme-lightblue,
|
6009
6058
|
.theme-lightblue i.icon-back {
|
6010
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6059
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%235ac8fa'%2F%3E%3C%2Fsvg%3E");
|
6011
6060
|
}
|
6012
6061
|
i.icon-forward.color-lightblue,
|
6013
6062
|
i.icon-forward.theme-lightblue,
|
6014
6063
|
.theme-lightblue i.icon-forward {
|
6015
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6064
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%235ac8fa'%2F%3E%3C%2Fsvg%3E");
|
6016
6065
|
}
|
6017
6066
|
i.icon-bars.color-lightblue,
|
6018
6067
|
i.icon-bars.theme-lightblue,
|
6019
6068
|
.theme-lightblue i.icon-bars {
|
6020
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6069
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%235ac8fa'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6021
6070
|
}
|
6022
6071
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6023
6072
|
i.icon-bars.color-lightblue,
|
6024
6073
|
i.icon-bars.theme-lightblue,
|
6025
6074
|
.theme-lightblue i.icon-bars {
|
6026
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6075
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%235ac8fa'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6027
6076
|
}
|
6028
6077
|
}
|
6029
6078
|
.theme-lightblue a,
|
@@ -6031,11 +6080,15 @@ i.icon-bars.theme-lightblue,
|
|
6031
6080
|
color: #5ac8fa;
|
6032
6081
|
}
|
6033
6082
|
.theme-lightblue .tabbar a,
|
6034
|
-
.tabbar.theme-lightblue a
|
6083
|
+
.tabbar.theme-lightblue a,
|
6084
|
+
.theme-lightblue .tabbar a i,
|
6085
|
+
.tabbar.theme-lightblue a i {
|
6035
6086
|
color: inherit;
|
6036
6087
|
}
|
6037
6088
|
.theme-lightblue .tabbar a.active,
|
6038
|
-
.tabbar.theme-lightblue a.active
|
6089
|
+
.tabbar.theme-lightblue a.active,
|
6090
|
+
.theme-lightblue .tabbar a.active i,
|
6091
|
+
.tabbar.theme-lightblue a.active i {
|
6039
6092
|
color: #5ac8fa;
|
6040
6093
|
}
|
6041
6094
|
.theme-lightblue .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6048,7 +6101,7 @@ i.icon-bars.theme-lightblue,
|
|
6048
6101
|
}
|
6049
6102
|
.theme-lightblue label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6050
6103
|
.theme-lightblue label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6051
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6104
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%235ac8fa'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6052
6105
|
}
|
6053
6106
|
.theme-lightblue .swiper-pagination-bullet-active {
|
6054
6107
|
background-color: #5ac8fa;
|
@@ -6057,12 +6110,16 @@ i.icon-bars.theme-lightblue,
|
|
6057
6110
|
background-color: #5ac8fa !important;
|
6058
6111
|
}
|
6059
6112
|
.swiper-button-next.color-lightblue,
|
6060
|
-
.
|
6061
|
-
|
6113
|
+
.swiper-container-rtl .swiper-button-prev.color-lightblue,
|
6114
|
+
.theme-lightblue .swiper-button-next,
|
6115
|
+
.theme-lightblue .swiper-container-rtl .swiper-button-prev {
|
6116
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%235ac8fa'%2F%3E%3C%2Fsvg%3E");
|
6062
6117
|
}
|
6063
6118
|
.swiper-button-prev.color-lightblue,
|
6064
|
-
.
|
6065
|
-
|
6119
|
+
.swiper-container-rtl .swiper-button-next.color-lightblue,
|
6120
|
+
.theme-lightblue .swiper-button-prev,
|
6121
|
+
.theme-lightblue .swiper-container-rtl .swiper-button-next {
|
6122
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%235ac8fa'%2F%3E%3C%2Fsvg%3E");
|
6066
6123
|
}
|
6067
6124
|
.bg-lightblue,
|
6068
6125
|
.button.button-fill.bg-lightblue,
|
@@ -6119,33 +6176,33 @@ i.icon.theme-yellow {
|
|
6119
6176
|
i.icon-next.color-yellow,
|
6120
6177
|
i.icon-next.theme-yellow,
|
6121
6178
|
.theme-yellow i.icon-next {
|
6122
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6179
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ffcc00'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6123
6180
|
}
|
6124
6181
|
i.icon-prev.color-yellow,
|
6125
6182
|
i.icon-prev.theme-yellow,
|
6126
6183
|
.theme-yellow i.icon-prev {
|
6127
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6184
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ffcc00'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6128
6185
|
}
|
6129
6186
|
i.icon-back.color-yellow,
|
6130
6187
|
i.icon-back.theme-yellow,
|
6131
6188
|
.theme-yellow i.icon-back {
|
6132
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6189
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23ffcc00'%2F%3E%3C%2Fsvg%3E");
|
6133
6190
|
}
|
6134
6191
|
i.icon-forward.color-yellow,
|
6135
6192
|
i.icon-forward.theme-yellow,
|
6136
6193
|
.theme-yellow i.icon-forward {
|
6137
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6194
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23ffcc00'%2F%3E%3C%2Fsvg%3E");
|
6138
6195
|
}
|
6139
6196
|
i.icon-bars.color-yellow,
|
6140
6197
|
i.icon-bars.theme-yellow,
|
6141
6198
|
.theme-yellow i.icon-bars {
|
6142
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6199
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23ffcc00'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6143
6200
|
}
|
6144
6201
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6145
6202
|
i.icon-bars.color-yellow,
|
6146
6203
|
i.icon-bars.theme-yellow,
|
6147
6204
|
.theme-yellow i.icon-bars {
|
6148
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6205
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23ffcc00'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6149
6206
|
}
|
6150
6207
|
}
|
6151
6208
|
.theme-yellow a,
|
@@ -6153,11 +6210,15 @@ i.icon-bars.theme-yellow,
|
|
6153
6210
|
color: #ffcc00;
|
6154
6211
|
}
|
6155
6212
|
.theme-yellow .tabbar a,
|
6156
|
-
.tabbar.theme-yellow a
|
6213
|
+
.tabbar.theme-yellow a,
|
6214
|
+
.theme-yellow .tabbar a i,
|
6215
|
+
.tabbar.theme-yellow a i {
|
6157
6216
|
color: inherit;
|
6158
6217
|
}
|
6159
6218
|
.theme-yellow .tabbar a.active,
|
6160
|
-
.tabbar.theme-yellow a.active
|
6219
|
+
.tabbar.theme-yellow a.active,
|
6220
|
+
.theme-yellow .tabbar a.active i,
|
6221
|
+
.tabbar.theme-yellow a.active i {
|
6161
6222
|
color: #ffcc00;
|
6162
6223
|
}
|
6163
6224
|
.theme-yellow .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6170,7 +6231,7 @@ i.icon-bars.theme-yellow,
|
|
6170
6231
|
}
|
6171
6232
|
.theme-yellow label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6172
6233
|
.theme-yellow label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6173
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6234
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23ffcc00'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6174
6235
|
}
|
6175
6236
|
.theme-yellow .swiper-pagination-bullet-active {
|
6176
6237
|
background-color: #ffcc00;
|
@@ -6179,12 +6240,16 @@ i.icon-bars.theme-yellow,
|
|
6179
6240
|
background-color: #ffcc00 !important;
|
6180
6241
|
}
|
6181
6242
|
.swiper-button-next.color-yellow,
|
6182
|
-
.
|
6183
|
-
|
6243
|
+
.swiper-container-rtl .swiper-button-prev.color-yellow,
|
6244
|
+
.theme-yellow .swiper-button-next,
|
6245
|
+
.theme-yellow .swiper-container-rtl .swiper-button-prev {
|
6246
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffcc00'%2F%3E%3C%2Fsvg%3E");
|
6184
6247
|
}
|
6185
6248
|
.swiper-button-prev.color-yellow,
|
6186
|
-
.
|
6187
|
-
|
6249
|
+
.swiper-container-rtl .swiper-button-next.color-yellow,
|
6250
|
+
.theme-yellow .swiper-button-prev,
|
6251
|
+
.theme-yellow .swiper-container-rtl .swiper-button-next {
|
6252
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffcc00'%2F%3E%3C%2Fsvg%3E");
|
6188
6253
|
}
|
6189
6254
|
.bg-yellow,
|
6190
6255
|
.button.button-fill.bg-yellow,
|
@@ -6241,33 +6306,33 @@ i.icon.theme-orange {
|
|
6241
6306
|
i.icon-next.color-orange,
|
6242
6307
|
i.icon-next.theme-orange,
|
6243
6308
|
.theme-orange i.icon-next {
|
6244
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6309
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff9500'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6245
6310
|
}
|
6246
6311
|
i.icon-prev.color-orange,
|
6247
6312
|
i.icon-prev.theme-orange,
|
6248
6313
|
.theme-orange i.icon-prev {
|
6249
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6314
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff9500'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6250
6315
|
}
|
6251
6316
|
i.icon-back.color-orange,
|
6252
6317
|
i.icon-back.theme-orange,
|
6253
6318
|
.theme-orange i.icon-back {
|
6254
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6319
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23ff9500'%2F%3E%3C%2Fsvg%3E");
|
6255
6320
|
}
|
6256
6321
|
i.icon-forward.color-orange,
|
6257
6322
|
i.icon-forward.theme-orange,
|
6258
6323
|
.theme-orange i.icon-forward {
|
6259
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6324
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23ff9500'%2F%3E%3C%2Fsvg%3E");
|
6260
6325
|
}
|
6261
6326
|
i.icon-bars.color-orange,
|
6262
6327
|
i.icon-bars.theme-orange,
|
6263
6328
|
.theme-orange i.icon-bars {
|
6264
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6329
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23ff9500'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6265
6330
|
}
|
6266
6331
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6267
6332
|
i.icon-bars.color-orange,
|
6268
6333
|
i.icon-bars.theme-orange,
|
6269
6334
|
.theme-orange i.icon-bars {
|
6270
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6335
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23ff9500'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6271
6336
|
}
|
6272
6337
|
}
|
6273
6338
|
.theme-orange a,
|
@@ -6275,11 +6340,15 @@ i.icon-bars.theme-orange,
|
|
6275
6340
|
color: #ff9500;
|
6276
6341
|
}
|
6277
6342
|
.theme-orange .tabbar a,
|
6278
|
-
.tabbar.theme-orange a
|
6343
|
+
.tabbar.theme-orange a,
|
6344
|
+
.theme-orange .tabbar a i,
|
6345
|
+
.tabbar.theme-orange a i {
|
6279
6346
|
color: inherit;
|
6280
6347
|
}
|
6281
6348
|
.theme-orange .tabbar a.active,
|
6282
|
-
.tabbar.theme-orange a.active
|
6349
|
+
.tabbar.theme-orange a.active,
|
6350
|
+
.theme-orange .tabbar a.active i,
|
6351
|
+
.tabbar.theme-orange a.active i {
|
6283
6352
|
color: #ff9500;
|
6284
6353
|
}
|
6285
6354
|
.theme-orange .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6292,7 +6361,7 @@ i.icon-bars.theme-orange,
|
|
6292
6361
|
}
|
6293
6362
|
.theme-orange label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6294
6363
|
.theme-orange label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6295
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6364
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23ff9500'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6296
6365
|
}
|
6297
6366
|
.theme-orange .swiper-pagination-bullet-active {
|
6298
6367
|
background-color: #ff9500;
|
@@ -6301,12 +6370,16 @@ i.icon-bars.theme-orange,
|
|
6301
6370
|
background-color: #ff9500 !important;
|
6302
6371
|
}
|
6303
6372
|
.swiper-button-next.color-orange,
|
6304
|
-
.
|
6305
|
-
|
6373
|
+
.swiper-container-rtl .swiper-button-prev.color-orange,
|
6374
|
+
.theme-orange .swiper-button-next,
|
6375
|
+
.theme-orange .swiper-container-rtl .swiper-button-prev {
|
6376
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ff9500'%2F%3E%3C%2Fsvg%3E");
|
6306
6377
|
}
|
6307
6378
|
.swiper-button-prev.color-orange,
|
6308
|
-
.
|
6309
|
-
|
6379
|
+
.swiper-container-rtl .swiper-button-next.color-orange,
|
6380
|
+
.theme-orange .swiper-button-prev,
|
6381
|
+
.theme-orange .swiper-container-rtl .swiper-button-next {
|
6382
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ff9500'%2F%3E%3C%2Fsvg%3E");
|
6310
6383
|
}
|
6311
6384
|
.bg-orange,
|
6312
6385
|
.button.button-fill.bg-orange,
|
@@ -6363,33 +6436,33 @@ i.icon.theme-pink {
|
|
6363
6436
|
i.icon-next.color-pink,
|
6364
6437
|
i.icon-next.theme-pink,
|
6365
6438
|
.theme-pink i.icon-next {
|
6366
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6439
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff2d55'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6367
6440
|
}
|
6368
6441
|
i.icon-prev.color-pink,
|
6369
6442
|
i.icon-prev.theme-pink,
|
6370
6443
|
.theme-pink i.icon-prev {
|
6371
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6444
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff2d55'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6372
6445
|
}
|
6373
6446
|
i.icon-back.color-pink,
|
6374
6447
|
i.icon-back.theme-pink,
|
6375
6448
|
.theme-pink i.icon-back {
|
6376
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6449
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23ff2d55'%2F%3E%3C%2Fsvg%3E");
|
6377
6450
|
}
|
6378
6451
|
i.icon-forward.color-pink,
|
6379
6452
|
i.icon-forward.theme-pink,
|
6380
6453
|
.theme-pink i.icon-forward {
|
6381
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6454
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23ff2d55'%2F%3E%3C%2Fsvg%3E");
|
6382
6455
|
}
|
6383
6456
|
i.icon-bars.color-pink,
|
6384
6457
|
i.icon-bars.theme-pink,
|
6385
6458
|
.theme-pink i.icon-bars {
|
6386
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6459
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23ff2d55'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6387
6460
|
}
|
6388
6461
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6389
6462
|
i.icon-bars.color-pink,
|
6390
6463
|
i.icon-bars.theme-pink,
|
6391
6464
|
.theme-pink i.icon-bars {
|
6392
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6465
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23ff2d55'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6393
6466
|
}
|
6394
6467
|
}
|
6395
6468
|
.theme-pink a,
|
@@ -6397,11 +6470,15 @@ i.icon-bars.theme-pink,
|
|
6397
6470
|
color: #ff2d55;
|
6398
6471
|
}
|
6399
6472
|
.theme-pink .tabbar a,
|
6400
|
-
.tabbar.theme-pink a
|
6473
|
+
.tabbar.theme-pink a,
|
6474
|
+
.theme-pink .tabbar a i,
|
6475
|
+
.tabbar.theme-pink a i {
|
6401
6476
|
color: inherit;
|
6402
6477
|
}
|
6403
6478
|
.theme-pink .tabbar a.active,
|
6404
|
-
.tabbar.theme-pink a.active
|
6479
|
+
.tabbar.theme-pink a.active,
|
6480
|
+
.theme-pink .tabbar a.active i,
|
6481
|
+
.tabbar.theme-pink a.active i {
|
6405
6482
|
color: #ff2d55;
|
6406
6483
|
}
|
6407
6484
|
.theme-pink .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6414,7 +6491,7 @@ i.icon-bars.theme-pink,
|
|
6414
6491
|
}
|
6415
6492
|
.theme-pink label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6416
6493
|
.theme-pink label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6417
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6494
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23ff2d55'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6418
6495
|
}
|
6419
6496
|
.theme-pink .swiper-pagination-bullet-active {
|
6420
6497
|
background-color: #ff2d55;
|
@@ -6423,12 +6500,16 @@ i.icon-bars.theme-pink,
|
|
6423
6500
|
background-color: #ff2d55 !important;
|
6424
6501
|
}
|
6425
6502
|
.swiper-button-next.color-pink,
|
6426
|
-
.
|
6427
|
-
|
6503
|
+
.swiper-container-rtl .swiper-button-prev.color-pink,
|
6504
|
+
.theme-pink .swiper-button-next,
|
6505
|
+
.theme-pink .swiper-container-rtl .swiper-button-prev {
|
6506
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ff2d55'%2F%3E%3C%2Fsvg%3E");
|
6428
6507
|
}
|
6429
6508
|
.swiper-button-prev.color-pink,
|
6430
|
-
.
|
6431
|
-
|
6509
|
+
.swiper-container-rtl .swiper-button-next.color-pink,
|
6510
|
+
.theme-pink .swiper-button-prev,
|
6511
|
+
.theme-pink .swiper-container-rtl .swiper-button-next {
|
6512
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ff2d55'%2F%3E%3C%2Fsvg%3E");
|
6432
6513
|
}
|
6433
6514
|
.bg-pink,
|
6434
6515
|
.button.button-fill.bg-pink,
|
@@ -6485,33 +6566,33 @@ i.icon.theme-blue {
|
|
6485
6566
|
i.icon-next.color-blue,
|
6486
6567
|
i.icon-next.theme-blue,
|
6487
6568
|
.theme-blue i.icon-next {
|
6488
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6569
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6489
6570
|
}
|
6490
6571
|
i.icon-prev.color-blue,
|
6491
6572
|
i.icon-prev.theme-blue,
|
6492
6573
|
.theme-blue i.icon-prev {
|
6493
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6574
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6494
6575
|
}
|
6495
6576
|
i.icon-back.color-blue,
|
6496
6577
|
i.icon-back.theme-blue,
|
6497
6578
|
.theme-blue i.icon-back {
|
6498
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6579
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
6499
6580
|
}
|
6500
6581
|
i.icon-forward.color-blue,
|
6501
6582
|
i.icon-forward.theme-blue,
|
6502
6583
|
.theme-blue i.icon-forward {
|
6503
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6584
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
6504
6585
|
}
|
6505
6586
|
i.icon-bars.color-blue,
|
6506
6587
|
i.icon-bars.theme-blue,
|
6507
6588
|
.theme-blue i.icon-bars {
|
6508
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6589
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6509
6590
|
}
|
6510
6591
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6511
6592
|
i.icon-bars.color-blue,
|
6512
6593
|
i.icon-bars.theme-blue,
|
6513
6594
|
.theme-blue i.icon-bars {
|
6514
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6595
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6515
6596
|
}
|
6516
6597
|
}
|
6517
6598
|
.theme-blue a,
|
@@ -6519,11 +6600,15 @@ i.icon-bars.theme-blue,
|
|
6519
6600
|
color: #007aff;
|
6520
6601
|
}
|
6521
6602
|
.theme-blue .tabbar a,
|
6522
|
-
.tabbar.theme-blue a
|
6603
|
+
.tabbar.theme-blue a,
|
6604
|
+
.theme-blue .tabbar a i,
|
6605
|
+
.tabbar.theme-blue a i {
|
6523
6606
|
color: inherit;
|
6524
6607
|
}
|
6525
6608
|
.theme-blue .tabbar a.active,
|
6526
|
-
.tabbar.theme-blue a.active
|
6609
|
+
.tabbar.theme-blue a.active,
|
6610
|
+
.theme-blue .tabbar a.active i,
|
6611
|
+
.tabbar.theme-blue a.active i {
|
6527
6612
|
color: #007aff;
|
6528
6613
|
}
|
6529
6614
|
.theme-blue .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6536,7 +6621,7 @@ i.icon-bars.theme-blue,
|
|
6536
6621
|
}
|
6537
6622
|
.theme-blue label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6538
6623
|
.theme-blue label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6539
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6624
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23007aff'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6540
6625
|
}
|
6541
6626
|
.theme-blue .swiper-pagination-bullet-active {
|
6542
6627
|
background-color: #007aff;
|
@@ -6545,12 +6630,16 @@ i.icon-bars.theme-blue,
|
|
6545
6630
|
background-color: #007aff !important;
|
6546
6631
|
}
|
6547
6632
|
.swiper-button-next.color-blue,
|
6548
|
-
.
|
6549
|
-
|
6633
|
+
.swiper-container-rtl .swiper-button-prev.color-blue,
|
6634
|
+
.theme-blue .swiper-button-next,
|
6635
|
+
.theme-blue .swiper-container-rtl .swiper-button-prev {
|
6636
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
6550
6637
|
}
|
6551
6638
|
.swiper-button-prev.color-blue,
|
6552
|
-
.
|
6553
|
-
|
6639
|
+
.swiper-container-rtl .swiper-button-next.color-blue,
|
6640
|
+
.theme-blue .swiper-button-prev,
|
6641
|
+
.theme-blue .swiper-container-rtl .swiper-button-next {
|
6642
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
|
6554
6643
|
}
|
6555
6644
|
.bg-blue,
|
6556
6645
|
.button.button-fill.bg-blue,
|
@@ -6607,33 +6696,33 @@ i.icon.theme-green {
|
|
6607
6696
|
i.icon-next.color-green,
|
6608
6697
|
i.icon-next.theme-green,
|
6609
6698
|
.theme-green i.icon-next {
|
6610
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6699
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%234cd964'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6611
6700
|
}
|
6612
6701
|
i.icon-prev.color-green,
|
6613
6702
|
i.icon-prev.theme-green,
|
6614
6703
|
.theme-green i.icon-prev {
|
6615
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6704
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%234cd964'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6616
6705
|
}
|
6617
6706
|
i.icon-back.color-green,
|
6618
6707
|
i.icon-back.theme-green,
|
6619
6708
|
.theme-green i.icon-back {
|
6620
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6709
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%234cd964'%2F%3E%3C%2Fsvg%3E");
|
6621
6710
|
}
|
6622
6711
|
i.icon-forward.color-green,
|
6623
6712
|
i.icon-forward.theme-green,
|
6624
6713
|
.theme-green i.icon-forward {
|
6625
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6714
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%234cd964'%2F%3E%3C%2Fsvg%3E");
|
6626
6715
|
}
|
6627
6716
|
i.icon-bars.color-green,
|
6628
6717
|
i.icon-bars.theme-green,
|
6629
6718
|
.theme-green i.icon-bars {
|
6630
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6719
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%234cd964'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6631
6720
|
}
|
6632
6721
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6633
6722
|
i.icon-bars.color-green,
|
6634
6723
|
i.icon-bars.theme-green,
|
6635
6724
|
.theme-green i.icon-bars {
|
6636
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6725
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%234cd964'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6637
6726
|
}
|
6638
6727
|
}
|
6639
6728
|
.theme-green a,
|
@@ -6641,11 +6730,15 @@ i.icon-bars.theme-green,
|
|
6641
6730
|
color: #4cd964;
|
6642
6731
|
}
|
6643
6732
|
.theme-green .tabbar a,
|
6644
|
-
.tabbar.theme-green a
|
6733
|
+
.tabbar.theme-green a,
|
6734
|
+
.theme-green .tabbar a i,
|
6735
|
+
.tabbar.theme-green a i {
|
6645
6736
|
color: inherit;
|
6646
6737
|
}
|
6647
6738
|
.theme-green .tabbar a.active,
|
6648
|
-
.tabbar.theme-green a.active
|
6739
|
+
.tabbar.theme-green a.active,
|
6740
|
+
.theme-green .tabbar a.active i,
|
6741
|
+
.tabbar.theme-green a.active i {
|
6649
6742
|
color: #4cd964;
|
6650
6743
|
}
|
6651
6744
|
.theme-green .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6658,7 +6751,7 @@ i.icon-bars.theme-green,
|
|
6658
6751
|
}
|
6659
6752
|
.theme-green label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6660
6753
|
.theme-green label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6661
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6754
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%234cd964'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6662
6755
|
}
|
6663
6756
|
.theme-green .swiper-pagination-bullet-active {
|
6664
6757
|
background-color: #4cd964;
|
@@ -6667,12 +6760,16 @@ i.icon-bars.theme-green,
|
|
6667
6760
|
background-color: #4cd964 !important;
|
6668
6761
|
}
|
6669
6762
|
.swiper-button-next.color-green,
|
6670
|
-
.
|
6671
|
-
|
6763
|
+
.swiper-container-rtl .swiper-button-prev.color-green,
|
6764
|
+
.theme-green .swiper-button-next,
|
6765
|
+
.theme-green .swiper-container-rtl .swiper-button-prev {
|
6766
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%234cd964'%2F%3E%3C%2Fsvg%3E");
|
6672
6767
|
}
|
6673
6768
|
.swiper-button-prev.color-green,
|
6674
|
-
.
|
6675
|
-
|
6769
|
+
.swiper-container-rtl .swiper-button-next.color-green,
|
6770
|
+
.theme-green .swiper-button-prev,
|
6771
|
+
.theme-green .swiper-container-rtl .swiper-button-next {
|
6772
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%234cd964'%2F%3E%3C%2Fsvg%3E");
|
6676
6773
|
}
|
6677
6774
|
.bg-green,
|
6678
6775
|
.button.button-fill.bg-green,
|
@@ -6729,33 +6826,33 @@ i.icon.theme-red {
|
|
6729
6826
|
i.icon-next.color-red,
|
6730
6827
|
i.icon-next.theme-red,
|
6731
6828
|
.theme-red i.icon-next {
|
6732
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6829
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff3b30'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6733
6830
|
}
|
6734
6831
|
i.icon-prev.color-red,
|
6735
6832
|
i.icon-prev.theme-red,
|
6736
6833
|
.theme-red i.icon-prev {
|
6737
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6834
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23ff3b30'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
6738
6835
|
}
|
6739
6836
|
i.icon-back.color-red,
|
6740
6837
|
i.icon-back.theme-red,
|
6741
6838
|
.theme-red i.icon-back {
|
6742
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6839
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M10%2C0l2%2C2l-8%2C8l8%2C8l-2%2C2L0%2C10L10%2C0z'%20fill%3D'%23ff3b30'%2F%3E%3C%2Fsvg%3E");
|
6743
6840
|
}
|
6744
6841
|
i.icon-forward.color-red,
|
6745
6842
|
i.icon-forward.theme-red,
|
6746
6843
|
.theme-red i.icon-forward {
|
6747
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6844
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2012%2020'%3E%3Cpath%20d%3D'M2%2C20l-2-2l8-8L0%2C2l2-2l10%2C10L2%2C20z'%20fill%3D'%23ff3b30'%2F%3E%3C%2Fsvg%3E");
|
6748
6845
|
}
|
6749
6846
|
i.icon-bars.color-red,
|
6750
6847
|
i.icon-bars.theme-red,
|
6751
6848
|
.theme-red i.icon-bars {
|
6752
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6849
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2042%2026'%3E%3Cpath%20fill%3D'%23ff3b30'%20d%3D'M0%2C0h4v4H0V0z%20M8%2C1h34v2H8V1z%20M0%2C11h4v4H0V11z%20M8%2C12h34v2H8V12z%20M0%2C22h4v4H0V22z%20M8%2C23h34v2H8V23z'%2F%3E%3C%2Fsvg%3E");
|
6753
6850
|
}
|
6754
6851
|
@media all and (-webkit-max-device-pixel-ratio: 1), (max-resolution: 120dppx) {
|
6755
6852
|
i.icon-bars.color-red,
|
6756
6853
|
i.icon-bars.theme-red,
|
6757
6854
|
.theme-red i.icon-bars {
|
6758
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6855
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2021%2014'%3E%3Cpath%20fill%3D'%23ff3b30'%20d%3D'M0%2C0h2v2H0V0z%20M4%2C0h17v1H4V0z%20M0%2C6h2v2H0V6z%20M4%2C6h17v1H4V6z%20M0%2C12h2v2H0V12z%20M4%2C12h17v1H4V12z'%2F%3E%3C%2Fsvg%3E");
|
6759
6856
|
}
|
6760
6857
|
}
|
6761
6858
|
.theme-red a,
|
@@ -6763,11 +6860,15 @@ i.icon-bars.theme-red,
|
|
6763
6860
|
color: #ff3b30;
|
6764
6861
|
}
|
6765
6862
|
.theme-red .tabbar a,
|
6766
|
-
.tabbar.theme-red a
|
6863
|
+
.tabbar.theme-red a,
|
6864
|
+
.theme-red .tabbar a i,
|
6865
|
+
.tabbar.theme-red a i {
|
6767
6866
|
color: inherit;
|
6768
6867
|
}
|
6769
6868
|
.theme-red .tabbar a.active,
|
6770
|
-
.tabbar.theme-red a.active
|
6869
|
+
.tabbar.theme-red a.active,
|
6870
|
+
.theme-red .tabbar a.active i,
|
6871
|
+
.tabbar.theme-red a.active i {
|
6771
6872
|
color: #ff3b30;
|
6772
6873
|
}
|
6773
6874
|
.theme-red .range-slider input[type="range"]::-webkit-slider-thumb:before,
|
@@ -6780,7 +6881,7 @@ i.icon-bars.theme-red,
|
|
6780
6881
|
}
|
6781
6882
|
.theme-red label.label-radio input[type="checkbox"]:checked ~ .item-inner,
|
6782
6883
|
.theme-red label.label-radio input[type="radio"]:checked ~ .item-inner {
|
6783
|
-
background-image: url("data:image/svg+xml;charset=utf-8
|
6884
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23ff3b30'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
|
6784
6885
|
}
|
6785
6886
|
.theme-red .swiper-pagination-bullet-active {
|
6786
6887
|
background-color: #ff3b30;
|
@@ -6789,12 +6890,16 @@ i.icon-bars.theme-red,
|
|
6789
6890
|
background-color: #ff3b30 !important;
|
6790
6891
|
}
|
6791
6892
|
.swiper-button-next.color-red,
|
6792
|
-
.
|
6793
|
-
|
6893
|
+
.swiper-container-rtl .swiper-button-prev.color-red,
|
6894
|
+
.theme-red .swiper-button-next,
|
6895
|
+
.theme-red .swiper-container-rtl .swiper-button-prev {
|
6896
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ff3b30'%2F%3E%3C%2Fsvg%3E");
|
6794
6897
|
}
|
6795
6898
|
.swiper-button-prev.color-red,
|
6796
|
-
.
|
6797
|
-
|
6899
|
+
.swiper-container-rtl .swiper-button-next.color-red,
|
6900
|
+
.theme-red .swiper-button-prev,
|
6901
|
+
.theme-red .swiper-container-rtl .swiper-button-next {
|
6902
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ff3b30'%2F%3E%3C%2Fsvg%3E");
|
6798
6903
|
}
|
6799
6904
|
.bg-red,
|
6800
6905
|
.button.button-fill.bg-red,
|