check.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. page{
  2. height: 100%;
  3. width: 100%;
  4. }
  5. .section{
  6. width: 100%;
  7. /* height: 550px; */
  8. padding-top: 15px;
  9. background-color: #fff;
  10. }
  11. image{
  12. width: 100%;
  13. display: block;
  14. overflow: hidden;
  15. }
  16. .content{
  17. position: relative;
  18. }
  19. .input-container{
  20. width: 100%;
  21. padding: 0 70rpx;
  22. margin: 15px 0;
  23. }
  24. .input-border{
  25. width: 100%;
  26. height: 40px;
  27. padding: 0 30rpx;
  28. /* border: 1rpx solid #A3ACB1; */
  29. box-shadow: 6rpx 6rpx 8rpx rgba(26, 26, 26, 0.2);
  30. border-radius: 15rpx;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .label{
  35. color: #080808;
  36. /* width: 20%; */
  37. }
  38. /* 输入框 */
  39. .uni-input{
  40. /* background-color: #fff; */
  41. background-image: none;
  42. border: none;
  43. box-sizing: border-box;
  44. color: #606266;
  45. display: inline-block;
  46. font-size: inherit;
  47. height: 40rpx;
  48. line-height: 40rpx;
  49. outline: none;
  50. width: 75%;
  51. padding-left: 5px;
  52. transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  53. }
  54. .picker-input{
  55. width: 100%;
  56. height: 40rpx;
  57. line-height: 40rpx;
  58. }
  59. .submit{
  60. width: 110px;
  61. border-radius: 35px;
  62. background-color: #CA3B3D;
  63. color: #fff;
  64. font-size:15px;
  65. }
  66. .calendar{
  67. height: 300px;
  68. }
  69. /* .text-margin{
  70. margin: 5px 0;
  71. } */
  72. /* 复选框颜色 */
  73. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  74. color: #fff !important;
  75. background: #f5cc57 !important;
  76. border: 1px solid #f5cc57 !important;
  77. }