12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- .u-radio.data-v-da6758f0 {
- display: -webkit-inline-box;
- display: -webkit-inline-flex;
- display: inline-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- overflow: hidden;
- -webkit-user-select: none;
- user-select: none;
- line-height: 1.8;
- }
- .u-radio__icon-wrap.data-v-da6758f0 {
- color: #606266;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-flex: 0;
- -webkit-flex: none;
- flex: none;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- box-sizing: border-box;
- width: 42rpx;
- height: 42rpx;
- color: transparent;
- text-align: center;
- -webkit-transition-property: color, border-color, background-color;
- transition-property: color, border-color, background-color;
- font-size: 20px;
- border: 1px solid #c8c9cc;
- -webkit-transition-duration: 0.2s;
- transition-duration: 0.2s;
- }
- .u-radio__icon-wrap--circle.data-v-da6758f0 {
- border-radius: 100%;
- }
- .u-radio__icon-wrap--square.data-v-da6758f0 {
- border-radius: 3px;
- }
- .u-radio__icon-wrap--checked.data-v-da6758f0 {
- color: #fff;
- background-color: #2979ff;
- border-color: #2979ff;
- }
- .u-radio__icon-wrap--disabled.data-v-da6758f0 {
- background-color: #ebedf0;
- border-color: #c8c9cc;
- }
- .u-radio__icon-wrap--disabled--checked.data-v-da6758f0 {
- color: #c8c9cc !important;
- }
- .u-radio__label.data-v-da6758f0 {
- word-wrap: break-word;
- margin-left: 10rpx;
- margin-right: 24rpx;
- color: #606266;
- font-size: 30rpx;
- }
- .u-radio__label--disabled.data-v-da6758f0 {
- color: #c8c9cc;
- }
|