@charset "utf-8";
/* CSS Document */

.modal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 设置在顶层 */
    left: 0;
    top: 0;
    height: 300px;
    overflow: auto; 
    margin:20% auto;
    border-radius:40px;
}

/* 弹窗内容 */
.modal-content {
    background-color: #fefefe;
    margin: auto; 
    padding: 20px;
    border: 1px solid #888;
    height: 100%;
    border-radius:40px;
  
}
.modal-content-child{
    margin: 3% auto;
}

/* 关闭按钮 */
.close {
    color: red;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}
#tel{
    width: 90%;
     height:40px; 
     font-size: 18px;
     margin-left: 2%;
     box-shadow: inset 2px 1px 10px 2px #E6E6FF;
     border:0px solid #FFF;
     outline: none;
     
}
							.modal-content #confirmar{
						     height:35px; 
						    line-height:35px; 
						    width:50%; 
						    margin-left: 20%;
						    -webkit-border-radius:20px;           
 -moz-border-radius:20px; 
 background: #E6E6FF;
 color: #000;  
 -webkit-box-shadow: inset 2px 2px 10px #888; 
 border:0px;
 font-weight:600;
						}

	.modal-content p{
						    margin: 7% auto;
						  
						}
						
							.modal-content p:nth-child(1)
						{
						    font-size: 20px;
						    font-weight: 700;
						}