
/* 公共样式 */

div, a, input, label, ul, li, span, td, th {
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
}

button[disabled] {
  cursor: not-allowed;
}

.root { width: 1350px; margin: 0 auto; }

/* 头部导航栏 */
.root > .top{
  height: 50px;
  background-color: #E9E9E9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.root > .top .title {
  padding-left: 60px;
  font-size: 16px;
  color: #444444;
}

.root > .top .top-menu {
  display: flex;
  height: 100%;
}

.root > .top .top-menu a {
  display: block;
  width: 100px;
  height: 100%;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #4278C0;
  transition: all 0.3s;
}

.root > .top .top-menu a:not(:last-child) {
  border-right: 1px solid #0071C4;
}

.root > .top .top-menu a:hover {
  color: #FFF;
  background-color: #3189ff;
}
/* 头部导航栏 END */


.root > .title-index {
  width: 100%;
  height: 163px;
  background-image: url("../img/title_index.png");
}

/* 页脚 */
.footer {
  height: 163px;
  width: 1350px;
  background-color: #F2F2F2;
  margin: 65px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .center {
  text-align: center;
  font-size: 16px;
  color: #444;
}
.footer .center .query-num {
  color: red
}


.login-modal {
  width: 675px;
  height: 440px;
  background-color: #FFFFFF;
  border-radius: 5px;
  text-align: center;
  padding-top: 84px;
  display: none;
}

.login-modal .title{
  font-size: 30px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #285FAC;
}

.login-modal input {
  width: calc(100% - 80px);
  margin: 20px 40px 0;
  height: 77px;
  background: #FFFFFF;
  border: 1px solid #285FAC;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 26px;
  font-family: Microsoft YaHei;
  font-weight: bold;
}

.login-modal input::placeholder {
  color: #B5B5B5;
}

.login-modal .tips {
  font-size: 24px;
  font-family: Microsoft YaHei;
  color: #FF0000;
  margin-top: 10px;
  text-align: left;
  padding: 0 40px;
}

.login-modal .login-btn {
  width: 205px;
  height: 77px;
  margin: 27px auto 0;
  border: none;
  background-image: url('../img/btn-bg3.png');
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FFF;
}

.login-modal .layui-layer-setwin {
  display: none;
}

.login-modal.login-by-account {
  height: 500px;
}


.layui-layer .layui-layer-close {
  width: 34px!important;
  height: 34px!important;
  background-position: unset!important;
  background-size: contain!important;
  background-image: url(../img/icon/close.png);
  top: -8px!important;
  right: 70px!important;
}

.layui-layer .layui-layer-close:after {
  content: '关闭';
  font-size: 27px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #285FAC;
  position: absolute;
  width: 60px;
  left: 42px;
  transform: translateY(-2px);
}

.layui-layer.layui-layer-page{
  width: unset!important;
  height: unset!important;
}

table tr th {
  text-align: center;
}