123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- .lszw-home {
- width: 100%;
- height: 100%;
- .bgImg {
- height: 100px;
- background: url(../img/webChatImg/flower.png) left top no-repeat;
- background-size:100% 100%;
- background-origin:content-box;
- }
- .guides {
- width: 90%;
- margin: 0% 5%;
- padding-top: 15%;
- .lab {
- display: inline-block;
- text-align: center;
- font-size: 13px;
- margin: 20px 4.5%;
- padding: 20px 10px;
- width: 40%;
- border: 1px solid #ddd;
- border-radius: 6px;
- >p {
- margin-bottom: 0px;
- }
- .glyphicon {
- vertical-align: top;//***
- margin-top: -3px;
- margin-right: 10px;
- font-size: 18px;
- }
- .glyphicon-phone-alt {
- color: #279BE5;
- }
- .glyphicon-th-list {
- color: #F29505;
- }
- .glyphicon-send {
- color: #279BE5;
- }
- .glyphicon-list-alt {
- color: #4DB983;
- }
- }
- }
- .hot-point {
- .input-search{
- width: 80%;
- height: 50px;
- margin: 5% 10% 3%;
- background-color: #FFF;
- #search {
- float: right;
- color: #279BE5;
- margin-top: 4px;
- font-size: 16px;
- }
- .glyphicon-search {
- float: left;
- margin-left: -77%;
- margin-top: 7px;
- color: #666;
- }
- >input {
- float: left;
- font-size: 14px;
- width: 80%;
- height: 30px;
- padding-left: 28px;
- background: #eee;
- &:focus {
- background: #FFF;
- }
- }
- }
- .hot {
- .hot-title {
- font-size: 16px;
- width: 90%;
- margin: 10px 5%;
- .addHot {
- float: right;
- color: #279BE5;
- margin-right: 5%;
- }
- }
- .line {
- width: 90%;
- margin: 3% 5%;
- .ico {
- display: inline-block;
- text-align: center;
- width: 20%;
- margin: 0 1.8%;
- }
- .glyphicon {
- margin: 15%;
- padding: 13px;
- font-size: 18px;
- border-radius: 100%;
- color: #FFF;
- background-color: #279BE5;
- }
- }
- }
- }
- .county {
- height: 50px;
- width: 100%;
- position: absolute;
- top: 0%;
- padding: 18px;
- font-size: 13px;
- background-color: #F5F5F5;
- .lf {
- float: right;
- color: #555;
- .glyphicon-map-marker {
- margin-right: 3px;
- }
- }
- }
- .menu {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- pointer-events: none;
- z-index: 1000;
- .app-menu {
- position: relative;
- width: 50%;
- height: 100%;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
- -webkit-transform: translateX(-103%);
- transform: translateX(-103%);
- will-change: transform;
- z-index: 160;
- pointer-events: auto;
- transition: all 0.2s ease-in;
- transition: all 0.2s ease-out;
- }
- }
- .menu--visible {
- pointer-events: auto;
- }
- .menu--visible .app-menu {
- -webkit-transform: none;
- transform: none;
- }
- .menu:after {
- content: '';
- display: block;
- position: absolute;
- left:0;
- top:0;
- width:100%;
- height:100%;
- background: rgba(0, 0, 0, 0.4);
- opacity:0;
- will-change:opacity;
- pointer-events: none;
- transition:opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
- }
- .menu--visible.menu:after {
- opacity:1;
- pointer-events: auto;
- }
- .sidenav {
- background: #FFF;
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- padding: 0 0;
- .title{
- font-size: 15px;
- color: #000;
- margin-left: 25px;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .actived {
- color: #279BE5;
- }
- }
- .sidenav li {
- padding: 10px 5px;
- height: 40px;
- list-style-type: none;
- text-decoration: none;
- border-bottom:1px solid #EEEEEE;
- }
- .sidenav a {
- margin-left:20px;
- font-size: 13px;
- color: #666;
- text-decoration: none !important;
- .right{
- color: #999 !important;
- float: right;
- margin-top: 3px;
- }
- }
- }
|