@charset "UTF-8";

html,
body {
  height: 100%;
  background-color: #ededed;
  flex: 0 1 auto;
  margin: 0;
  color: #333;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  -ms-overflow-style: scrollbar;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body * {
  box-sizing: border-box;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

textarea {
  resize: none;
}

*:focus {
  outline: none !important;
}

ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  color: #4476d7;
  text-decoration: none;
}

a:hover {
  color: #4476d7;
  text-decoration: none;
  /* opacity: 0.7; */
}

a[type=button] {
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
}

button.orange {
  color: #ff9640;
}

button.orange:hover {
  color: #f08833;
}

.nav > li > a:focus,
.nav > li > a:hover,
a.fa.orange:hover {
  color: #f08833;
  background-color: inherit;
  text-decoration: none;
}

button.hover:hover {
  background-color: #f6a25f;
}

label {
  margin-bottom: 0;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
  display: flex;
}

.flex-left {
  flex-direction: row;
  display: flex;
}

.flex-right {
  flex-direction: row-reverse;
  display: flex;
}

.flex-row-between {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.flex-row-mean {
  flex-direction: row;
  justify-content: space-around;
  display: flex;
}

.flex-row-center {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.container {
  width: 100%;
  background-color: #ededed;
}

.home {
  text-align: center;
  min-width: 960px;
  overflow-x: visible;
  align-items: center;
  align-content: center;
  justify-content: center;
}

/* 公告：小黄条 */
.notice-top {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #5b5952;
  z-index: 10;
  background: #fffbe6;
  padding-left: 55px;
  border: 1px solid #ffe58f;
}

/* 登录失败的首页弱提示 */
.hit-msg-position {
  position: fixed;
  z-index: 101;
  top: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  animation: box-show 0.2s ease-out, box-disappear 0.2s ease-in 5s;
  animation-fill-mode: forwards;
}

@keyframes box-show {
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  0% {
    opacity: 0.4;
    transform: translateY(-40px);
  }
}

@keyframes box-disappear {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0.4;
    transform: translateY(-40px) scale(0.9);
  }
}

.hit-msg {
  min-width: 400px;
  max-width: 800px;
  padding: 8px 15px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}

.hit-msg-icon {
  margin-right: 8px;
  display: flex;
  color: #ff4d4f;
}

.hit-msg-text {
  text-align: left;
}

/* 模态框提示 */
.modal-msg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.body-prevent-scroll {
  overflow-y: hidden;
  overflow-x: hidden
}

.modal-msg-backdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  animation: modal-backdrop-show 0.2s ease-out;
  animation-fill-mode: both;
}

.modal-msg-disappear .modal-msg-box {
  animation: box-disappear 0.2s ease-in;
  animation-fill-mode: both;
}

.modal-msg-disappear .modal-msg-backdrop {
  animation: modal-backdrop-show 0.2s ease-out;
  animation-direction: reverse;
  animation-fill-mode: both;
}

.modal-msg-box {
  z-index: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 24px;
  width: 500px;
  text-align: left;
  animation: box-show 0.2s ease-out;
  animation-fill-mode: both;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
  border-radius: 2px;
}

.modal-msg-content {
  display: flex;
  flex-direction: row;
}

.modal-msg-icon {
  color: #1890ff;
  font-size: 22px;
  margin-right: 16px;
}

.modal-msg-text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.modal-msg-button {
  appearance: none;
  background-color: #1890ff;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  transition: 0.3s;
  margin-top: 24px;
}

.modal-msg-button:hover {
  background-color: #40a9ff;
}

@keyframes modal-backdrop-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 芝麻企业信用 style begin*/
/* antcredit-header.html begin*/
.atc-header {
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: center;
}
.atc-header-bg {
  background-color: #f5f7fd;
}

.atc-header-case-bg {
  background-color: #fbfbfb;
}

.atc-header-content {
  width: 1360px;
}

