| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*nav begin*/
- div.navbar-nav{
- position: relative;
- height: 50px;
- line-height: 50px;
- font-size: 16px;
- color: #fff;
- }
- div.navbar-nav span {
- margin-left: 20px;
- }
- div.navbar-nav span:before{
- content: '';
- position: absolute;
- top: 19px;
- left: 0;
- width: 1px;
- height: 14px;
- background: #dcdcdc;
- }
- .navbar-inverse .navbar-nav>li>a {
- padding: 15px;
- font-size: 14px;
- color: #d3d3d3;
- }
- .navbar-inverse .navbar-nav>li>a.return{
- font-size: 12px;
- }
- /*nav end*/
- /*section begin*/
- section {
- margin: 0 auto;
- width: 100%;
- }
- section .container{
- margin: 0 auto;
- width: 1140px;
- text-align: center;
- }
- .section-title{
- margin: 140px 0 70px;
- }
- .section-title h3{
- font-size: 36px;
- color: #1f1f1f;
- }
- .section-nav{
- position: relative;
- margin-bottom: 34px;
- }
- .section-nav span{
- font-size: 16px;
- color: #b5b5b5;
- cursor: pointer;
- }
- .section-nav span:first-child{
- margin-right: 56px;
- }
- .section-nav span:first-child:after{
- position: absolute;
- top: 4px;
- right: 558px;
- content: '';
- width: 1px;
- height: 16px;
- background: #dcdcdc;
- }
- .section-nav span.active{
- padding-bottom: 6px;
- color: #e91c20;
- border-bottom: 2px solid #f85659;
- }
- .section-choose .form-group {
- margin: 0 auto;
- position: relative;
- margin-bottom: 12px;
- width: 300px;
- }
- .section-choose .form-group input{
- padding-left: 20px;
- width: 300px;
- height: 44px;
- font-size: 16px;
- color: #323232;
- border-radius: 0;
- }
- .section-choose .form-group .btn{
- margin-top: 40px;
- width: 300px;
- height: 44px;
- line-height: 30px;
- font-size: 16px;
- color: #fff;
- background: #f85659;
- border-radius: 3px;
- }
- .section-choose .form-group ul{
- position: absolute;
- top: 44px;
- left: 30px;
- padding-left: 0;
- margin: 0 auto;
- width: 440px;
- /*height: 300px;*/
- background: #fff;
- overflow-y: auto;
- text-align: left;
- box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
- -moz-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
- -webkit-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
- -o-box-shadow: 0 0 2px 5px rgba(220,220,220,0.5);
- z-index: 1000;
- }
- .section-choose .form-group ul li{
- width: 100%;
- height: 34px;
- line-height: 34px;
- list-style: none;
- cursor: pointer;
- }
- .section-choose .form-group ul li:hover,.section-choose .form-group ul li.active{
- background: #e5e5e5;
- }
- .section-choose .form-group ul li b{
- padding-left: 26px;
- font-size: 14px;
- font-weight: normal;
- color: #323232;
- }
- .section-choose .form-group ul li span{
- font-size: 14px;
- color: #b4b4b4;
- }
- .section-choose .form-group ul li span.phone{
- margin: 0 20px;
- }
- /*点击切换*/
- .section-choose{
- display: none;
- }
- .show{
- display: block;
- }
- /*section end*/
|