bxs-tools-ui 3.2.0 → 3.3.0

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.
Files changed (148) hide show
  1. package/README.md +20 -20
  2. package/es/add-and-take/index.css +1 -1
  3. package/es/add-and-take/index.js +283 -64
  4. package/es/adjust-baoe/index.css +1 -1
  5. package/es/adjust-baoe/index.js +444 -195
  6. package/es/business-card/index.css +1 -1
  7. package/es/business-card/index.js +1 -0
  8. package/es/canvas-poster/index.css +1 -1
  9. package/es/canvas-poster/index.js +1 -0
  10. package/es/index.css +1 -1
  11. package/es/index.js +936 -824
  12. package/es/insure-calculate/index.css +1 -1
  13. package/es/insure-calculate/index.js +438 -265
  14. package/es/person-info/index.css +1 -1
  15. package/es/person-info/index.js +296 -1370
  16. package/es/product-info/index.css +1 -1
  17. package/es/product-info/index.js +644 -548
  18. package/es/share-sheet/index.css +1 -1
  19. package/es/share-sheet/index.js +313 -21
  20. package/es/utils/index.js +530 -429
  21. package/lib/add-and-take/index.css +1 -1
  22. package/lib/add-and-take/index.js +283 -64
  23. package/lib/adjust-baoe/index.css +1 -1
  24. package/lib/adjust-baoe/index.js +441 -194
  25. package/lib/business-card/index.css +1 -1
  26. package/lib/business-card/index.js +1 -0
  27. package/lib/canvas-poster/index.css +1 -1
  28. package/lib/canvas-poster/index.js +1 -0
  29. package/lib/index.css +1 -1
  30. package/lib/index.js +939 -826
  31. package/lib/insure-calculate/index.css +1 -1
  32. package/lib/insure-calculate/index.js +438 -268
  33. package/lib/person-info/index.css +1 -1
  34. package/lib/person-info/index.js +295 -1372
  35. package/lib/product-info/index.css +1 -1
  36. package/lib/product-info/index.js +645 -550
  37. package/lib/share-sheet/index.css +1 -1
  38. package/lib/share-sheet/index.js +313 -25
  39. package/lib/utils/index.js +531 -433
  40. package/package.json +9 -7
  41. package/packages/add-and-take/components/interest-form.less +144 -0
  42. package/packages/add-and-take/components/interest-form.vue +179 -179
  43. package/packages/add-and-take/components/interest-items.less +87 -0
  44. package/packages/add-and-take/components/interest-items.vue +67 -80
  45. package/packages/add-and-take/components/interest-table.less +111 -0
  46. package/packages/add-and-take/components/interest-table.vue +31 -31
  47. package/packages/add-and-take/constant.ts +2 -2
  48. package/packages/add-and-take/demo/index.vue +89 -86
  49. package/packages/add-and-take/handler.ts +52 -57
  50. package/packages/add-and-take/index.less +69 -0
  51. package/packages/add-and-take/index.vue +156 -156
  52. package/packages/add-and-take/readme.md +87 -98
  53. package/packages/adjust-baoe/demo/index.vue +37 -47
  54. package/packages/adjust-baoe/index.less +125 -0
  55. package/packages/adjust-baoe/index.vue +134 -147
  56. package/packages/adjust-baoe/readme.md +35 -45
  57. package/packages/business-card/demo/index.vue +7 -7
  58. package/packages/business-card/index.less +100 -0
  59. package/packages/business-card/index.vue +18 -21
  60. package/packages/business-card/readme.md +46 -53
  61. package/packages/bxs-utils/demo/index.vue +2 -2
  62. package/packages/bxs-utils/index.ts +5 -5
  63. package/packages/bxs-utils/planbook/common.ts +56 -92
  64. package/packages/bxs-utils/planbook/index.ts +4 -4
  65. package/packages/bxs-utils/planbook/insurance.ts +137 -127
  66. package/packages/bxs-utils/planbook/person.ts +143 -147
  67. package/packages/bxs-utils/planbook/product.ts +473 -509
  68. package/packages/bxs-utils/readme.md +94 -84
  69. package/packages/bxs-utils/trade/index.js +1 -1
  70. package/packages/bxs-utils/trade/insureCalculate.js +91 -204
  71. package/packages/canvas-poster/demo/index.vue +9 -13
  72. package/packages/canvas-poster/index.less +5 -0
  73. package/packages/canvas-poster/index.vue +68 -79
  74. package/packages/canvas-poster/readme.md +106 -109
  75. package/packages/index.ts +1 -1
  76. package/packages/insure-calculate/demo/index.vue +20 -20
  77. package/packages/insure-calculate/index.less +366 -0
  78. package/packages/insure-calculate/index.vue +305 -329
  79. package/packages/insure-calculate/readme.md +99 -106
  80. package/packages/person-info/crm-popup.vue +81 -80
  81. package/packages/person-info/demo/index.vue +25 -37
  82. package/packages/person-info/index-inline.less +11 -0
  83. package/packages/person-info/index.vue +53 -83
  84. package/packages/person-info/readme.md +109 -115
  85. package/packages/planbook-input/components/footer.less +54 -0
  86. package/packages/planbook-input/components/footer.vue +8 -64
  87. package/packages/planbook-input/components/handler.js +33 -44
  88. package/packages/planbook-input/components/product-table.less +235 -0
  89. package/packages/planbook-input/components/product-table.vue +114 -108
  90. package/packages/planbook-input/demo/index.vue +3 -3
  91. package/packages/planbook-input/helper.js +852 -465
  92. package/packages/planbook-input/index.less +30 -0
  93. package/packages/planbook-input/index.vue +86 -103
  94. package/packages/planbook-input/readme.md +72 -90
  95. package/packages/product-info/demo/constant.js +1 -1
  96. package/packages/product-info/demo/index.vue +31 -43
  97. package/packages/product-info/index.less +271 -0
  98. package/packages/product-info/index.vue +198 -210
  99. package/packages/product-info/readme.md +72 -75
  100. package/packages/share-sheet/constant.js +4 -4
  101. package/packages/share-sheet/demo/index.vue +10 -10
  102. package/packages/share-sheet/handler.js +14 -14
  103. package/packages/share-sheet/index.less +201 -0
  104. package/packages/share-sheet/index.vue +39 -39
  105. package/packages/share-sheet/readme.md +121 -127
  106. package/src/api/add-and-take.js +45 -0
  107. package/src/api/adjust-baoe.js +16 -0
  108. package/src/api/index.js +6 -0
  109. package/src/api/planbook.js +93 -0
  110. package/src/api/request.js +211 -0
  111. package/src/api/trade.js +56 -0
  112. package/src/api/user.js +18 -0
  113. package/src/components/common/common-age-birthday.less +66 -0
  114. package/src/components/common/common-age-birthday.vue +27 -95
  115. package/src/components/common/common-popup.less +81 -0
  116. package/src/components/common/common-popup.vue +12 -96
  117. package/src/components/common/common-radio.less +75 -0
  118. package/src/components/common/common-radio.vue +13 -91
  119. package/src/components/common/common-select.less +13 -0
  120. package/src/components/common/common-select.vue +21 -38
  121. package/src/components/common/common-title.less +115 -0
  122. package/src/components/common/common-title.vue +24 -24
  123. package/src/js/loading.js +6 -6
  124. package/src/js/md5Token.js +38 -44
  125. package/src/js/utils.js +45 -53
  126. package/src/js/variables.js +47 -25
  127. package/src/style/base.less +18 -0
  128. package/src/style/color.less +40 -0
  129. package/src/style/variables.less +21 -42
  130. package/packages/add-and-take/api.ts +0 -70
  131. package/packages/add-and-take/components/interest-form.css +0 -146
  132. package/packages/add-and-take/components/interest-items.css +0 -87
  133. package/packages/add-and-take/components/interest-table.css +0 -113
  134. package/packages/add-and-take/index.css +0 -70
  135. package/packages/adjust-baoe/index.css +0 -123
  136. package/packages/business-card/index.css +0 -101
  137. package/packages/canvas-poster/index.css +0 -5
  138. package/packages/insure-calculate/index.css +0 -368
  139. package/packages/planbook-input/api.js +0 -29
  140. package/packages/planbook-input/components/product-table.css +0 -236
  141. package/packages/planbook-input/index.css +0 -31
  142. package/packages/product-info/index.css +0 -264
  143. package/packages/share-sheet/index.css +0 -203
  144. package/src/components/common/common-title.css +0 -116
  145. package/src/js/request.js +0 -64
  146. package/src/style/apply.css +0 -25
  147. package/src/style/base.css +0 -36
  148. package/src/style/color.css +0 -74
