@fox-js/foxui 4.0.1-82 → 4.0.1-83

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.
package/dist/style.css CHANGED
@@ -1763,7 +1763,8 @@
1763
1763
  color: var(--fox-tabs-bar-item-color-button, #666);
1764
1764
  font-size: var(--fox-tabs-bar-item-font-size-button, 12px);
1765
1765
  font-weight: var(--fox-tabs-bar-item-font-weight-button, 400);
1766
- border: var(--fox-tabs-bar-item-border-width-button, 1px) solid transparent;
1766
+ border: var(--fox-tabs-bar-item-border-button, 1px solid transparent);
1767
+ border-radius: var(--fox-tabs-bar-item-radius-button, 4px);
1767
1768
  }
1768
1769
 
1769
1770
  .fox-tabs-bar__titles-item.button.active {
@@ -1771,6 +1772,7 @@
1771
1772
  color: var(--fox-tabs-bar-item-color-active-button, var(--fox-primary-color, #fa2c19));
1772
1773
  font-size: var(--fox-tabs-bar-item-font-size-active-button, 12px);
1773
1774
  font-weight: var(--fox-tabs-bar-item-font-weight-button, 400);
1775
+ border: var(--fox-tabs-bar-item-border-active-button, 1px solid transparent);
1774
1776
  }
1775
1777
 
1776
1778
  .fox-tabs-bar__titles-item.button .fox-tabs-bar__titles-item-line {
@@ -6037,14 +6039,14 @@
6037
6039
  }
6038
6040
 
6039
6041
  .fox-calendar__footer .fox-calendar__confirm {
6042
+ height: var(--fox-calendar-footer-button-height, 44px);
6043
+ width: var(--fox-calendar-footer-button-min-width, 100%);
6040
6044
  background: var(--fox-button-primary-background-color, linear-gradient(135deg, var(--fox-primary-color, var(--fox-primary-color, #fa2c19)) 0%, var(--fox-primary-color, var(--fox-primary-color, #fa2c19)) 100%));
6041
- width: 100%;
6042
- height: 44px;
6043
6045
  color: var(--fox-white, #fff);
6044
6046
  text-align: center;
6047
+ line-height: var(--fox-calendar-footer-button-height, 44px);
6045
6048
  border-radius: 22px;
6046
6049
  margin: 10px 18px;
6047
- line-height: 44px;
6048
6050
  }
6049
6051
 
6050
6052
  .fox-theme-dark .fox-input-number__icon {
@@ -9701,200 +9703,6 @@
9701
9703
  left: 0;
9702
9704
  }
9703
9705
 
9704
- .fox-theme-dark .fox-address__header, .fox-theme-dark .fox-address__header__title, .fox-theme-dark .fox-address .fox-address__custom .fox-address__region, .fox-theme-dark .fox-address .fox-address__custom .fox-address__detail .fox-address__detail-list .fox-address__detail-item, .fox-theme-dark .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list .fox-address__exist-group-item {
9705
- color: var(--fox-dark-color, var(--fox-white, #fff));
9706
- }
9707
-
9708
- .fox-theme-dark .fox-address .fox-address__exist .fox-address__exist-choose, .fox-theme-dark .fox-address-custom-buttom {
9709
- border-top: 1px solid var(--fox-dark-background, #131313);
9710
- }
9711
-
9712
- .fox-address {
9713
- display: block;
9714
- }
9715
-
9716
- .fox-address__header {
9717
- text-align: center;
9718
- color: #333;
9719
- justify-content: space-between;
9720
- align-items: center;
9721
- height: 68px;
9722
- padding: 0 20px;
9723
- font-weight: bold;
9724
- display: flex;
9725
- }
9726
-
9727
- .fox-address__header__title {
9728
- color: var(--fox-address-header-title-color, #262626);
9729
- font-size: var(--fox-address-header-title-font-size, 18px);
9730
- display: block;
9731
- }
9732
-
9733
- .fox-address .fox-address__custom {
9734
- display: block;
9735
- }
9736
-
9737
- .fox-address .fox-address__custom .fox-address__region {
9738
- font-size: var(--fox-address-region-tab-font-size, 13px);
9739
- color: var(--fox-address-region-tab-color, #1d1e1e);
9740
- padding: 0 20px;
9741
- display: flex;
9742
- position: relative;
9743
- }
9744
-
9745
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item {
9746
- min-width: 2px;
9747
- margin-right: 30px;
9748
- display: block;
9749
- position: relative;
9750
- }
9751
-
9752
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item.active {
9753
- font-weight: var(--fox-address-region-tab-active-item-font-weight, bold);
9754
- }
9755
-
9756
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item view {
9757
- text-overflow: ellipsis;
9758
- white-space: nowrap;
9759
- max-width: 100px;
9760
- display: block;
9761
- overflow: hidden;
9762
- }
9763
-
9764
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item span {
9765
- white-space: nowrap;
9766
- text-overflow: ellipsis;
9767
- max-width: 100px;
9768
- display: inline-block;
9769
- overflow: hidden;
9770
- }
9771
-
9772
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item .fox-address__region-line--mini {
9773
- background: var(--fox-address-region-tab-line, linear-gradient(90deg, var(--fox-primary-color, #fa2c19) 0%, #fa2c1926 100%));
9774
- width: 0;
9775
- height: 3px;
9776
- margin-top: 5px;
9777
- transition: all .2s linear;
9778
- display: inline-block;
9779
- position: absolute;
9780
- bottom: -10px;
9781
- left: 0;
9782
- }
9783
-
9784
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-item .fox-address__region-line--mini.active {
9785
- width: 26px;
9786
- }
9787
-
9788
- .fox-address .fox-address__custom .fox-address__region .fox-address__region-line {
9789
- background: var(--fox-address-region-tab-line, linear-gradient(90deg, var(--fox-primary-color, #fa2c19) 0%, #fa2c1926 100%));
9790
- border-radius: var(--fox-address-region-tab-line-border-radius, 0);
9791
- width: 26px;
9792
- height: 3px;
9793
- opacity: var(--fox-address-region-tab-line-opacity, 1);
9794
- margin-top: 5px;
9795
- transition: all .2s linear;
9796
- display: inline-block;
9797
- position: absolute;
9798
- bottom: -10px;
9799
- left: 20px;
9800
- }
9801
-
9802
- .fox-address .fox-address__custom .fox-address__detail {
9803
- margin: 20px 20px 0;
9804
- display: block;
9805
- }
9806
-
9807
- .fox-address .fox-address__custom .fox-address__detail .fox-address__detail-list {
9808
- box-sizing: border-box;
9809
- height: 270px;
9810
- padding: 0;
9811
- }
9812
-
9813
- .fox-address .fox-address__custom .fox-address__detail .fox-address__detail-list .fox-address__detail-item {
9814
- font-size: var(--fox-address-region-item-font-size, var(--fox-font-size-small, 12px));
9815
- color: var(--fox-address-region-item-color, #333);
9816
- align-items: center;
9817
- display: flex;
9818
- }
9819
-
9820
- .fox-address .fox-address__custom .fox-address__detail .fox-address__detail-list .fox-address__detail-item.active {
9821
- font-weight: bold;
9822
- }
9823
-
9824
- .fox-address .fox-address__custom .fox-address__detail .fox-address__detail-list .fox-address__detail-item > div {
9825
- align-items: center;
9826
- margin: 10px 0;
9827
- display: flex;
9828
- }
9829
-
9830
- .fox-address .fox-address__custom .fox-address__elevator-group {
9831
- margin-top: 20px;
9832
- display: flex;
9833
- }
9834
-
9835
- .fox-address .fox-address__exist {
9836
- margin-top: 15px;
9837
- display: block;
9838
- }
9839
-
9840
- .fox-address .fox-address__exist .fox-address__exist-group {
9841
- height: 279px;
9842
- padding: 15px 20px 0;
9843
- overflow-y: scroll;
9844
- }
9845
-
9846
- .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list {
9847
- box-sizing: border-box;
9848
- padding: 0;
9849
- }
9850
-
9851
- .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list .fox-address__exist-group-item {
9852
- font-size: var(--fox-font-size-small, 12px);
9853
- color: #333;
9854
- align-items: center;
9855
- margin-bottom: 20px;
9856
- line-height: 14px;
9857
- display: flex;
9858
- }
9859
-
9860
- .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list .fox-address__exist-group-item.active {
9861
- font-weight: bold;
9862
- }
9863
-
9864
- .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list .fox-address__exist-group-item .exist-item-icon {
9865
- margin-right: var(--fox-address-item-margin-right, 9px);
9866
- color: var(--fox-address-icon-color, var(--fox-primary-color, #fa2c19)) !important;
9867
- }
9868
-
9869
- .fox-address .fox-address__exist .fox-address__exist-group .fox-address__exist-group-list .fox-address__exist-group-item span {
9870
- flex: 1;
9871
- display: inline-block;
9872
- }
9873
-
9874
- .fox-address .fox-address__exist .fox-address__exist-choose {
9875
- border-top: 1px solid #f2f2f2;
9876
- width: 100%;
9877
- height: 54px;
9878
- padding: 6px 0 0;
9879
- }
9880
-
9881
- .fox-address .fox-address__exist .fox-address__exist-choose .fox-address__exist-choose-btn {
9882
- text-align: center;
9883
- background: var(--fox-button-primary-background-color, linear-gradient(135deg, var(--fox-primary-color, var(--fox-primary-color, #fa2c19)) 0%, var(--fox-primary-color, var(--fox-primary-color, #fa2c19)) 100%));
9884
- width: 90%;
9885
- height: 42px;
9886
- color: var(--fox-white, #fff);
9887
- border-radius: 21px;
9888
- margin: auto;
9889
- font-size: 15px;
9890
- line-height: 42px;
9891
- }
9892
-
9893
- .fox-address-select-icon {
9894
- margin-right: var(--fox-address-item-margin-right, 9px);
9895
- color: var(--fox-address-icon-color, var(--fox-primary-color, #fa2c19)) !important;
9896
- }
9897
-
9898
9706
  .fox-barrage {
9899
9707
  box-sizing: border-box;
9900
9708
  --move-distance: "300%";
@@ -9972,1221 +9780,4 @@
9972
9780
  .fox-signature .fox-signature-btn {
9973
9781
  margin-right: 15px;
9974
9782
  }
9975
-
9976
- .fox-theme-dark .fox-time-select {
9977
- background-color: var(--fox-dark-background2, #1b1b1b);
9978
- }
9979
-
9980
- .fox-theme-dark .fox-time-select__title {
9981
- background-color: var(--fox-dark-background2, #1b1b1b);
9982
- color: var(--fox-dark-color, var(--fox-white, #fff));
9983
- }
9984
-
9985
- .fox-theme-dark .fox-time-select__content__pannel {
9986
- background-color: var(--fox-dark-background3, #141414);
9987
- color: var(--fox-dark-color, var(--fox-white, #fff));
9988
- }
9989
-
9990
- .fox-theme-dark .fox-time-select__content__detail {
9991
- background-color: var(--fox-dark-background2, #1b1b1b);
9992
- }
9993
-
9994
- .fox-time-select {
9995
- width: 100%;
9996
- height: 100%;
9997
- position: relative;
9998
- overflow: hidden;
9999
- }
10000
-
10001
- .fox-time-select__title {
10002
- width: var(--fox-timeselect-title-width, 100%);
10003
- height: var(--fox-timeselect-title-height, 50px);
10004
- line-height: var(--fox-timeselect-title-line-height, 50px);
10005
- font-size: var(--fox-timeselect-title-font-size, var(--fox-font-size-base, 14px));
10006
- color: var(--fox-timeselect-title-color, var(--fox-title-color, #1a1a1a));
10007
- text-align: center;
10008
- padding-bottom: 10px;
10009
- display: flex;
10010
- }
10011
-
10012
- .fox-time-select__title__fixed {
10013
- width: 100%;
10014
- height: 50px;
10015
- }
10016
-
10017
- .fox-time-select__content {
10018
- width: 100%;
10019
- height: calc(100% - var(--fox-timeselect-title-height, 50px) - 10px);
10020
- display: flex;
10021
- }
10022
-
10023
- .fox-time-select__content__pannel {
10024
- background-color: var(--fox-timeselect-pannel-bg-color, #f6f7f9);
10025
- width: 140px;
10026
- height: 100%;
10027
- overflow: auto;
10028
- }
10029
-
10030
- .fox-time-select__content__detail {
10031
- width: calc(100% - 140px);
10032
- height: 100%;
10033
- overflow: hidden auto;
10034
- }
10035
-
10036
- .fox-theme-dark .fox-time-pannel {
10037
- background-color: var(--fox-dark-background3, #141414);
10038
- color: var(--fox-dark-color-gray, var(--fox-text-color, gray));
10039
- }
10040
-
10041
- .fox-theme-dark .fox-time-pannel--curr {
10042
- background-color: var(--fox-dark-background2, #1b1b1b);
10043
- color: var(--fox-dark-color, var(--fox-white, #fff));
10044
- }
10045
-
10046
- .fox-time-pannel {
10047
- width: var(--fox-timeselect-timepannel-width, 140px);
10048
- height: var(--fox-timeselect-timepannel-height, 40px);
10049
- padding: var(--fox-timeselect-timepannel-padding, 15px);
10050
- color: var(--fox-timeselect-timepannel-text-color, var(--fox-title-color2, #666));
10051
- font-size: var(--fox-timeselect-timepannel-font-size, var(--fox-font-size-base, 14px));
10052
- box-sizing: border-box;
10053
- justify-content: center;
10054
- align-items: center;
10055
- display: flex;
10056
- }
10057
-
10058
- .fox-time-pannel--curr {
10059
- background-color: var(--fox-timeselect-timepannel-cur-bg-color, var(--fox-white, #fff));
10060
- color: var(--fox-timeselect-timepannel-cur-text-color, #333);
10061
- font-weight: bold;
10062
- }
10063
-
10064
- .fox-theme-dark .fox-time-detail {
10065
- background-color: var(--fox-dark-background2, #1b1b1b);
10066
- }
10067
-
10068
- .fox-theme-dark .fox-time-detail__detail__list__item {
10069
- background-color: var(--fox-dark-background, #131313);
10070
- color: var(--fox-dark-color, var(--fox-white, #fff));
10071
- }
10072
-
10073
- .fox-theme-dark .fox-time-detail__detail__list__item--curr {
10074
- color: var(--fox-timeselect-timedetail-item-cur-text-color, var(--fox-primary-color, #fa2c19));
10075
- }
10076
-
10077
- .fox-time-detail {
10078
- width: 100%;
10079
- padding: var(--fox-timeselect-timedetail-padding, 0 5px 50px 13px);
10080
- display: flex;
10081
- }
10082
-
10083
- .fox-time-detail__detail {
10084
- width: 100%;
10085
- }
10086
-
10087
- .fox-time-detail__detail__list__item {
10088
- width: var(--fox-timeselect-timedetail-item-width, 100px);
10089
- height: var(--fox-timeselect-timedetail-item-height, 50px);
10090
- line-height: var(--fox-timeselect-timedetail-item-line-height, 50px);
10091
- text-align: center;
10092
- background-color: var(--fox-timeselect-timedetail-item-bg-color, #f6f7f9);
10093
- border-radius: var(--fox-timeselect-timedetail-item-border-radius, 5px);
10094
- color: var(--fox-timeselect-timedetail-item-text-color, #333);
10095
- font-size: var(--fox-timeselect-timedetail-item-text-font-size, var(--fox-font-size-base, 14px));
10096
- border: 1px solid #0000;
10097
- margin-bottom: 10px;
10098
- margin-right: 10px;
10099
- font-weight: bold;
10100
- display: inline-block;
10101
- }
10102
-
10103
- .fox-time-detail__detail__list__item--curr {
10104
- border: 1px solid var(--fox-timeselect-timedetail-item-cur-border, var(--fox-primary-color, #fa2c19));
10105
- color: var(--fox-timeselect-timedetail-item-cur-text-color, var(--fox-primary-color, #fa2c19));
10106
- background-color: #0000;
10107
- position: relative;
10108
- }
10109
-
10110
- .fox-time-detail__detail__list__item--curr:after {
10111
- background-color: var(--fox-timeselect-timedetail-item-cur-bg-color, var(--fox-primary-color, #fa2c19));
10112
- opacity: .15;
10113
- content: "";
10114
- width: 100%;
10115
- height: 100%;
10116
- position: absolute;
10117
- inset: 0;
10118
- }
10119
-
10120
- .fox-time-detail__detail--afternoon {
10121
- margin-top: 30px;
10122
- }
10123
-
10124
- .fox-theme-dark .fox-sku {
10125
- background: var(--fox-dark-background, #131313);
10126
- }
10127
-
10128
- .fox-theme-dark .fox-sku-select-item-title {
10129
- color: var(--fox-dark-color, var(--fox-white, #fff));
10130
- }
10131
-
10132
- .fox-theme-dark .fox-sku-select-item-skus-sku {
10133
- color: var(--fox-dark-color, var(--fox-white, #fff));
10134
- background: var(--fox-dark-background2, #1b1b1b);
10135
- }
10136
-
10137
- .fox-theme-dark .fox-sku-stepper-title, .fox-theme-dark .fox-sku-stepper-limit {
10138
- color: var(--fox-dark-color, var(--fox-white, #fff));
10139
- }
10140
-
10141
- .fox-theme-dark .fox-sku-stepper-count-lowestBuy {
10142
- color: var(--fox-primary-color, #fa2c19);
10143
- }
10144
-
10145
- .fox-theme-dark .fox-sku-operate-btn {
10146
- background: var(--fox-dark-background2, #1b1b1b);
10147
- }
10148
-
10149
- .fox-sku {
10150
- background: var(--fox-white, #fff);
10151
- flex-direction: column;
10152
- height: 100%;
10153
- padding: 0;
10154
- display: flex;
10155
- }
10156
-
10157
- .fox-sku-header {
10158
- flex-shrink: 0;
10159
- height: 100px;
10160
- margin-top: 18px;
10161
- padding: 0 18px;
10162
- display: flex;
10163
- }
10164
-
10165
- .fox-sku-header > img {
10166
- flex-shrink: 0;
10167
- width: 100px;
10168
- height: 100px;
10169
- margin-right: 12px;
10170
- }
10171
-
10172
- .fox-sku-header-right {
10173
- flex-direction: column;
10174
- flex: 1;
10175
- justify-content: flex-end;
10176
- display: flex;
10177
- }
10178
-
10179
- .fox-sku-header-right-extra {
10180
- color: var(--fox-text-color, gray);
10181
- font-size: 12px;
10182
- }
10183
-
10184
- .fox-sku-content {
10185
- flex: 1;
10186
- overflow: hidden auto;
10187
- }
10188
-
10189
- .fox-sku-content::-webkit-scrollbar {
10190
- display: none;
10191
- }
10192
-
10193
- .fox-sku-content {
10194
- margin-top: 24px;
10195
- padding: 0 18px;
10196
- }
10197
-
10198
- .fox-sku-select-item {
10199
- flex-direction: column;
10200
- display: flex;
10201
- }
10202
-
10203
- .fox-sku-select-item-title {
10204
- height: 13px;
10205
- color: var(--fox-black, #000);
10206
- margin-bottom: 18px;
10207
- font-size: 13px;
10208
- font-weight: bold;
10209
- }
10210
-
10211
- .fox-sku-select-item-skus {
10212
- flex-wrap: wrap;
10213
- display: flex;
10214
- }
10215
-
10216
- .fox-sku-select-item-skus-sku {
10217
- height: 30px;
10218
- color: var(--fox-black, #000);
10219
- background: #f2f2f2;
10220
- border: 1px solid #f2f2f2;
10221
- border-radius: 15px;
10222
- flex-shrink: 0;
10223
- margin-bottom: 12px;
10224
- margin-right: 12px;
10225
- padding: 0 18px;
10226
- font-size: 11px;
10227
- line-height: 30px;
10228
- }
10229
-
10230
- .fox-sku-select-item-skus-sku.active {
10231
- background: var(--fox-sku-item-active-bg, rgba(var(--fox-primary-color, #fa2c19), .15));
10232
- border: var(--fox-sku-item-border, 1px solid var(--fox-primary-color, #fa2c19));
10233
- color: var(--fox-primary-color, #fa2c19);
10234
- }
10235
-
10236
- .fox-sku-select-item-skus-sku.disable {
10237
- color: var(--fox-text-color, gray);
10238
- -webkit-text-decoration: var(--fox-sku-item-disable-line, line-through);
10239
- text-decoration: var(--fox-sku-item-disable-line, line-through);
10240
- }
10241
-
10242
- .fox-sku-stepper {
10243
- justify-content: space-between;
10244
- margin: 10px 0 30px;
10245
- display: flex;
10246
- }
10247
-
10248
- .fox-sku-stepper-title {
10249
- color: var(--fox-black, #000);
10250
- margin-right: 12px;
10251
- font-size: 13px;
10252
- font-weight: bold;
10253
- }
10254
-
10255
- .fox-sku-stepper-limit {
10256
- color: var(--fox-text-color, gray);
10257
- flex: 1;
10258
- align-items: center;
10259
- font-size: 12px;
10260
- display: flex;
10261
- }
10262
-
10263
- .fox-sku-stepper-count {
10264
- align-items: center;
10265
- display: flex;
10266
- }
10267
-
10268
- .fox-sku-stepper-count-lowestBuy {
10269
- color: var(--fox-primary-color, #fa2c19);
10270
- font-size: 12px;
10271
- }
10272
-
10273
- .fox-sku-operate {
10274
- width: 100%;
10275
- }
10276
-
10277
- .fox-sku-operate-desc {
10278
- text-align: center;
10279
- color: #de6a1c;
10280
- background: #fbf9da;
10281
- width: 100%;
10282
- padding: 10px 0;
10283
- font-size: 12px;
10284
- display: block;
10285
- }
10286
-
10287
- .fox-sku-operate-btn {
10288
- background: var(--fox-white, #fff);
10289
- text-align: center;
10290
- box-sizing: border-box;
10291
- justify-content: space-between;
10292
- align-items: center;
10293
- width: 100%;
10294
- height: 54px;
10295
- padding: 0 18px;
10296
- display: flex;
10297
- }
10298
-
10299
- .fox-sku-operate-btn-item {
10300
- background: var(--fox-sku-opetate-bg-default, linear-gradient(90deg, var(--fox-primary-color, #fa2c19), var(--fox-primary-color-end, #fa6419) 100%));
10301
- width: 100%;
10302
- height: 40px;
10303
- color: var(--fox-white, #fff);
10304
- border-radius: 21px;
10305
- margin-right: 18px;
10306
- font-size: 15px;
10307
- line-height: 40px;
10308
- }
10309
-
10310
- .fox-sku-operate-btn-item:last-child {
10311
- margin-right: 0;
10312
- }
10313
-
10314
- .fox-sku-operate-btn-buy {
10315
- background: var(--fox-sku-opetate-bg-buy, linear-gradient(135deg, #ffba0d 0%, #ffc30d 69%, #ffcf0d 100%));
10316
- }
10317
-
10318
- .fox-theme-dark .fox-card .fox-card__right {
10319
- color: var(--fox-dark-color, var(--fox-white, #fff));
10320
- }
10321
-
10322
- .fox-card {
10323
- width: 100%;
10324
- display: flex;
10325
- }
10326
-
10327
- .fox-card .fox-card__left {
10328
- background-color: var(--fox-card-left-background-color, inherit);
10329
- border-radius: var(--fox-card-left-border-radius, 0);
10330
- flex-shrink: 0;
10331
- width: 120px;
10332
- height: 120px;
10333
- }
10334
-
10335
- .fox-card .fox-card__left > img {
10336
- width: 100%;
10337
- height: 100%;
10338
- display: block;
10339
- }
10340
-
10341
- .fox-card .fox-card__right {
10342
- flex: 1;
10343
- padding: 0 10px 8px;
10344
- }
10345
-
10346
- .fox-card .fox-card__right .fox-card__right__title {
10347
- -webkit-line-clamp: 2;
10348
- word-break: break-all;
10349
- -webkit-box-orient: vertical;
10350
- font-size: 14px;
10351
- line-height: 1.5;
10352
- display: -webkit-box;
10353
- overflow: hidden;
10354
- }
10355
-
10356
- .fox-card .fox-card__right .fox-card__right__price {
10357
- align-items: center;
10358
- height: 18px;
10359
- margin-top: 9px;
10360
- line-height: 18px;
10361
- display: flex;
10362
- }
10363
-
10364
- .fox-card .fox-card__right .fox-card__right__price .fox-price .fox-price--symbol-large {
10365
- font-size: 12px;
10366
- }
10367
-
10368
- .fox-card .fox-card__right .fox-card__right__price .fox-price .fox-price--large {
10369
- font-size: 18px;
10370
- }
10371
-
10372
- .fox-card .fox-card__right .fox-card__right__price .fox-price .fox-price--decimal-large {
10373
- font-size: 12px;
10374
- }
10375
-
10376
- .fox-card .fox-card__right .fox-card__right__price .fox-card__right__price__origin.fox-price {
10377
- color: #d2a448;
10378
- margin-left: 2px;
10379
- }
10380
-
10381
- .fox-card .fox-card__right .fox-card__right__price .fox-card__right__price__origin.fox-price .fox-price--symbol-large, .fox-card .fox-card__right .fox-card__right__price .fox-card__right__price__origin.fox-price .fox-price--large, .fox-card .fox-card__right .fox-card__right__price .fox-card__right__price__origin.fox-price .fox-price--decimal-large {
10382
- font-size: 12px;
10383
- }
10384
-
10385
- .fox-card .fox-card__right .fox-card__right__other {
10386
- align-items: center;
10387
- padding: 5px 0 2px;
10388
- display: flex;
10389
- }
10390
-
10391
- .fox-card .fox-card__right .fox-card__right__other .fox-tag {
10392
- font-size: var(--fox-card-font-size-0, var(--fox-font-size-extra-small, 10px));
10393
- border: none;
10394
- margin-right: 5px;
10395
- padding: 0 2px;
10396
- }
10397
-
10398
- .fox-card .fox-card__right .fox-card__right__shop {
10399
- justify-content: space-between;
10400
- align-items: center;
10401
- margin-top: 4px;
10402
- display: flex;
10403
- }
10404
-
10405
- .fox-card .fox-card__right .fox-card__right__shop .fox-card__right__shop__name {
10406
- color: #999;
10407
- font-size: 12px;
10408
- line-height: 1.5;
10409
- }
10410
-
10411
- .fox-theme-dark .fox-ecard {
10412
- color: var(--fox-dark-color3, #e8e6e3cc);
10413
- }
10414
-
10415
- .fox-theme-dark .fox-ecard ::placeholder {
10416
- color: #1d1f20;
10417
- }
10418
-
10419
- .fox-theme-dark .fox-ecard .fox-ecard__list__item {
10420
- background: var(--fox-dark-background5, #646566);
10421
- }
10422
-
10423
- .fox-theme-dark .fox-ecard .fox-ecard__list__item.active {
10424
- background: var(--fox-dark-background6, #380e08);
10425
- outline: 1px solid var(--fox-dark-color2, #f2270c);
10426
- color: var(--fox-dark-color2, #f2270c);
10427
- }
10428
-
10429
- .fox-theme-dark .fox-ecard .fox-ecard__list__input {
10430
- color: var(--fox-dark-color3, #e8e6e3cc);
10431
- background: var(--fox-dark-background7, #707070);
10432
- }
10433
-
10434
- .fox-theme-dark .fox-ecard .fox-ecard__list__input.active, .fox-theme-dark .fox-ecard .fox-ecard__list__input.active > view > input {
10435
- background: var(--fox-dark-background7, #707070);
10436
- }
10437
-
10438
- .fox-theme-dark .fox-ecard .fox-ecard__list__input .fox-ecard__list__input--con > input {
10439
- color: var(--fox-dark-color3, #e8e6e3cc);
10440
- background-color: #0000;
10441
- }
10442
-
10443
- .fox-ecard {
10444
- width: 100%;
10445
- }
10446
-
10447
- .fox-ecard__title {
10448
- font-family: PingFangSC;
10449
- font-size: 15px;
10450
- font-weight: normal;
10451
- line-height: 1;
10452
- }
10453
-
10454
- .fox-ecard__list {
10455
- flex-wrap: wrap;
10456
- justify-content: space-between;
10457
- margin-top: 15px;
10458
- display: flex;
10459
- }
10460
-
10461
- .fox-ecard__list__item {
10462
- background: var(--fox-ecard-bg-color, #f0f2f5);
10463
- border-radius: 4px;
10464
- justify-content: center;
10465
- align-items: center;
10466
- width: 48%;
10467
- height: 46px;
10468
- margin-bottom: 12px;
10469
- display: flex;
10470
- }
10471
-
10472
- .fox-ecard__list__item.active {
10473
- background: var(--fox-white, #fff);
10474
- outline: 1px solid var(--fox-primary-color, #fa2c19);
10475
- border-radius: 4px;
10476
- }
10477
-
10478
- .fox-ecard__list__input {
10479
- background: var(--fox-ecard-bg-color, #f0f2f5);
10480
- color: #000c;
10481
- border-radius: 4px;
10482
- justify-content: space-between;
10483
- align-items: center;
10484
- width: 100%;
10485
- height: 46px;
10486
- padding: 0 15px 0 20px;
10487
- font-size: 14px;
10488
- display: flex;
10489
- }
10490
-
10491
- .fox-ecard__list__input--con {
10492
- flex: 1;
10493
- justify-content: flex-end;
10494
- display: flex;
10495
- }
10496
-
10497
- .fox-ecard__list__input--con input, .fox-ecard__list__input--con .fox-ecard-input {
10498
- caret-color: var(--fox-primary-color, #fa2c19);
10499
- text-align: right;
10500
- background: none;
10501
- border: 0;
10502
- outline: 0;
10503
- margin-right: 10px;
10504
- text-decoration: none;
10505
- }
10506
-
10507
- .fox-ecard__list__input.active {
10508
- background: var(--fox-white, #fff);
10509
- outline: 1px solid var(--fox-primary-color, #fa2c19);
10510
- }
10511
-
10512
- .fox-ecard__list__input.active > view > input {
10513
- background: var(--fox-white, #fff);
10514
- }
10515
-
10516
- .fox-ecard__list__step {
10517
- width: 100%;
10518
- color: var(--fox-primary-color, #fa2c19);
10519
- justify-content: space-between;
10520
- margin-top: 17px;
10521
- font-family: PingFangSC;
10522
- font-size: 20px;
10523
- font-weight: normal;
10524
- display: flex;
10525
- }
10526
-
10527
- .fox-theme-dark .fox-address-list-swipe, .fox-theme-dark .fox-address-list-general {
10528
- background-color: var(--fox-dark-background2, #1b1b1b);
10529
- border-bottom: 1px solid var(--fox-dark-color-gray, var(--fox-text-color, gray));
10530
- color: var(--fox-dark-color, var(--fox-white, #fff));
10531
- }
10532
-
10533
- .fox-theme-dark .fox-address-list-swipe__mask, .fox-theme-dark .fox-address-list-general__mask {
10534
- background-color: var(--fox-dark-color3, #e8e6e3cc);
10535
- }
10536
-
10537
- .fox-theme-dark .fox-address-list-swipe__mask-copy, .fox-theme-dark .fox-address-list-general__mask-copy {
10538
- color: var(--fox-dark-color-gray, var(--fox-text-color, gray));
10539
- background-color: var(--fox-dark-color, var(--fox-white, #fff));
10540
- }
10541
-
10542
- .fox-theme-dark .fox-address-list-item__addr {
10543
- color: var(--fox-dark-color-gray, var(--fox-text-color, gray));
10544
- }
10545
-
10546
- .fox-theme-dark .fox-address-list__bottom {
10547
- background-color: var(--fox-dark-background2, #1b1b1b);
10548
- }
10549
-
10550
- .fox-address-list {
10551
- overflow: hidden;
10552
- }
10553
-
10554
- .fox-address-list:last-child {
10555
- padding-bottom: 84px;
10556
- }
10557
-
10558
- .fox-address-list-swipe, .fox-address-list-general {
10559
- background-color: var(--fox-addresslist-bg, #fff);
10560
- border-bottom: 1px solid var(--fox-addresslist-border, #f0f0f0);
10561
- min-height: 76px;
10562
- color: var(--fox-addresslist-font-color, #333);
10563
- font-size: var(--fox-addresslist-font-size, 16px);
10564
- align-items: center;
10565
- padding: 5px 10px;
10566
- display: flex;
10567
- position: relative;
10568
- }
10569
-
10570
- .fox-address-list-swipe__mask, .fox-address-list-general__mask {
10571
- background-color: var(--fox-addresslist-mask-bg, #0006);
10572
- z-index: 2001;
10573
- justify-content: space-around;
10574
- align-items: center;
10575
- padding: 0 40px;
10576
- display: flex;
10577
- position: absolute;
10578
- inset: 0;
10579
- }
10580
-
10581
- .fox-address-list-swipe__mask-copy, .fox-address-list-swipe__mask-set, .fox-address-list-swipe__mask-del, .fox-address-list-general__mask-copy, .fox-address-list-general__mask-set, .fox-address-list-general__mask-del {
10582
- text-align: center;
10583
- background-color: var(--fox-white, #fff);
10584
- box-sizing: border-box;
10585
- border-radius: 50%;
10586
- justify-content: center;
10587
- align-items: center;
10588
- width: 55px;
10589
- height: 55px;
10590
- padding: 0 10px;
10591
- font-size: 14px;
10592
- display: flex;
10593
- }
10594
-
10595
- .fox-address-list-swipe__mask-set, .fox-address-list-general__mask-set {
10596
- color: var(--fox-white, #fff);
10597
- background-color: var(--fox-addresslist-set-bg, #f5a623);
10598
- }
10599
-
10600
- .fox-address-list-swipe__mask-del, .fox-address-list-general__mask-del {
10601
- color: var(--fox-white, #fff);
10602
- background-color: var(--fox-addresslist-del-bg, #e1251b);
10603
- }
10604
-
10605
- .fox-address-list-general:last-child, .fox-address-list .fox-swipe:last-of-type .fox-address-list-swipe {
10606
- border-bottom: none;
10607
- }
10608
-
10609
- .fox-address-list-item {
10610
- width: 100%;
10611
- }
10612
-
10613
- .fox-address-list-item__info {
10614
- justify-content: space-between;
10615
- display: flex;
10616
- }
10617
-
10618
- .fox-address-list-item__info-contact {
10619
- justify-content: flex-start;
10620
- align-items: center;
10621
- font-weight: bold;
10622
- display: flex;
10623
- }
10624
-
10625
- .fox-address-list-item__info-contact-name {
10626
- word-wrap: break-word;
10627
- max-width: 145px;
10628
- }
10629
-
10630
- .fox-address-list-item__info-contact-tel {
10631
- word-wrap: break-word;
10632
- max-width: 110px;
10633
- margin-left: 8px;
10634
- }
10635
-
10636
- .fox-address-list-item__info-contact-default {
10637
- background: var(--fox-addresslist-contnts-contact-default, var(--fox-primary-color, #fa2c19));
10638
- height: 16px;
10639
- color: var(--fox-addresslist-contnts-contact-color, var(--fox-white, #fff));
10640
- border-radius: 2px;
10641
- margin-left: 5px;
10642
- padding: 0 6px;
10643
- font-size: 12px;
10644
- line-height: 16px;
10645
- }
10646
-
10647
- .fox-address-list-item__info-handle-edit {
10648
- margin-left: 15px;
10649
- }
10650
-
10651
- .fox-address-list-item__addr {
10652
- color: var(--fox-addresslist-addr-font-color, #666);
10653
- font-size: var(--fox-addresslist-addr-font-size, 12px);
10654
- margin-top: 5px;
10655
- }
10656
-
10657
- .fox-address-list__bottom {
10658
- bottom: 0;
10659
- left: 0;
10660
- right: 0;
10661
- bottom: constant(safe-area-inset-bottom);
10662
- bottom: env(safe-area-inset-bottom);
10663
- z-index: 100000;
10664
- background-color: var(--fox-addresslist-bg, #fff);
10665
- box-sizing: border-box;
10666
- width: 100%;
10667
- padding: 12px 18px 24px;
10668
- position: fixed;
10669
- }
10670
-
10671
- .fox-address-list .fox-address-list__mask-bottom {
10672
- z-index: 2000;
10673
- background-color: #0000;
10674
- position: fixed;
10675
- inset: 0;
10676
- }
10677
-
10678
- .fox-theme-dark .fox-category__cateList {
10679
- background: var(--fox-dark-background2, #1b1b1b);
10680
- }
10681
-
10682
- .fox-theme-dark .fox-category__cateListLeft {
10683
- background: var(--fox-dark-background4, #323233);
10684
- }
10685
-
10686
- .fox-theme-dark .fox-category__cateListItem {
10687
- color: var(--fox-dark-color-gray, var(--fox-text-color, gray));
10688
- }
10689
-
10690
- .fox-theme-dark .fox-category__cateListItemChecked {
10691
- color: var(--fox-dark-color, var(--fox-white, #fff));
10692
- background: var(--fox-dark-background2, #1b1b1b);
10693
- }
10694
-
10695
- .fox-theme-dark .fox-category__cateListItemChecked:before {
10696
- background: var(--fox-category-list-item-checked-img-bg-color, var(--fox-primary-color, #fa2c19));
10697
- }
10698
-
10699
- .fox-category__cateList {
10700
- background: var(--fox-category-bg-color, #fff);
10701
- display: flex;
10702
- }
10703
-
10704
- .fox-category__cateListLeft {
10705
- background: var(--fox-category-list-left-bg-color, #f6f7f9);
10706
- }
10707
-
10708
- .fox-category__cateListItemChecked, .fox-category__cateListItem {
10709
- width: 100px;
10710
- height: 50px;
10711
- color: var(--fox-category-list-item-color, var(--fox-title-color, #1a1a1a));
10712
- justify-content: center;
10713
- align-items: center;
10714
- font-family: PingFangSC;
10715
- font-size: 13px;
10716
- font-weight: normal;
10717
- transition: all .3s;
10718
- display: flex;
10719
- }
10720
-
10721
- .fox-category__cateListItemChecked {
10722
- background: var(--fox-category-list-item-checked-color, #fff);
10723
- font-weight: 500;
10724
- transition: all .3s;
10725
- position: relative;
10726
- }
10727
-
10728
- .fox-category__cateListItemChecked:before {
10729
- content: "";
10730
- background: var(--fox-category-list-item-checked-img-bg-color, var(--fox-primary-color, #fa2c19));
10731
- width: 5px;
10732
- height: 18px;
10733
- position: absolute;
10734
- left: 0;
10735
- }
10736
-
10737
- .fox-theme-dark .fox-category-pane__childTitle {
10738
- color: var(--fox-white, #fff);
10739
- }
10740
-
10741
- .fox-theme-dark .fox-category-pane__cateListRight {
10742
- background: var(--fox-dark-background2, #1b1b1b);
10743
- }
10744
-
10745
- .fox-category-pane__cateListRight {
10746
- background: var(--fox-category-bg-color, #fff);
10747
- padding-left: 15px;
10748
- }
10749
-
10750
- .fox-category-pane__childTitle {
10751
- color: var(--fox-category-pane-title-color, #333);
10752
- margin-top: 15px;
10753
- margin-bottom: 15px;
10754
- font-family: PingFangSC;
10755
- font-size: 13px;
10756
- font-weight: 500;
10757
- }
10758
-
10759
- .fox-category-pane__childItemList {
10760
- flex-wrap: wrap;
10761
- display: flex;
10762
- }
10763
-
10764
- .fox-category-pane__childItem {
10765
- margin-right: 10px;
10766
- }
10767
-
10768
- .fox-category-pane__childImg {
10769
- border-radius: 5px;
10770
- width: 75px;
10771
- height: 75px;
10772
- }
10773
-
10774
- .fox-category-pane__skuName {
10775
- border: 1px solid var(--fox-category-pane-border-color, #999);
10776
- width: 75px;
10777
- height: 40px;
10778
- color: var(--fox-category-pane-gray-color, #666);
10779
- border-radius: 5px;
10780
- justify-content: center;
10781
- align-items: center;
10782
- margin-top: 15px;
10783
- margin-left: 15px;
10784
- margin-right: 10px;
10785
- font-family: PingFangSC;
10786
- font-size: 12px;
10787
- font-weight: normal;
10788
- display: flex;
10789
- }
10790
-
10791
- .fox-category-pane__skuName:nth-child(3n) {
10792
- margin-right: 0;
10793
- }
10794
-
10795
- .fox-category-pane__skuName:nth-child(n+4) {
10796
- margin-top: 15px;
10797
- }
10798
-
10799
- .fox-category-pane__skuImg {
10800
- color: var(--fox-category-pane-gray-color, #666);
10801
- text-align: center;
10802
- margin-top: 10px;
10803
- margin-bottom: 10px;
10804
- font-family: PingFangSC;
10805
- font-size: 12px;
10806
- font-weight: normal;
10807
- }
10808
-
10809
- .fox-category-pane__selfItemList {
10810
- flex-wrap: wrap;
10811
- display: flex;
10812
- }
10813
-
10814
- .fox-theme-dark .fox-comment-header__user-name, .fox-theme-dark .fox-comment-header__user-default-name, .fox-theme-dark .fox-comment__follow-title, .fox-theme-dark .fox-comment-bottom__cpx, .fox-theme-dark .fox-comment-bottom__cpx-item span {
10815
- color: var(--fox-dark-color, var(--fox-white, #fff));
10816
- }
10817
-
10818
- .fox-theme-dark .fox-comment .fox-comment-shop {
10819
- border-top: 1px solid var(--fox-dark-color, var(--fox-white, #fff));
10820
- }
10821
-
10822
- .fox-comment {
10823
- width: 100%;
10824
- font-size: 12px;
10825
- }
10826
-
10827
- .fox-comment-header {
10828
- justify-content: space-between;
10829
- margin-bottom: 10px;
10830
- display: flex;
10831
- }
10832
-
10833
- .fox-comment-header__user {
10834
- flex: 1;
10835
- align-items: center;
10836
- display: flex;
10837
- }
10838
-
10839
- .fox-comment-header__user-avter {
10840
- border-radius: 50%;
10841
- width: 20px;
10842
- height: 20px;
10843
- margin-right: 10px;
10844
- overflow: hidden;
10845
- }
10846
-
10847
- .fox-comment-header__user-avter img {
10848
- width: 20px;
10849
- height: 20px;
10850
- }
10851
-
10852
- .fox-comment-header__user-name {
10853
- text-overflow: ellipsis;
10854
- white-space: nowrap;
10855
- width: 100%;
10856
- color: var(--fox-comment-header-user-name-color, #333);
10857
- width: auto;
10858
- max-width: 80px;
10859
- margin-right: 5px;
10860
- font-size: 12px;
10861
- overflow: hidden;
10862
- }
10863
-
10864
- .fox-comment-header__user-default {
10865
- flex: 1;
10866
- }
10867
-
10868
- .fox-comment-header__user-default-name {
10869
- text-overflow: ellipsis;
10870
- white-space: nowrap;
10871
- width: 100%;
10872
- color: var(--fox-comment-header-user-name-color, #333);
10873
- align-items: center;
10874
- margin-bottom: 3px;
10875
- font-size: 12px;
10876
- display: flex;
10877
- overflow: hidden;
10878
- }
10879
-
10880
- .fox-comment-header__user-default-name > span {
10881
- margin-right: 8px;
10882
- }
10883
-
10884
- .fox-comment-header__user-complex {
10885
- color: var(--fox-comment-header-user-name-color, #333);
10886
- align-items: center;
10887
- display: flex;
10888
- }
10889
-
10890
- .fox-comment-header__user-complex-name {
10891
- white-space: nowrap;
10892
- text-overflow: ellipsis;
10893
- max-width: 80px;
10894
- margin-right: 10px;
10895
- overflow: hidden;
10896
- }
10897
-
10898
- .fox-comment-header__user-complex image {
10899
- max-width: 50px;
10900
- height: 16px;
10901
- }
10902
-
10903
- .fox-comment-header__user-score .fox-rate-item {
10904
- line-height: 10px;
10905
- display: block !important;
10906
- }
10907
-
10908
- .fox-comment-header__user-score .fox-rate-item .fox-icon {
10909
- line-height: 10px;
10910
- }
10911
-
10912
- .fox-comment-header__time {
10913
- text-align: right;
10914
- width: 100px;
10915
- color: var(--fox-comment-header-time-color, #999);
10916
- font-size: 12px;
10917
- }
10918
-
10919
- .fox-comment-header__complex-score {
10920
- align-items: center;
10921
- margin-bottom: 10px;
10922
- display: flex;
10923
- }
10924
-
10925
- .fox-comment-header__complex-score .fox-rate-item {
10926
- line-height: 12px;
10927
- display: block !important;
10928
- }
10929
-
10930
- .fox-comment-header__complex-score .fox-rate-item .fox-icon {
10931
- line-height: 12px;
10932
- }
10933
-
10934
- .fox-comment-header__complex-score-i {
10935
- background: var(--fox-text-color, gray);
10936
- opacity: .4;
10937
- width: 1px;
10938
- height: 6px;
10939
- font-style: inherit;
10940
- margin: 0 8px 0 6px;
10941
- display: inline-block;
10942
- }
10943
-
10944
- .fox-comment-header__complex-score-size {
10945
- text-overflow: ellipsis;
10946
- white-space: nowrap;
10947
- width: 100%;
10948
- overflow: hidden;
10949
- }
10950
-
10951
- .fox-comment-header__labels--item {
10952
- height: 16px;
10953
- margin-right: 4px;
10954
- display: inline-block;
10955
- }
10956
-
10957
- .fox-comment-header__labels--item:last-child {
10958
- margin-right: 0;
10959
- }
10960
-
10961
- .fox-comment__main {
10962
- word-break: break-all;
10963
- word-break: break-all;
10964
- white-space: pre-wrap;
10965
- -webkit-box-orient: vertical;
10966
- display: -webkit-box;
10967
- overflow: hidden;
10968
- }
10969
-
10970
- .fox-comment-images {
10971
- margin: 10px 0 12px;
10972
- display: flex;
10973
- overflow: auto hidden;
10974
- }
10975
-
10976
- .fox-comment-images__item {
10977
- border-radius: 6px;
10978
- flex-shrink: 0;
10979
- width: 80px;
10980
- height: 80px;
10981
- margin-right: 5px;
10982
- position: relative;
10983
- overflow: hidden;
10984
- }
10985
-
10986
- .fox-comment-images__item img {
10987
- width: 80px;
10988
- height: 80px;
10989
- }
10990
-
10991
- .fox-comment-images__item--video img {
10992
- position: absolute;
10993
- top: 50%;
10994
- left: 50%;
10995
- transform: translate(-50%, -50%);
10996
- }
10997
-
10998
- .fox-comment-images__mask {
10999
- color: #fff;
11000
- background: #00000080;
11001
- justify-content: center;
11002
- align-items: center;
11003
- width: 100%;
11004
- height: 90px;
11005
- font-size: 12px;
11006
- line-height: 90px;
11007
- display: flex;
11008
- position: absolute;
11009
- top: 0;
11010
- left: 0;
11011
- }
11012
-
11013
- .fox-comment-images--multi {
11014
- flex-wrap: wrap;
11015
- justify-content: space-between;
11016
- width: 100%;
11017
- margin: 10px auto 15px;
11018
- overflow: hidden;
11019
- }
11020
-
11021
- .fox-comment-images--multi .fox-comment-images__item {
11022
- width: calc(34% - 8px);
11023
- height: 90px;
11024
- margin: 8px 8px 0 0;
11025
- }
11026
-
11027
- .fox-comment-images--multi .fox-comment-images__item img {
11028
- width: 100%;
11029
- height: 100%;
11030
- }
11031
-
11032
- .fox-comment-images--multi .fox-comment-images__item .svg-demo {
11033
- width: 40px;
11034
- height: 40px;
11035
- }
11036
-
11037
- .fox-comment-images--multi .fox-comment-images__item:nth-child(3n) {
11038
- margin-right: 0;
11039
- }
11040
-
11041
- .fox-comment-images--multi:after {
11042
- content: "";
11043
- width: 105px;
11044
- display: block;
11045
- }
11046
-
11047
- .fox-comment__follow-title {
11048
- color: var(--fox-black, #000);
11049
- padding-left: 8px;
11050
- font-size: 14px;
11051
- font-weight: bold;
11052
- position: relative;
11053
- }
11054
-
11055
- .fox-comment__follow-title svg {
11056
- color: var(--fox-primary-color, #fa2c19);
11057
- opacity: .4;
11058
- position: absolute;
11059
- top: 13%;
11060
- left: 0;
11061
- transform: rotate(90deg);
11062
- }
11063
-
11064
- .fox-comment__follow-com {
11065
- -webkit-line-clamp: 6;
11066
- word-break: break-all;
11067
- -webkit-box-orient: vertical;
11068
- margin: 8px 0 8px 8px;
11069
- display: -webkit-box;
11070
- overflow: hidden;
11071
- }
11072
-
11073
- .fox-comment__follow-img {
11074
- align-items: center;
11075
- margin: 0 0 8px 8px;
11076
- display: flex;
11077
- }
11078
-
11079
- .fox-comment-bottom {
11080
- color: var(--fox-comment-bottom-label-color, #999);
11081
- justify-content: space-between;
11082
- margin-right: 5px;
11083
- display: flex;
11084
- }
11085
-
11086
- .fox-comment-bottom__lable {
11087
- text-overflow: ellipsis;
11088
- white-space: nowrap;
11089
- flex: 1;
11090
- width: 100%;
11091
- margin-right: 10px;
11092
- overflow: hidden;
11093
- }
11094
-
11095
- .fox-comment-bottom__cpx {
11096
- color: var(--fox-black, #000);
11097
- justify-content: flex-end;
11098
- align-items: center;
11099
- display: flex;
11100
- }
11101
-
11102
- .fox-comment-bottom__cpx-item {
11103
- align-items: center;
11104
- margin-right: 18px;
11105
- display: flex;
11106
- position: relative;
11107
- }
11108
-
11109
- .fox-comment-bottom__cpx-item span {
11110
- color: var(--fox-black, #000);
11111
- margin-right: 5px;
11112
- }
11113
-
11114
- .fox-comment-bottom__cpx-item:last-child {
11115
- margin-right: 0;
11116
- }
11117
-
11118
- .fox-comment-bottom__cpx-item-popover {
11119
- background: var(--fox-white, #fff);
11120
- width: max-content;
11121
- box-shadow: 0 0 6px var(--fox-disable-color, #ccc);
11122
- border-radius: 5px 0 5px 5px;
11123
- padding: 10px;
11124
- position: absolute;
11125
- top: 35px;
11126
- right: 18px;
11127
- }
11128
-
11129
- .fox-comment-bottom__cpx-item-popover:after {
11130
- content: "";
11131
- border-top: 10px solid #0000;
11132
- border-left: 14px solid #0000;
11133
- border-right: 0 solid #0000;
11134
- border-bottom: 10px solid var(--fox-white, #fff);
11135
- width: 0;
11136
- height: 0;
11137
- position: absolute;
11138
- top: -20px;
11139
- right: 0;
11140
- }
11141
-
11142
- .fox-comment-bottom__cpx-item-popover:before {
11143
- content: "";
11144
- border-top: 10px solid #0000;
11145
- border-bottom: 10px solid #7271711a;
11146
- border-left: 14px solid #0000;
11147
- border-right: 0 solid #0000;
11148
- width: 0;
11149
- height: 0;
11150
- position: absolute;
11151
- top: -22px;
11152
- right: -1px;
11153
- }
11154
-
11155
- .fox-comment-images__play {
11156
- background: #00000080;
11157
- border-radius: 50%;
11158
- width: 40px;
11159
- height: 40px;
11160
- position: absolute;
11161
- top: 50%;
11162
- left: 50%;
11163
- transform: translate(-50%, -50%);
11164
- }
11165
-
11166
- .fox-comment-images__play:after {
11167
- content: "";
11168
- border-top: 9px solid #0000;
11169
- border-bottom: 9px solid #0000;
11170
- border-left: 15px solid #fff;
11171
- display: block;
11172
- position: absolute;
11173
- top: 11px;
11174
- left: 15px;
11175
- }
11176
-
11177
- .fox-comment .fox-comment-shop {
11178
- -webkit-line-clamp: 6;
11179
- word-break: break-all;
11180
- border-top: 1px solid #0000001a;
11181
- -webkit-box-orient: vertical;
11182
- width: 100%;
11183
- margin-top: 20px;
11184
- padding-top: 10px;
11185
- display: -webkit-box;
11186
- overflow: hidden;
11187
- }
11188
-
11189
- .fox-comment .fox-comment-shop span {
11190
- color: var(--fox-comment-shop-color, var(--fox-primary-color, #fa2c19));
11191
- }
11192
9783
  /*$vite$:1*/