setHrAccount.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*nav begin*/
  2. div.navbar-nav{
  3. position: relative;
  4. height: 50px;
  5. line-height: 50px;
  6. font-size: 16px;
  7. color: #fff;
  8. }
  9. div.navbar-nav span {
  10. margin-left: 20px;
  11. }
  12. div.navbar-nav span:before{
  13. content: '';
  14. position: absolute;
  15. top: 19px;
  16. left: 0;
  17. width: 1px;
  18. height: 14px;
  19. background: #dcdcdc;
  20. }
  21. .navbar-inverse .navbar-nav>li>a {
  22. padding: 15px;
  23. font-size: 14px;
  24. color: #d3d3d3;
  25. }
  26. .navbar-inverse .navbar-nav>li>a.return{
  27. font-size: 12px;
  28. }
  29. /*nav end*/
  30. /*section begin*/
  31. section {
  32. margin: 0 auto;
  33. width: 100%;
  34. }
  35. section .container{
  36. margin: 0 auto;
  37. width: 1140px;
  38. text-align: center;
  39. }
  40. .section-title{
  41. margin: 140px 0 70px;
  42. }
  43. .section-title h3{
  44. font-size: 36px;
  45. color: #1f1f1f;
  46. }
  47. .section-nav{
  48. position: relative;
  49. margin-bottom: 34px;
  50. }
  51. .section-nav span{
  52. font-size: 16px;
  53. color: #b5b5b5;
  54. cursor: pointer;
  55. }
  56. .section-nav span:first-child{
  57. margin-right: 56px;
  58. }
  59. .section-nav span:first-child:after{
  60. position: absolute;
  61. top: 4px;
  62. right: 558px;
  63. content: '';
  64. width: 1px;
  65. height: 16px;
  66. background: #dcdcdc;
  67. }
  68. .section-nav span.active{
  69. padding-bottom: 6px;
  70. color: #e91c20;
  71. border-bottom: 2px solid #f85659;
  72. }
  73. .section-choose .form-group {
  74. margin: 0 auto;
  75. position: relative;
  76. margin-bottom: 12px;
  77. width: 300px;
  78. }
  79. .section-choose .form-group input{
  80. padding-left: 20px;
  81. width: 300px;
  82. height: 44px;
  83. font-size: 16px;
  84. color: #323232;
  85. border-radius: 0;
  86. }
  87. .section-choose .form-group .btn{
  88. margin-top: 40px;
  89. width: 300px;
  90. height: 44px;
  91. line-height: 30px;
  92. font-size: 16px;
  93. color: #fff;
  94. background: #f85659;
  95. border-radius: 3px;
  96. }
  97. .section-choose .form-group ul{
  98. position: absolute;
  99. top: 44px;
  100. left: 30px;
  101. padding-left: 0;
  102. margin: 0 auto;
  103. width: 440px;
  104. /*height: 300px;*/
  105. background: #fff;
  106. overflow-y: auto;
  107. text-align: left;
  108. box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
  109. -moz-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
  110. -webkit-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
  111. -o-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
  112. z-index: 1000;
  113. }
  114. .section-choose .form-group ul li{
  115. width: 100%;
  116. height: 34px;
  117. line-height: 34px;
  118. list-style: none;
  119. cursor: pointer;
  120. }
  121. .section-choose .form-group ul li:hover,.section-choose .form-group ul li.active{
  122. background: #e5e5e5;
  123. }
  124. .section-choose .form-group ul li b{
  125. padding-left: 26px;
  126. font-size: 14px;
  127. font-weight: normal;
  128. color: #323232;
  129. }
  130. .section-choose .form-group ul li span{
  131. font-size: 14px;
  132. color: #b4b4b4;
  133. }
  134. .section-choose .form-group ul li span.phone{
  135. margin: 0 20px;
  136. }
  137. /*点击切换*/
  138. .section-choose{
  139. display: none;
  140. }
  141. .show{
  142. display: block;
  143. }
  144. /*section end*/