/**
 * 公共style.css
 */
/* CSS初始样式 */
html,
body,
header,
nav,
main,
section,
footer,
aside,
table,
thead,
tbody,
tr,
td,
th,
div,
span,
ul,
ol,
li,
dd,
dt,
dl,
form,
input,
select,
textarea,
button,
label,
pre,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
i,
em,
img,
strong,
a {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 20px;
  color: #333333;
  font-family: "微软雅黑";
  background-color: #ffffff;
}

ul,
ol,
li {
  list-style: none;
}

i,
em,
span {
  font-style: normal;
  display: inline-block;
}

input,
button {
  outline: none;
  -webkit-appearance: none;
  border-style: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
  -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

button {
  cursor: pointer;
}

textarea {
  outline: none;
  -webkit-appearance: none;
  border-style: none;
}

a:link {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:visited {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:hover {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a:active {
  color: #333333;
  display: inline-block;
  text-decoration: none;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}

video {
  max-width: 100%;
}

.inline {
  display: inline-block;
}

.hide {
  display: none;
}

.flex {
  display: flex;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.fs16 {
  font-size: 16px;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.cursor {
  cursor: pointer;
}

.clearf:after {
  content: "";
  display: block;
  clear: both;
}

.elip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maxwidth {
  max-width: 1200px;
  margin: 0 auto;
}

/* 头部 */
#header {
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 80px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

#header .header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#header .logo {
  width: 175px;
  height: 53px;
  padding: 13px 0;
}

#header .logo a,
#header .logo img {
  width: 100%;
  height: 100%;
}

#header .nav {
  display: flex;
  flex-wrap: nowrap;
}

#header .nav > li {
  position: relative;
}

#header .nav > li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
  height: 3px;
  width: 0;
  margin: 0 25%;
  transition: width 0.5s ease-in;
  transform-origin: left;
  background-color: #4269ff;
}

#header .nav > li.active::after {
  transition: width 0s;
}

#header .nav > li:hover::after {
  width: 50%;
}

header:hover .nav > li.active::after {
  width: 50%;
}

#header .nav > li > a {
  color: #333333;
  min-width: 72px;
  margin: 0 20px;
  font-size: 16px;
  line-height: 80px;
  text-align: center;
}

#header .nav > li.active > a,
#header .nav > li:hover > a {
  color: #4269ff;
  font-size: 18px;
  font-weight: bold;
}

#header .nav > li .nav_c {
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: 100%;
  margin-top: 1px;
  transform: translateX(-50%);
  border-top: 0 solid transparent;
}

#header .nav > li .nav_c {
  padding: 0;
  left: 50%;
  width: 140px;
  transition: border 600ms;
  box-shadow: 0px 12px 10px -15px #000;
  background-color: #ffffff;
  transition: padding 600ms;
}

#header .nav > li:hover .nav_c {
  padding: 8px 0;
}

#header .nav > li .nav_c > li {
  height: 0;
  overflow: hidden;
  transition: height 600ms;
}

#header .nav > li:hover .nav_c > li {
  line-height: 46px;
  height: 46px;
}

#header .nav > li .nav_c > li a {
  font-weight: normal;
  line-height: 46px;
  font-size: 14px;
  text-align: center;
  color: #333333;
}

#header .nav > li .nav_c > li a:hover {
  color: #4269ff;
}

#header .header_menu {
  display: none;
}

#header .cell {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
  font-size: 16px;
  line-height: 80px;
  align-items: center;
}

#header .applybtn {
  margin: 22px 0;
  width: 90px;
  color: #fff;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  border-radius: 2px;
  background-color: #f45555;
}

#header .applybtn:hover {
  background-color: #d54040;
}

/* 主体 */
main {
  padding-top: 80px;
}

main h1.module_title {
  color: #222222;
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

/* 尾部 */
#footer {
  width: 100%;
  background-color: #0c1f3a;
}

#footer .tail {
  height: 100px;
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  background-color: #ffffff;
}

#footer .tail .tailContent {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .tail div {
  display: flex;
  align-items: center;
}

#footer .tail div img {
  margin-right: 20px;
  width: 50px;
  height: 50px;
}

#footer .Content {
  padding: 80px 0 35px;
  display: flex;
  justify-content: space-between;
}

#footer .Content .Content_nav {
  display: flex;
  width: 540px;
}

#footer .Content .F1 {
  flex: 1;
}

#footer .Content .firstA {
  width: 81px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  text-align: left;
  color: #ffffff;
}

#footer .Content .FirstUl {
  margin-top: 20px;
}

