@charset "utf-8";
/* CSS Document */
@charset "utf-8";
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1em;
  font-family: Source Han Sans CN !important;
  word-break: break-all;
}
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  background: white;
  color: black;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font: 0.6rem \5b8b\4f53, arial, sans-serif;
}
input,
select,
textarea {
  font-size: 100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ie bug：th 不继承 text-align */
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: none;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识，li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: "";
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
  cursor: pointer;
}

/* 去除 ie6 & ie7 焦点点状线 */
a:focus,
*:focus {
  outline: none;
}
/* 清除浮动 */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  zoom: 1; /* for ie6 & ie7 */
}
.clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
  display: none;
}
.block {
  display: block;
}
/* 设置浮动，减少浮动带来的 bug */
.fl,
.fr {
  display: inline;
}
.fl {
  float: left;
}
.fr {
  float: right;
}

header {
  width: 100%;
  padding: 0 1.3rem;
  height: 3.7rem;
  background-color: #05377b;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header svg {
  vertical-align: center;
  width: 11.2rem;
  height: 2.65rem;
}
header nav {
  margin-left: 1.95rem;
}

header nav ul {
  height: 100%;
}
header nav>ul>li{
  line-height: 3.7rem;
}
header nav ul li {
  float: left;
  font-size: 0.9rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  padding: 0 1.05rem;
  position: relative;
  height: 100%;
}
header nav ul li a {
  color: #ffffff;
}

header nav ul li:hover:not(.chil_li li) {
  background-color: #373737;
}

