@charset "utf-8";

/* CSS初始化 */
* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 14px;
  font-family: 'Microsoft YaHei', tahoma, arial, sans-serif;
  color: #3c3c3c;
  min-width: 1470px;
  background: #fff;
}

a {
  color: #3c3c3c;
  text-decoration: none;
}

em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  word-wrap: break-word;
}

input,
textarea {
  font-size: 14px;
  font-family: 'Microsoft YaHei', tahoma, arial, sans-serif;
  border: none;
  background: none;
  outline: none;
}

select {
  font-size: 14px;
  font-family: 'Microsoft YaHei', tahoma, arial, sans-serif;
  outline: none;
}

button {
  font-size: 14px;
  font-family: 'Microsoft YaHei', tahoma, arial, sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

input[type='text']:focus,
input[type='password']:focus,
textarea:focus {
  /* -webkit-box-shadow: 0 0 0 1000px white inset; */
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

body .layui-layer-dialog.alertClass {
  width: 270px;
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
}

body .alertClass .layui-layer-title {
  padding: 0;
  height: 42px;
  line-height: 42px;
  border-bottom: none;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  background: none;
  border-radius: 0;
  color: #444;
}

body .layui-layer-dialog.alertClass .layui-layer-content {
  text-align: center;
  padding: 0 15px 15px;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
}

body .alertClass .layui-layer-btn {
  height: 44px;
  text-align: center;
  padding: 0;
}

body .alertClass .layui-layer-btn a {
  display: block;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 17px;
  border-radius: 0;
  font-weight: 600;
  background: none;
}

body .alertClass .layui-layer-btn .layui-layer-btn0 {
  background: none;
  color: #007aff;
}

/* 公用的头部样式 */

.header{
  background-color: #fff;
}
.header-container{
  width: 1470px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container .logo{
  display: block;
  width: 413px;
  height: 42px;
}
.header-container .menu{
  width: 745px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-container .menu a{
  display: block;
  padding: 6px 12px;
  font-size: 16px;
  position: relative;
}
.header-container .menu a.active{
  font-weight: 600;
  color: #4373e8;
}
.header-container .menu a.active::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #4373e8;
}


.header-container .tel-400{
  display: block;
  width: 228px;
  height: 39px;
}


/* 公用的底部样式 */
.footer {
  background-color: #3a3a3a;
}
.footer-container {
  padding: 68px 0 26px;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.footer-company {
  display: block;
  width: 231px;
  height: 202px;
}

.footer-menu {
  flex: 1;
  padding: 0 50px 0 40px;
  display: flex;
  justify-content: space-between;
}

.footer .menu-group {
  display: flex;
  flex-direction: column;
}
.footer .menu-group-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 34px;
}
.footer .menu-group > a {
  color: #818181;
  margin-bottom: 14px;
}
.footer .menu-group > a:hover {
  color: #fff;
}

.footer .footer-customer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-customer .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .tel-number {
  font-size: 26px;
  font-weight: 700;
  padding: 12px 0 22px;
}
.footer .wechat-code {
  display: block;
  margin-bottom: 12px;
}
.footer .wechat-account {
  font-size: 16px;
}

.footer .footer-copy {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #818181;
  background-color: #363636;
}


/* 分页 */
.page {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}
.page a {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  color: #666;
  text-align: center;
  line-height: 28px;
}
.page a.active {
  background: #0756a0;
  color: #fff;
}
.page .prev,
.page .next {
  width: 52px;
}