/******* 页面共用css *******/
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  /* IE10右侧滚动条会遮挡部分内容 */
  -ms-overflow-style: scrollbar;
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  font-size: 14px;
  color: #333639;
  min-width: 1430px;
  background-color: #fafafa;
  background-image: linear-gradient(90deg, #f6f3f7 0%, #f3f6f9 50%, #edf6fa 100%);
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
  color: #333639;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
  color: #0067ed;
}
ol,
ul,
li,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.label {
  font-weight: normal;
  font-size: 100%;
}
.container {
  position: relative;
  min-width: 1430px;
  max-width: 1430px;
}
.layout-header {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 20px;
}
.layout-header .container {
  display: flex;
  align-items: center;
}
.layout-header .logo {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.layout-header .logo img {
  max-width: 100%;
  height: 45px;
}
.layout-header .logo .title {
  margin-left: 12px;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: #333639;
  font-weight: 700;
}
.layout-header .logo-tips {
  position: relative;
  margin-left: 20px;
  color: #5e6582;
  font-size: 12px;
  line-height: 20px;
}
.layout-header .logo-tips::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 38px;
  background-color: #e9e9e9;
  position: absolute;
  left: -12px;
}
.layout-header .nav-left {
  display: flex;
  align-items: center;
  margin: 0 auto;
  background-color: #F7F8FA;
  height: 40px;
  border-radius: 5px;
}
.layout-header .nav-left .nav-item {
  padding: 6px 12px;
  color: #333639;
  font-size: 18px;
  line-height: 20px;
  margin: 0 5px;
}
.layout-header .nav-left .nav-item:hover {
  background-color: #FFF;
  border-radius: 5px;
}
.layout-header .nav-left .nav-item.active {
  color: #FFFFFF;
  background-color: #0067ed;
  border-radius: 5px;
}
.layout-header .nav-right {
  display: flex;
  align-items: center;
}
.layout-header .nav-right .nav-item {
  color: #ffffff;
  background-image: linear-gradient(90deg, #ff9599, #ff5560);
  border-radius: 15px;
  display: block;
  padding: 6px 16px;
  font-size: 14px;
  margin-left: 15px;
  text-decoration: none;
}
.layout-header .nav-right .nav-item:hover {
  color: #ffffff;
  background-image: linear-gradient(180deg, #ff9599, #ff5560);
}
.layout-header .nav-right .nav-item.blue {
  background-image: linear-gradient(90deg, #29B6F6, #0277BD);
}
.layout-header .nav-right .nav-item.blue:hover {
  background-image: linear-gradient(180deg, #29B6F6, #0277BD);
}
.layout-header .nav-right .nav-item.black {
  background-image: linear-gradient(90deg, #90A4AE, #607D8B);
}
.layout-header .nav-right .nav-item.black:hover {
  background-image: linear-gradient(180deg, #90A4AE, #607D8B);
}
.layout-footer {
  text-align: center;
  padding: 20px 0;
  color: #b7b7b7;
}
.fix-chat {
  position: fixed;
  z-index: 9;
  right: 0;
  top: 50%;
  margin-top: -70px;
  width: 30px;
  background-color: #0067ed;
  box-shadow: 0 6px 15px 0 rgba(6, 12, 19, 0.14);
  border-radius: 10px 0 0 10px;
  text-align: center;
  padding: 10px 6px;
  cursor: pointer;
}
.fix-chat::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 6px;
  left: -6px;
  top: 0;
}
.fix-chat .fix-chat-title {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}
.fix-chat .fix-chat-title .fix-chat-icon {
  display: inline-block;
  background: url(../images/icon-kefu.png) no-repeat center;
  width: 20px;
  height: 20px;
}
.fix-chat .fix-chat-poper {
  display: none;
  position: absolute;
  right: 35px;
  top: -65px;
  width: 180px;
  background: #fff;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  padding: 10px;
}
.fix-chat .fix-chat-poper img {
  width: 100%;
  vertical-align: top;
}
.fix-chat .fix-chat-poper h4 {
  font-weight: 700;
  margin-top: 10px;
}
.fix-chat .fix-chat-poper p {
  margin-top: 5px;
}
.fix-chat:hover .fix-chat-poper {
  display: block;
}
.beforeInit {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #f6f6f6;
  text-align: center;
}
.beforeInit h6 {
  font-size: 24px;
  color: #3b3b3b;
  margin: 100px auto 20px;
}
.mainDiv {
  overflow: hidden;
}
.leftDiv {
  width: calc(100% - 420px);
  float: left;
  padding-right: 20px;
  display: block;
  min-height: 965px;
}
.leftDiv.active {
  display: block;
}
.leftDiv .ContentMain {
  width: 100%;
}
.rightDiv {
  width: 420px;
  float: left;
}
.rightDiv .IntroLink {
  margin-bottom: 20px;
}
.rightDiv .IntroLink .a-link {
  width: 48%;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.4s;
  text-decoration: none;
  display: inline-block;
}
.rightDiv .IntroLink .a-link.a-blue {
  background: #c1e1ff;
  background: linear-gradient(to top, #c1e1ff, #ffffff);
  color: #2170d5;
  border: 1px solid #9bd3ff;
}
.rightDiv .IntroLink .a-link.a-blue:hover {
  background: #2170d6;
  color: #ffffff;
}
.rightDiv .IntroLink .a-link.a-yellow {
  background: linear-gradient(to top, #ffe3a9, #ffffff);
  color: #92680d;
  user-select: none;
  border: 1px solid #ffe09e;
}
.rightDiv .IntroLink .a-link.a-yellow:hover {
  background: #f9c86b;
}
.rightDiv .IntroStep {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.rightDiv .IntroStep h2 {
  margin: 0;
  color: #34495e;
  font-size: 18px;
  font-weight: bold;
}
.rightDiv .IntroStep h2 span {
  color: #2170d6;
}
.rightDiv .IntroStep ul {
  border-top: 1px solid #f4f4f4;
  padding-top: 15px;
  margin-top: 15px;
}
.rightDiv .IntroStep ul li {
  width: 25%;
  float: left;
  text-align: center;
  border-left: 1px dashed #e4e4e7;
  box-sizing: border-box;
  padding: 10px 0 5px;
  position: relative;
}
.rightDiv .IntroStep ul li:first-child {
  border-left: none;
}
.rightDiv .IntroStep ul li > img {
  width: 32px;
  height: 32px;
}
.rightDiv .IntroStep ul li p {
  color: #999999;
  margin-top: 20px;
  margin-bottom: 0;
}
.rightDiv .IntroStep ul li .arrow {
  width: 22px;
  height: 10px;
  position: absolute;
  top: 49%;
  left: 0;
}
.rightDiv .Reason {
  background-color: #fff;
  margin-bottom: 20px;
  padding-bottom: 26px;
  box-shadow: 0 0 6px 0 rgba(246, 249, 255, 0.35);
  border-radius: 10px;
  border: solid 1px rgba(226, 240, 255, 0.32);
}
.rightDiv .Reason .ReasonAsk {
  line-height: 60px;
  text-align: left;
  background: url('../images/Reasonbg.png') no-repeat;
  font-weight: bold;
  color: #5e6582;
  font-size: 18px;
  padding-left: 20px;
}
.rightDiv .Reason .Blue {
  color: #108df9;
}
.rightDiv .Reason .ReasonMain {
  padding: 20px 20px 0 20px;
}
.rightDiv .Reason .col-md-6 {
  overflow: hidden;
}
.rightDiv .Reason .StrengthText {
  float: left;
  font-size: 12px;
  margin-left: 14px;
}
.rightDiv .Reason .StrengthText b {
  font-size: 16px;
  color: #5e6582;
}
.rightDiv .Reason .StrengthText p {
  color: #b7bccb;
}
.rightDiv .Reason .StrengthImg {
  float: left;
}
.rightDiv .Reason .card1,
.rightDiv .Reason .card2 {
  padding-top: 10px;
  padding-bottom: 26px;
  border-bottom: dashed 1px #eff6fa;
}
.rightDiv .Reason .card3,
.rightDiv .Reason .card4 {
  padding-top: 26px;
  padding-bottom: 10px;
}
.rightDiv .Reason .card2,
.rightDiv .Reason .card4 {
  border-left: dashed 1px #eff6fa;
}
.rightDiv .Reason .Declare {
  width: 368px;
  height: 109px;
  background-color: #eef9ff;
  border-radius: 5px;
  padding: 14px 20px 16px 20px;
  margin: 20px auto 0 auto;
}
.rightDiv .Reason .Declare .redText {
  color: #ff001e;
}
.rightDiv .problem {
  background-color: #ffffff;
  box-shadow: 0 0 6px 0 rgba(246, 249, 255, 0.35);
  border-radius: 10px;
  border: solid 1px rgba(226, 240, 255, 0.32);
  padding: 0 26px 30px;
}
.rightDiv .problem .tabHader {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  line-height: 62px;
}
.rightDiv .problem .tabHader .link {
  display: inline-block;
  width: 1px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 11px;
  background-color: #ebedf1;
}
.rightDiv .problem .tabHader div {
  position: relative;
}
.rightDiv .problem .tabHader div::after {
  display: inline-block;
  content: '';
  height: 2px;
  background-color: #ebedf1;
  width: calc(100% - 15px);
  position: absolute;
  bottom: 0;
}
.rightDiv .problem .tabHader .commonProblem::after {
  right: 0;
}
.rightDiv .problem .tabHader .MustRead::after {
  left: 0;
}
.rightDiv .problem .tabHader .Select::after {
  background-color: #108df9;
}
.rightDiv .problem .commonProblem,
.rightDiv .problem .MustRead {
  cursor: pointer;
  font-size: 18px;
}
.rightDiv .problem .commonProblem img,
.rightDiv .problem .MustRead img {
  margin-top: -3px;
}
.rightDiv .problem .commonProblem .img1,
.rightDiv .problem .MustRead .img1 {
  display: none;
}
.rightDiv .problem .commonProblem.Select,
.rightDiv .problem .MustRead.Select {
  color: #108df9;
  font-weight: bold;
}
.rightDiv .problem .commonProblem.Select .img1,
.rightDiv .problem .MustRead.Select .img1 {
  display: inline-block;
}
.rightDiv .problem .commonProblem.Select .img2,
.rightDiv .problem .MustRead.Select .img2 {
  display: none;
}
.rightDiv .problem .problemBox .Select {
  display: block;
}
.rightDiv .problem .problemBox .box-item {
  margin-bottom: 15px;
  line-height: 22px;
  font-size: 12px;
  color: #666;
}
.rightDiv .problem .problemBox .box-item:last-child {
  margin-bottom: 0;
}
.rightDiv .problem .problemBox h4 {
  color: #02042c;
  font-size: 15px;
  border-left: 2px solid #81d4fa;
  padding: 0 0 0 8px;
  margin-bottom: 10px;
}
.rightDiv .problem .problemBox .normal {
  padding: 0 3px;
  background-color: #e3f2fd;
  color: #2196f3;
}
.rightDiv .problem .problemBox .danger {
  padding: 0 3px;
  background-color: #fef0f0;
  color: #f56c6c;
}
/*# sourceMappingURL=common.css.map */