@media screen and (max-width: 1440px) {
  .atc-header-content {
    width: 960px;
  }
}

.atc-header-logo {
  width: 180px;
  height: 68px;
  margin-top: 5px;
  margin-right: 60px;
  background-image: url('https://gw.alipayobjects.com/zos/bmw-prod/87c752d3-3438-4615-ae24-e39157c25fb8.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.atc-header-menu {
  flex: 1 1 auto;
  font-size: 18px;
}


.atc-header-menu-item {
  min-width: 60px;
  height: 88px;
  margin-right: 30px;
  color: #333;
  position: relative;
}

.atc-header-menu-item::before {
  display: none;
}

.atc-header-menu-item .atc-header-menu-item-link {
  display: block;
  width: 100%;
  height: 88px;
  line-height: 88px;
  color: #333;
  position: relative;
  text-align: center;
}

.atc-header-menu-item a {
  color: #333;
}

.atc-header-menu-item:hover {
  cursor: pointer;
  opacity: 1;
}


.atc-header-menu-item:hover .atc-header-menu-item-link {
  color: #1677ff !important;
}

.atc-header-menu-item:hover .atc-header-menu-item-link::before {
  display: block;
  content: "";
  background: #1677ff;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
}


.atc-header-menu-item-drop {
  position: relative;
}

.atc-header-menu-item-static {
  position: static;
}

.atc-header-menu-item-drop .atc-header-menu-dropdown {
  display: none;
  background: #fefefe;
}

.atc-header-case-bg .atc-header-menu-item-drop .atc-header-menu-dropdown {
  display: none;
  background-color: #fff;
}

.atc-header-menu-item-drop:hover .atc-header-menu-dropdown {
  display: flex;
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 100;
}

.atc-header-menu-dropdown .atc-header-menu-dropdown-item {
  display: block;
  margin: 0 30px;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
}

.atc-header-menu-dropdown .atc-header-menu-dropdown-item:hover a {
  color: #1677ff !important;
}

.atc-header-menu-item-drop .atc-header-menu-dropdown-qrcode {
  display: none;
  width: 176px;
  height: 200px;
  border-radius: 10px;
  background: #fff;
  padding: 4px 8px 0 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.atc-header-menu-item-drop:hover .atc-header-menu-dropdown-qrcode {
  display: block;
  position: absolute;
  top: 88px;
  left: -58px;
  z-index: 100;
}

.mini-qrcode-box .mini-qrcode-img {
  width: 160px;
  height: 160px;
  display: block;
}

.zm-entry-img {
  margin-top: 30px;
}

.mini-qrcode-box .mini-qrcode-tip {
  font-size: 16px;
  height: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.mini-qrcode-box .mini-qrcode-tip .mini-qrcode-tip-highlight {
  color: #1677ff;
}


/* antcredit-header.html end*/

/* antcredit-entries begin*/
.atc-home-entries-vip {
  height: 800px;
  width: 100%;
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*AL5qR7xJL1MAAAAAAAAAAAAAARQnAQ');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  justify-content: center;
}

.atc-home-entries-content-vip {
  height: 420px;
  width: 900px;
  border-radius: 4px;
  margin: 160px auto;
  background-color: white;
}

.atc-home-entry-left-vip {
  height: 100%;
  width: 405px;
  border-radius: 4px 0 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F1F2;
}

.atc-home-entry-right-vip {
  height: 100%;
  width: 495px;
}

.atc-home-entry-header-vip {
  height: 200px;
  width: 100%;
}

.atc-home-entry-title-vip {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: #333;
  margin: 80px 70px auto 83px;
}

.atc-home-entry-action-vip {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
}

.atc-home-entry-action-vip .atc-home-entry-button-vip {
  display: block;
  width: 340px;
  height: 40px;
  border-radius: 4px;
  background-color: #1677ff;
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  box-shadow: 0 2px 0 rgba(0,0,0,.045);
  margin-left: 83px;
  position: relative;
}

.atc-home-entry-action-vip .atc-home-entry-button-vip {
  color: #fff;
}

.atc-home-entries {
  height: 800px;
  width: 100%;
  background-color:  #f5f7fd;
  padding: 60px 0 20px 0;
}

.atc-home-entries-content {
  height: 100%;
  width: 1360px;
  margin: 0 auto;
}

.atc-home-entry {
  flex: 1 1 auto;
  height: 600px;
}

.atc-home-entry .atc-home-entry-header {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 30px 0 20px 0;
  width: 416px;
  height: 512px;
}


.atc-home-entry-header .atc-home-entry-profile {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.atc-home-entry-header .atc-home-entry-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 10px 0;
}

.atc-home-entry-header .atc-home-entry-subtitle {
  font-size: 22px;
  font-weight: 200;
  color: #999;
  margin: 6px 0;
}

.atc-home-entry-header .atc-home-entry-icons {
  margin-top: 20px;
}

.atc-home-entry-icons .atc-home-entry-icon {
  margin: 0 20px;
}

.atc-home-entry-icon .atc-home-entry-icon-img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.atc-home-entry-icon .atc-home-entry-icon-tip {
  width: 100%;
  font-size: 14px;
  color: #666;
  text-align: center;
}


.atc-home-entry-action {
  padding: 40px 0 0 0;
  width: 416px;
  height: 80px;
  position: relative;
}

.atc-home-entry-action .atc-home-entry-button {
  display: block;
  width: 200px;
  height: 38px;
  border-radius: 4px;
  background-color: #1677ff;
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  box-shadow: 0 2px 0 rgba(0,0,0,.045);
  margin: 0 auto;
  position: relative;
}

.atc-home-entry-action .atc-home-entry-button a {
  color: #fff;
}

.atc-home-entry-action .mini-entry-tooltip {
  display: none;
  height: 24px;
  width: 280px;
  background: #353537;
  box-shadow: 0 4px 10px 0 rgb(0 127 255 / 24%);
  border-radius: 4px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  position: absolute;
  top: -5px;
  left: calc(50% - 140px);
}

.atc-home-entry-action .mini-entry-tooltip:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5px);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 5px solid #353537;
}

.atc-home-entry-action:hover .mini-entry-tooltip {
  display: block;
}

.atc-home-entry .atc-home-entry-dropdown-qrcode {
  display: none;
  width: 360px;
  height: 300px;
  border-radius: 10px;
  background: #fff;
  padding: 4px 8px 0 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.atc-home-entry .atc-home-entry-dropdown-qrcode .mini-qrcode-title {
  text-align: #333;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin: 15px 0 10px 0;
}

.atc-home-entry .atc-home-entry-dropdown-qrcode .mini-qrcode-text {
  text-align: #666;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  padding: 0 5px;
  margin: 5px 0 10px 0;
}

.atc-home-entry:not(.atc-home-entry-disabled):hover {
  cursor: pointer;
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-action .atc-home-entry-button {
  background-color: #fff;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-action .atc-home-entry-button a {
  color: #333;
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-dropdown-qrcode {
  display: block;
  position: absolute;
  bottom: 50px;
  left: -78px;
  z-index: 100;
}

.mini-qrcode-box .mini-qrcode-img {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto;
}

.mini-qrcode-box .mini-qrcode-tip {
  font-size: 16px;
  height: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.mini-qrcode-box .mini-qrcode-tip .mini-qrcode-tip-highlight {
  color: #1677ff;
}



.atc-home-entry-profile-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*6PW9T6lCDDoAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-profile-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*EsK-T5tMInIAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-profile-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*U3OQRrMO3yQAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-0-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*j9QrQqoYDScAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-0-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*EhjpSrzyOOcAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-0-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*iQmaSIQKReQAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-1-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*82EpQKehKBgAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-1-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*U3FXQZuR63oAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-1-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*mlkzSJVq9hkAAAAAAAAAAAAAARQnAQ');
}


.atc-home-entry-icon-img-2-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*wBXMQZ0lpogAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-2-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*u9leRbwldvwAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry-icon-img-2-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*ouW6TIO5I2wAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-0-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*XqkwRr8SsawAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-0-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*VkwSQJRwPc8AAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-0-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*TLI8Qb6JSegAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-1-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*6-EaT7RzXrUAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-1-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*Np54T4Tz094AAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-1-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*15cGTqbJZzkAAAAAAAAAAAAAARQnAQ');
}


.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-2-0 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*75gHSoDfCp0AAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-2-1 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*coZUQbc337kAAAAAAAAAAAAAARQnAQ');
}

.atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-icon-img-2-2 {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*5U4mTJ2X0S4AAAAAAAAAAAAAARQnAQ');
}

@media screen and (max-width: 1440px) {
  .atc-home-entries, .atc-home-entries-vip {
    height: 720px;
  }

  .atc-home-entries-content, .atc-home-entries-content-vip {
    width: 960px;
  }

  .atc-home-entry {
    width: 300px;
  }

  .atc-home-entry .atc-home-entry-header {
    width: 300px;
    height: 440px;
  }

  .atc-home-entry-header .atc-home-entry-profile {
    width: 200px;
    height: 200px;
  }

  .atc-home-entry-action {
    padding: 30px 0 0 0;
    width: 300px;
  }

  .atc-home-entry-header .atc-home-entry-title {
    font-size: 32px;
    margin: 8px 0;
  }

  .atc-home-entry-header .atc-home-entry-subtitle {
    font-size: 20px;
    margin: 4px 0;
  }

  .atc-home-entry-header .atc-home-entry-icons {
    margin-top: 20px;
  }

  .atc-home-entry-icons .atc-home-entry-icon {
    margin: 0 10px;
  }

  .atc-home-entry-icon .atc-home-entry-icon-img {
    width: 36px;
    height: 36px;
  }

  .atc-home-entry-action .atc-home-entry-button {
    width: 180px;
  }

  .atc-home-entry:not(.atc-home-entry-disabled):hover .atc-home-entry-dropdown-qrcode {
    bottom: 50px;
    left: -90px;
    z-index: 100;
  }
}

/* antcredit-entries end*/


/* antcredit-video begin*/
.atc-home-video {
  height: 1120px;
  width: 100%;
  background-color: #ffffff;
}

.atc-home-video-content {
  height: 960px;
  width: 1360px;
  padding: 80px 0 40px 0;
  margin: 0 auto;
}

@media screen and (max-width: 1440px) {
  .atc-home-video {
    height: 860px;
    width: 100%;
    background-color: #ffffff;
  }

  .atc-home-video-content {
    width: 960px;
    height: 680px;
    padding: 60px 0 30px 0;
  }
}

.atc-home-video-play {
  object-fit: fill;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.atc-home-video-words {
  font-size: 20px;
  color: #666;
  letter-spacing: 1.5px;
}


/* antcredit-video end*/

.atc-home-news {
  height: 642px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.atc-home-news-section {
  width: 1360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.atc-home-news-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  text-align: left;
  position: relative;
  width: 140px;
}

.atc-home-news-title:after {
  display: block;
  content: "";
  background: #1677ff;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}


@media screen and (max-width: 1440px) {
  .atc-home-news {
    height: 400px;
  }
  .atc-home-news-section {
    width: 960px;
    height: 100%;
  }

  .atc-home-news-title {
    width: 110px;
    font-size: 24px;
  }

  .atc-home-news-title:after {
    bottom: -4px;
    left: 0;
  }

}


.atc-home-news-list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.atc-home-news-li {
  text-align: left;
}

.atc-home-news-picture {
  position: relative;
}

.atc-home-news-img {
  width: 310px;
  height: 180px;
  border-radius: 4px;
  cursor: pointer;
}

.atc-home-news-modal {
  display: block;
  opacity: 0;
  transition: 0.2s;
  width: 310px;
  height: 180px;
  border-radius: 4px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  text-align: center;
  padding-top: 18px;
  cursor: pointer;
}

.atc-home-news-modal:hover {
  opacity: 1;
}

.atc-home-news-modal > p {
  color: #fff;
}

.atc-home-news-modal-image {
  height: 110px;
  width: 110px;
}

@media screen and (max-width: 1440px) {

  .atc-home-news-modal {
    padding-top: 10px;
  }

  .atc-home-news-modal-image {
    height: 80px;
    width: 80px;
  }

  .atc-home-news-modal > p {
    font-size: 12px;
    margin-top: 5px;
  }
}

.atc-home-news-li > p {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.atc-home-news-li > h3 {
  margin: 0;
}


@media screen and (max-width: 1440px) {
  .atc-home-news-img {
    width: 200px;
    height: 116px;
  }

  .atc-home-news-modal {
    width: 200px;
    height: 116px;
  }

  .atc-home-news-modal-image {
    width: 71px;
    height: 71px;
  }
  .atc-home-news-li > h3 {
    font-size: 14px;
  }

}

/* home-v2.html 芝麻企业信用部分 end*/

/* antcredit-footer.html begin*/
.atc-footer {
  height: 500px;
  width: 100%;
  background-color: #383735;
}

.atc-footer-section {
  width: 70%;
  height: 100%;
  margin: auto;
  padding: 50px 0;
  color: #fff;
}

.atc-footer-section-grid {
  height: 280px;
  border-bottom: 1px solid #e3e3e3;
}

@media screen and (max-width: 1366px){
  .atc-footer-section {
    width: 900px;
  }
}

.atc-footer-section-single {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.atc-footer-section-content {
  font-size: 14px;
  margin: 8px 0;
}

.atc-footer-section-content a {
  color: #fff;
}

.atc-footer-title {
  font-size: 18px;
  font-weight: bold;
}

.atc-footer-qrCode {
  display: flex;
}

.atc-footer-qrCodeContent {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.atc-footer-qrCodeScan {
  color: #1677ff;
}

.atc-footer-qrCodeLeft {
  margin-left: 20px;
}

.atc-footer-content-detail {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  text-align: left;
  margin-top: 30px;
}

.atc-footer-right-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}

.atc-footer-right-content a {
  color: #fff;
}
/* antcredit-footer.html end*/

/* antcredit-technology.html begin */
.atc-tech-wrapper {
  min-height: 700px;
  width: 100%;
  background-color: #f5f7fd;
  display: flex;
  justify-content: center;
}

.atc-tech-banner {
  width: 1000px;
  height: 100%;
  padding: 80px 10px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.atc-tech-model-section {
  width: 1000px;
  height: 100%;
  padding: 80px 10px 150px;
}

.atc-tech-intro-section {
  width: 1000px;
  height: 100%;
  padding: 80px 10px 0;
}

.atc-tech-banner p {
  text-align: left;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #1677ff;
}

.atc-tech-intro {
  height: 900px;
}

.atc-tech-model, .atc-tech-related {
  background-color: #fff;
  height: 900px;
}

.atc-tech-model-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
}

.atc-tech-model-title-before {
  display: inline-block;
  margin-top: 32px;
  margin-right: 15px;
  height: 42px;
  width: 5px;
  background-color: #1677ff;
}

.atc-tech-model-subTitle {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
  margin: 0;
}

.atc-tech-model-btn-group {
  margin-top: 70px;
  display: flex;
  justify-content: space-around;
}

.atc-tech-model-btn {
  height: 40px;
  width: 110px;
  background-color: #1677ff;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 30px;
  margin-left: calc(50% - 55px);
}

.atc-tech-model-intro {
  width: 40%;
}

.atc-tech-model-intro > p {
  color: #666;
  font-size: 16px;
  margin: 0;
  margin-top: 8px;
  text-align: center;
}

.atc-tech-intro-block-text {
  color: #000;
}

.atc-block-row {
  width: 1024px;
  margin: 100px 0 160px 0;
}

.atc-block-row .img {
  width: 260px;
}

.atc-block-row .atc-img-text {
  padding-top: 60px;
  font-size: 20px;
}

.atc-line-with-arrow {
  color: #4D5AF7;
  position: absolute;
  left: 24px;
}

.atc-line {
  width: 155px;
  height: 1px;
  margin-top: 12px;
  background-image: -webkit-linear-gradient(left, #4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: -o-linear-gradient(right, #4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: -moz-linear-gradient(right, #4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: linear-gradient(to right, #4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

.atc-line-tech-c {
  width: 155px;
}

.atc-line-tech-b {
  width: 240px;
}

.atc-tech-intro-section .atc-block-row .atc-line-with-arrow .caret-size {
  width: 0;
  height: 0;
  border-left: 10px solid #4D5AF7;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 10px;
}

.atc-tech-intro-section .atc-block-row .atc-block-img-c .atc-block-line {
  width: 1px;
  /* height: 200px; */
  /* margin-top: -120px; */
  background-image: -webkit-linear-gradient(#4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: -o-linear-gradient(#4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: -moz-linear-gradient(#4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-image: linear-gradient(#4D5AF7 0%, #4D5AF7 50%, transparent 50%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  z-index: 0;
  position: absolute;
  top: 0;
}

.atc-block-line-c1 {
  height: 200px;
  /* margin-top: -160px; */
}

.atc-block-line-c2 {
  height: 160px;
  /* margin-top: -180px; */
}

.atc-block-line-c3 {
  height: 80px;
  /* margin-top: -220px; */
}

.atc-tech-intro-section .atc-block-row .atc-block-text {
  font-size: 20px;
}

.atc-tech-intro-section .atc-block-row .atc-block-img-b {
  width: 360px;
}

.atc-tech-intro-section .atc-block-row .atc-block-img-c {
  width: 320px;
  height: 600px;
  z-index: 1;
  position: relative;
}

.atc-tech-intro-section .atc-block-row .atc-block-dot {
  margin: 20px 0 80px 0;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  border: 2px solid #fff;
  background: #1677ff;
  position: relative;
}

.atc-tech-intro-section .atc-block-row .atc-block-dot-c {
  margin-bottom: 0;
  position: relative;
}
/* antcredit-technology.html end */

/* atc-case.html start */
.atc-case-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.atc-case-home-bg {
  position: relative;
  width: 100%;
}

.atc-case-home-title {
  position: absolute;
  top: 24%;
  display: flex;
  align-items: center;
}

.atc-case-home-icon {
  width: 80px;
  height: 80px;
}

.atc-case-home-subtitle {
  color: #333;
  font-size: 32px;
  font-weight: bold;
  margin-left: 30px;
}

.atc-case-home-subtitle > p {
  margin: 0;
}

.atc-case-home-subtitle-p {
  color: #666;
  font-size: 16px;
  font-weight: normal;
  margin-top: 15px !important;
}

@media screen and (max-width: 1366px) {
  .atc-case-home-title {
    top: 27%;
  }

  .atc-case-home-icon {
    width: 60px;
    height: 60px;
  }

  .atc-case-home-subtitle {
    font-size: 24px;
    margin-left: 20px;
  }

  .atc-case-home-subtitle-p {
    margin-top: 13px !important;
  }
}

@media screen and (max-width: 1024px) {
  .atc-case-home-title {
    top: 24%;
    left: 40%;
  }

  .atc-case-home-icon {
    width: 50px;
    height: 50px;
  }

  .atc-case-home-subtitle {
    font-size: 18px;
    margin-left: 20px;
  }

  .atc-case-home-subtitle-p {
    font-size: 12px;
    margin-top: 7px !important;
  }
}

.atc-case-value {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.atc-case-value-content {
  width: 1300px;
  padding: 150px 0;
}

.atc-case-value-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
}

.atc-case-value-title, .atc-case-evaluation-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.atc-case-value-second {
  margin-top: 5px;
}

.atc-case-value-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atc-case-value-info {
  font-size: 20px;
  color: #666;
  margin-bottom: 0;
}

.atc-case-evaluation {
  height: 580px;
  width: 100%;
  background-color: #f4f7fd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.atc-case-evaluation-content {
  background-color: #1677ff;
  width: 840px;
  height: 180px;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  padding: 40px;
  text-align: center;
}

.atc-case-evaluation-btn {
  border: none;
  background-color: #ff6e16;
  color: #fff;
  font-size: 16px;
  height: 38px;
  width: 174px;
  cursor: pointer;
  border-radius: 4px;
}

.atc-case-evaluation-link {
  margin-top: 70px;
}

.atc-case-solution {
  height: 790px;
  width: 100%;
  background-color: #1677ff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atc-case-solution-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.atc-case-solution-btn-group {
  margin-top: 100px;
}

.atc-case-solution-btn-content {
  width: 607px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px dashed #fff;
}

.atc-case-solution-btn {
  font-size: 20px;
  font-family: "PingFang SC";
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #999;
  border: none;
  background-color: #fff;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.atc-case-solution-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atc-case-solution-dot {
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  margin: auto;
}

.atc-case-solution-line {
  height: 34px;
  width: 1px;
  border-left: 1px dotted #fff;
  margin: auto;
}

.atc-case-btn-active {
  color: #1677ff;
}

.atc-case-tab-hide {
  opacity: 0;
}

.atc-case-tab-active {
  opacity: 1;
}

.content-block .content {
  font-size: 16px;
  margin: 12px 50px 20px 50px;
  width: 507px;
  height: 280px;
}

.content-block .content .content-title {
  text-align: left;
  padding-top: 18px;
  padding-left: 18px;
  font-size: 16px;
  color: #fff;
}

.content-block .content .content-items {
  padding: 32px 20px 50px 50px;
}

.content-block .content .content-items .content-item {
  list-style: disc;
  text-align: left;
  padding: 0 0 8px 0;
  line-height: 1.5;
}

.problem {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*e8yLSrsA-6YAAAAAAAAAAAAAARQnAQ');
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 10px 20px 20px 20px;
  box-shadow: 10px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.solution {
  background-image: url('https://gw.alipayobjects.com/mdn/rms_381427/afts/img/A*HAuITYBAFRIAAAAAAAAAAAAAARQnAQ');
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 10px 20px 20px 20px;
  box-shadow: 10px 0px 3px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1366px) {
  .atc-case-solution-btn {
    font-size: 18px;
  }

  .content-block .content {
    font-size: 14px;
    width: 400px;
    height: 220px;
  }

  .atc-case-solution-btn-content {
    width: 498px;
  }

  .content-block .content .content-title {
    padding-top: 11px;
    padding-left: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .atc-case-solution-btn {
    font-size: 14px;
  }

  .content-block .content {
    font-size: 13px;
    width: 320px;
    height: 177px;
  }

  .atc-case-solution-btn-content {
    width: 415px;
  }

  .content-block .content .content-title {
    padding-top: 11px;
    padding-left: 14px;
    font-size: 13px;
  }

  .content-block .content .content-items {
    padding: 22px 20px 50px 50px;
  }
}

.content-detail {
  display: none;
}

.content-detail-active {
  display: flex;
}

/* atc-case.html end */

/*# sourceMappingURL=static.css.map */