#footer .Content .FirstUl li a {
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  line-height: 36px;
}

#footer .Content .FirstUl li {
  color: #ffffff;
  font-size: 14px;
  text-align: left;
  line-height: 21px;
}

#footer .Content .IMGAll {
  display: flex;
  text-align: center;
}

#footer .Content .IMGAll .img-1 img {
  width: 88px;
  height: 88px;
  margin-top: 20px;
}

#footer .Content .IMGAll .img-1 + .img-1 {
  margin-left: 46px;
}

#footer .Content .IMGAll .img-1 p {
  font-weight: normal;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

#footer .Last {
  padding: 28px 0;
  border-top: 1px solid #ffffff;
  text-align: center;
}

#footer .Last .Cover {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}

#footer .Last .Cover .Num {
  display: inline;
  color: #4269ff;
  font-weight: bold;
  font-size: 18px;
}

/* 申请试用弹窗 */
#approval.open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.8);
}

#approval .approvalBox {
  clear: both;
  display: none;
  width: 720px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10002;
  box-sizing: border-box;
  border-radius: 0px 50px 0px 50px;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  overflow: hidden;
}

#approval.open .approvalBox {
  display: block;
}

#approval .approvalBox .shut {
  color: #333;
  position: absolute;
  right: 30px;
  top: 15px;
  width: 30px;
  cursor: pointer;
  z-index: 12;
  text-align: center;
  line-height: 30px;
  font-size: 36px;
}

#approval .approvalBox .bgImg {
  float: left;
  width: 250px;
  height: 480px;
  background: url(../img/approval/approval.png) no-repeat;
}

#approval .approvalBox .subBox {
  float: left;
  width: 470px;
  height: 480px;
  text-align: center;
  padding-top: 90px;
  box-sizing: border-box;
}

#approval .approvalBox .subInfo .userInfo {
  width: 390px;
  height: 55px;
  margin: 0 auto;
  border-bottom: 1px solid #a9a9a9;
  padding: 5px 12px;
  clear: both;
}

#approval .approvalBox .userInfo:before {
  content: "";
  float: left;
  width: 25px;
  height: 25px;
  margin-top: 31px;
  background-size: 100%;
  background-repeat: no-repeat;
}

#approval .approvalBox .userInfo:nth-child(1):before {
  background-image: url(../img/approval/enterprise.png);
}

#approval .approvalBox .userInfo:nth-child(2):before {
  background-image: url(../img/approval/name.png);
}

#approval .approvalBox .userInfo:nth-child(3):before {
  background-image: url(../img/approval/phone.png);
}

#approval .approvalBox .subInfo .inputFocus {
  border-bottom: 1px solid #333;
}

#approval .approvalBox .inputFocus:nth-child(1):before {
  background-image: url(../img/approval/enterprise_active.png);
}

#approval .approvalBox .inputFocus:nth-child(2):before {
  background-image: url(../img/approval/name_active.png);
}

#approval .approvalBox .inputFocus:nth-child(3):before {
  background-image: url(../img/approval/phone_active.png);
}

#approval .approvalBox .subInfo li p {
  color: #f15533;
  font-size: 14px;
  text-align: right;
  line-height: 16px;
  margin-top: 65px;
}

#approval .approvalBox .subInfo .userInfo input {
  float: left;
  height: 22px;
  font-size: 16px;
  margin-top: 36px;
  padding-left: 16px;
}

#approval .approvalBox .formFoot {
  text-align: center;
  color: #ffffff;
  padding-bottom: 40px;
}

#approval .approvalBox .formFoot button {
  color: #ffffff;
  width: 200px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  background-color: #f45555;
  margin-top: 45px;
  vertical-align: text-bottom;
}

#approval .approvalBox .formFoot button:not(.load):hover {
  line-height: 42px;
  background: #d54040;
}

#approval .approvalBox .formFoot button.load {
  opacity: 0.8;
}

#approval .approvalBox .formFoot button:before {
  display: none;
  content: "";
  position: relative;
  width: 1.2em;
  height: 1.2em;
  left: -5px;
  background: url("../img/load.png") center/100% 100% no-repeat;
}

#approval .approvalBox .formFoot button.load:before {
  display: inline-block;
  vertical-align: inherit;
  animation: rotateAnimation linear 1s infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#approval .approvalBox .cell {
  width: 134px;
  margin: 0 auto;
  line-height: 22px;
  font-size: 16px;
  color: #4968a9;
}

