index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/entry/index.wxss */
  2. .page {
  3. font-weight: 500;
  4. .title {
  5. background: linear-gradient(180deg, #2AB0FF 0%, #2F8AFF 100%);
  6. height: 240rpx;
  7. line-height: 176rpx;
  8. color: #FFFFFF;
  9. font-size: 24px;
  10. font-family: PingFangSC-Medium, PingFang SC;
  11. padding-left: 40rpx;
  12. }
  13. .main {
  14. background-color: #fff;
  15. position: absolute;
  16. top: 176rpx;
  17. left: 0;
  18. right: 0;
  19. bottom: 0;
  20. border-radius: 36rpx;
  21. padding: 28rpx 40rpx 0 40rpx;
  22. .label {
  23. line-height: 84rpx;
  24. height: 84rpx;
  25. color: #222222;
  26. font-size: 24rpx;
  27. font-family: PingFangSC-Regular, PingFang SC;
  28. }
  29. .input {
  30. border: 1rpx solid #E5E5E5;
  31. padding: 6rpx;
  32. height: 72rpx;
  33. line-height: 72rpx;
  34. border-radius: 6rpx;
  35. font-size: 0;
  36. .inputTool {
  37. width: 425rpx;
  38. height: 100%;
  39. font-size: 30rpx;
  40. box-sizing: border-box;
  41. padding-left: 26rpx;
  42. display: inline-block;
  43. }
  44. .placeholder-style {
  45. color: #C5C5C5;
  46. font-size: 30rpx;
  47. }
  48. .buttom {
  49. background: linear-gradient(180deg, #26B4EC 0%, #2F8AFF 100%);
  50. color: #FFFFFF;
  51. display: inline-block;
  52. width: 230rpx;
  53. border-radius: 4rpx;
  54. height: 100%;
  55. line-height: 72rpx;
  56. font-size: 30rpx;
  57. padding: 0;
  58. }
  59. }
  60. }
  61. }