select.wxss 792 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @import "/css/form2.wxss";
  2. /* 选择盒子 */
  3. .select_box {
  4. display: flex;
  5. align-items: center;
  6. width: 548rpx;
  7. height: 100rpx;
  8. border-radius: 50rpx;
  9. background-color: #F6F7F8;
  10. border: 2rpx solid rgba(151, 151, 151, 0.05);
  11. margin: 0 auto;
  12. box-sizing: border-box;
  13. }
  14. /* 选中项 */
  15. .select_index {
  16. background: #4EBFCF;
  17. border: 0;
  18. }
  19. .select_index>view{
  20. color: #fff !important;
  21. }
  22. /* 图标 */
  23. .select_icon {
  24. width: 76rpx;
  25. height: 76rpx;
  26. margin-left: 24rpx;
  27. }
  28. /* 文字 */
  29. .select_box>view {
  30. flex: 1;
  31. font-size: 32rpx;
  32. color: #000000;
  33. margin-left: 10rpx;
  34. }
  35. /* 右边图标 */
  36. .select_rIcon {
  37. width: 130rpx;
  38. height: 48rpx;
  39. margin-right: 30rpx;
  40. }
  41. /* 下一步按钮 */
  42. .submit_but{
  43. margin-top: 60rpx;
  44. }