#approval .approvalBox .cell i {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-top: 2px;
  background-size: cover;
  background-image: url("../img/phone.png");
}

/* 留言弹窗 */
#leaveWord .leaveWord {
  display: none;
  padding-bottom: 28px;
  /* 初始状态下隐藏弹出内容 */
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 294px;
  z-index: 996;
  border-radius: 10px 10px 10px 10px;
  background: #ffffff;
  box-shadow: 0 2px 10px 0 #0000001a;
}

#leaveWord.open .leaveWord {
  display: block;
}

#leaveWord .FORM {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#leaveWord .FORM .firstTitle {
  padding: 28px 28px 16px;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  color: #333333;
}

#leaveWord .FORM .secondP {
  font-weight: 400;
  width: 236px;
  height: 35px;
  font-size: 14px;
  text-align: left;
  color: #666666;
}

#leaveWord .FORM .thirdText {
  margin-top: 20px;
}

#leaveWord .FORM .thirdText textarea {
  resize: none;
  width: 238px;
  color: black;
  box-sizing: border-box;
  padding: 19px 20px 74px 20px;
  height: 128px;
  border-radius: 10px 10px 10px 10px;
  background: #ffffff;
  outline: none;
  border: 1px solid #ccc;
}

#leaveWord .FORM .forthInput div {
  text-align: center;
  width: 236px;
}

#leaveWord .FORM .forthInput .InputItem {
  margin-top: 20px;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv {
  display: flex;
  border-bottom: 1px solid #666;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv input {
  width: 210px;
  outline: none;
  border: none;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

#leaveWord .FORM .forthInput .InputItem .firstDiv img {
  margin-right: 6px;
  margin-top: 7.5px;
  width: 16px;
  height: 16px;
}

#leaveWord #FormBtn {
  margin-top: 28px;
  width: 238px;
  height: 48px;
  background: #4269ff;
  border: none;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

#leaveWord #FormBtn:active {
  opacity: 0.7;
}

#leaveWord #FormBtn.load {
  opacity: 0.8;
}

#leaveWord #FormBtn:before {
  display: none;
  content: "";
  position: relative;
  width: 1.2em;
  height: 1.2em;
  left: -5px;
  background: url("../img/load.png") center/100% 100% no-repeat;
}

#leaveWord #FormBtn.load:before {
  display: inline-block;
  vertical-align: middle;
  animation: rotateAnimation linear 1s infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#leaveWord .blockYuan {
  position: fixed;
  z-index: 996;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
}

#leaveWord .firstDiv p {
  position: relative;
}

#leaveWord .firstDiv p {
  position: absolute;
  font-size: 12px;
  color: #f15533;
  text-align: right;
  white-space: nowrap;
  font-weight: normal;
}

#leaveWord .blockYuan button {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background: url("../img/icon01.png") center/100% no-repeat;
}

#leaveWord.open .blockYuan button {
  background: url("../img/icon02.png") center/100% no-repeat;
}

#leaveWord .rotate {
  margin-left: 2px;
  margin-top: 5px;
  transform: rotate(180deg);
  /* 图标旋转 90 度 */
}

@media (max-width: 768px) {
  #leaveWord .blockYuan {
    display: none;
  }

  #leaveWord #popup {
    display: none;
  }

  #leaveWord .firstDiv {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
}

@media screen and (max-width: 1150px) {
  #header .header_right {
    display: none;
  }
}

