12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import "/css/form2.wxss";
- /* 选择盒子 */
- .select_box {
- display: flex;
- align-items: center;
- width: 548rpx;
- height: 100rpx;
- border-radius: 50rpx;
- background-color: #F6F7F8;
- border: 2rpx solid rgba(151, 151, 151, 0.05);
- margin: 0 auto;
- box-sizing: border-box;
- }
- /* 选中项 */
- .select_index {
- background: #4EBFCF;
- border: 0;
- }
- .select_index>view{
- color: #fff !important;
- }
- /* 图标 */
- .select_icon {
- width: 76rpx;
- height: 76rpx;
- margin-left: 24rpx;
- }
- /* 文字 */
- .select_box>view {
- flex: 1;
- font-size: 32rpx;
- color: #000000;
- margin-left: 10rpx;
- }
- /* 右边图标 */
- .select_rIcon {
- width: 130rpx;
- height: 48rpx;
- margin-right: 30rpx;
- }
- /* 下一步按钮 */
- .submit_but{
- margin-top: 60rpx;
- }
|