/* 弹窗 (background) */
.modal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1000; /* 设置在顶层 */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.3); 
}

/* 弹窗内容 */
.modal-content {
    background-color: #fefefe;
    margin: 39% auto; 
    padding: 6.8px;
    border: 1px solid #999;
    width: 96.8%; 
}
/* 关闭按钮 */
.close {
    color: #aaa;
    float: right;
	margin-top:-3.9px;
	margin-RIGHT:-3.1px;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* tctitle */
.tctitle {
text-align:center;
font-weight:900;
margin:0 0 6px 13px;
font-size:16px;
}

/* tcxinxi */
.tcxinxi {
overflow-y:scroll;
border:1px dashed #DDD;
padding:1%;
font-size:16px;
}






