123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- page{
- height: 100%;
- width: 100%;
- }
- .section{
- width: 100%;
- /* height: 550px; */
- padding-top: 15px;
- background-color: #fff;
- }
- image{
- width: 100%;
- display: block;
- overflow: hidden;
- }
- .content{
- position: relative;
- }
- .input-container{
- width: 100%;
- padding: 0 70rpx;
- margin: 15px 0;
- }
- .input-border{
- width: 100%;
- height: 40px;
- padding: 0 30rpx;
- /* border: 1rpx solid #A3ACB1; */
- box-shadow: 6rpx 6rpx 8rpx rgba(26, 26, 26, 0.2);
- border-radius: 15rpx;
- display: flex;
- align-items: center;
- }
- .label{
- color: #080808;
- /* width: 20%; */
- }
- /* 输入框 */
- .uni-input{
- /* background-color: #fff; */
- background-image: none;
- border: none;
- box-sizing: border-box;
- color: #606266;
- display: inline-block;
- font-size: inherit;
- height: 40rpx;
- line-height: 40rpx;
- outline: none;
- width: 75%;
- padding-left: 5px;
- transition: border-color .2s cubic-bezier(.645,.045,.355,1);
- }
- .picker-input{
- width: 100%;
- height: 40rpx;
- line-height: 40rpx;
- }
- .submit{
- width: 110px;
- border-radius: 35px;
- background-color: #CA3B3D;
- color: #fff;
- font-size:15px;
- }
- .calendar{
- height: 300px;
- }
- /* .text-margin{
- margin: 5px 0;
- } */
- /* 复选框颜色 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- color: #fff !important;
- background: #f5cc57 !important;
- border: 1px solid #f5cc57 !important;
- }
|