@import "normalize.css";
/*前缀兼容样式 start*/
/*单行省略*/
/*多行省略*/
/*背景线性渐变*/
/*opacity*/
/*gray*/
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
/*前缀兼容样式 end*/
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
html,
body {
  width: 100%;
  min-width: 1300px;
  min-height: 100%;
  font-family: SourceHanSansCN-Medium, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  margin: 0;
  background-color: #fff;
}
body {
  position: relative;
}
.container-wrap {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.inner-container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  clear: both;
  position: relative;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 100/100;
  filter: alpha(opacity=100);
}
a:hover {
  color: inherit;
  opacity: 90/100;
  filter: alpha(opacity=90);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}
input,
select,
textarea,
button {
  outline: none;
}
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
input::-ms-clear,
input::-ms-reveal,
::-ms-clear,
::-ms-reveal {
  display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  width: 120px;
  -moz-appearance: textfield;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
button:disabled,
a:disabled {
  cursor: not-allowed;
  color: #666 !important;
  background-color: #eee !important;
}
a,
img {
  display: inline-block;
  border: none;
}
p {
  margin: 0;
  padding: 0;
}
img {
  vertical-align: middle;
}
::-webkit-input-placeholder {
  font-size: 14px;
  color: #888888;
}
:-moz-placeholder {
  font-size: 14px;
  color: #888888;
}
::-moz-placeholder {
  font-size: 14px;
  color: #888888;
}
:-ms-input-placeholder {
  font-size: 14px;
  color: #888888;
}
/*
 * placeholder自定义
*/
.placeholder {
  position: relative;
}
.placeholder .placeholder-word {
  height: 1em;
  font-size: 14px;
  line-height: 1em;
  color: #888888 !important;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}
.float-left,
.child-float-left > * {
  float: left;
}
.float-right,
.child-float-right > * {
  float: right;
}
.o-f {
  overflow: hidden;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*
 * 首字母大写
*/
.text-cap {
  text-transform: capitalize;
}
/*
 * 大写
*/
.text-up {
  text-transform: uppercase;
}
/*
 * 小写
*/
.text-low {
  text-transform: lowercase;
}
/*
 * 单行省略
*/
.text-overflow {
  white-space: nowrap;
  word-break: keep-all;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*
 * 多行省略
*/
.omit {
  width: 100%;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*
 * 蒙版
*/
.mask {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 20/100;
  filter: alpha(opacity=20);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
/*
 * 背景图居中
*/
.bg-CM {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*
 * 元素居中
*/
.pos-CM {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
/*
 * 元素相对定位底部水平居中
*/
.pos-ab {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/*
 * 元素相对定位顶部水平居中
*/
.pos-at {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
/*
 * 元素相对定位右中
*/
.pos-arc {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
/*
 * 元素相对定位左中
*/
.pos-alc {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/*
 * 元素相对定位左下
*/
.pos-alb {
  position: absolute;
  bottom: 0;
  left: 0;
}
/*
 * 图标初始化
*/
.icon {
  position: relative;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
/*
 * 图片居中显示
*/
.cover-img {
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cover-img .img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cover-img .cover,
.cover-img .contain {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.cover-img .contain {
  background-size: contain;
}
/*创建字体*/
/*-------------------------------*/
.header .container {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}
.header .container .nav {
  width: 1200px;
  margin: 0 auto;
  display: block;
}
.header .container .nav .left {
  padding: 21px 0;
  float: left;
}
.header .container .nav .left .logo {
  width: 114px;
  height: 38px;
}
.header .container .nav .list {
  height: 100%;
  padding-left: 64px;
  float: left;
}
.header .container .nav .list .nav-item {
  padding: 0 18px;
  float: left;
  line-height: 80px;
}
.header .container .nav .list .nav-item .text {
  font-size: 16px;
  color: #ffffff;
}
.header .container .nav .list .nav-item:hover .text {
  color: #3874f4;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .container .nav .list .nav-item .select {
  color: #3874f4;
}
.header .container .nav .right {
  height: 80px;
  float: right;
  line-height: 80px;
}
.header .container .nav .right .icon-phone {
  vertical-align: middle;
  display: inline-block;
}
.header .container .nav .right .text {
  vertical-align: middle;
  display: inline-block;
  font-size: 14px;
  color: #fff;
}
.scroll .container {
  background-color: #0C0C0C;
}
.footer {
  width: 100%;
  height: 450px;
  padding-top: 70px;
  background-color: #1d202c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.footer .contain {
  width: 1200px;
  margin: 0 auto;
  font-size: 0;
}
.footer .contain .wrap {
  display: inline-block;
  vertical-align: text-top;
}
.footer .contain .wrap .title {
  padding: 10px 0;
  font-size: 16px;
  color: #ffffff;
}
.footer .contain .wrap .list .item a {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}
.footer .contain .wrap1 {
  width: 165px;
}
.footer .contain .wrap1 .list-1 .item {
  padding: 5px 0;
}
.footer .contain .wrap2 {
  width: 220px;
}
.footer .contain .wrap2 .phone {
  padding: 10px 0;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
}
.footer .contain .wrap2 .text {
  font-size: 13px;
  color: #ffffff;
}
.footer .contain .wrap2 .contact-information {
  padding: 5px 0;
}
.footer .contain .wrap2 .contact-information .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.footer .contain .wrap2 .contact-information .icon:nth-of-type(2) {
  margin: 0 10px;
}
.footer .contain .wrap2 .contact-information .icon-wx {
  background: url("../img/icon_wc_01.png") rgba(255, 255, 255, 0.1) center no-repeat;
  background-size: 18px 14px;
}
.footer .contain .wrap2 .contact-information .icon-qq {
  background: url("../img/icon_qq_01.png") rgba(255, 255, 255, 0.1) center no-repeat;
  background-size: 14px 15px;
}
.footer .contain .wrap2 .address {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.8;
}
.footer .contain .wrap3 {
  float: right;
}
.footer .contain .wrap3 .title {
  text-align: center;
}
.footer .contain .wrap3 .icon-code {
  width: 120px;
  height: 120px;
  background: url("../img/icon_code.png") center no-repeat;
  background-size: contain;
}
.footer .contain .wrap3 .text {
  margin-top: 4px;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
}
.footer .wrap4 {
  width: 1200px;
  margin: 55px auto 0;
  font-size: 13px;
  color: #fff;
  padding: 26px 0;
  border-top: 1px solid #292b37;
  color: #78797e;
}
.footer .wrap4 a {
  color: #78797e;
}
.footer .wrap5 {
  width: 1200px;
  margin: 0 auto 0;
  font-size: 13px;
  color: #fff;
  padding: 26px 0;
  border-top: 1px solid #292b37;
  color: #78797e;
}
/*分页*/
.pageWrap {
  margin-top: 30px;
  text-align: center;
}
.pageWrap .layui-laypage a,
.pageWrap .layui-laypage span,
.pageWrap .layui-laypage button,
.pageWrap .layui-laypage input {
  height: 32px;
  line-height: 30px;
  font-size: 14px;
  border: solid 1px #ededed;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.pageWrap .layui-laypage a,
.pageWrap .layui-laypage span {
  color: #888;
  margin: 0 5px;
  padding: 0 11px;
}
.pageWrap .layui-laypage button {
  padding: 0 13px;
  color: #404040;
  background-color: #fcd24a;
}
.pageWrap .layui-laypage input {
  width: 32px;
  padding: 0;
  text-align: center;
}
.pageWrap .layui-laypage input:focus {
  border-color: #a3204a !important;
}
.pageWrap .layui-laypage a:hover,
.pageWrap .layui-laypage a:active {
  color: #999999;
}
.pageWrap .layui-laypage .layui-laypage-em {
  background-color: #3874f4 !important;
  color: #fff;
}
.pageWrap .layui-laypage .layui-laypage-curr em {
  color: #fff;
}
.pageWrap .layui-laypage .layui-laypage-count,
.pageWrap .layui-laypage .layui-laypage-limits,
.pageWrap .layui-laypage .layui-laypage-refresh,
.pageWrap .layui-laypage .layui-laypage-skip {
  padding: 0;
  border: none;
  background: none;
}
.pageWrap .layui-laypage .icon_1 {
  width: 8px;
  height: 12px;
  background: url("../img/icon_arrow_02.png") center no-repeat;
  background-size: contain;
  background-size: 5px 10px;
}
.pageWrap .layui-laypage .icon_2 {
  width: 8px;
  height: 12px;
  background: url("../img/icon_arrow_01.png") center no-repeat;
  background-size: contain;
  background-size: 5px 10px;
}
.pop {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
}
.pop .contain {
  width: 884px;
  height: 408px;
  background-color: #ffffff;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 0;
}
.pop .contain .img {
  width: 358px;
  height: 408px;
  background-color: #e6ecff;
  border-radius: 8px 0px 0px 8px;
  display: inline-block;
  vertical-align: middle;
}
.pop .contain .right {
  width: 526px;
  height: 408px;
  padding-top: 65px;
  display: inline-block;
  vertical-align: middle;
}
.pop .contain .right .top {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 55;
  text-align: right;
  cursor: pointer;
}
.pop .contain .right .top .icon-clear {
  width: 65px;
  height: 65px;
  background: url("../img/icon_clear.png") center no-repeat;
  background-size: 20px;
}
.pop .contain .right .title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  text-align: center;
}
.pop .contain .right .list {
  padding: 10px 30px;
}
.pop .contain .right .list .item {
  border-bottom: 1px solid #dcdcdc;
}
.pop .contain .right .list .item .label {
  font-size: 14px;
  color: #333333;
  vertical-align: middle;
}
.pop .contain .right .list .item .input {
  padding: 20px 30px;
  width: 375px;
  color: #333;
  font-size: 16px;
  border: none;
  vertical-align: middle;
}
.pop .contain .right .btn {
  width: 298px;
  height: 40px;
  margin: 40px auto 0;
  background-image: linear-gradient(90deg, #3874f4 0%, #689ffa 50%, #96c7ff 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
}
.top_home {
  display: inline;
}
.top_tar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: rgba(21, 56, 186, 0.8);
  z-index: 50;
}
.top_tar .tar_left {
  height: 100%;
}
.top_tar .tar_left .logo {
  margin-top: -8px;
}
.top_tar .tar_left .img {
  width: 116px;
  height: 36px;
}
.top_tar .tar_left .nav {
  width: 130px;
  height: 100%;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
}
.top_tar .tar_left .nav a {
  width: 100%;
}
.top_tar .tar_right {
  height: 100%;
  font-size: 16px;
  color: #fff;
}
.top_tar .tar_right .icon_wrap {
  margin-right: 10px;
}
.top_tar .tar_right .icon {
  width: 16px;
  height: 16px;
}
.side {
  position: fixed;
  right: 46px;
  bottom: 190px;
  z-index: 50;
}
.side .wrap {
  position: relative;
  display: block;
  margin: 8px 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.side .icon {
  width: 100%;
  height: 100%;
}
.side .icon_ed {
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  width: 268px;
  height: 70px;
}
.side .coed {
  position: absolute;
  display: none;
  left: -160px;
  top: 0;
  padding: 10px;
  width: 130px;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  font-weight: bold;
  background-color: #00c64e;
  border-radius: 10px;
}
.side .coed .img {
  width: 110px;
  height: 110px;
}
.side .arrow {
  margin: 8px 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.side .arrow_act {
  transform: rotate(-180deg);
}
.bot_tar {
  padding: 22px 0;
  width: 100%;
  background-color: #181818;
}
.bot_tar .info {
  margin: 0 10px;
}
.bot_tar .info .text {
  font-size: 18px;
  line-height: 46px;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.6;
}
.bot_tar .info .title {
  font-size: 18px;
  line-height: 38px;
  letter-spacing: 1px;
  color: #fff;
}
.bot_tar .info .phone {
  margin-top: 8px;
  font-size: 28px;
  font-weight: bold;
  line-height: 48px;
  color: #15bcff;
}
.bot_tar .info .img {
  width: 184px;
  height: 56px;
}
.bot_tar .info .code_img {
  margin-top: 28px;
  margin-bottom: 6px;
  width: 112px;
  height: 112px;
}
.bot_tar .info .btn {
  margin-top: 4px;
  width: 122px;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(-72deg, #17c4ff 0%, #0d94ff 100%), linear-gradient(#fff, #fff);
  background-blend-mode: normal, normal;
  border-radius: 20px;
}
.bot_tar .info_02 {
  margin: 0 40px;
}
.bot_tar .logo_wrap {
  margin-top: 28px;
}
.copyright {
  width: 100%;
  height: 40px;
  background-color: #000;
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: #c6c6c6;
}
