123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .tui-line-cell {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- height:48rpx;
- }
- .tui-title {
- font-size: 24rpx;
- line-height: 24rpx;
- flex-shrink: 0;
- }
- .tui-input {
- font-size: 24rpx;
- color: #333;
- padding-left: 20rpx;
- flex: 1;
- }
-
- .tui-label {
- font-size: 24rpx;
- color: #333;
- padding-left: 20rpx;
- flex: 1;
- }
- .tui-btn-box {
- background-color: #fff;
- padding: 40rpx 50rpx;
- box-sizing: border-box;
- }
- .phcolor{
- font-size: 24rpx;
- }
-
- .tui-goods-item {
- width: 100%;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- background-color: white;
- }
-
- .tui-goods-img {
- width: 180rpx;
- height: 180rpx;
- display: block;
- flex-shrink: 0;
- }
-
- .tui-goods-grid {
- width: 180rpx;
- height: 180rpx;
- display: flex;
- flex-shrink: 0;
- background-color: #999999;
- color: #fff;
- align-items: center;
- justify-content: center;
- }
-
- .tui-goods-center {
- flex: 1;
- box-sizing: border-box;
- }
-
- .tui-input {
- font-size: 24rpx;
- color: #333;
- padding-left: 20rpx;
- flex: 1;
- }
-
- /* 未选中的背景样式 */
- checkbox .wx-checkbox-input{
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- }
- /* 选中后的背景样式 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked{
- background: #37C674;
- }
- /* 选中后的勾子样式 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
- width: 40rpx;
- height: 40rpx;
- line-height: 40rpx;
- border-radius: 50%;
- text-align: center;
- font-size:32rpx;
- color:#FFF;
- background: transparent;
- transform:translate(-50%, -50%) scale(1);
- -webkit-transform:translate(-50%, -50%) scale(1);
- }
-
-
|