﻿html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
dl,
dt,
dd,
form,
p,
table,
td,
th,
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-decoration-skip: objects;
}

img {
  border: 0;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  border: none;
  cursor: pointer;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: 100%;
}

* {
  box-sizing: border-box;
}

a,
button,
input {
  outline: none;
  text-decoration: none;
}

input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  letter-spacing: 1px;
}

input:-moz-placeholder {
  color: #999;
  font-size: 14px;
  letter-spacing: 1px;
}

html {
  height: 100%;
}

body {
  font-family: "Roboto, Microsoft YaHei";
  -webkit-overflow-scrolling: touch;
}

.left {
  float: left;
}

.right {
  float: right;
}


/*强制横向排列*/
.disp_r {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}

/*强制纵向排列*/
.disp_c {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
}

/*设置的节点自动占满剩余的空间*/
.flex1 {
  flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
}

.flex2 {
  flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
}

.flex3 {
  flex: 3;
  -webkit-flex: 3;
  -moz-flex: 3;
  -ms-flex: 3;
}

/*子节点居住*/
.jus_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

/*子节点两边置顶 中间平均分配*/
.jus_between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

/*子节点剩余空间平均分配*/
.jus_around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
}

/*横---反向排列*/
.flex_r {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
}

/*纵---反向排列*/
.flex_c {
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
}

/*换行*/
.flex_w {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

/********* 自定义样式 *********/

/** header **/
.m-adadana {
  padding-top: 80px;
}

.wrap {
  width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}

.hd {
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}

.hd .logo {
  float: left;
  margin-top: 14px;
}

.hd .logo img {
  height: 54px;
  vertical-align: middle;
}

.hd img.logo_2 {
  width: 50px;
  height: 50px;
  margin-left: 20px;
}

.hd .logo span {
  font-size: 26px;
  color: #333;
  vertical-align: middle;
  margin-left: 10px;
}

.hd .nav {
  float: right;
}

.hd .nav .item {
  float: left;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 38px 0 24px 50px;
  line-height: 20px;
}

.hd .nav .item.active {
  color: #00479d;
}

.protocol-hd .nav .item:hover {
  color: #00479d;
}

.bd .banner {
  width: 100%;
  position: relative;
}

.bd .banner img {
  width: 100%;
}

.bd .product {
  display: block;
  padding-top: 70px;
  text-align: center;
}

.bd .product h2 {
  display: inline-block;
  font-size: 44px;
  color: #333;
  position: relative;
}

.bd .product .list {
  display: block;
  overflow: hidden;
  padding: 56px 0 80px;
}

.bd .product .list .item {
  float: left;
  width: 33.333%;
  text-align: center;
}

.bd .product .list .item img {
  height: 103px;
}

.bd .product .list .item .title {
  font-size: 20px;
  color: #333;
  margin-top: 36px;
}

.bd .product .list .item .subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.32);
  line-height: 24px;
  margin-top: 10px;
}

.bd .terms {
  display: block;
  padding-top: 70px;
  text-align: center;
}

.bd .terms h2 {
  display: inline-block;
  font-size: 44px;
  color: #333;
  position: relative;
}

.bd .card-box {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0 40px;
}

.bd .card {
  background: #fff;
  border-radius: 2px;
  box-shadow: 2px 2px 15px 0 rgba(62, 57, 107, 0.12);
  width: 400px;
  height: 160px;
  display: flex;
  margin: 0 70px 60px 10px;
  align-items: center;
  justify-content: flex-start;
}

.bd .card .img-box {
  width: 132px;
  height: 120px;
  display: flex;
  align-items: center;
}

.bd .card img {
  margin-left: 19px;
}

.bd .card .person {
  width: 100px;
  margin-left: 19px;
}

.bd .card .idcard {
  width: 100px;
}

.bd .card .income {
  width: 100px;
}

.bd .card .bank {
  width: 100px;
}

.bd .card .desc {
  width: 320px;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  text-align: left;
}

.bd .about .bg_div {
  height: 760px;
}

.bd .about {
  overflow: hidden;
  background: url('../images/bg.png') no-repeat center bottom;
}


.bd .about h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 23px;
  text-align: center;
  font-weight: bold;
}

.bd .about .download-phone {
  width: 340px;
  float: left;
}

.bd .about .content {
  // float: right;
}

.bd .about .content p {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8)
}

.bd .about .google-play {
  margin: 14px auto 0;
  width: 154px;
  // float: right;
}

.bd .service {
  padding: 14px 0 20px;
  background: #18202E;
  margin-top: -46px;
  position: relative;
  overflow: hidden;
}

.bd .service .phone-box {
  float: left;
  color: #fff;
  position: relative;
  z-index: 9;
}

.bd .service .phone-box a {
  color: #fff;
}

.bd .phone-box .title {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  // margin-bottom: 30px;
}

.bd .phone-box .phone {
  padding: 18px 0 22px 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  // align-items: center;
}

.phone_num{
  font-size: 26px;
  color: #fff;
}
.work_date{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.bd .phone-box img {
  width: 20px;
  margin-right: 10px;
}

.bd .phone-box .address img {
  float: left;
  width: 18px;
}

.bd .phone-box .email {
  font-size: 14px;
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.bd .phone-box .address {
  font-size: 14px;
  margin-top: 8px;
  width: 700px;
}

.bd .phone-box .address span {
  text-align: left;
  display: inline-block;
  width: 500px;
}

.bd .right-box {
  float: right;
  text-align: right;
}

.bd .footer-logo {
  width: 70px;
  margin-top: 15px;
  /*margin-right: 18px;*/
}

.bd .right-box .mark {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.bd .footer-logo-big {
  position: absolute;
  bottom: -10px;
  left: 350px;
  width: 247px;
  height: 156px;
  background: url('../images/footer_logo_big.png');
}

.bd .service .privacy {
  font-size: 16px;
  color: #00479d;
  margin-top: 37px;
  display: block;
}

.iframe {
  width: 100%;
}

.iframe.privacy {
  height: 5200px;
}