content.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*Tab Box 切换*/
  2. * {
  3. margin:0;
  4. padding:0;
  5. }
  6. .tab-box-container{
  7. padding: 20px;
  8. }
  9. .tab-box-container ul,li {
  10. list-style:none;
  11. }
  12. .tab-box-container ul {
  13. overflow:hidden;
  14. margin: 0;
  15. }
  16. .tab-box-container li {
  17. font-size: 14px;
  18. float:left;
  19. color:#0674f9;
  20. padding:10px 20px;
  21. margin-right:10px;
  22. cursor:pointer;
  23. border:1px solid #ccc;
  24. transition:all ease .3s;
  25. }
  26. .tab-box-container .box {
  27. margin:10px auto;
  28. position:relative;
  29. border: none!important;
  30. box-shadow: none!important;
  31. }
  32. .tab-box-container li:hover {
  33. background:#0674f9;
  34. color:#fff;
  35. }
  36. .tab-box-container li.tabin {
  37. background: #0674f9;
  38. color: #fff;
  39. }
  40. .tab-box-container .content-box {
  41. width:100%;
  42. height:auto;
  43. background:#fafdff;
  44. left:0;
  45. }
  46. .tab-box-container .content {
  47. width: 100%;
  48. clear:both;
  49. padding:10px;
  50. display: none;
  51. transition:all ease .3s;
  52. padding: 20px 20px 50px 20px;
  53. top:0;
  54. left:0;
  55. }
  56. .tab-box-container .contentin {
  57. display: inline-block ;
  58. }
  59. .tab-box-container .content h1 {
  60. font-size:18px;
  61. font-weight: bolder;
  62. margin-bottom:20px;
  63. margin-top:20px;
  64. }
  65. .tab-box-container .content p {
  66. font-size:14px;
  67. }
  68. /*checkbox 带边框*/
  69. .wh-label{
  70. width: 12.3%;
  71. text-align: right;
  72. float: left;
  73. position: relative;
  74. min-height: 1px;
  75. padding-right: 15px;
  76. padding-left: 15px;
  77. padding-top: 7px;
  78. margin-bottom: 0;
  79. }
  80. .wh-checkbox-style{
  81. width: 80%;
  82. float: left;
  83. position: relative;
  84. min-height: 1px;
  85. margin-left: 15px;
  86. margin-bottom: 0;
  87. padding: 15px;
  88. border: 1px solid #e5e6e7;
  89. border-radius: 4px;
  90. background: #fff;
  91. }
  92. .m-t-20{
  93. margin-top:20px;
  94. }