header nav ul li:before {
  content: "";
  position: absolute;
  width: 0.05rem;
  height: 1.2rem;
  background: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  left: 0rem;
}
header nav ul li .chil_li {
  opacity: 0;
  height: 0;
  width: 14rem;
  font-size: 0.8rem;
  background: #373737;
  position: absolute;
  left: 0;
  padding-left: 2rem;
}
header nav ul li .chil_li li {
  position: relative;
  width: 12rem!important;
  height: 0;
}
header nav ul li .chil_li li a {
  line-height: 2.6rem;
  width: 11em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
header nav ul li .chil_li li:before {
  content: "";
  position: absolute;
  width: 0.15rem;
  height: 0.05rem;
  background: #ffffff;
  top: 80%;
}
header nav ul .active {
  background-color: #373737;
}
footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 0 0.75rem;
  z-index: 100;
  box-sizing: border-box;
  height: 1.5rem;
}
footer > ul {
  float: left;
  padding: 0.4rem 0.65rem;
  height: 1.5rem;
}
footer > ul li {
  font-size: 0.6rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: none;
}
footer ul li a {
  color: #ffffff;
}
footer ul li a:hover {
  border-bottom: 0.05rem solid #fff;
}
footer > ul > li:first-child {
  font-size: 0.7rem;
  margin-bottom: 1.05rem;
  display: block;
}
footer > ul:nth-child(2) {
  width: 11rem;
}
footer:hover,footer.active {
  height: 9.4rem;
  transition: all 0.3s linear;
  background: #333;
  opacity: 1;
}
footer:hover > ul,footer.active > ul {
  height: 8.3rem;
  margin: 0.75rem 0;
  border-right: 1px solid #fff;
}
footer:hover > ul li,footer.active > ul li {
  transition: all 0.3s linear;
  display: block;
}
footer:hover > ul:nth-child(6),footer.active > ul:nth-child(6) {
  border: none !important;
}
footer:hover .icp,footer.active .icp {
  margin-left: 40px;
}
footer > .icp {
  border: none !important;
  margin-left: 40px;
}
.footer {
  position: fixed;
  bottom: -0.2rem;
  z-index: 100;
  right: 0.8%;
}
.footer span {
  width: 4.8rem;
  height: 1.1rem;
  padding: 0 0.3rem;
  background: linear-gradient(0deg, #535353, #838383);
  border-radius: 4px;
  font-size: 0.7rem;
  line-height: 1.1rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  vertical-align: super;
}
.footer span img {
  vertical-align: middle;
  margin-right: 0.5rem;
}
.footer > img {
  margin-right: 0.3rem;
  margin-top: 0.25rem;
  cursor: pointer;
}
.mask {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 100;
}
.mask .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(https://static.liweijia.com/korohome/upload/bj.png) center
  center;
  background-size: 100%;
  width: 27.6rem;
  height: 27.6rem;
  text-align: center;
}
.mask .box img {
  width: 11.25rem;
  height: 11.25rem;
}
.mask .box .close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.mask .box .fonts60 {
  font-size: 3rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #4a4d67;
  margin-top: 5rem;
  text-align: center;
}
.mask .box .fonts30 {
  font-size: 1.5rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #0c3d81;
  margin-top: 0.85rem;
  margin-bottom: 1.05rem;
  text-align: center;
}
.mask .box .fonts30 span {
  width: 2.25rem;
  height: 0.15rem;
  background: #0d3e82;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.6rem;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flexstart {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.container {
  padding: 0 1.35rem 1.55rem;
  margin-top: 7.7rem;
}
.bule {
  font-size: 0.85rem;
  font-weight: 400;
  color: #05377b;
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 10;
  height: 4rem;
  line-height: 4rem;
  padding-left: 1.35rem;
  top: 3.7rem;
}
.bule a {
  color: #05377b;
}
.bule span {
  color: #212121;
}
.boardlist {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.boardlist .board {
  margin-right: 0.65%;
  margin-bottom: 1.8rem;
  width: 16%;
}
.boardlist .board .top {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.boardlist .board .top img {
  width: 100%;
  height: 15.5rem;
}
.boardlist .board .top .constract {
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.65rem 0.95rem;
  font-size: 0.7rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3rem;
}
.boardlist .board .bot {
  margin-top: 7px;
  width: 100%;
  height: 1.6rem;
  background: #ffffff;
  color: #212121;
}
.boardlist .board .bot .name {
  width: 100%;
  border: 0.05rem solid #e5e5e5;
  padding-left: 0.8rem;
  position: relative;
}
.boardlist .board .bot .name .txt {
  line-height: 1.6rem;
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 88%;
  display: inline-block;
  color: #212121;
}
.boardlist .board .bot .name .more {
  float: right;
  line-height: 1.6rem;
  color: #b3b3b3;
  width: 12%;
  text-align: center;
}
.boardlist .board .bot .name:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.85rem;
  width: 0.05rem;
  background-color: #fff;
  border-left: 0.05rem solid #d6d6d6;
  border-right: 0.05rem solid #d6d6d6;
  content: ".";
  text-indent: -499.95rem;
}
.boardlist .board:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.boardlist .board:hover .constract {
  opacity: 1;
  transition: all 0.3s linear;
}
.boardlist .board:hover .bot {
  background-color: #000;
  color: #fff;
}
.boardlist .board:hover .bot .name .txt {
  text-decoration: underline;
  color: #fff !important;
}
.com_details {
  margin: 74px auto !important;
}
.side_nav {
  width: 8rem;
  height: 19rem;
  position: fixed;
  zoom: 1;
  z-index: 10;
  left: auto;
  top: 50%;
  margin-top: -9.5rem;
  right: 1rem;
  background: #fff;
  text-align: center;
  display: none;
}
.side_nav .nav_list {
  width: 100%;
  border: 0.05rem solid #05377b;
  background: #fff;
  position: relative;
  zoom: 1;
  z-index: 5;
  left: 0;
  top: 0;
}
.side_nav .nav_list ul {
  width: 6.5rem;
  height: auto;
  margin: 0 auto;
  padding: 0.75rem 0 0.5rem;
}
.side_nav .nav_list ul li {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1rem 0 0;
}
.side_nav .nav_list ul li a {
  display: block;
  width: 4.5rem;
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: 0.8rem;
  border: 0.05rem solid #05377b;
  color: #05377b;
  margin: 0 0 0 1.9rem;
}
.side_nav .nav_list ul li a:hover {
  color: #fff;
  background: #05377b;
}
.side_nav .nav_list ul li i {
  width: 1.5rem;
  height: 1.5rem;
  float: left;
}
.side_nav .nav_list ul li.kefu i {
  background-position: -30px -65px;
}
.side_nav .nav_list ul li.cooper i {
  background-position: -63px -62px;
}
.side_nav .nav_list ul li.about i {
  background-position: -94px -62px;
}
.side_nav .nav_list .code {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto 0.5rem;
}
.side_nav .nav_list .phone {
  display: block;
  width: 100%;
  height: 2.1rem;
  line-height: 2.1rem;
  color: #fff;
  background: #05377b;
  font-size: 0.9rem;
}
.side_nav .nav_list .close {
  text-indent: -999em;
  position: absolute;
  zoom: 1;
  z-index: 2;
  left: 6.9rem;
  top: 0.25rem;
  background-position: -8px -72px;
  width: 1.1rem;
  height: 1.1rem;
}
.side_nav .nav_hide {
  width: 3rem;
  height: 5rem;
  position: fixed;
  zoom: 1;
  z-index: 2;
  left: auto;
  top: 50%;
  right: 1rem;
  margin-top: -2.5rem;
  display: none;
}
.side_nav .nav_hide p {
  width: 2.9rem;
  height: 2.9rem;
  border: 0.05rem solid #05377b;
  background: #fff;
  margin: 0 0 0.1rem;
  cursor: pointer;
  font-size: 0.6rem;
  color: #05377b;
}
.side_nav .nav_hide p.show i {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-position: -6.55rem -3.35rem;
  margin: 0.4rem auto 0.1rem;
}
.side_nav .nav_hide p.top i {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-position: -0.2rem -5rem;
  margin: 0.8rem auto;
}
.icon {
  background: url(https://static.liweijia.com/korohome/pc/images/icon.png?v=1.1.0)
  no-repeat;
  display: inline-block;
  overflow: hidden;
  position: relative;
  zoom: 1;
  z-index: 2;
  left: 0rem;
  top: 0rem;
}
.paginator {
  height: 2.5rem;
  text-align: right;
  padding: 1rem 0 0;
  text-align: center;
}
.paginator span,
.paginator > a {
  display: inline-block;
  overflow: hidden;
  text-align: center;
  font-size: 0.6rem;
  position: relative;
  zoom: 1;
  z-index: 5;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid #ccc;
  line-height: 2.1rem;
  margin: 0 1.2rem 2.5rem 0;
}

/* .paginator  span {
  padding: 0 .25rem;
  background: #f3f3f3;
  color: #05377b;
  display: block;
  width: auto;
  height: 1rem;
} */
.paginator span a {
  line-height: 2.1rem;
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}
.paginator span.active,
.paginator span:hover,
.page-num-current {
  color: #fff !important;
  background: #05377b;
}
.paginator span.active span,
.paginator span:hover span,
.paginator span.active a,
.paginator span:hover a {
  color: #fff;
  background: #05377b;
}
.paginator .next,
.paginator .prev {
  display: inline-block;
  color: #666;
  vertical-align: baseline;
}
/*首页内容*/
.com_content {
  width: 100%;
  margin: 0 auto;
  position: relative;
  zoom: 1;
  z-index: 2;
  left: 0;
  top: -78px;
}
.com_content.com_main {
  height: 100%;
}
.com_content .line {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 10px 0;
  display: block;
}
.com_content .com_banner {
  width: 100%;
  height: 100%;
  position: absolute;
  zoom: 1;
  z-index: 2;
  left: 0;
  top: 0;
}
.com_content .com_banner img {
  display: block;
  width: 100%;
  height: 100%;
}
.com_nofind {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: fixed;
  zoom: 1;
  z-index: 2;
  top: 0;
  padding: 78px 0 0;
  left: 0;
  bottom: 0;
}
.com_nofind .p1 {
  font-size: 20px;
  color: #43c6fe;
  text-align: center;
  position: absolute;
  zoom: 1;
  z-index: 2;
  left: 50%;
  top: 32%;
  width: 400px;
  margin-left: -200px;
}
.com_nofind .find {
  width: 678px;
  height: auto;
  position: absolute;
  zoom: 1;
  z-index: 2;
  left: 50%;
  top: 40%;
  margin-left: -339px;
}
.com_nofind .find li {
  width: 186px;
  height: 66px;
  float: left;
  margin: 0 75px;
}
.com_nofind .find li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 66px;
  font-size: 24px;
  color: #fff;
  background: #33a4e6;
  text-align: center;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
}
.com_nofind .find li a:hover {
  background: #43c6fe;
}
.com_nofind .nofind_bg {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .boardlist .board {
    width: 49%;
  }
}
@media only screen and (max-width: 1824px) {
  .boardlist .board {
    width: 23.9%;
    margin: 0 1.1% 1% 0;
  }
  .partner_box {
    width: 31.33% !important;
    height: 12.05rem !important;
  }
}
@media only screen and (min-width: 1825px) {
  .boardlist .board {
    width: 16%;
  }
}
@media only screen and (max-width: 1024px) {
  .boardlist .board {
    margin-right: 1.1%;
    width: 32.23%;
  }
}

@media (min-width: 1920px) and (max-width: 2560px) {
  html {
    font-size: 20px !important;
  }
}
@media (min-width: 1680px) and (max-width: 1920px) {
  html {
    font-size: 20px !important;
  }
}
@media (min-width: 1440px) and (max-width: 1680px) {
  html {
    font-size: 18px !important;
  }
}
@media (min-width: 1366px) and (max-width: 1440px) {
  html {
    font-size: 17px !important;
  }
  header > nav {
    margin-left: 0 !important;
  }
}
@media (min-width: 1200px) and (max-width: 1366px) {
  html {
    font-size: 16px !important;
  }
  header > nav {
    margin-left: 0 !important;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  html {
    font-size: 14px !important;
  }
  header > nav {
    margin-left: 0 !important;
  }
}
@media (min-width: 300px) and (max-width: 1000px) {
  html,
  body,
  header {
    width: 1300px !important;
  }
  header > nav {
    margin-left: 0 !important;
  }
  .foucs .zindex > .flex {
    width: 54% !important;
  }
  .com_fake .fake_intr,
  .com_fake .fake_banner {
    width: 90% !important;
  }
  #new .title-image,
  #new .right {
    width: 100% !important;
  }
  #new .flexs {
    justify-content: center;
  }
  #new .com_news,
  #new .flexs,
  #new .com_news,
  #details .flexs {
    width: 90%;
  }
  #new .item .right {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1824px) {
  #walf2 .box .top span {
    font-size: 1rem;
  }
  #walf2 .box .bot span {
    font-size: 0.6rem;
  }
}
@media only screen and (max-width: 1300px) {
  html,
  body,
  header {
    width: 1300px !important;
  }
}
.login-btn{
  color: #fff;
  font-size: 14px;
  border: 1px solid;
  padding: 0 10px;
  line-height: 30px;
}
