question.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .progress-bar{position: relative;height: 30px; line-height: 30px; z-index: 1; }
  2. .progress{position: absolute; height: 30px; top:0; left:0; background-color: #47a8ef; z-index: -1;}
  3. .input-group .form-textarea:nth-child(2){
  4. border-bottom-left-radius: 5px;
  5. border-top-left-radius: 5px;
  6. border-left: 1px solid #e1e1e1;
  7. padding-left: 10px;
  8. }
  9. .input-group .form-textarea{margin-top:10px;}
  10. .c-btn-blue{
  11. background-color: #47abef;
  12. width: 100%;
  13. border-radius: 5px;
  14. height: 40px;
  15. }
  16. .c-border-radius{border-radius: 5px;}
  17. input[type="checkbox"], input[type="radio"] {
  18. box-sizing: border-box;
  19. padding: 0;
  20. cursor: pointer;
  21. position: relative;
  22. }
  23. .icon-checkbox[type=radio]:before{
  24. content: '';
  25. background-image:url(../images/dianxuan_btn.png);
  26. background-size: 20px 20px;
  27. position: absolute;
  28. top:-3px;
  29. left:-3px;
  30. height: 20px;
  31. width: 20px;
  32. -webkit-font-smoothing: antialiased;
  33. }
  34. .icon-checkbox[type=radio]:checked:before {
  35. content: '';
  36. background-image:url(../images/dianxuan_pre.png);
  37. }
  38. .icon-checkbox[type=checkbox]:before{
  39. content: '';
  40. background-image:url(../images/gouxuan_btn.png);
  41. background-size: 20px 20px;
  42. position: absolute;
  43. top:-3px;
  44. left:-3px;
  45. height: 20px;
  46. width: 20px;
  47. -webkit-font-smoothing: antialiased;
  48. }
  49. .icon-checkbox[type=checkbox]:checked:before {
  50. content: '';
  51. background-image:url(../images/gouxuan_btn_pre.png);
  52. }
  53. input[type=text]{
  54. width: calc(100% - 30px);
  55. height: 30px;
  56. line-height: 30px;
  57. }