C端小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

106 Zeilen
1.9 KiB

  1. @import "weui.wxss";
  2. @font-face {
  3. font-family: "iconfont"; /* project id 777313 */
  4. src: url("//at.alicdn.com/t/font_777313_jq7td4d3uab.eot");
  5. src: url("//at.alicdn.com/t/font_777313_jq7td4d3uab.eot?#iefix")
  6. format("embedded-opentype"),
  7. url("//at.alicdn.com/t/font_777313_jq7td4d3uab.woff") format("woff"),
  8. url("//at.alicdn.com/t/font_777313_jq7td4d3uab.ttf") format("truetype"),
  9. url("//at.alicdn.com/t/font_777313_jq7td4d3uab.svg#iconfont") format("svg");
  10. }
  11. .iconfont {
  12. font-family: "iconfont" !important;
  13. font-size: 36rpx;
  14. font-style: normal;
  15. -webkit-font-smoothing: antialiased;
  16. -webkit-text-stroke-width: 0.2rpx;
  17. -moz-osx-font-smoothing: grayscale;
  18. }
  19. /* 定位 */
  20. .icon-dingweib:before {
  21. content: "\e652";
  22. }
  23. /* 三角 */
  24. .icon-choose:before {
  25. content: "\e601";
  26. }
  27. /* 右箭头 */
  28. .icon-right:before {
  29. content: "\e612";
  30. }
  31. /* 边框 */
  32. .app-border-top,
  33. .app-border-bottom {
  34. position: relative;
  35. width: 100%;
  36. }
  37. .app-border-top::after,
  38. .app-border-bottom::after {
  39. content: "";
  40. position: absolute;
  41. background-color: #ddd;
  42. display: block !important;
  43. z-index: 1;
  44. top: auto;
  45. right: auto;
  46. width: 100%;
  47. height: 1rpx;
  48. transform-origin: 50% 100%;
  49. transform: scaleY(0.5);
  50. }
  51. .app-border-top:last-child:after,
  52. .app-border-bottom:last-child::after {
  53. display: none !important;
  54. }
  55. .app-border-top::after {
  56. top: 0;
  57. }
  58. .app-border-bottom::after {
  59. bottom: 0;
  60. }
  61. .app-border-left,
  62. .app-border-right {
  63. position: relative;
  64. height: 100%;
  65. }
  66. .app-border-left::before,
  67. .app-border-right::before {
  68. content: "";
  69. position: absolute;
  70. background-color: #ddd;
  71. display: block;
  72. z-index: 1;
  73. top: 0;
  74. bottom: 0;
  75. height: 100%;
  76. width: 1rpx;
  77. transform-origin: 50% 100%;
  78. transform: scaleX(0.5);
  79. }
  80. .app-border-left::before {
  81. left: 0;
  82. }
  83. .app-border-right::before {
  84. right: 0;
  85. }
  86. view,
  87. text {
  88. font-family: PingFangSC-Semibold;
  89. }
  90. page {
  91. width: 100%;
  92. height: 100%;
  93. font-weight: 400;
  94. }