小程序链接助手

index.wxss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* pages/link/index.wxss */
  2. .link {
  3. width: 100vw;
  4. padding: 30rpx;
  5. }
  6. .step {
  7. background: #FCEDE3;
  8. padding: 30rpx 50rpx;
  9. display: flex;
  10. margin-bottom: 20rpx;
  11. }
  12. .item1 {
  13. flex: 1;
  14. text-align: center;
  15. position: relative;
  16. }
  17. .item1 image {
  18. width: 60rpx;
  19. height: 60rpx;
  20. }
  21. .info {
  22. color: #999;
  23. }
  24. .info image {
  25. width: 40rpx;
  26. height: 40rpx;
  27. vertical-align: middle;
  28. }
  29. .item1 text {
  30. display: block;
  31. color: #F86B38;
  32. font-size: 22rpx;
  33. }
  34. .item1::after {
  35. content: ">";
  36. color: #F86B38;
  37. position: absolute;
  38. top: 50%;
  39. transform: translate(0,-70%);
  40. right: -10%;
  41. font-size: 22rpx;
  42. }
  43. .item1:last-child::after {
  44. content: "";
  45. }
  46. textarea {
  47. width: calc(100% - 40rpx);
  48. background: #fff;
  49. border: 1rpx solid #D6E4EF;
  50. padding: 20rpx;
  51. }
  52. .btn {
  53. margin-top: 20rpx;
  54. display: flex;
  55. text-align: center;
  56. column-gap: 95rpx;
  57. }
  58. .button {
  59. flex: 1;
  60. border: 2rpx solid #2662FF;
  61. color: #2662FF;
  62. background: #fff;
  63. font-size: 26rpx;
  64. margin: 0 10rpx;
  65. height: 70rpx;
  66. line-height: 70rpx;
  67. border-radius: 12rpx;
  68. font-size: 32rpx;
  69. }
  70. .item {
  71. margin-top: 20rpx;
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. background: #fff;
  76. padding: 20rpx;
  77. font-size: 30rpx;
  78. border-bottom: 2rpx solid #EDEDED;
  79. }
  80. .start {
  81. display: block;
  82. width: 80%;
  83. height: 80rpx;
  84. line-height: 80rpx;
  85. margin: 50rpx auto;
  86. background: #2662FF;
  87. color: #fff;
  88. border-radius: 50rpx;
  89. text-align: center;
  90. font-size: 32rpx;
  91. }