@@ -1 +1 @@
1
- .bxt-item-title-wrapper{width:100%}.bxt-item-title{position:relative;text-align:left}.bxt-item-title:before{background:#0a64fe;content:"";display:block;height:15px;left:-15px;position:absolute;top:9px;width:4px}.bxt-item-title .van-checkbox__icon--checked .van-icon{background:#0a64fe;border-color:#0a64fe}.bxt-item-title .bxt-item-title-label{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-size:17px;font-weight:700;line-height:normal;padding:5px 0;vertical-align:middle;white-space:nowrap}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-item{-webkit-box-flex:0;-moz-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.bxt-item-title .bxt-item-title-label .bxt-title-code{border:1px solid #ff703e;border-radius:.25rem;color:#ff703e;font-size:12px;margin-right:5px;padding:0 2px;-webkit-transform:scale(.8334);transform:scale(.8334);-webkit-transform-origin:left center;transform-origin:left center;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span{display:inline-block;vertical-align:top;white-space:normal}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-content--disabled{color:#ccc}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-persion-modify{color:#0a64fe;font-size:14px;font-weight:400;margin-left:12px;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-persion-modify i.iconfont{font-size:12px}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-huomian-tag{color:#f90;font-size:14px;line-height:normal;margin-left:5px;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-status-tag{background-color:#9e9e9e;border:1px solid #9e9e9e;border-radius:2px;color:#fff;font-size:12px;font-weight:400;line-height:normal;margin-left:5px;padding:0 4px;vertical-align:middle}.bxt-item-label-note{color:#ccc;margin-bottom:20px;text-align:left}.bxt-title-huomian-tips{color:#666;font-size:13px;padding-bottom:12px;text-align:left}.bxt-title-huomian-tips em{color:#0a64fe}.bxt_common_field_radio{padding-bottom:11px;padding-top:11px}.bxt_common_field_radio .van-field__control--right .bxt_common_form_radio.disabled .bxt_common_form_radio_item{padding-right:0}.bxt_common_field_radio .bxt_common_form_radio{font-size:13px;margin-bottom:-8px;margin-right:-8px}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item{background:#f2f2f2;border:1px solid #f2f2f2;border-radius:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#999;display:inline-block;font-weight:400;line-height:13px;margin-bottom:6px;margin-right:8px;min-width:60px;padding:6px 9px;text-align:center}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item.active{background:rgba(2,92,234,.1);border-color:#0a64fe;color:#0a64fe;font-weight:700;font-weight:500}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item.disabled{color:#999}.bxt_common_field_radio .bxt_common_form_radio .van-radio-group .van-radio .van-radio__icon{font-size:16px}.bxt_common_field_radio .bxt_common_form_radio.disabled .bxt_common_form_radio_item{border-color:transparent;color:#ccc;padding-left:0;padding-right:0}.bxt_common_field_radio .bxt_common_form_radio.disabled .bxt_common_form_radio_item.active{background:0;border-color:transparent;color:#ccc}.bxt_common_field_radio.bxt_border .bxt_common_form_radio{margin-bottom:0}.bxt_common_form_select{font-size:13px}.bxt_common_form_select .van-field:after{display:block}.bxt_common_form_select.with_note .van-cell:after{display:none}.bxt_common_form_age_birthday{position:relative}.bxt_common_form_age_birthday .van-field__control{line-height:27px;padding-right:28px}.bxt_common_form_age_birthday .bxt_birthday_wrapper{border:1px solid #e5e5e5;border-radius:30px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-size:13px;line-height:13px;padding:6px 16px;position:absolute;right:16px;top:10px;width:148px;z-index:1}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty{color:#333}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty em{vertical-align:middle}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty em.small{color:#999;font-size:12px;-webkit-transform:scale(10/12);transform:scale(10/12);-webkit-transform-origin:left center;transform-origin:left center}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_age{display:inline-block;height:100%;position:absolute;right:0;top:0;width:88px}.bxt_common_form_age_birthday .bxt_birthday_wrapper:after{border-right:1px solid #e5e5e5;content:"";height:60%;left:7em;position:absolute;top:20%;width:1px}.bxt_common_form_age_birthday.disabled .bxt_birthday_wrapper .birthday{color:#c8c9cc}*{margin:0;padding:0}body{color:#333}dl,ul{list-style:none}img{max-width:100%}a{color:#333;display:block;text-decoration:none}em{font-style:normal}article,aside,footer,header,nav,section{display:block}.bxt-product-info{padding:10px}.bxt-product-info .bxt-custom-result{background:#fff;border-radius:6px;color:#333;font-size:15px;margin-bottom:9px}.bxt-product-info .bxt-custom-result .bxt-custom-result-title{padding:15px;position:relative}.bxt-product-info .bxt-custom-result .bxt-custom-result-title .bxt-desc .icon-arrows_down,.bxt-product-info .bxt-custom-result .bxt-custom-result-title .bxt-desc .icon-arrows_up{color:#ccc}.bxt-product-info .bxt-custom-result .bxt-custom-result-title .van-switch{position:absolute;right:15px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);vertical-align:middle}.bxt-product-info .bxt-custom-result .bxt-custom-result-tips{color:#999;font-size:14px;line-height:normal;padding:0 15px 15px}.bxt-product-info .bxt-product-info-form{background:#fff;border-radius:6px;margin-bottom:9px;overflow:hidden}.bxt-product-info .bxt-product-info-form:last-child{margin-bottom:0}.bxt-product-info .bxt-product-info-form .van-cell:after{border-bottom:0}.bxt-product-info .bxt-product-info-form.bxt-product-info-form-follow{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0}.bxt-product-info .bxt-product-info-form.bxt-product-info-form-follow+.bxt-product-info-form{border-top-left-radius:0;border-top-right-radius:0}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content input{text-align:right}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bx-input-icon .bx-icon,.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bx-input-icon .icon-edit2{color:#666!important}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bxt-titile-content{font-size:15px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content{margin-right:-5px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content .bx-radio-warp{padding:10px 5px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content input{text-align:right}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio{text-align:left}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group{width:100%}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio{-webkit-box-align:start;-moz-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;width:100%}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .icon-choose_none_line{color:#999}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .icon-multiple_choice{color:#0a64fe}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .van-radio__icon--disabled .icon-choose_none_line,.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .van-radio__icon--disabled .icon-multiple_choice{color:#ccc}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bx-radio-warp{margin-right:15px;padding-left:0;padding-right:0;text-align:left}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bx-radio-warp .bx-radio-icon-warp{vertical-align:middle}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content{display:inline-block}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--code{border:1px solid #ff703e;border-radius:4px;color:#ff703e;font-size:12px;line-height:20px;margin-right:4px;padding:0 4px;-webkit-transform:scale(.8334);transform:scale(.8334);-webkit-transform-origin:left center;transform-origin:left center;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tx{display:inline-block;font-size:14px;line-height:20px;max-width:15rem;vertical-align:top;width:auto}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tx.bxt-ins-form-radio--width{max-width:12rem}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tag{color:#f90;font-size:12px;line-height:20px;margin-left:9px;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--sale-tag{background-color:#9e9e9e;border:1px solid #9e9e9e;border-radius:2px;color:#fff;display:inline-block;font-size:12px;font-weight:400;line-height:16px;margin-left:4px;padding:0 2px;-webkit-transform-origin:left center;transform-origin:left center;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio:not(:first-child){margin-top:6px}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips{display:inline-block;line-height:normal;margin-top:-12px;position:absolute;right:50px;text-align:right;z-index:1}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips em{background:#666;content:" ";display:inline-block;height:6px;left:50%;position:absolute;top:-2px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);width:6px}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips span{background:#666;border-radius:4px;color:#fff;display:inline-block;font-size:12px;line-height:normal;padding:1px 12px;position:relative}.bxt-product-info .bxt-product-info-form .bxt-ins-recommend-values{margin-top:-2px;overflow:auto;padding:0 15px 18px;text-align:right;white-space:nowrap}.bxt-product-info .bxt-product-info-form .bxt-ins-recommend-values span{background:#f8f8f8;border:1px solid #ccc;border-radius:50px;color:#666;display:inline-block;font-size:12px;line-height:100%;margin-left:6px;margin-top:5px;padding:4px 5px}.bxt-product-info .bxt-product-info-form .van-field-unit{position:relative;z-index:1}.bxt-product-info .bxt-product-info-form .bxt-form-item-label-note{color:#ccc;font-size:12px;padding:0 15px 15px}
1
+ .bxt-item-title-wrapper{width:100%}.bxt-item-title{position:relative;text-align:left}.bxt-item-title:before{background:var(--bxt-primary);content:"";display:block;height:15px;left:-15px;position:absolute;top:9px;width:4px}.bxt-item-title .van-checkbox__icon--checked .van-icon{background:var(--bxt-primary);border-color:var(--bxt-primary)}.bxt-item-title .bxt-item-title-label{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-size:17px;font-weight:700;line-height:normal;padding:5px 0;vertical-align:middle;white-space:nowrap}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-item{-webkit-box-flex:0;-moz-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.bxt-item-title .bxt-item-title-label .bxt-title-code{border:1px solid #ff703e;border-radius:.25rem;color:#ff703e;font-size:12px;margin-right:5px;padding:0 2px;-webkit-transform:scale(.8334);transform:scale(.8334);-webkit-transform-origin:left center;transform-origin:left center;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span{display:inline-block;vertical-align:top;white-space:normal}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-content--disabled{color:var(--bxt-text-assist)}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-persion-modify{color:var(--bxt-primary);font-size:14px;font-weight:400;margin-left:12px;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-persion-modify i.iconfont{font-size:12px}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-huomian-tag{color:#f90;font-size:14px;line-height:normal;margin-left:5px;vertical-align:middle}.bxt-item-title .bxt-item-title-label .bxt-item-title-label-name span.bxt-title-status-tag{background-color:#9e9e9e;border:1px solid #9e9e9e;border-radius:2px;color:#fff;font-size:12px;font-weight:400;line-height:normal;margin-left:5px;padding:0 4px;vertical-align:middle}.bxt-item-label-note{color:#ccc;margin-bottom:20px;text-align:left}.bxt-title-huomian-tips{color:var(--bxt-text-minor);font-size:13px;padding-bottom:12px;text-align:left}.bxt-title-huomian-tips em{color:var(--bxt-primary);font-style:normal}.bxt_common_field_radio{padding-bottom:11px;padding-top:11px}.bxt_common_field_radio .van-field__control--right .bxt_common_form_radio.disabled .bxt_common_form_radio_item{padding-right:0}.bxt_common_field_radio .bxt_common_form_radio{font-size:13px;margin-bottom:-8px;margin-right:-8px}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item{background:var(--bxt-bg-primary);border:1px solid var(--bxt-bg-primary);border-radius:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:var(--bxt-text-patch);display:inline-block;font-weight:400;line-height:13px;margin-bottom:6px;margin-right:8px;min-width:60px;padding:6px 9px;text-align:center}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item.active{background:rgba(2,92,234,.1);border-color:var(--bxt-primary);color:var(--bxt-primary);font-weight:700;font-weight:500}.bxt_common_field_radio .bxt_common_form_radio .bxt_common_form_radio_item.disabled{color:var(--bxt-text-patch)}.bxt_common_field_radio .bxt_common_form_radio .van-radio-group .van-radio .van-radio__icon{font-size:16px}.bxt_common_field_radio .bxt_common_form_radio.disabled .bxt_common_form_radio_item{border-color:transparent;color:var(--bxt-text-assist);padding-left:0;padding-right:0}.bxt_common_field_radio .bxt_common_form_radio.disabled .bxt_common_form_radio_item.active{background:0;border-color:transparent;color:var(--bxt-text-assist)}.bxt_common_field_radio.bxt_border .bxt_common_form_radio{margin-bottom:0}.bxt_common_form_select{font-size:13px}.bxt_common_form_select .van-field:after{display:block}.bxt_common_form_select.with_note .van-cell:after{display:none}.bxt_common_form_age_birthday{position:relative}.bxt_common_form_age_birthday .van-field__control{line-height:27px;padding-right:28px}.bxt_common_form_age_birthday .bxt_birthday_wrapper{border:1px solid var(--bxt-line-split);border-radius:30px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-size:13px;line-height:13px;padding:6px 16px;position:absolute;right:16px;top:10px;width:148px;z-index:1}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty{color:var(--bxt-text-primary)}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty em{font-style:normal;vertical-align:middle}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_birthday.empty em.small{color:var(--bxt-text-patch);font-size:12px;font-style:normal;-webkit-transform:scale(.83333333);transform:scale(.83333333);-webkit-transform-origin:left center;transform-origin:left center}.bxt_common_form_age_birthday .bxt_birthday_wrapper .bxt_age{display:inline-block;height:100%;position:absolute;right:0;top:0;width:88px}.bxt_common_form_age_birthday .bxt_birthday_wrapper:after{border-right:1px solid var(--bxt-line-split);content:"";height:60%;left:7em;position:absolute;top:20%;width:1px}.bxt_common_form_age_birthday.disabled .bxt_birthday_wrapper .birthday{color:#c8c9cc}:root{--bxt-primary:#0a64fe;--bxt-default:#0a64fe;--bxt-bg-primary:#f2f2f2;--bxt-bg-minor:#f8f8f8;--bxt-feature-primary:#f43030;--bxt-feature-minor:#ff5000;--bxt-feature-patch:#f90;--bxt-feature-assist:#fffeed;--bxt-text-primary:#333;--bxt-text-minor:#666;--bxt-text-patch:#999;--bxt-text-assist:#ccc;--bxt-text-disabled:#ccc;--bxt-line-split:#e5e5e5;--bxt-overlay-default:rgba(0,0,0,.5);--bxt-overlay-thick:rgba(0,0,0,.8);--bxt-overlay-thin:rgba(0,0,0,.1);--bxt-type-default:#999;--bxt-type-primary:#0a64fe;--bxt-type-success:#d4edda;--bxt-type-info:#70acf6;--bxt-type-warning:#f90;--bxt-type-danger:#f43030;--bxt-type-caution:#ff5000}.bxt-product-info{padding:10px}.bxt-product-info .bxt-custom-result{background:#fff;border-radius:6px;color:#333;color:var(--bxt-text-primary);font-size:15px;margin-bottom:9px}.bxt-product-info .bxt-custom-result .bxt-custom-result-title{padding:15px;position:relative}.bxt-product-info .bxt-custom-result .bxt-custom-result-title .bxt-desc .icon-arrows_down,.bxt-product-info .bxt-custom-result .bxt-custom-result-title .bxt-desc .icon-arrows_up{color:#ccc;color:var(--bxt-text-assist)}.bxt-product-info .bxt-custom-result .bxt-custom-result-title .van-switch{position:absolute;right:15px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);vertical-align:middle}.bxt-product-info .bxt-custom-result .bxt-custom-result-tips{color:#999;color:var(--bxt-text-patch);font-size:14px;line-height:normal;padding:0 15px 15px}.bxt-product-info .bxt-product-info-form{background:#fff;border-radius:6px;margin-bottom:9px;overflow:hidden}.bxt-product-info .bxt-product-info-form:last-child{margin-bottom:0}.bxt-product-info .bxt-product-info-form .van-cell:after{border-bottom:0}.bxt-product-info .bxt-product-info-form.bxt-product-info-form-follow{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0}.bxt-product-info .bxt-product-info-form.bxt-product-info-form-follow+.bxt-product-info-form{border-top-left-radius:0;border-top-right-radius:0}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content input{text-align:right}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bx-input-icon .bx-icon,.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bx-input-icon .icon-edit2{color:#666!important;color:var(--bxt-text-minor)!important}.bxt-product-info .bxt-product-info-form .bx-form-item__inner .bx-form-item__content .bxt-titile-content{font-size:15px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content{margin-right:-5px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content .bx-radio-warp{padding:10px 5px}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio-btn .bx-form-item__inner .bx-form-item__content input{text-align:right}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio{text-align:left}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group{width:100%}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio{-webkit-box-align:start;-moz-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;width:100%}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .icon-choose_none_line{color:#999;color:var(--bxt-text-patch);vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .icon-multiple_choice{color:#0a64fe;color:var(--bxt-primary);vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .van-radio__icon--disabled .icon-choose_none_line,.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .van-radio__icon--disabled .icon-multiple_choice{color:#ccc;color:var(--bxt-text-disabled)}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bx-radio-warp{margin-right:15px;padding-left:0;padding-right:0;text-align:left}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bx-radio-warp .bx-radio-icon-warp{vertical-align:middle}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content{display:inline-block}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--code{border:1px solid #ff703e;border-radius:4px;color:#ff703e;font-size:12px;line-height:20px;margin-right:4px;padding:0 4px;-webkit-transform:scale(.8334);transform:scale(.8334);-webkit-transform-origin:left center;transform-origin:left center;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tx{display:inline-block;font-size:14px;line-height:20px;max-width:15rem;vertical-align:top;width:auto}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tx.bxt-ins-form-radio--width{max-width:12rem}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--tag{color:#f90;font-size:12px;line-height:20px;margin-left:9px;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio .bxt-ins-form-radio-content .bxt-ins-form-radio--sale-tag{background-color:#9e9e9e;border:1px solid #9e9e9e;border-radius:2px;color:#fff;display:inline-block;font-size:12px;font-weight:400;line-height:16px;margin-left:4px;padding:0 2px;-webkit-transform-origin:left center;transform-origin:left center;vertical-align:top}.bxt-product-info .bxt-product-info-form .bxt-ins-form-radio .van-radio-group .van-radio:not(:first-child){margin-top:6px}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips{display:inline-block;line-height:normal;margin-top:-12px;position:absolute;right:50px;text-align:right;z-index:1}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips em{background:#666;content:" ";display:inline-block;font-style:normal;height:6px;left:50%;position:absolute;top:-2px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);width:6px}.bxt-product-info .bxt-product-info-form .bxt-ins-unit-tips span{background:#666;border-radius:4px;color:#fff;display:inline-block;font-size:12px;line-height:normal;padding:1px 12px;position:relative}.bxt-product-info .bxt-product-info-form .bxt-ins-recommend-values{margin-top:-2px;overflow:auto;padding:0 15px 18px;text-align:right;white-space:nowrap}.bxt-product-info .bxt-product-info-form .bxt-ins-recommend-values span{background:#f8f8f8;border:1px solid #ccc;border-radius:50px;color:#666;display:inline-block;font-size:12px;line-height:100%;margin-left:6px;margin-top:5px;padding:4px 5px}.bxt-product-info .bxt-product-info-form .van-field-unit{position:relative;z-index:1}.bxt-product-info .bxt-product-info-form .bxt-form-item-label-note{color:#ccc;color:var(--bxt-text-assist);font-size:12px;padding:0 15px 15px}.bxt-product-info .bxt-product-info-form .bxt-form-item-label-note em{font-style:normal}