/* 移动端 */
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }

  /* 头部 */
  #header {
    height: 5.6rem;
  }

  #header .logo {
    width: 10.55rem;
    height: 2.8rem;
    padding: 1.4rem;
  }

  #header .nav {
    display: none;
    width: 100%;
    top: 5.6rem;
    position: fixed;
    flex-direction: column;
    height: calc(100vh - 5.6rem);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #e1e1e1;
  }

  #header.open .nav {
    display: block;
  }

  #header .nav > li {
    margin: 0 2rem;
    border-bottom: 1px solid #e1e1e1;
  }

  #header .nav > li::after {
    display: none;
  }

  #header.open .nav > li > a {
    color: #333333;
    display: block;
    margin: 0;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: left;
    line-height: 5rem;
  }

  #header.open .nav .activeMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #header.open .nav .activeMobile::after {
    content: "";
    width: 6px;
    height: 6px;
    margin: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 600ms;
  }

  #header.open li.open .activeMobile::after {
    transform: rotate(225deg);
  }

  #header.open .nav > li .nav_c {
    padding: 0;
    width: auto;
    margin-top: 0;
    position: static;
    box-shadow: initial;
    transform: initial;
  }

  #header.open .nav > li.open .nav_c {
    padding: 0.2rem 0 0.75rem;
  }

  #header .nav > li.open::after {
    display: none;
  }

  #header.open .nav > li .nav_c > li {
    height: 0;
    line-height: 3.2rem;
  }

  #header.open .nav > li.open .nav_c > li {
    height: 3.2rem;
  }

  #header .nav > li .nav_c > li a {
    width: 100%;
    color: #666666;
    font-size: 1.4rem;
    text-align: left;
    line-height: 3.2rem;
  }

  #header .header_menu {
    display: initial;
    width: 2.6rem;
    padding: 1.5rem 2rem;
    background: url("../img/header/menu.png") center/2.1rem auto no-repeat;
  }

  #header.open .header_menu {
    background-image: url("../img/header/menu_active.png");
  }

  main {
    padding-top: 5.6rem;
  }

  main h1.module_title {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  /* 尾部 */
  #footer {
  }

  #footer .tail {
    display: none;
  }

  #footer .Content {
    display: block;
    padding: 2rem;
  }

  #footer .Content .Content_nav {
    width: auto;
    display: block;
  }

  #footer .Content .firstA {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 4.5rem;
    font-size: 1.6rem;
    line-height: 4.5rem;
    font-weight: bold;
  }

  #footer .Content_nav .firstA::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 600ms;
  }

  #footer .Content_nav .firstA.open::after {
    transform: rotate(225deg);
  }

  #footer .Content_nav .FirstUl {
    margin-top: 0;
    padding-bottom: 0;
    transition: all 600ms;
    border-bottom: 1px solid #ffffff;
  }

  #footer .Content_nav .firstA.open + .FirstUl {
    padding-bottom: 0.8rem;
  }

  #footer .Content_nav .FirstUl li {
    height: 0;
    transition: all 600ms;
    overflow: hidden;
  }

  #footer .Content_nav .firstA.open + .FirstUl li {
    height: 3.2rem;
  }

  #footer .Content_nav .FirstUl li a {
    width: 100%;
    font-size: 1.4rem;
    text-align: left;
    line-height: 3.2rem;
  }

  #footer .Content_nav .FirstUl li a:hover {
    color: #ccc;
  }

  #footer .Content .Content_info {
    display: flex;
    flex-direction: column-reverse;
  }

  #footer .Content_info .IMGAll .img-1 img {
    width: 8.5rem;
    height: 8.5rem;
    margin-top: 4rem;
  }

  #footer .Content_info .FirstUl {
    margin-top: 0.1rem;
  }

  #footer .Content .FirstUl li {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }

  #footer .Last {
    margin: 0 2rem;
  }

  #footer .Last .Cover {
    padding: 1.2rem 0;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }

  #footer .Last .Cover .Num {
    font-size: 1.8rem;
  }

  /* 申请试用弹窗 */

  #approval .approvalBox {
    width: 30rem;
    padding: 2rem;
    border-radius: 0;
    transform: translate(-50%, -50%);
  }

  #approval .approvalBox::before {
    content: "申请试用";
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
  }

  #approval .approvalBox .shut {
    right: 2rem;
    top: 2rem;
    text-align: right;
    font-size: 3rem;
    line-height: 3rem;
  }

  #approval .approvalBox .bgImg {
    display: none;
  }

  #approval .approvalBox .subBox {
    width: 100%;
    height: 27.5rem;
    padding-top: 2rem;
  }

  #approval .approvalBox .subInfo .userInfo {
    width: auto;
    height: 3.6rem;
    line-height: 28px;
    margin: 0.2rem auto 1rem;
    padding: 0;
  }

  #approval .approvalBox .userInfo:before {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    margin-top: 0.9rem;
  }

  #approval .approvalBox .subInfo li p {
    font-size: 1rem;
    padding-top: 4rem;
    margin-top: 0;
    white-space: nowrap;
  }

  #approval .approvalBox .subInfo .userInfo input {
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 1.2rem;
    padding-left: 1rem;
    margin-top: 0.9rem;
  }

  #approval .approvalBox .formFoot {
    padding-bottom: 0;
  }

  #approval .approvalBox .formFoot button {
    width: 90%;
    height: 4.2rem;
    line-height: 4.2rem;
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  #approval .approvalBox .formFoot button:hover {
    line-height: 4.2rem;
  }

  #approval .approvalBox .cell {
    line-height: 2.2rem;
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  #approval .approvalBox .cell i {
    width: 1.4rem;
    height: 1.4rem;
  }
}
