﻿@charset "utf-8";
/* CSS Document */
.pop_mask{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	background: rgba(0,0,0,.8);
	z-index: 200;
	display:none;
	-webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;

    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: 0.1s;
    -moz-animation-duration: 0.1s;
    -o-animation-duration: 0.1s;
    animation-duration: 0.1s;

	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}
.pop{
	position:fixed;
	left:10%;
	width:80%;
    max-width: 400px;
	border:1px solid #f0f0f0;
	border-radius:5px;
	overflow:hidden;
	background:#fff;
	z-index: 210;
	transition:height .3s ease-in 0;
	display: none;


	-webkit-animation-name: zoomInIn;
    -moz-animation-name: zoomInIn;
    -o-animation-name: zoomInIn;
    animation-name: zoomInIn;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;

	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}
@media screen and (min-width:600px){
    .pop{
        width:400px;
        left:50%;
        margin-left: -200px;
    }
}
@media screen and (min-height:500px){
    .pop{
        top:50%;
        margin-top:
    }
}



/* bubble popup*/
.jw_bubble_wrap{
    display: none;
    position: fixed;
    left:50%;
    top:45%;
    margin-left: -150px;
    margin-top: -50px;
    width:300px;
    z-index: 2001;
}
.jw_bubble,
.jw_bubble_wrong,
.jw_bubble_alert,
.jw_bubble_right{
    position: relative;
    padding: 20px;
    display: block;
    border:1px solid #aaa;
    border:1px solid rgba(0,0,0,.1);
    border-radius:5px;
    overflow: hidden;
    margin-bottom: 10px;
    background:#fff;
    background: rgba(255,255,255,.8);
}
.jw_bubble_alert{
    background:#f2d14f;
    color: #000;
}
.jw_bubble_wrong{
    background: rgba(255,26,107,.8);
    color: #fff;
}
.jw_bubble_right{
    background: rgba(2,194,7,.8);
    color: #fff;
}
.jw_bubble_wrap .txt{
    display: block;
    width:100%;
    line-height: 22px;
}
.jw_bubble_wrap .txt_r{
    padding-left: 25px;
    line-height: 22px;
}
.jw_bubble_wrap .ico_bubble_alert,
.jw_bubble_wrap .ico_bubble_right,
.jw_bubble_wrap .ico_bubble_wrong{
    position: absolute;
    left:20px;
    top:21px;
    width:20px;
    height: 20px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../images/ico_bubble.png) no-repeat;
}
.jw_bubble_wrap .ico_bubble_right{
    background-position: 0 0;
}
.jw_bubble_wrap .ico_bubble_alert{
    background-position: -25px 0;
}
.jw_bubble_wrap .ico_bubble_wrong{
    background-position: -50px 0;
}
