﻿  .mask
{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 100;
	display: none;
}
.popWindow
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 608px;
	height:342px;
	transform: translate(-50%,-50%);
	border-radius: 5px;
	background: #fff;
	box-shadow: 2px 3px 20px rgba(0,0,0,0.2);
	z-index: 120;
	display: none;
	background-image: url("../Images/pop-bg-new.png");
}
.popWindow .head
{
	height: 50px;		
	padding: 0 15px;
}
.popWindow .head p 
{
	line-height: 50px;
	display: inline-block;
    font-family:'Microsoft YaHei';
	font-size:13px;
	color: #cccccc;
}
.popWindow .head .title
{	
    font-family:'Microsoft YaHei';
	font-size:13px;
	color: #cccccc;
}
.popWindow .head .close{
	float: right;
	font-size: 27px;
    font-weight:bold;
	margin-top: -10px;
    margin-right:-10px;
	color: #dedede;
	cursor:pointer;
}
.popWindow .content            
{
	min-height: 249px;
}
.popWindow .foot
{			
	padding:10px;
	text-align: right; 
}		    
.popWindow .guide
{   
	float: right;
	margin-right: 5px;
    font-family:'Microsoft YaHei';
    letter-spacing:1pt;
    font-weight:bold;
    font-size:16px;
	
}

.popWindow .guide a:link
{
    color:gold;text-decoration:none;
    animation:myfirst 10s;
	-moz-animation:myfirst 10s; /* Firefox */
	-webkit-animation:myfirst 10s; /* Safari and Chrome */
	-o-animation:myfirst 10s; /* Opera */
}
.popWindow .guide a:hover{color:greenyellow;text-decoration:none;}
.popWindow .guide a:visited{color:gold;text-decoration:none;

     animation:myfirst 10s;
	-moz-animation:myfirst 10s; /* Firefox */
	-webkit-animation:myfirst 10s; /* Safari and Chrome */
	-o-animation:myfirst 10s; /* Opera */
}
.popWindow .guide a:visited:hover{color:greenyellow;text-decoration:none;display:inline}
	   
.container::after
{
	content:"";
	display: block;
	clear: both;
}

@keyframes myfirst
{	
	0%   {color: orange;}
	25%  {color: yellow;}
	50%  {color: lime;}
	100% {color: greenyellow;}
}

@-moz-keyframes myfirst /* Firefox */
{
	0%   {color: orange;}
	25%  {color: yellow;}
	50%  {color: lime;}
	100% {color: greenyellow;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
	0%   {color: orange;}
	25%  {color: yellow;}
	50%  {color: lime;}
	100% {color: greenyellow;}
}

@-o-keyframes myfirst /* Opera */
{
	0%   {color: orange;}
	25%  {color: yellow;}
	50%  {color: lime;}
	100% {color: greenyellow;}
}