﻿/* 样式表 */  
  
body {  
    /* 确保contenttel下方有足够的空间，避免内容被遮挡 */  
    margin-bottom: 20px; /* 根据你的contenttel高度调整 */  
}  
  
contenttel {  
    position: fixed; /* 或者 absolute，取决于你的需求 */  
    left: 0; /* 确保左侧紧贴视口 */  
    right: 0; /* 确保右侧紧贴视口 */ 
    position: fixed; /* 固定在底部 */  
    bottom: 0; /* 贴紧屏幕底部 */  
    width: 100%; /* 占据整个屏幕宽度 */  
    background-color: #e60039; /* 背景颜色 */  
    color: #fff; /* 文本颜色 */  
    padding: 12px; /* 内边距 */  
    text-align: center; /* 文本居中 */  
    z-index: 999; /* 确保contenttel在其他内容之上 */  
}  

.contact-info a {  
    color: #fff; /* 链接颜色 */  
    text-decoration: none; /* 去除下划线 */  
}  
  
.contact-info a:hover {  
    color: #fff; /* 链接点击时的颜色 */  
    text-decoration: underline; /* 点击时显示下划线 */  
}