_1620_map.scss 3.01 KB
/*屏幕宽度小于1190,自动适配1024设计分辨率*/
@media screen and (min-width:1190px){
  .main-map{
    width:1080px;
    height:605px;
    margin:0 auto;
    position:relative;
    .hot-area{
      width: 138px;
      height: 86px;
      position: absolute;
      left: 723px;
      cursor:pointer;
      top: 223px;
     .china-area{
          background:url(../assets/images/map/china.png) center no-repeat;
          width:450px;
          height:342px;
          position:absolute;
          z-index:32;
          cursor:pointer;
          display:none;
          left:-185px;
          top:-208px;
      }
      .background{
        z-index:30;
        width:1080px;
        height:605px;
        position:absolute;
        left:-720px;
        top:-200px;
        background:#fff;
        filter:alpha(opacity=50); /*IE滤镜,透明度50%*/
        -moz-opacity:0.5; /*Firefox私有,透明度50%*/
        opacity:0.5;/*其他,透明度50%*/
        display:none;
      }
    }
    .hot-area:hover{
         .china-area{display:block;}
         .background{display:block;}
    }
    img{
      width:1080px;
      height:605px;
    }
  }

  .city-shop-list{
    width:520px;
    background:#fff;
    height:100%;
    @include fontstyle;
    position:absolute;
    left:0;
    top:0;
    z-index:12;
    .city-list{
      padding-top:20px;
      overflow:auto;
      width:520px;
      a.link{
        @include blockwh(100%,100%);
      }
      .shop{
        cursor:default;
        margin: 15px 0;
        padding-left:20px;
        @include fontstyle;
         .title{font-size:21px;color:#000;font-weight:bold;}
        .subtitle{
          font-size:18px;
          filter:alpha(opacity=35); 
          -moz-opacity:0.35; 
          opacity:0.35;
          color:#000;
        }
        .detail{font-size:14px;color:#000;}
      }
      .shop:hover{
        cursor:default;
        padding-left:20px;
        filter:alpha(opacity=35); 
        -moz-opacity:0.35; 
        opacity:0.35;
      }
    }
      

    .city-name-list{
      margin:0;
      padding:30px 0 30px 0;
      list-style:none;
      width:520px;
      overflow:hidden;
      
      li.city{
        width:172px;
        height:30px;
        line-height:30px;
        font-size:21px;
        color:#a6a6a6;
        text-align:center;
        float:left;
        cursor:pointer;
        a{color:#000;}
      }
      li.city-choosen{
        width:172px;
        height:30px;
        float:left;
        line-height:30px;
        font-size:21px;
        color:#fff;
        background:url(../assets/images/map/choosen.png) center no-repeat;
        text-align:center;
        cursor:pointer;
        a{color:#fff;}
      }
    }
  }
  
  .map-zoom{
    position:fixed;
    z-index:15;
    width:72px;
    height:132px;
    left:521px;
    top:177px;
    .max{width:32px;height:32px; background:url(../assets/images/map/zoom.png) -32px top no-repeat;margin:10px;}
    .min{width:32px;height:32px; background:url(../assets/images/map/zoom.png) -32px -32px no-repeat;margin:10px;}
  }
}