* {
  margin: 0;
  padding: 0;
  outline: none;
}
img,
span,
li {
  cursor: pointer;
}
li {
  list-style: none;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
}
textarea {
  resize: none;
}
input,
textarea {
  border: none;
  -webkit-appearance: none;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "iconfont";
}
i,
em {
  font-style: normal;
}
a {
  color: #2d2d2d;
  text-decoration: none;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
}
b {
  font-weight: normal;
}
.whiter_bg {
  background: #fff;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.clearit {
  clear: both;
  height: 0;
  font-size: 0;
  overflow: hidden;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.font13 {
  font-size: 13px;
}
.mg15 {
  margin: 0.15rem 0 0 0;
}
.m_flex_box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.m_flex {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex_hc {
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
   */
}
.flex_he {
  /* 09版 */
  -webkit-box-pack: flex-end;
  /* 12版 */
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
.flex_vs {
  /* 09版 */
  -webkit-box-pack: flex-start;
  /* 12版 */
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}
.flex_jz {
  /*-webkit-box-pack: space-between;*/
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex_ar {
  /*-webkit-box-pack: space-between;*/
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
/* 父元素-纵向排列（主轴） */
.flex_v {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex_vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex_vc {
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.flex_vb {
  /* 09版 */
  -webkit-box-align: flex-end;
  /* 12版 */
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex_1 {
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex_2 {
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向换行 */
.flex_hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
body {
  box-sizing: border-box;
  max-width: 1980px;
  margin: 0 auto;
  moz-user-select: -moz-none;
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1980px;
  min-width: 1200px;
  box-sizing: border-box;
  z-index: 666;
  background-color: #fff;
  padding-left: 100px;
  padding-right: 100px;
}
header > div {
  height: 75px;
  max-width: 1720px;
  min-width: 1200px;
  box-sizing: border-box;
}
header > div .logo {
  width: 146px;
  height: 37px;
  box-sizing: border-box;
  margin-top: 20px;
  float: left;
}
header > div .logo h3 {
  line-height: 55px;
  margin-left: 60px;
  font-weight: bold;
  color: #e13633;
}
header > div .meau {
  float: right;
}
header > div .meau .xuan {
  border-bottom: 3px solid #202469;
  padding-bottom: 5px;
}
header > div .meau p {
  float: left;
  line-height: 75px;
  margin-right: 40px;
  font-size: 16px;
  cursor: pointer;
}
header > div .meau p a {
  color: #202469;
}
header > div .meau .forforee a {
  background-color: #202469;
  color: #fff;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 20px;
}
.banner {
  width: 100%;
  min-width: 1200px;
  position: relative;
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  text-align: right;
}
.banner > .pic_right {
  width: 56%;
  height: 100%;
}
.banner > .pic_left {
  width: 21%;
  height: 13%;
  position: absolute;
  top: 28%;
  left: 8%;
}
.banner > .pic_enter {
  width: 11%;
  height: 11%;
  position: absolute;
  top: 65%;
  left: 8%;
}
.banner > .intcontent {
  width: 32%;
  position: absolute;
  top: 46%;
  left: 8%;
  text-align: left;
  color: #666666;
  font-size: 18px;
}
.banner .updown {
  width: 57px;
  height: 24px;
  position: absolute;
  bottom: 25px;
  left: 49%;
}
.account {
  width: 100%;
  min-width: 1200px;
  height: auto;
  position: relative;
}
.account .tranList {
  min-width: 1200px;
  width: 100%;
  background-color: #F8F8F8;
  display: flex;
  margin: 60px auto 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 0!important;
}
.account .tranList > div {
  width: 380px;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}
.account .tranList > div > img {
  width: 72px;
  height: 44px;
  margin-bottom: 30px;
}
.account .tranList > div .Onehover {
  margin-top: 25px;
  width: 370px;
  height: 270px;
  cursor: pointer;
  background-size: 100% 100%;
}
.account .workbench {
  max-width: 1309px;
  width: auto;
  margin: 20px auto;
  display: block;
}
.account .dispnt_box {
  width: 1331px;
  height: auto;
  position: relative;
  padding-bottom: 200px;
}
.account .dispnt_box .forwhat {
  width: 100%;
  margin: 160px auto 0;
  display: block;
}
.account .dispnt_box .manger_1 {
  width: 380px;
  height: 120px;
  box-sizing: border-box;
  padding-top: 0;
  position: absolute;
  left: 250px;
}
.account .dispnt_box .manger_1 h3 {
  color: #333;
  font-size: 22px;
  line-height: 48px;
}
.account .dispnt_box .manger_1 p {
  color: #666666;
  font-size: 18px;
}
.account .dispnt_box .manger_2 {
  width: 380px;
  height: 120px;
  box-sizing: border-box;
  padding-top: 0;
  position: absolute;
  left: 750px;
}
.account .dispnt_box .manger_2 h3 {
  color: #333;
  font-size: 22px;
  line-height: 48px;
}
.account .dispnt_box .manger_2 p {
  color: #666666;
  font-size: 18px;
}
.account .dispnt_box .manger_3 {
  width: 380px;
  height: 120px;
  box-sizing: border-box;
  padding-top: 0;
  position: absolute;
  top: 648px;
  left: -24px;
}
.account .dispnt_box .manger_3 h3 {
  color: #333;
  font-size: 22px;
  line-height: 48px;
}
.account .dispnt_box .manger_3 p {
  color: #666666;
  font-size: 18px;
}
.account .dispnt_box .manger_4 {
  width: 380px;
  height: 120px;
  box-sizing: border-box;
  padding-top: 0;
  position: absolute;
  top: 648px;
  left: 475px;
}
.account .dispnt_box .manger_4 h3 {
  color: #333;
  font-size: 22px;
  line-height: 48px;
}
.account .dispnt_box .manger_4 p {
  color: #666666;
  font-size: 18px;
}
.account .dispnt_box .manger_5 {
  width: 380px;
  height: 120px;
  box-sizing: border-box;
  padding-top: 0;
  position: absolute;
  top: 648px;
  left: 980px;
}
.account .dispnt_box .manger_5 h3 {
  color: #333;
  font-size: 22px;
  line-height: 48px;
}
.account .dispnt_box .manger_5 p {
  color: #666666;
  font-size: 18px;
}
.account > div {
  width: 1200px;
  margin: 0 auto;
  padding-top: 75px;
}
.account > div > .joblom {
  font-size: 14px;
  text-align: center;
  margin-top: 45px;
  line-height: 26px;
}
.account > div .cuoceng {
  width: 170px;
  box-sizing: border-box;
  border: 1px solid #e13633;
  margin: 0 auto;
}
.account > div .cuoceng > div {
  width: 85px;
  box-sizing: border-box;
  float: left;
  border-top: 3px solid #e13633;
  margin-top: -3px;
}
.account > div h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-top: 10px;
}
.account > div .title {
  text-align: center;
  font-size: 32px;
  margin-top: 10px;
  color: #333333;
}
.account > div .title > img {
  width: 103px;
  height: 10px;
  margin-top: -10px;
}
.account > div .title > span {
  display: inline-block;
  width: 500px;
}
.account > div .cont_box_2 {
  box-sizing: border-box;
  padding-top: 40px;
  width: 100%;
  height: 515px;
}
.account > div .cont_box_2 > .flamplot {
  width: 465px;
  height: 300px;
  box-sizing: border-box;
  margin-top: 100px;
  margin-bottom: 100px;
  float: right;
}
.account > div .cont_box_2 > .flamplot > .left_font > h3 {
  color: #3D9AFE;
  font-size: 30px;
}
.account > div .cont_box_2 > .flamplot > .left_font > h3 i {
  font-size: 22px;
  font-style: italic!important;
  font-weight: 100;
  margin-left: 10px;
}
.account > div .cont_box_2 > .flamplot > .left_font > p {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  color: #666666;
  margin-top: 30px;
}
.account > div .cont_box_2 > .right_pic_2 {
  width: 723px;
  height: 406px;
  float: left;
  margin-top: 40px;
}
.account > div .cont_box {
  box-sizing: border-box;
  padding-top: 40px;
  width: 100%;
  height: 515px;
}
.account > div .cont_box > .flamplot {
  width: 465px;
  height: 300px;
  box-sizing: border-box;
  margin-top: 100px;
  margin-bottom: 100px;
  float: left;
}
.account > div .cont_box > .flamplot > .left_font > h3 {
  color: #3D9AFE;
  font-size: 30px;
}
.account > div .cont_box > .flamplot > .left_font > h3 i {
  font-size: 22px;
  font-style: italic!important;
  font-weight: 100;
  margin-left: 10px;
}
.account > div .cont_box > .flamplot > .left_font > p {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  color: #666666;
  margin-top: 30px;
}
.account > div .cont_box > .right_pic {
  width: 718px;
  height: 405px;
  float: right;
  margin-top: 40px;
}
.account > div .cont_box > .right_pic_3 {
  width: 672px;
  height: 415px;
  float: right;
  margin-top: 40px;
}
.menuBot {
  box-sizing: border-box;
  background-color: #fff;
  -moz-box-shadow: 0px 2px 3px #efefef;
  -webkit-box-shadow: 0px 2px 3px #efefef;
  box-shadow: 0px 2px 3px #efefef;
}
footer {
  width: 100%;
  min-width: 1200px;
  height: 901px;
  background-image: url(../images/fangzhou/footbkg.png);
  background-size: cover;
  box-sizing: border-box;
  position: relative;
}
footer h2 {
  width: 100%;
  padding-top: 110px;
  padding-bottom: 90px;
  box-sizing: border-box;
  color: #fff;
  font-size: 36px;
  text-align: center;
}
footer .flex_box {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
footer .flex_box div {
  text-align: center;
}
footer .flex_box div img {
  width: 76px;
  height: 76px;
}
footer .flex_box div h3 {
  color: #fff;
  font-size: 18px;
  line-height: 50px;
}
footer .flex_box div p {
  color: #fff;
  width: 264px;
  font-size: 14px;
}
footer .bot_fix {
  width: 100%;
  height: 279px;
  position: absolute;
  bottom: 0;
  background-color: #303035;
}
footer .bot_fix .copyright {
  width: 980px;
  height: 115px;
  box-sizing: border-box;
  margin: 0 auto;
  color: #666666;
  line-height: 115px;
  font-size: 12px;
  text-align: center;
}
footer .bot_fix .goDown {
  width: 980px;
  height: 163px;
  box-sizing: border-box;
  border-bottom: 1px solid #666666;
  margin: 0 auto;
}
footer .bot_fix .goDown > div:nth-of-type(1) {
  width: 26%;
  float: left;
  box-sizing: border-box;
  color: #fff;
  padding-top: 40px;
  padding-left: 40px;
}
footer .bot_fix .goDown > div:nth-of-type(1) div {
  width: 200px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
footer .bot_fix .goDown > div:nth-of-type(1) div a {
  color: #666666 !important;
  font-size: 14px;
  display: inline-block;
  width: 50%;
  line-height: 24px;
}
footer .bot_fix .goDown > div:nth-of-type(2) {
  width: 70%;
  float: left;
  box-sizing: border-box;
  color: #fff;
  padding-top: 40px;
  padding-left: 10px;
}
footer .bot_fix .goDown > div:nth-of-type(2) div {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
footer .bot_fix .goDown > div:nth-of-type(2) div span {
  color: #666666 !important;
  font-size: 14px;
  display: inline-block;
  width: 35%;
  line-height: 24px;
}
footer .bot_fix .goDown > div:nth-of-type(2) div .my_address {
  width: 65%;
}
