 #applyVip{
  /*µã»÷µ¯³öÄ£Ì¬¿òµÄÍ¼Æ¬
  margin: 30px;
  width: 100px;
  border-radius:6px;*/
  color:#FF0000;
  font-weight:bold;
  opacity: 0.9;
 }
 #applyVip:hover{
  opacity: 0.5;
 }
 #mo{
  display: none;/*Òþ²Ø*/
  width: 100%;
  height: 100%;  
  position: fixed;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  top: 0px;
  left: 0px;
  z-index: 1;
 }
 #moimg{
  display: block;
  margin:100px auto 0 auto;
  width: 50%;   
  max-width: 750px;
 }
 #caption{
  text-align: center;
  margin: 2px auto;
  width: 60%;
  max-height: 750px;
  font-size: 20px;
  color:#ccc;
 }
 #moimg,#caption{
  -webkit-animation: first 1s;
  -o-animation: first 1s;
  animation: first 1s;
 }
 @keyframes first{
  from{transform: scale(0.1);}
  to{transform: scale(1);}
 }
 .close{
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 20%;
  color:#f1f1f1;
 }
 .close:hover,
 .close:focus{
  color:#bbb;
  cursor:pointer;
 }