123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- @import 'global.scss';
- .banner{
- img{
- width:100%;
- }
- }
- .info{
- position: relative;
- margin-top:40px;
- margin-bottom:60px;
- @media(min-width:768px){
- margin-top:50px;
- margin-bottom: 90px;
- }
- @media(min-width:1200px){
- margin-top:80px;
- margin-bottom: 120px;
- }
- h2.title{
- font-size: 20px;
- display: inline-block;
- @media(min-width:768px){
- font-size: 20px;
- }
- color: $color;
- i{
- margin-left: 5px;
- display: inline-block;
- width:11px;
- height:11px;
- background: url("/assets/image/filter.png") no-repeat center;
- }
- &.open-mask{
- padding: 0 15px;
- margin-bottom: 40px;
- }
- }
- .left{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #f8f8f8;
- z-index: 1010;
- padding: 30px;
- overflow: auto;
- transform: translateX(100%);
- background: #eee;
- -webkit-overflow-scrolling: touch;
- float: none;
- &.showIn{
- transform: translateX(0);
- }
- transition: all .5s ease;
- @media(min-width:768px){
- z-index: 1;
- bottom: auto;
- position: relative;
- float: left;
- width:250px;
- background: #fff;
- padding:0 30px 0 0;
- transform: translateX(0);
- }
- h2.title{
- display: inline-block;
- }
- .ul-box{
- margin-top: 25px;
- }
- ul{
-
- li{
- // margin: 15px 0;
- @media(min-width:768px){
- padding: 3px 0;
- }
- a{
- display: block;
- color:#666;
- font-size: 16px;
- padding: 10px 0;
- @media(min-width:768px){
- padding: 5px 0;
- font-size: 14px;
- }
- &.cur{
- i{
- top:-3px;
- @include setArrow(6px,#666,1px,bottom);
- }
- }
- &.active{
- color: $color;
- &>i{
- border-color: $color;
- }
- }
- i{
- top: -1px;
- position: relative;
- margin-left: 6px;
- @include setArrow(6px,#666,1px,left);
- }
- }
- ul{
- display: none;
- li{
- padding-left:20px;
- }
- }
- &.cur>a{
- color: $color;
- i{
- border-color: $color;
- }
- }
- }
- }
- }
- .right{
- padding: 0 15px;
- @media(min-width:768px){
- margin-left: 250px;
- }
- h2{
- color: $color;
- font-size: 24px;
- padding-bottom: 15px;
- border-bottom: 1px solid $color;
- @media(min-width:768px){
- font-size: 32px;
- }
- @media(min-width:1200px){
- font-size: 48px;
- }
- }
- ul{
- margin-top: 10px;
- li{
- a{
- transition: all .5s ease;
- position: relative;
- display: block;
- border-bottom: 1px dashed #dddddd;
- padding: 15px 0;
- color: #666;
- &:after{
- content:"";
- display: block;
- clear: right;
- }
- &:hover,&:active{
- color: #000;
- padding-left: 10px;
- }
- span{
- display: block;
- float: left;
- color: #555;
- font-size: 15px;
- @media(min-width:768px){
- font-size: 16px;
- }
- }
- em{
- float: right;
- color: #999;
- margin-top: 3px;
- font-size: 12px;
- @media(min-width:768px){
- font-size: 14px;
- }
- }
- }
- }
- }
- }
- }
- .info-detail{
- padding:10px 20px;
- h4{
- padding: 20px 0;
- font-size: 20px;
- }
- .con{
- line-height: 2;
- font-size: 14px;
- }
- }
|