12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .control-index {
- padding: 30rpx;
- }
- .control-index .control-off {
- background: #fff;
- padding: 30rpx;
- border-radius: 16rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- display: flex;
- align-items: center;
- }
- .control-index .control-off-icon {
- width: 80rpx;
- height: 80rpx;
- background: #08979c;
- border-radius: 12rpx;
- text-align: center;
- line-height: 80rpx;
- }
- .control-index .control-off-label {
- flex: 1;
- font-size: 32rpx;
- font-weight: 500;
- margin-left: 20rpx;
- }
- .control-index .control-off-btn {
- width: 120rpx;
- height: 60rpx;
- border-radius: 60rpx;
- color: #fff;
- background: #08979c;
- text-align: center;
- line-height: 60rpx;
- }
|