﻿.qCode {
    margin-top: 40px;
}
.tips p {
    line-height: 40px;
}
.wechatTitle{
    width: 280px;
    margin: auto;
    padding: 10px 15px;
    color: #333;
    border: 2px solid #f3f4f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.code {
    width: 280px;
    height: 280px;
    display: block;
    margin: 30px auto;
}
.conTxt p {
    line-height: 2px;
}
.sub_page_main {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding-bottom: 100px;
}
.xjz {
    padding: 10px 10px 5px 10px;
    border-radius: 4px;
    height: 38px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    line-height: 38px;
    margin: 10px;
}
.textinput {
    height: 30px;
    line-height: 30px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid #eee;
}
.el-button {
    margin-left: 10px;
    color: #fff;
    background-color: #dc2212;
    border-color: #dc2212;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
}
 .tablus {
             width:100%;

         }
 .tablus tr td {
            

         }
 /* 设置表格的基本样式 */
table {
  width: 100%;
  border-collapse: collapse; /* 边框合并 */

  font-size: 0.9em;
  min-width: 400px;
  border-radius: 5px 5px 0 0; /* 圆角边框 */
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* 阴影效果 */
}
 
/* 设置表头的样式 */
th {
  background-color: #009879; /* 蓝色背景 */
  color: #ffffff; /* 白色文字 */
  font-size: 1em;
  padding: 10px;
  text-align: left;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  font-weight: bold;
}
 
/* 设置表格行的样式 */
tr {
  background-color: #f3f3f3; /* 浅灰色背景 */
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
}
 
/* 设置单元格的样式 */
td {
  color: #009879; /* 蓝色文字 */
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
 width:20%;
            text-align:center;
            font-size:16px;
}
 
/* 鼠标悬停时改变行的背景色 */
tr:hover {
  background-color: #ffffff; /* 白色背景 */
}