  /* IE6解决position：fixed */
html body{_height:100%; _overflow-y:auto;}
html #test{_position:absolute;}
html{_overflow-x:auto; _overflow-y:hidden;}
/* IE6 end*/
   #mask_shadow {
      display: none;
      opacity: 0;
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, .5);
    }
    #popup {
      display: none;
      opacity: 0; 
      position: fixed;
      z-index: 2;
      top: 150px;
      width: 600px;
      height: 190px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    #popup .title {
      position: relative;
      width: 100%;
      height: 55px;
      background-color: #333;/*#5bc0de*/
      cursor: move;
    }
    #popup .title p {
      padding-left: 14px;
      line-height: 55px;
      color: #fff;
    }
    #popup .title span {
      position: absolute;
      top: 12px;
      right: 20px;
      width: 30px;
      height: 30px;
      color: #fff;
      opacity: .2;
      font-size: 21px;
      cursor: pointer;
      text-align: center;
      border: 1px solid #fff;
    }
    #popup .title span:hover {
      opacity: .8;
    }
    #popup .cont { width: 100%; height: 220px; background-color: #EDEDED;text-align:center;}
	#popup .userlogin{padding-top:20px;}
	#popup .userlogin input[type="text"],#popup .userlogin input[type="password"]{
    height: 30px;
    vertical-align: middle;
    color: #333;
    border: 1px solid #ccc;
    width: 200px;
	}
	#popup .userlogin .btn{
	width: 80px;
    height: 40px;
    border: 0 none;
    color: #fff;
    background: #ee2331;
    border-radius: 5px;
	}