html { font-family: "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-size: 62.5%; }
body { margin: 0; font-size: 1.4rem; line-height: 1.5; color: #f1f1f1; height: 100%; overflow-x: hidden; -webkit-overflow-scrolling: touch;display: grid;min-width: 1200px;width: 100%; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
audio:not([controls]) { display: none; height: 0; }
[hidden], template { display: none; }
svg:not(:root) { overflow: hidden; }

a { background: transparent; text-decoration: none; -webkit-tap-highlight-color: transparent; color: #fff; }
a:active { outline: 0; }
a:active { color: #006699; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
mark { background: #ff0; color: #000; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img { border: 0; vertical-align: middle; }
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
pre { overflow: auto; white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; }

button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; }
button { overflow: visible; }
button, select { text-transform: none; }
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; }
button[disabled], html input[disabled] { cursor: default; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
input { line-height: normal; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; }
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
legend { border: 0; padding: 0; }
textarea { overflow: auto; resize: vertical; }
optgroup { font-weight: bold; }

table { border-collapse: collapse; border-spacing: 0; }
td, th { padding: 0; }

html, button, input, select, textarea { font-family: "微軟雅黑", Helvetica, STHeiTi, Arial, sans-serif; }
h1, h2, h3, h4, h5, h6, p, figure, form, blockquote { margin: 0; }
ul, ol, li, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none outside none; }
h1, h2, h3 { line-height: 2; font-weight: normal; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }
input::-moz-placeholder, textarea::-moz-placeholder { color: #cccccc; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #cccccc; }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #cccccc; }
a,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.width1200{width: 1200px !important;margin: 0 auto;}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.clearfix{*+height:1%;}
.fl{float: left;}
.fg{float: right;}
/*提示框*/
.tips {
	width: 500px;
	height: 46px;
	padding: 0 50px;
	line-height: 46px;
	background-color: #FEF0F0;
	border: 1px solid #FDE2E2;
	border-radius: 10px;
	position: fixed;
	left: 50%;
	top: -50px;
	z-index: 99999;
	margin-left: -250px;
	opacity: 1;
	color: #F56C6C;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.tips i{
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	background-color: #F56C6C;
	color: #FFFFFF;
	position: absolute;
	left: 20px;
	top: 13px;
}
.tipsShow{
	top: 60px !important;
	opacity: 1 !important;
}
.successTips .successTips-mask{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	display: none;
}
.successTips .successTips-mask-show{
	display: block;
}
.successTips .successTips-box{
	width: 500px;
	background-color: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999999;
	-webkit-transform: translate(-50%,-50%) scale(0.5);
	-moz-transform: translate(-50%,-50%) scale(0.5);
	-ms-transform: translate(-50%,-50%) scale(0.5);
	-o-transform: translate(-50%,-50%) scale(0.5);
	transform: translate(-50%,-50%) scale(0.5);
	-webkit-transition: all .35s;
	-moz-transition: all .35s;
	-ms-transition: all .35s;
	-o-transition: all .35s;
	transition: all .35s;
	opacity: 0;
	visibility: hidden;
}
.successTips .successTips-box-show{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%,-50%) scale(1);
	-moz-transform: translate(-50%,-50%) scale(1);
	-ms-transform: translate(-50%,-50%) scale(1);
	-o-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
}
.successTips .successTips-box p{
	font-size: 20px;
	color: #273447;
	border-bottom: 1px solid #EEEEEE;
	padding: 30px 0;
	text-align: center;
}

.successTips .successTips-close{
	font-size: 20px;
	color: #007AFF;
	padding: 15px 30px;
	text-align: right;
}
.successTips .successTips-close span{
	cursor: pointer;
}

body {
    opacity: 1;
    width: 100%;
  }
  
  html {}
  .home_header a:active{
    color: #fff;
  }
  body .home_header {
    font-size: 14px;
    color: black;
    width: 1200px;
    position: absolute;
    z-index: 999;
    top: 40px;
    left: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  

  .headerNav{
      padding-top: 13px;
  }
  .headerNav li {
    float: left;
    margin-left: 46px;
  }
  
  .headerNav li span{
    font-family: "微软雅黑";
  }
  
  .home_header a.icon {
    width: 185px;
    height: 50px;
  }
  
  .w1200 {
    width: 1200px;
    margin: 0 auto;
  }
  
  body .home_header ul li>a,
  body .home_header ul .activeContent {
    text-align: right;
    color: white;
    font-size: 16px;
    text-align: center;
  }
  
  body .home_header ul .activeContent {
    position: relative;
  }
  
  body .home_header ul .activeContent .contentBox {
    width: 120px;
    background-color: #FFFFFF;
    position: absolute;
    top: 30px;
    left: -5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
  }
  
  body .home_header ul .activeContent .contentBox a {
    display: block;
    height: 37px;
    line-height: 37px;
    text-align: center;
    color: #303133;
    font-size: 14px;
  }
  
  body .home_header ul .activeContent .contentBox a:hover {
    color: #FF0200;
  }
  
  body .home_header ul .activeContent .contentBox::after {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 10px solid #FFFFFF;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -10px;
  }
  
  body .home_header ul .activeContent:hover .contentBox {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  
  body .home_header ul .active_red {
    color: #C00F0F;
  }
  
  body .home_header ul .active1 {
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    padding-bottom: 3px;
  }
  
  body .home_header .active {
    background: #C00F0F;
    color: white !important;
  }
  
  /* body .footer {
    background: url("../images/u.png") no-repeat;
    width: 100%;
    height: 900px;
    background-size: cover;
  }
  body .footer .footer_nav {
    height: 100px;
    border-bottom: 1px solid white;
  }
  body .footer .activeContent {
    position: relative;
    color: #FFFFFF;
    cursor: pointer;
  }
  body .footer .activeContent .contentBox {
    width: 110px;
    height: 112px;
    background-color: #FFFFFF;
    position: absolute;
    top: 30px;
    left: -5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
  }
  body .footer .activeContent .contentBox a {
    display: block;
    height: 37px;
    line-height: 37px;
    text-align: center;
    color: #303133;
    font-size: 14px;
  }
  body .footer .activeContent .contentBox a:hover {
    color: #FF0200;
  }
  body .footer .activeContent .contentBox::after {
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 10px solid #FFFFFF;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -10px;
  }
  body .footer .activeContent:hover .contentBox {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  body .footer .center {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
  }
  body .footer .center .logo {
    padding-top: 50px;
    width: 280px;
    height: 130px;
  }
  body .footer .information {
    margin-top: 100px;
  }
  body .footer .information .active1 {
    color: red!important;
    background: white;
    border-radius: 10px;
    padding: 0 10px;
  }
  body .footer .information .submit {
    width: 100px;
    height: 40px;
    color: #C00F0F;
    line-height: 40px;
    border: none;
    margin-top: 100px;
    background: white;
  }
  body .footer .information .nav {
    margin: 0 auto;
    width: 1240px;
    display: flex;
    justify-content: center;
  }
  body .footer .information .nav li {
    float: left;
    text-align: center;
    margin-top: 50px;
    width: 140px;
    color: white;
  }
  body .footer .information .nav li > a:hover {
    color: #FFFFFF;
  }
  body .footer .information .nav li .active {
    background: white;
    border-radius: 4px;
    color: #C00F0F;
    padding: 4px 10px;
  }
  body .footer .information .bn {
    width: 100%;
  }
  body .footer .information .bn li {
    float: left;
    width: 33%;
  }
  body .footer .information .bn li .join {
    width: 174px;
    margin: 0 auto;
  }
  body .footer .information .bn li p {
    text-align: center;
    margin-top: 10px;
    color: white;
  }
  body .footer .information .bn li p input {
    border: none;
    height: 40px;
    width: 280px;
    background: transparent;
    border: 1px dashed white;
  }
  body .footer .information .bn li p:nth-child(1) {
    width: 172px;
    text-align: left;
  }
  body .footer .botn {
    width: 1300px;
    margin: 30px auto 0;
    color: white;
    display: flex;
    justify-content: center;
  }
  body .footer .botn .cv {
    margin-left: 4px;
  }
  body .footer .botn .botn_left {
    margin-top: 40px;
  }
  body .footer .botn .botn_right .img_w {
    margin-left: 100px;
  }
  body .footer .botn .botn_right .img_w img {
    margin-bottom: 10px;
    width: 150px;
    height: 150px;
  }
  body .footer .botn .adress p {
    text-align: left;
    margin-bottom: 10px;
  } */
  .footer {
    height: 500px;
    width: 100%;
    background: #f8f8f8;
  
  }
  
  .footer .footerwrap {
    width: 1200px;
    margin: 0 auto;
  }
  
  .footercode {
    padding-top: 84px;
    margin: 0 auto 64px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  .footercode li {
    text-align: center;
    color: #999;
    font-size: 14px;
  }
  
  .footercode li:nth-child(2) {
    margin-left: 106px;
  }
  
  body {
    display: block;
    width: 100%;
  }
  
  .shadow {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
    z-index: 333;
    display: none;
  }
  
  a:hover {
    color: red;
  }
  
  .biaoA:hover {
    color: blue;
  }
  
  .close_video {
    top: -40px;
    right: -60px;
  }
  
  .video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
  
  }
  
  .slide_module_text:nth-child(2) {
    margin-bottom: 30px !important;
  }
  
  .honur {
    padding: 100px 0 0 0;
    width: 1100px;
    margin: 0 auto;
  }
  
  .honur img {
    width: 330px;
  }
  
  body {
    overflow-y: auto;
  }
  
  .honur ul li:nth-child(1) {
    margin-left: 0;
    text-align: center;
    ;
  }
  
  .third_bg ul {
    margin: 0 auto;
  }
  
  .third_bg ul li {
    width: inherit;
  }
  
  .footer .footercode img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  
  body .static {
    width: 66%;
    margin: 40px auto 10px;
    color: white;
  }
  
  .center {
    text-align: center;
  }
  
  .comonfz {
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: center;
  }
  .comonfz i {
    margin-right: 3px;
  }
  
  .address {
    display: inline-block;
    width: 13px;
    height: 16px;
    background: url(../Images/company/dz.png) center no-repeat;
    background-size: 100% auto;
  
  }
  
  .tel {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../Images/phone.png) center no-repeat;
    background-size: 100% auto;
  }
  
  .fax {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../Images/company/fax.png) center no-repeat;
    background-size: 100% auto;
  }
  
  .hotphone {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/company/kf.png) center no-repeat;
    background-size: 100% auto;
  }
  
  .comonfz span {
    margin-left: 20px;
    display: flex;
    align-items: center;
  
  }
  
  body .static li {
    color: white;
    float: left;
    margin-left: 50px;
  }
  
  body .static li img {
    margin-right: 4px;
  }
  
  .bg {
    height: 898px;
    width: 100%;
    background-size: cover;
    position: relative;
  }
  
  .home_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  
  .home_bg .cc {
    width: 44px;
    height: 44px;
    display: block;
    margin: 0 auto;
    background: url("../images/down.png") no-repeat;
    position: absolute;
    top: 20px;
    -webkit-animation: bodyI 1s both infinite linear;
  }
  
  .centers {
    width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 999;
  }
  
  .centers p {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
  }
  
  .centers .need {
    text-align: center;
    font-size: 72px;
    margin: 10px 0 20px;
    font-weight: bold;
  }
  
  .centers .need:nth-child(2) {
    margin-bottom: 60px;
  }
  
  .centers .buto {
    width: 100%;
    margin: 110px;
  }
  
  .centers .rightan {
    position: absolute;
    left: 50%;
    cursor: pointer;
    transform: translate(-50%);
  }
  
  @-webkit-keyframes rightan {
    from {
      bottom: 5%;
      opacity: 0;
    }
  
    to {
      bottom: 0;
      opacity: 1;
    }
  }
  
  .centers .rightan {
    -webkit-animation: rightan 1s infinite;
    -webkit-animation-fill-mode: both;
  }
  
  .hsz-scond {
    width: 100%;
    height: 800px;
    background: url(../Images/ban/bgg.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    color: black;
  }
  
  .hsz-scond .hsz-scond_right img {
    width: 100%;
    height: 100%;
  }
  
  .hsz-scond .hsz-scond_right .imgs {
    background: url(../images/bg1.png) no-repeat;
    width: 800px;
    height: 640px;
    background-size: 100% 100%;
  }
  
  .Business {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul {
    width: 700px;
    height: 800px;
    position: absolute;
    left: 10%;
    top: 10%;
  }
  
  @media screen and (max-device-width:1400px) {
    .hsz-scond .hsz-scond_right .imgs {
      width: 650px;
      height: 530px;
    }
  }
  
  
  .hsz-scond .hsz-scond_right .imgs ul li {
    margin-top: 40px;
    cursor: pointer;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li:hover .xzz {
    color: red;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li .text p.detail {
    width: 400px;
    font-size: .75rem;
    text-align: left;
    margin-left: 18px;
       color:rgba(39,52,71,0.5);;
    margin-top: 7px;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li .text p.detail:nth-child(1) {
    font-size: 1.125rem;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li div.water {
    width: 17.5rem;
    height: 10.5rem !important;
    overflow: hidden;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li div.water img {
    transition: all 0.6s;
  }
  
  .hsz-scond .hsz-scond_right .imgs ul li div.water img:hover {
    transform: scale(1.4);
  }
  
  .hsz-scond .hsz-scond_left,
  .hsz-scond .hsz-scond_right {
    position: relative;
    margin-top: 60px;
  }
  
  .hsz-scond .hsz-scond_left .hsz-scond_left_content,
  .hsz-scond .hsz-scond_right .hsz-scond_left_content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hsz-scond .hsz-scond_left .hsz-scond_left_content img,
  .hsz-scond .hsz-scond_right .hsz-scond_left_content img {
    margin-bottom: 30px;
  }
  
  .hsz-scond .hsz-scond_left .hsz-scond_left_content p,
  .hsz-scond .hsz-scond_right .hsz-scond_left_content p {
    margin: 20px 0;
    text-align: left;
  }
  
  .hsz-scond .hsz-scond_left .hsz-scond_left_content p span,
  .hsz-scond .hsz-scond_right .hsz-scond_left_content p span {
    margin-right: 10px;
    font-size: 20px;
  }
  
  .hsz-scond .hsz-scond_left .hsz-scond_left_content p span:nth-child(2),
  .hsz-scond .hsz-scond_right .hsz-scond_left_content p span:nth-child(2) {
    color: #273447;
  }
  
  .businessarea {
    background: url(../images/businessarea.png) no-repeat;
    width: 100%;
    height: 1280px;
    background-size: 100% 100%;
    position: relative;
  }
  
  .businessarea .vn {
    position: absolute;
    right: 98px;
    bottom: 245px;
  }
  
  .businessarea p {
    text-align: center;
  }
  
  .businessarea p.cdf {
    color: #FF2C2B;
    font-weight: bold;
    margin: 20px 0;
    font-size: 16px;
  }
  
  .businessarea .trade:nth-child(1) {
    left: 34%;
    top: 7%;
    transform: rotate(50deg);
  }
  
  .businessarea .trade:nth-child(2) {
    left: 54%;
    top: 10%;
    transform: rotate(308deg);
  }
  
  .businessarea .trade:nth-child(3) {
    left: 14%;
    top: 48%;
    transform: rotate(308deg);
  }
  
  .cicle {
    background: url(../Images/entech/circle.png) no-repeat;
    width: 413px;
    height: 280px;
    background-size: 100% 100%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .cicle p:nth-child(1) {
    color: #fff;
    font-size: 30px;
    margin-top: 20px;
    font-weight: bold;
  }
  
  .cicle p:nth-child(2) {
    width: 234px;
    margin-top: 10px;
    color: #fff;
    font-size: 20px;
  }
  
  .businessarea .trade:nth-child(5) {
    left: 51%;
    top: 53%;
    width: 10px;
  }
  
  .businessarea .trade:nth-child(4) {
    left: 81%;
    top: 49%;
    transform: rotate(55deg);
  }
  
  .businessarea .trade {
    position: absolute;
  }
  
  .businessarea p img {}
  
  .businessarea p span {
    color: black;
    font-weight: bold;
    font-size: 20px;
  }
  
  .businessarea p span:nth-child(2) {
    color: #273447;
    margin: 0 20px;
  }
  
  .businessarea .centerx {
    width: 440px;
    height: 300px;
    background-size: 100% 100%;
    position: absolute;
    top: 51%;
    left: 51%;
    display: flex;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 28px;
    color: white;
  }
  
  .businessarea .centerx img {
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  
  .businessarea .centerx P:nth-child(1) {
    font-size: 25px;
  }
  
  .businessarea .centerx P:nth-child(3) {
    font-size: 19px;
  }
  
  .businessarea .third_f {
    background: url(../images/k.png) no-repeat;
    width: 774px;
    height: 751px;
    background-size: 100% 100%;
    position: absolute;
    top: 62%;
    left: 51%;
    transform: translate(-50%, -50%);
  }
  
  .businessarea .third_f .add1 {
    position: absolute;
    left: 35%;
    top: -18px;
  }
  
  .businessarea .third_f .add1 .mmm {
    position: absolute;
    color: red;
    font-weight: bold;
    font-size: 12px;
    top: 40px;
    width: 81px;
    left: -30px;
  }
  
  .businessarea .third_f .add1:nth-child(2) {
    left: 62%;
  }
  
  .businessarea .third_f .add1:nth-child(3) {
    left: 4%;
    top: 24%;
  }
  
  .businessarea .third_f .add1:nth-child(4) {
    left: 93%;
    top: 24%;
  }
  
  .businessarea .third_f .add1:nth-child(5) {
    left: 0%;
    top: 57%;
  }
  
  .businessarea .third_f .add1:nth-child(6) {
    left: 97%;
    top: 56%;
  }
  
  .businessarea .third_f .add1:nth-child(7) {
    left: 31%;
    top: 69%;
  }
  
  .businessarea .third_f .add1:nth-child(8) {
    left: 31%;
    top: 69%;
  }
  
  .businessarea .third_f .add1:nth-child(9) {
    left: 24%;
    top: 72%;
  }
  
  .businessarea .third_f .add1:nth-child(10) {
    left: 62%;
    top: 68%;
  }
  
  .businessarea .third_f .add1:nth-child(11) {
    left: 71%;
    top: 72%;
  }
  
  .businessarea .third_f .add1:nth-child(12) {
    left: 71%;
    top: 72%;
  }
  
  .businessarea .third_f .add1:nth-child(13) {
    left: 35%;
    top: 94%;
  }
  
  .businessarea .third_f .add1:nth-child(14) {
    left: 61%;
    top: 94%;
  }
  
  .businessarea .third_f .add1 .fgg {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    -webkit-transform: rotateX(55deg);
    -moz-transform: rotateX(55deg);
    -o-transform: rotateX(55deg);
    -ms-transform: rotateX(55deg);
    transform: rotateX(55deg);
    z-index: -2;
  }
  
  .businessarea .third_f .add1 .fgg:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    -webkit-animation: pulsate 1s ease-out;
    -moz-animation: pulsate 1s ease-out;
    -o-animation: pulsate 1s ease-out;
    -ms-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 0 1px 2px #89849b;
    box-shadow: 0 0 1px 2px #89849b;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
  
  .businessarea .third_f .third_f_item {
    width: 178px;
    height: 105px;
    color: #FF2C2B;
    font-size: 12px;
    position: absolute;
    overflow: hidden;
  }
  
  .businessarea .third_f .third_f_item:nth-child(1) {
    left: 70%;
    top: -24px;
  }
  
  .businessarea .third_f .third_f_item:nth-child(2) {
    right: 90px;
    top: -24px;
    background-size: 100% 100%;
  }
  
  .businessarea .third_f .third_f_item:nth-child(3) {
    right: 12px;
    bottom: 86px;
    background-size: 100% 100%;
  }
  
  .businessarea .third_f .third_f_item:nth-child(4) {
    right: 347px;
    bottom: 176px;
    background-size: 100% 100%;
  }
  
  .businessarea .third_f .third_f_item:nth-child(5) {
    left: 15px;
    background-size: 100% 100%;
    bottom: 86px;
  }
  
  .businessarea .third_f .third_f_item img {
    transition: all 1s;
    width: 100%;
    height: 100%;
  }
  
  .businessarea .third_f .third_f_item img:hover {
    transform: scale(1.12);
  }
  
  .businessarea .third_f .third_f_item .big {
    font-size: 20px;
    font-weight: bold;
  }
  
  .third_bg {
    background: url(../images/vv.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 700px;
  }
  
  .third_bg .cbn {
    font-size: 20px;
    height: 100px;
    line-height: 80px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 20px;
  }
  
  .third_bg ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
  
  .third_bg ul li {
    width: 394px;
    margin-left: 20px;
    text-align: center;
    font-weight: bold;
  }
  
  .third_bg ul li img {
    margin-bottom: 16px;
  }
  
  .earthbanner {
    width: 756px;
    height: 732px;
    background: url(../Images/ban/k.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .descall,
  .dress {
    margin: 0 auto;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .dress .dl {
    text-align: center;
    position: absolute;
  }
  
  .dl:nth-child(1) {
    top: -30px;
    left: 50%;
    transform: translate(-50%);
  }
  
  .dl:nth-child(2) {
    top: 40%;
    left: -20px;
  }
  
  .dl:nth-child(3) {
    top: 40%;
    /* left: 50%; */
    /* transform: translate(-50%); */
    right: -25px;
  }
  
  .dl:nth-child(4) {
    top: inherit;
    left: 222px;
    /* transform: translate(-50%); */
    bottom: 0px;
  }
  
  .dl:nth-child(5) {
    /* top: 78%; */
    left: 64%;
    /* transform: translate(-50%); */
    bottom: 0px;
  }
  
  .maindesc {
    position: absolute;
    left: 10%;
    transform: translate(-20%);
    background: #fff;
    padding: 30px;
    text-align: center;
    top: -7%;
    border-radius: 4px;
  }
  
  .maindesc h3 {
    text-align: center;
    color: #273447;
    font-size: 18px;
    font-weight: bold;
  }
  
  .maindesc p {
    text-align: center;
    color: #999;
  }
  
  .maindesc:nth-child(2) {
    right: 3%;
    left: none;
    left: initial;
    padding: 30px 50px;
  }
  
  .maindesc:nth-child(3) {
    left: initial;
    padding: 30px;
    top: 80%;
    left: -10px;
  }
  
  .maindesc:nth-child(4) {
    right: 283px;
    left: none;
    left: initial;
    padding: 10px 20px;
    top: 66%;
  }
  
  .maindesc:nth-child(5) {
    top: 66%;
    padding: 10px 7px;
    left: 117px;
  }
  
  .maindesc:nth-child(6) {
    right: 64px;
    left: none;
    left: initial;
    padding: 10px 20px;
    top: 66%;
  }
  
  .maindesc:nth-child(7) {
    right: -60px;
    left: none;
    left: initial;
    padding: 30px 60px;
    top: 79%;
  }
  
  .dress {}
  
  .third_bg ul li p {
    margin-top: 4px;
    color: white;
  }
  
  .third_bg .look {
    margin: 0 auto;
    border: none;
    padding: 0 10px;
    background: white;
    height: 40px;
    color: #FF2C2B;
  }
  
  .pulse {
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 29%;
    top: 28%;
    margin: 11px 0px 0px -12px;
    -webkit-transform: rotateX(55deg);
    -moz-transform: rotateX(55deg);
    -o-transform: rotateX(55deg);
    -ms-transform: rotateX(55deg);
    transform: rotateX(55deg);
    z-index: -2;
  }
  
  .pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -45px 0 0 -4px;
    top: 40px;
    -webkit-animation: pulsate 1s ease-out;
    -moz-animation: pulsate 1s ease-out;
    -o-animation: pulsate 1s ease-out;
    -ms-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 0 1px 2px #ff0000;
    box-shadow: 0 0 1px 2px #ff0000;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
  
  @-webkit-keyframes pulsate {
    0% {
      -webkit-transform: scale(0.1, 0.1);
      -moz-transform: scale(0.1, 0.1);
      -o-transform: scale(0.1, 0.1);
      -ms-transform: scale(0.1, 0.1);
      transform: scale(0.1, 0.1);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
    }
  
    50% {
      opacity: 1;
      -ms-filter: none;
      filter: none;
    }
  
    100% {
      -webkit-transform: scale(1.2, 1.2);
      -moz-transform: scale(1.2, 1.2);
      -o-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
    }
  }
  
  .cvvb {
    position: absolute;
  }
  
  .five_bg {
    height: 1210px;
    width: 100%;
    background-size: 100% 100%;
    background: #f8f8f8;
  }
  
  .five_bg p {
    text-align: center;
  }
  
  .five_bg p.cdf {
    color: #FF2C2B;
    font-weight: bold;
    margin: 20px 0;
  }
  
  .five_bg p:nth-child(1) {
    padding: 80px 0 20px;
  }
  
  .five_bg p img {
    margin-left: -150px;
  }
  
  .five_bg p span {
    color: black;
    font-weight: bold;
    font-size: 20px;
    margin-left: -60px;
  }
  
  .five_bg p span:nth-child(2) {
    margin-left: 10px;
  }
  
  .joinUs ul {
    width: 1200px;
    margin: 0 auto;
  
  }
  
  .joinUs {
    position: relative;
  }
  
  .joinUs ul li {
    float: left;
    width: 33%;
    text-align: center;
  }
  
  .joinUs ul img {
    width: 95px;
    height: 95px;
  }
  
  .joinWrap {
    width: 648px;
    margin: 103px auto 100px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(39,52,71,0.6);
    padding: 30px;
  }
  .TalentRecruitment_counter textarea {
    width: 100%;
    border: none;
    color: #000;
    outline: none;
    height: 100px;
  }
  
  .addressText {
    color: #000;
    margin-top: 10px;
  }
  
  .addressText span {
    letter-spacing: 2px;
  }
  
  .joinWrap p {
    font-size: 16px;
    color: #273447;
    margin: 0;
    text-align: left;
    padding: 0 !important;
    /* float: left; */
    width: 60px;
    margin-right: 16px;
  
  }
  
  .joinWrap label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
  }
  
  
  .tipbottom {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .joinWrap input {
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    outline: none;
    color: #000;
    background: none;
    padding:0 20px;
  }
  
  .joinus {
    text-align: center;
  
  }
  
  .joinus button {
    outline: none;
    border: none;
    background: #273447;
    width: 248px;
    height: 40px;
    color: #fff;
    margin: 0 auto;
  }
  
  
  .five_bg .nmm {
    margin: 50px 0;
    font-size: 16px !important;
    color: #273447 !important;
  }
  
  .five_bg .lunbo {
    width: 1200px;
    height: 500px;
    margin: 0 auto;
  }
  
  .six_bg {
    width: 100%;
    background: white;
  }
  
  .six_bg .six_conteainer {
    width: 1200px;
    margin: 0 auto;
  }
  
  .six_bg .six_conteainer p {
    text-align: left;
  }
  
  .six_bg .six_conteainer p.cdf {
    color: #FF2C2B;
    font-weight: bold;
    margin: 20px 0;
  }
  
  .six_bg .six_conteainer p:nth-child(1) {
    padding: 40px 0;
  }
  
  .six_bg .six_conteainer p:nth-child(3) {
    color: #666;
    font-size: 30px;
    margin-top: 20px;
  }
  
  .six_bg .six_conteainer p span {
    color: black;
    font-size: 20px;
  }
  
  .six_bg .six_conteainer p span:nth-child(2) {
    color: #273447;
    margin-left: 10px;
  }
  
  .six_bg .fuu {
    height: 531px;
    margin-top: 80px;
  }
  
  .six_bg .fuu .vbb {
    width: 100%;
    height: 100%;
  }
  
  .six_bg .fuu ul {
    width: 50%;
  }
  
  .six_bg .fuu ul li {
    margin-top: 24px;
    background: #f5f6f8;
    border-radius: 10px;
    box-shadow: -2px 0px 2px #f5f6f8, 0px -2px 2px #f5f6f8, 2px 0px 2px #f5f6f8, 0px 2px 2px #f5f6f8;
  }
  
  .six_bg .fuu ul li p {
    width: 300px;
    padding: 0 !important;
    text-align: left;
    margin-left: 40px;
  }
  
  .six_bg .fuu ul li p:nth-child(1) {
    color: #333;
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .six_bg .fuu ul li p:nth-child(2) {
    color: #666;
    display: none;
  }
  
  .six_bg .fuu ul li p:nth-child(3) {
    color: #666;
    font-size: 12px;
  }
  
  .six_bg . {
    margin: 60px auto;
    border: none;
    background: #FF2C2B;
    height: 40px;
    color: #fff;
    width: 250px;
  }
  
  .six_bg .echart {
    background: url(../images/vtg.png) no-repeat;
    width: 1182px;
    height: 560px;
    background-size: 100% 100%;
    margin-top: 40px;
    position: relative;
  }
  
  .six_bg .echart .dotself {
    border-radius: 100%;
    position: relative;
  }
  
  .six_bg .echart .dotself span {
    color: #273447;
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    top: -40px;
    left: 44px;
  }
  
  .caseWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 900px;
  }
  
  .classicase {
    background: url(../Images/entech/bggg.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 1126px;
    position: relative;
  }
  
  .scicle {
    background: url(../Images/entech/scicle.png) no-repeat;
    width: 670px;
    height: 442px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
  }
  
  .mcicle {
    background: url(../Images/entech/mcicle.png) no-repeat;
    width: 952px;
    height: 625px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .bcicle {
    background: url(../Images/entech/bcicle.png) no-repeat;
    width: 1200px;
    height: 790px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .six_bg .echart .dotself1 {
    left: 190px;
    top: 70px;
  }
  
  .six_bg .echart .dotself1 span {
    left: 50px;
  }
  
  .six_bg .echart .dotself1 .dot,
  .six_bg .echart .dotself1 .dot2,
  .six_bg .echart .dotself1 .dot3 {
    width: 26px;
    height: 26px;
  }
  
  .six_bg .echart .dotself2 {
    left: 160px;
    top: 180px;
  }
  
  .six_bg .echart .dotself2 .dot,
  .six_bg .echart .dotself2 .dot2,
  .six_bg .echart .dotself2 .dot3 {
    width: 18px;
    height: 18px;
  }
  
  .six_bg .echart .dotself3 {
    left: 180px;
    top: 253px;
  }
  
  .six_bg .echart .dotself3 .dot,
  .six_bg .echart .dotself3 .dot2,
  .six_bg .echart .dotself3 .dot3 {
    width: 10px;
    height: 10px;
  }
  
  .six_bg .echart .dotself4 {
    left: 250px;
    top: 392px;
  }
  
  .six_bg .echart .dotself4 .dot,
  .six_bg .echart .dotself4 .dot2,
  .six_bg .echart .dotself4 .dot3 {
    width: 30px;
    height: 30px;
  }
  
  .six_bg .echart .dotself5 {
    left: 300px;
    top: 488px;
  }
  
  .six_bg .echart .dotself5 .dot,
  .six_bg .echart .dotself5 .dot2,
  .six_bg .echart .dotself5 .dot3 {
    width: 20px;
    height: 20px;
  }
  
  .six_bg .echart .dotself6 {
    left: 44%;
    top: 90px;
  }
  
  .six_bg .echart .dotself6 .dot,
  .six_bg .echart .dotself6 .dot2,
  .six_bg .echart .dotself6 .dot3 {
    width: 12px;
    height: 12px;
  }
  
  .six_bg .echart .dotself7 {
    left: 51%;
    top: 48px;
  }
  
  .six_bg .echart .dotself7 .dot,
  .six_bg .echart .dotself7 .dot2,
  .six_bg .echart .dotself7 .dot3 {
    width: 10px;
    height: 10px;
  }
  
  .six_bg .echart .dotself8 {
    left: 54%;
    top: 82px;
  }
  
  .six_bg .echart .dotself8 .dot,
  .six_bg .echart .dotself8 .dot2,
  .six_bg .echart .dotself8 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dotself9 {
    left: 48%;
    top: 124px;
  }
  
  .six_bg .echart .dotself9 .dot,
  .six_bg .echart .dotself9 .dot2,
  .six_bg .echart .dotself9 .dot3 {
    width: 10px;
    height: 10px;
  }
  
  .six_bg .echart .dotself10 {
    left: 52%;
    top: 112px;
  }
  
  .six_bg .echart .dotself10 .dot,
  .six_bg .echart .dotself10 .dot2,
  .six_bg .echart .dotself10 .dot3 {
    width: 20px;
    height: 20px;
  }
  
  .six_bg .echart .dotself11 {
    left: 52%;
    top: 205px;
  }
  
  .six_bg .echart .dotself11 .dot,
  .six_bg .echart .dotself11 .dot2,
  .six_bg .echart .dotself11 .dot3 {
    width: 15px;
    height: 15px;
  }
  
  .six_bg .echart .dotself12 {
    left: 55%;
    top: 232px;
  }
  
  .six_bg .echart .dotself12 .dot,
  .six_bg .echart .dotself12 .dot2,
  .six_bg .echart .dotself12 .dot3 {
    width: 16px;
    height: 16px;
  }
  
  .six_bg .echart .dotself13 {
    left: 60%;
    top: 423px;
  }
  
  .six_bg .echart .dotself13 .dot,
  .six_bg .echart .dotself13 .dot2,
  .six_bg .echart .dotself13 .dot3 {
    width: 20px;
    height: 20px;
  }
  
  .six_bg .echart .dotself14 {
    left: 52%;
    /* bottom: 0; */
    top: 354px;
  }
  
  .six_bg .echart .dotself14 .dot,
  .six_bg .echart .dotself14 .dot2,
  .six_bg .echart .dotself14 .dot3 {
    width: 20px;
    height: 20px;
  }
  
  .six_bg .echart .dotself15 {
    left: 62%;
    top: 151px;
  }
  
  .six_bg .echart .dotself15 .dot,
  .six_bg .echart .dotself15 .dot2,
  .six_bg .echart .dotself15 .dot3 {
    width: 10px;
    height: 10px;
  }
  
  .six_bg .echart .dotself16 {
    left: 66%;
    top: 200px;
  }
  
  .six_bg .echart .dotself16 .dot,
  .six_bg .echart .dotself16 .dot2,
  .six_bg .echart .dotself16 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dotself17 {
    left: 77%;
    top: 58px;
  }
  
  .six_bg .echart .dotself17 .dot,
  .six_bg .echart .dotself17 .dot2,
  .six_bg .echart .dotself17 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dotself18 {
    left: 76%;
    top: 117px;
  }
  
  .six_bg .echart .dotself18 .dot,
  .six_bg .echart .dotself18 .dot2,
  .six_bg .echart .dotself18 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dotself19 {
    left: 78%;
    top: 270px;
  }
  
  .six_bg .echart .dotself19 .dot,
  .six_bg .echart .dotself19 .dot2,
  .six_bg .echart .dotself19 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dotself20 {
    left: 88%;
    /* bottom: 0; */
    top: 474px;
  }
  
  .six_bg .echart .dotself20 .dot,
  .six_bg .echart .dotself20 .dot2,
  .six_bg .echart .dotself20 .dot3 {
    width: 14px;
    height: 14px;
  }
  
  .six_bg .echart .dot {
    animation: sploosh 10s cubic-bezier(1.165, 0.84, 0.44, 1);
  }
  
  .six_bg .echart .dot2 {
    animation: sploosh2 1.6s cubic-bezier(0.123, 0.84, 0.44, 1);
  }
  
  .six_bg .echart .dot3 {
    animation: sploosh3 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .six_bg .echart .dot,
  .six_bg .echart .dot2,
  .six_bg .echart .dot3 {
    height: 6px;
    width: 6px;
    font-size: 20px;
    color: #fff;
    line-height: 100px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    z-index: 10;
    animation-iteration-count: infinite;
    background: transparent;
  }
  
  @keyframes sploosh {
    0% {
      box-shadow: 0 0 0 0px rgba(156, 183, 223, 0.7);
      ;
      background: #87a1c7b3;
    }
  
    100% {
      box-shadow: 0 0 0 30px rgba(156, 183, 223, 0.7);
      ;
      background: rgba(156, 183, 223, 0.7);
      ;
    }
  }
  
  @keyframes sploosh2 {
    0% {
      box-shadow: 0 0 0 0px rgba(156, 183, 223, 0.7);
      ;
      background: rgba(156, 183, 223, 0.7);
    }
  
    100% {
      box-shadow: 0 0 0 20px rgba(156, 183, 223, 0.7);
      background: rgba(156, 183, 223, 0.7);
    }
  }
  
  @keyframes sploosh3 {
    0% {
      box-shadow: 0 0 0 0px rgba(156, 183, 223, 0.7);
      ;
      background: rgba(156, 183, 223, 0.7);
      ;
    }
  
    100% {
      box-shadow: 0 0 0 10px #87a1c7b3;
      background: #87a1c7b3;
    }
  }
  
  .plus {
    text-align: center !important;
    color: #273447;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 100px;
  }
  
  .pluss {
    color: #666 !important;
    font-size: 18px !important;
    text-align: center !important;
    margin: 80px 0;
  }
  
  .company .comp_wrap {
    background: url(../images/company/companybanner.png);
    width: 100%;
    height: 500px;
    background-size: 100% 100%;
    position: relative;
  }
  
  .company .comp_header {
    height: 72px;
    color: black;
  }
  
  
  .company .comp_header .comp_line p {
    position: absolute;
  }
  
  .company .comp_header .comp_line p:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 30px;
  }
  
  
  .company .info {
    background: url(../images/company/Rectangle.png) no-repeat;
    width: 100%;
    height: 521px;
    background-size: 100% 100%;
    position: relative;
  }
  
  .company .alldetail {
    width: 490px;
  }
  
  .company .alldetail li {
    margin-bottom: 10px;
    color: #91959C;
    font-size: 16px;
    width: 460px;
  }
  .company .alldetail li img {
    margin-right: 10px;
  }
  
  .company .center {
    position: absolute;
    width: 1300px;
    left: 50%;
    margin-left: -650px;
    height: 256px;
    background: #FFFFFF;
    opacity: 0.8;
  }
  
  .company .com_ff {
    width: 100%;
    height: 491px;
    background: url(../images/company/introduce.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding-top: 100px;
  }
  
  .company .com_ff .content {
    width: 950px;
    left: 50%;
    margin-left: -450px;
    top: 130px;
    position: absolute;
    line-height: 28px;
    font-size: 16px;
    color: #273447;
    letter-spacing: 1px;
    text-align: left;
  }
  
  .company .culture {
    padding: 80px 0;
    background: url(../Images/company/culture.png)no-repeat;
    width: 100%;
    height: 782px;
    background-size: 100% 100%;
  
  }
  
  
  
  .company .culture .comp_line p {
    position: absolute;
  }
  
  .company .culture .comp_line p:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 30px;
    color: black;
  }
  
  
  .company .culture .byh {
    width: 1300px;
    margin: 80px auto;
  }
  
  .company .culture .byh li {
    float: left;
    margin-left: 140px;
    text-align: center;
    cursor: pointer;
  }
  
  .company .culture .byh li p {
    text-align: center;
    color: black;
    margin-top: 20px;
    font-size: 14px;
    color: #333;
  }
  
  .company .culture .byh li p:nth-child(2) {
    color: #FF2C2B;
    font-weight: bold;
    font-size: 18px;
  }
  
  .company .lunbo {
    height: 1300px;
    padding-top: 20px;
    position: relative;
  }
  
  .company .lunbo i.bb {
    width: 40px;
    height: 34px;
    background: url(../images/company/ll.png);
    background-size: 100% 100%;
    position: absolute;
    left: 10%;
    top: 50%;
  }
  
  .company .lunbo i.vv {
    width: 40px;
    height: 34px;
    position: absolute;
    background: url(../images/company/r.png);
    background-size: 100% 100%;
    right: 10% !important;
    top: 50%;
  }
  
  .company .lunbo .jiainbian {
    width: 892px;
    height: 245px;
    background-size: 100% 100%;
    position: relative;
    top: 60px;
    left: 50%;
    transform: translate(-50%);
  }
  
  .company .lunbo .jiainbian .prev {
    position: absolute;
    top: 74px;
    left: -100px;
    background: url(../images/devs/ll.png) no-repeat;
    width: 40px;
    height: 34px;
  }
  
  .company .lunbo .jiainbian .next {
    position: absolute;
    right: -90px !important;
    top: 74px !important;
    background: url(../images/devs/r.png) no-repeat !important;
    width: 40px;
    height: 34px;
  }
  
  
  .company .lunbo .comp_line p {
    position: absolute;
  }
  
  .company .lunbo .comp_line p:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 30px;
    color: black;
  }
  
  
  .company .honer {
    height: 680px;
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
  }
  
  
  
  .company .honer .comp_line p:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 30px;
    color: black;
  }
  
  
  .company .honer .text {
    width: 1000px;
    margin-top: 20px;
    color: #666;
    margin: 80px auto 0;
    text-align: center;
    font-size: 16px;
  }
  
  .company .honer .com_honer {
    width: 1400px;
    margin: 0 auto;
  }
  
  .company .honer .com_honer li {
    float: left;
    margin-left: 30px;
    width: 300px;
    height: 192px;
  }
  
  .company .honer .com_honer li img {
    width: 100%;
    height: 100%;
  }
  .company .botton {
    height: 600px;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    width: 100%;
    background: #fcfcfc;
  }
  
  .company .botton .bgg {
    width: 1300px;
    margin:0 auto;
  }
  
  .company .botton .bgg li:nth-child(1) {
    margin-left: 0;
  
  }
  
  .bgg i {
    background: url('../Images/entech/vline.png')no-repeat;
    width: 17px;
    height: 2px;
    background-size: 100% 100%;
    display: inline-block;
  }
  
  .company .botton .bgg li span {
    color: #273447;
    font-size: 16px;
    font-family: "SourceHanSerifCN-SemiBold";
    display: block;
    text-align: center;
    padding: 25px 0 0px 0;
  
  }
  
  .company .botton .bgg li span:nth-child(2) {
  
    padding: 0;
  
  }
  
  .company .botton .bgg li {
    float: left;
    margin-left: 10px;
    margin-top: 20px;
    cursor: pointer;
    width: 24%;
    position: relative;
  }
  
  .company .botton .bgg li div {
    height: 124px;
    background: #fff;
    text-align: center;
  }
  
  .videoname {
    padding: 0 !important;
  }
  
  .company .c .bgg li i {
    display: inline-block;
    background: url(../Images/company/videoline.png) no-repeat;
    background-size: 100% 100%;
    width: 17px;
    height: 2px;
  }
  
  .company .botton .bgg li img {
    width: 100%;
    height: 180px;
  
  }
  
  .company .botton .bgg li:nth-child(2n+1) img {
    border-top-left-radius: 10px;
    ;
    border-top-right-radius: 10px;
    ;
  }
  
  .company .botton .bgg li:nth-child(2n) img {
    border-bottom-left-radius: 10px;
    ;
    border-bottom-right-radius: 10px;
    ;
  }
  
  
  .company .botton .comp_line p {
    position: absolute;
  }
  
  .company .botton .comp_line p:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 30px;
    color: black;
  }
  
  
  .info_baner .more_lick {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .info_baner .more_lick .more {
    border: none;
    background: #FF2C2B;
    width: 140px;
    height: 40px;
    line-height: 40px;
  }
  
  .info_baner .banner {
    width: 100%;
    background: url(../images/enterpriseDynamics/contact-bg.png) no-repeat;
    background-size: 100% 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .info_baner .info_title {
    position: relative;
  }
  
  .info_baner .info_title .tab_item_detail {
    text-align: center;
  }
  
  .info_baner .info_title .tab_item_detail .more_detail {
    width: 1098px;
    font-size: 14px;
    color: #666;
    margin: 0 auto 60px;
  }
  
  .info_baner .info_title .tab_item_detail p {
    margin: 40px auto;
    width: 1098px;
    font-size: 14px;
    color: #333;
    text-align: left;
    letter-spacing: 1px;
  }
  
  .info_baner .info_title .select_tab {
    margin: 70px auto 68px;
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .info_title .banner span {
    font-family: pmzd;
    font-size: 60px;
      letter-spacing: 5px;
  }
  
  .info_title .banner {
  
    font-size: 60px;
    width: 100%;
    background: url(../images/enterpriseDynamics/contact-bg.png) no-repeat;
    background-size: 100% 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  .info_baner .info_title .select_tab .active {
    color: #273447;
    border: 1px solid #273447;
    border-radius: 48px;
  }
  .zbpfooterwrap i{
    width: 24px;
    height: 24px;
    display: inline-block;
  
  }
  .zbpfooterwrap .lour{
    background: url(../Images/lour.png) no-repeat;
    background-size: 100% 100%;
  }
  .zbpfooterwrap .wangzhi{
    background: url(../Images/wangzhi.png) no-repeat;
    background-size: 100% 100%;
  }
  .zbpfooterwrap .email{
    background: url(../Images/email.png) no-repeat;
    background-size: 100% 100%;
  }
  .info_baner .info_title .select_tab li {
    float: left;
    margin-left: 100px;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    text-align: center;
    width: 118px;
    font-weight: bold;
    height: 38px;
    line-height: 38px;}
  
  .info_baner .info_title .tab_item {
    width: 100%;
  }
  
  .info_baner .info_title .tab_item .tab_ul {
    width: 1200px;
    margin: 0 auto 128px;
  }
  .info_baner .info_title .tab_item .tab_ul li:nth-child(1),.info_baner .info_title .tab_item .tab_ul li:nth-child(2),.info_baner .info_title .tab_item .tab_ul li:nth-child(3){
    margin-top: 0;
  }
  
  .info_baner .info_title .tab_item .tab_ul li {
    width: 380px;
    float: left;
    margin-left: 20px;
    margin-top: 48px;
    height: 290px;
  }
  .info_baner .info_title .tab_item .tab_ul li:nth-child(1),.info_baner .info_title .tab_item .tab_ul li:nth-child(4){
    margin-left: 0;
  }
  
  .info_baner .info_title .tab_item .tab_ul li pointer p.ddd {
    color: #FF2C2B;
    margin-top: 14px;
    font-size: 18px;
    font-weight: normal;
  }
  
  .info_baner .info_title .tab_item .tab_ul .shadow {
    position: absolute;
    font-size: 12px;
    width: 390px;
    height: 390px;
    background: black;
    opacity: 0.5;
    top: 0;
    z-index: 12;
    display: none;
  }
  
  .info_baner .info_title .tab_item .tab_ul .test_hide {
    position: absolute;
    font-size: 12px;
    width: 390px;
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 13;
    top: 0;
    display: none;
  }
  
  .info_baner .info_title .tab_item .tab_ul .test_hide p {
    font-size: 12px;
  }
  
  .info_baner .info_title .tab_item .tab_ul .test_hide p:nth-child(1) {
    font-size: 18px;
  }
  
  .info_baner .info_title .tab_item .tab_ul button {
    border: none;
    background: #FF2C2B;
    color: white;
    width: 120px;
    height: 30px;
  }
  
  .info_baner .info_title .tab_item .tab_ul button a {
    color: white;
  }
  
  .info_baner .info_title .tab_item .tab_ul .abs {
    width: 390px;
    float: left;
    position: relative;
    cursor: pointer;
  }
  
  .info_baner .info_title .tab_item .tab_ul .abs img {
    width: 380px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
  }
  .activeContent a{
    color: #fff;
  }
  .info_baner .info_title p {
    text-align: center;
  }
  
  .info_title p:nth-child(1) {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .info_baner .info_title i {
    background: #fff;
    width: 106px;
    height: 1px;
    display: inline-block;
  }
  
  .info_title p:nth-child(2) {
    color: #ddd;
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .tab_item {
    text-align: center;
    display: none;
  }
  
  .tab_item .tab_ull {
    width: 1400px;
    margin: 0 auto;
  }
  
  .tab_item .tab_ull li {
    float: left;
    width: 580px !important;
    height: 500px !important;
    margin-left: 70px !important;
    margin-top: 36px !important;
    position: relative;
  }
  
  .tab_item .tab_ull li .text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }
  
  .tab_item .tab_ull li img {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  .tab_item:nth-child(1) {
    display: block;
  }
  
  .tab_item .btn_tab img {
    margin-right: 10px;
  }
  
  .text_content {
    width: 1000px;
    margin: 0 auto;
  }
  
  .text_content p {
    margin: 20px 0;
    border-bottom: 1px dashed #ddd;
  }
  
  .text_content span {
    float: left;
    font-size: 14px !important;
  }
  
  .text_content span:nth-child(2) {
    color: #999;
    margin-left: 10px;
  }
  
  .mode {
    position: relative;
    width: 50%;
    float: left;
    height: 100%;
  }
  
  .mode img {
    width: 100% !important;
    height: 70%;
  }
  
  .mode p {
    position: absolute;
  }
  
  .mode p.ff {
    width: 100%;
    height: 100px;
    background: black;
    bottom: 0;
    opacity: 0.6;
    z-index: 999;
  }
  
  .mode p.mode_text {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }
  
  .mode p.mode_text span {
    font-weight: normal !important;
    color: white !important;
    font-size: 20px;
    padding: 0 20px;
  }
  
  .mode p.mode_text span:nth-child(2) {
    float: right;
  }
  
  .mode p.mode_text:nth-child(2) {
    bottom: 100px;
  }
  
  .TalentRecruitment .cvv {
    width: 100%;
    background: #F9F9F9;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item {
    color: black;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat {
    position: relative;
    height: 1300px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat img {
    position: absolute;
    width: 523px;
    height: 514px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat img.a {
    left: 50%;
    top: -30px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat img.b {
    left: 10%;
    top: 480px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat img.c {
    left: 52%;
    top: 49%;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat .acpon {
    background: #F9F9F9;
    border-radius: 4px;
    padding: 0 10px 10px 10px;
    width: 493px;
    height: 384px;
    position: absolute;
    left: 10%;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat .acpon .bnn {
    height: 20px;
    position: absolute;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat .acpon p {
    width: 100%;
    color: #666666;
    text-align: left;
    margin-top: 20px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_plat .acpon p i {
    display: inline-block;
    background: #E83F3E;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_item_title {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_item_title p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_item_title p:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_content .Businessarea_content_item .Businessarea_content_item_title p:nth-child(2) {
    color: #9C9C9C;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_tab {
    height: 60px;
    line-height: 60px;
    width: 800px;
    margin: 0 auto;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_tab .active {
    background: #FF2C2B;
    color: white;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_tab li {
    float: left;
    cursor: pointer;
    color: #666;
    width: 198px;
    position: relative;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
  }
  
  .TalentRecruitment .Businessarea .Businessarea_tab li .d3 {
    margin-left: 10px;
    float: left;
    position: absolute;
    width: 0;
    height: 0;
    border-width: 12px;
    display: none;
    border-style: solid;
    border-color: #FF2C2B transparent transparent transparent;
    bottom: -24px;
    left: 50%;
    transform: translate(-50%);
  }
  
  .TalentRecruitment .contract_online {
    margin-top: 100px;
  }
  
  .TalentRecruitment .contract_online .online {
    text-align: center;
    color: #ff2c2b;
    font-weight: bold;
    font-size: 30px;
  }
  
  .TalentRecruitment .contract_online .contract {
    width: 1300px;
    margin: 0 auto;
  }
  
  .TalentRecruitment .contract_online .contract .contract_online_info,
  .TalentRecruitment .contract_online .contract .contract_online_counter {
    float: left;
    width: 48%;
    margin-left: 2%;
  }
  
  .TalentRecruitment .contract_online .contract .contract_online_info .selected,
  .TalentRecruitment .contract_online .contract .contract_online_counter .selected {
    margin-bottom: 30px;
  }
  
  .TalentRecruitment .contract_online .contract .contract_online_info input,
  .TalentRecruitment .contract_online .contract .contract_online_counter input {
    height: 64px;
    width: 610px;
    border: none;
    background: #f6f6f6;
    border: 1px solid #d8d8d8;
  }
  
  .TalentRecruitment .contract_online .contract p {
    font-size: 16px;
    color: black;
  }
  
  .TalentRecruitment .more {
    text-align: center;
    margin-top: 100px;
  }
  
  .TalentRecruitment .more button {
    border: none;
    background: #ff2c2b;
    text-align: center;
    width: 140px;
    height: 40px;
  }
  
  
  .TalentRecruitment_headder p {
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .CloudPlatform .CloudPlatform img {
    width: 64px;
    height: 53px;
  }
  
  .TalentRecruitment_headder i {
    background: #fff;
    width: 106px;
    height: 1px;
    display: inline-block;
  }
  
  .CloudPlatform {
    position: absolute;
    bottom: 10px;
    left: 45%;
  }
  
  .encode{
      margin-top: 10px;
  }
  
  .encode ul li {
    float: left;
    text-align: center;
    margin-left: 68px;
  }
  
  .encode ul li p {
    margin-top: 10px;
  }
  
  .TalentRecruitment .TalentRecruitment_headder .CloudPlatformDesc {
    font-size: 48px;
    font-weight: bold;
  }
  
  .takeOrigin {
    font-size: 32px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_header {
    position: relative;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_header p {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_header p:nth-child(2) {
    color: #FF2C2B;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    margin-top: 0;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item {
    width: 1200px;
    margin: 90px auto 0;
    padding-bottom: 60px;
    text-align: center;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item a {
    color: #273447;
    cursor: pointer;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion {
    color: black;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center {
    width: 1200px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item {
    float: none;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content {
    background: #ecf2fb;
    display: none;
    padding: 6px 0 0;
  }
   .accordion_content_email {
    padding-bottom: 40px;
    margin: 50px 0 0 32px;
    text-align: left;
  }
  .wrapzhao{
    width: 100%;height: 100%;
  }
  
  .accordion_content_email button {
    width: 124px;
    height: 38px;
    background: #273447;
    border: none;
    border-radius: 20px;
    color: white;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_email span {
    color: #273447;
    margin-left: 10px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_res,
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_req {
    float: left;
    width: 45%;
    margin-left: 3.5%;
    border-right: 1px dashed #999;
    padding:  0;
    text-align: center;
    margin-top: 20px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center p {
    text-align: center;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_res p,
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_req p {
    width: 474px;
    margin: 10px 0;
    color: #999;
    font-size: 16px;
    text-align: left;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_res p:nth-child(1),
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_content .accordion_content_req p:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
    color: black;
  }
  
  .accordion_content_res p {
    text-align: left !important;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item:nth-child(1) {
    background: #ecf2f9;
    height: 60px;
    line-height: 60px;
    color: #273447;
    font-weight: bold;
  }
  
  .TalentRecruitment .TalentRecruitment_headder .banner {
    font-size: 60px;
    width: 100%;
    background: url(../images/enterpriseDynamics/contact-bg.png) no-repeat;
    background-size: 100% 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .TalentRecruitment_headder p {
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .boldRed{
    color: red;
  }
  .TalentRecruitment_headder .banner span {
    font-family: pmzd;
    font-size: 60px;
  }
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_title p {
    float: left;
    width: 14%;
    height: 56px;
    line-height: 60px;
    text-align: center;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .accordion .accordion_center .accordion_item .accordion_title p:nth-child(1) {
    font-weight: bold;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_map {
    text-align: center;
    width: 1200px;
    height: 600px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_map img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_icon {
    width: 1100px;
    margin: 30px auto 0;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_icon .vgg {
    color: #FF2C2B;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-top: 18px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_icon .platform {
    color: #FF2C2B;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_icon .mook {
    width: 275px;
    float: left;
    text-align: center;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item .contract_icon .mook .cicle {
    width: 124px;
    height: 124px;
    margin: 0 auto;
    background: url(../images/contract/gules.png) no-repeat;
    text-align: center;
    line-height: 130px;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item ul {
    width: 1300px;
    margin: 0 auto;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item ul li {
    float: left;
    cursor: pointer;
    margin-left: 20px;
    border-top: 1px solid #eee;
    position: relative;
  }
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item ul li {
    float: left;
    cursor: pointer;
    margin-left: 20px;
    border-top: 1px solid #eee;
    position: relative;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item ul li .abilicity {
    position: absolute;
    top: 50%;
    width: 160px;
    height: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: url(../images/talent/xxxxxx.png);
    color: #fff;
  }
  
  .TalentRecruitment .TalentRecruitment_counter .TalentRecruitment_counter_item ul li .abilicity p {
    text-align: center;
    font-size: 24px;
  }
  
  .contract_sub {
    width: 100%;
    /* margin: 0 auto; */
    height: 60px;
    border: none;
    background: #ff4140;
    font-size: 18px;
  }
  
  .little_acpon {
    width: 507px;
    position: absolute;
    top: 500px;
    left: 52%;
    background: #f9f9f9;
    color: #666;
    padding: 10px;
  }
  
  .little_acpon i {
    display: inline-block;
    background: #E83F3E;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
  
  .Businessarea_content_item_b {
    width: 1200px;
    margin: 0 auto;
  }
  
  .Businessarea_content_item_b .Businessarea_content_item_b_left,
  .Businessarea_content_item_b .Businessarea_content_item_b_right {
    width: 50%;
    float: left;
    position: relative;
  }
  
  .Businessarea_content_item_b .Businessarea_content_item_b_left .item,
  .Businessarea_content_item_b .Businessarea_content_item_b_right .item {
    width: 440px;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0px 3px 5px #f7eaea;
    margin: 100px 0;
  }
  
  .Businessarea_content_item_b .Businessarea_content_item_b_left .item p,
  .Businessarea_content_item_b .Businessarea_content_item_b_right .item p {
    width: 100%;
    margin: 10px 0;
    color: #666;
  }
  
  .Businessarea_content_item_b_right .item {
    margin-left: 100px !important;
  }
  
  .boss {
    height: 500px;
    width: 100%;
  }
  
  .boss ul {
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
  }
  
  .boss ul li {
    width: 330px;
    height: 300px;
    float: left;
    position: relative;
    text-align: center;
    margin-left: 22px;
  }
  
  .boss ul li .cicle {
    position: absolute;
    width: 19px;
    height: 19px;
    bottom: -130px;
    left: 50%;
    transform: translate(-50%);
  }
  
  .boss ul li img {
    box-shadow: -5px 7px 5px #dcd1d1;
    width: 100%;
  }
  
  .boss ul li p {
    text-align: left;
    margin-top: 30px;
    color: #939393;
  }
  
  .bong {
    position: relative;
    height: 742px;
  }
  
  .bong .contrat {
    position: absolute;
    width: 400px;
    right: 8%;
    top: 30%;
  }
  
  .bong .contrat p:nth-child(1) {
    font-size: 34px;
    color: #6C6C6C;
  }
  
  .bong .contrat p:nth-child(2) {
    color: red;
  }
  
  .bong .contrat p:nth-child(2) span:nth-child(1) {
    font-size: 100px;
    font-weight: bold;
  }
  
  .bong .contrat p:nth-child(2) span:nth-child(2) {
    font-size: 24px;
    font-weight: bold;
  }
  
  .pingjia {
    width: 1300px;
    margin: 0 auto;
  }
  
  .pingjia div {
    color: #7A7979;
    font-size: 20px;
    width: 50%;
    text-align: center;
  }
  
  .pingjia div.wuliu p:nth-child(2) {
    font-size: 14px;
  }
  
  .pingjia div:nth-child(2) {
    border-left: 1px solid #eee;
  }
  
  .buiness_tab {
    height: 715px;
    background: #dedede;
  }
  
  .buiness_tab .icon {
    position: absolute;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    text-align: center;
  }
  
  .buiness_tab .icon img:nth-child(2) {
    margin: 10px 0;
  }
  
  .buiness_tab ul {
    width: 1200px;
    height: 715px;
    margin: 0 auto;
  }
  
  .buiness_tab ul li {
    width: 277px;
    height: 404px;
    float: left;
    margin-left: 20px;
    background: red;
    margin-top: 160px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
  }
  
  .buiness_tab ul li:nth-child(1) {
    background: url(../images/Business/bacjd.png);
  }
  
  .buiness_tab ul li:nth-child(2) {
    background: url(../images/Business/iii.png);
  }
  
  .buiness_tab ul li:nth-child(3) {
    background: url(../images/Business/iii.png);
  }
  
  .buiness_tab ul li:nth-child(4) {
    background: url(../images/Business/oo.png);
  }
  
  .buiness_tab ul li:hover {
    transform: scale(1.1);
  }
  
  .buiness_tab ul li:hover div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .buiness_tab ul li:hover button {
    display: block;
  }
  
  .buiness_tab ul li button {
    position: absolute;
    bottom: 60px;
    left: 50%;
    width: 117px;
    height: 36px;
    line-height: 34px;
    margin-left: -58.5px;
    border-radius: 4px;
    border: none;
    background: transparent;
    color: white;
    border: 1px solid #dedede;
    z-index: 99;
    display: none;
  }
  
  .buiness_tab ul li .ghh {
    position: absolute;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    left: 0;
    top: 0;
    background: red;
    opacity: 0.5;
    display: none;
  }
  
  .w1200 {
    margin: 100px auto;
    width: 1200px;
  }
  
  .fr {
    float: right;
  }
  
  .Businessarea_content_item:nth-child(2) .two {
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 16px;
  }
  
  .Businessarea_content_item:nth-child(2) .bcn {
    background: url(../images/vff/ere.png);
    background-size: 100% 100%;
    width: 998px;
    height: 493px;
    margin-bottom: 200px;
  }
  
  .Businessarea_content_item:nth-child(2) .bcn img {
    width: 849px;
    height: 630px;
    position: absolute;
    left: 50%;
    margin-left: -429.5px;
  }
  
  .Businessarea_content_item:nth-child(2) .shijian li {
    width: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #eae7e7;
  }
  
  .Businessarea_content_item:nth-child(2) .shijian li img:nth-child(2) {
    margin: 20px 0;
  }
  
  .Businessarea_content_item:nth-child(2) .shijian li:nth-child(3) {
    border: none;
  }
  
  .Businessarea_content_item:nth-child(2) .shijian li p {
    width: 307px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  
  .Businessarea_content_item:nth-child(2) .mm {
    color: #666;
    margin-top: 10px;
    font-size: 14px !important;
  }
  
  .Businessarea_content_item:nth-child(2) .platform_new_bg {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  .Businessarea_content_item:nth-child(2) .platform_new_bg ul {
    width: 800px;
  }
  
  .Businessarea_content_item:nth-child(2) .platform_new_bg ul li {
    float: left;
    margin-left: 20px;
    width: 236px;
    position: relative;
    height: 266px;
  }
  
  .Businessarea_content_item:nth-child(2) .platform_new_bg ul li .platform_new {
    text-align: center;
    color: #626262;
    font-size: 19px;
    font-weight: bold;
  }
  
  .Businessarea_content_item:nth-child(2) .platform_new_bg ul li .platform_new img {
    margin-right: 10px;
  }
  
  .Businessarea_content_item:nth-child(2) .Download {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    top: 90px;
    color: #626262;
    font-weight: bold;
    font-size: 14px;
  }
  
  .tab3_new {
    text-align: center;
    position: relative;
  }
  
  .tab3_new img {
    width: 585px;
    height: 299px;
  }
  
  .tab3_new p {
    width: 1134px;
    color: #333333;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .rr {
    text-align: center;
  }
  
  .rr img:nth-child(2) {
    margin-top: 100px;
  }
  
  .Case {
    height: 577px;
    background: url(../images/item3/tgb.png) no-repeat;
    background-size: contain;
    width: 100%;
  }
  
  .Case ul {
    width: 1200px;
    margin: 0 auto;
  }
  
  .Case ul li {
    width: 100px;
    float: left;
    margin-left: 160px;
    margin-top: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    background: url(../images/item3/t.png);
  }
  
  .Case ul li:hover {
    background: #ec2f2f;
    border-radius: 50%;
  }
  
  .gttt p {
    margin-top: 12%;
    margin-left: 80px;
    font-size: 18px;
    color: #666;
  }
  
  .fff p {
    font-size: 18px;
    color: #666;
    margin-top: 40px;
  }
  
  .ccc {
    width: 1300px !important;
  }
  
  .ccc img {
    width: 605px;
    height: 181px;
    float: left;
    margin-left: 20px;
  }
  
  .gttt3 .gtt3_text {
    float: left;
    width: 555px;
  }
  
  .gttt3 .gtt3_text p {
    margin: 0;
    margin: 40px 0;
    margin-left: 60px;
    font-size: 15px;
  }
  
  .gttt3 .gtt3_text p i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    display: inline-block;
    margin-left: -14px;
  }
  
  .dig {
    height: 522px;
    background: url(../images/item4/rr.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
  }
  
  .dig img {
    width: 100%;
    height: 100%;
  }
  
  .dig div.poy {
    width: 700px;
    height: 200px;
    position: absolute;
    top: 40%;
    margin-top: -100px;
    left: 50%;
    margin-left: -500px;
  }
  
  .dig div.poy ul li {
    width: 240px;
    height: 50px;
    border-radius: 8px;
    background: white;
    float: left;
    position: relative;
    margin: 30px;
  }
  
  .dig div.poy ul li i {
    font-style: normal;
    background: #E83F3E;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    line-height: 16px;
    color: white;
    border-radius: 50%;
  }
  
  .dig div.poy ul li p {
    color: #666666;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
  }
  
  .dig .people {
    position: absolute;
    width: 318px;
    height: 365px;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  
  .gtg p {
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 16px;
  }
  
  .engine ul {
    width: 900px;
    margin: 0 auto;
  }
  
  .engine ul li {
    float: left;
    width: 293px;
    height: 262px;
    background: url(../images/item4/vd.png) no-repeat;
    background-size: 100% 100%;
    text-align: center;
  }
  
  .engine ul li img {
    width: 59px;
    height: 54px;
    margin-top: 40px;
  }
  
  .engine ul li p {
    width: 147px;
    font-size: 14px;
    color: #999;
    margin: 30px auto;
  }
  
  .ques {
    text-align: center;
  }
  
  .ques img {
    margin-left: 100px;
  }
  
  .ques .bold p {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    margin: 30px 60px;
    color: black;
  }
  
  .ques .bold ul li {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin-top: 10px;
    margin-left: 60px;
  }
  
  .ques .bold ul li i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    display: inline-block;
    margin-right: 10px;
  }
  
  .ques .btn {
    background: url(../images/item4/vfr.png);
    width: 590px;
    height: 380px;
    margin-left: 40px;
  }
  
  .ques .btn p {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    margin: 30px 60px;
    color: black;
  }
  
  .ques .btn ul li {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin-top: 10px;
    margin-left: 60px;
  }
  
  .ques .btn ul li i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    display: inline-block;
    margin-right: 10px;
  }
  
  .Joiningcase_bmg {
    position: relative;
    height: 800px;
  }
  
  .Joiningcase_bmg .Joiningcase {
    background: url(../images/item4/bgt.png) no-repeat;
    height: 564px;
    background-size: 100% 100%;
    text-align: center;
  }
  
  .Joiningcase_bmg .Joiningcase img {
    margin-top: 100px;
  }
  
  .Joiningcase_bmg .Joiningcase p {
    font-weight: bold;
    font-size: 24px;
    color: #FF2C2B;
    width: 341px;
    position: absolute;
    right: 15%;
    top: 68%;
    padding: 20px;
    border: 1px solid #f9f4f4;
    border-radius: 7px;
    box-shadow: 0 0 1px 2px #89849b;
    box-shadow: 0 0 1px 2px #fcfbff;
  }
  
  
  .Businessarea_content_item_title p {
    text-align: center;
    font-size: 18px;
  }
  
  .Businessarea_content_item_title p:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
    color: black;
    ;
  }
  
  .Businessarea_content_item_title p:nth-child(2) {
    color: #9C9C9C;
  }
  
  .gttt4 .gtt3_text {
    float: none;
    width: 1200px;
  }
  
  .linerright {
    background: linear-gradient(to left, #e5e5e6, #afa8a8);
    display: inline-block;
    width: 310px;
    height: 2px;
    position: absolute;
    left: 0;
  }
  
  .linerleft {
    background: linear-gradient(to left, #afa8a8, #e5e5e6);
    display: inline-block;
    width: 310px;
    margin-left: 144px;
    height: 2px;
    position: absolute;
    right: 0;
  }
  
  .lineWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .linerwraptext {
    position: initial !important;
    color: #273447 !important;
    font-size: 34px !important;
    margin: 0 60px !important;
  }
  
  .gttt4 .gtt3_text p {
    text-align: left;
    width: 1220px;
    font-size: 18px;
    color: #8E8E8E;
    margin: 0 auto;
  }
  
  .gttt4 .gtt3_text p:nth-child(1) {
    margin-bottom: 20px;
  }
  
  /*向左*/
  .triangle_border_left {
    background: url(../images/vff/pp.png) no-repeat;
    width: 30px;
    height: 38px;
    color: white;
    background-size: 100% 100%;
    text-align: right;
    line-height: 38px;
    position: absolute;
  }
  
  .triangle_border_left span {
    margin-right: 4px;
  }
  
  .triangle_border_left:nth-child(1) {
    right: 0;
    top: 10%;
  }
  
  .triangle_border_left:nth-child(2) {
    right: 0;
    top: 58%;
  }
  
  .triangle_border_right {
    background: url(../images/vff/lp.png) no-repeat;
    width: 30px;
    height: 38px;
    color: white;
    background-size: 100% 100%;
    line-height: 38px;
    position: absolute;
  }
  
  .triangle_border_right span {
    margin-left: 4px;
  }
  
  .triangle_border_right:nth-child(2) {
    right: -28px;
    top: 20%;
    text-align: left;
  }
  
  .triangle_border_right:nth-child(3) {
    right: -28px;
    top: 38%;
    text-align: left;
  }
  
  .triangle_border_right:nth-child(4) {
    right: -28px;
    top: 50%;
    text-align: left;
  }
  
  .triangle_border_right:nth-child(5) {
    right: -28px;
    top: 78%;
  }
  
  @media only screen and (max-width: 1920px) {
    .cvv {
      font-size: 18px !important;
    }
  }
  
  @media only screen and (min-width: 1440px) {
    .cvv {
      font-size: 16px !important;
    }
  }
  
  .Businessarea_content_item:nth-child(2) .shijian li img:nth-child(1) {
    height: 80px;
  }
  
  .company .info .info_01 {
    top: 60px;
    left: 100px;
  }
  
  .company .info .info_01,
  .company .info .info_02 {
    width: 207px;
    height: 95px;
    cursor: pointer;
    background: url(../images/company/Rectangle23opy.png) no-repeat;
    background-size: 100% 100%;
    color: #91959C;
    font-weight: bold;
    transform: all 1s ease-out;
  }
  
  .company .info .info_02 {
    top: 150px;
    left: 100px;
  }
  
  .company .info .info_01 p,
  .company .info .info_02 p {
    text-align: center;
    height: 95px;
    line-height: 95px;
  }
  
  .water1 {
    height: 170px !important;
  }
  
  .dot2 {
    animation: sploosh3 6.8s cubic-bezier(0.6565, 0.84, 0.44, 1);
  }
  
  .dot3 {
    animation: sploosh3 0.8s cubic-bezier(0.665, 0.84, 0.44, 1);
  }
  
  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }
  
  .third_bg_btn {
    background: none;
    text-align: center !important;
  }
  
  .third_f_item:nth-child(2) {
    position: absolute;
    left: 70%;
    top: -24px;
  }
  
  .swiper-slide_module {
    background-position: center !important;
    background-size: cover !important;
    width: 300px !important;
    height: 300px !important;
    position: relative !important;
  }
  
  .swiper-slide_module img {
    position: absolute;
  }
  
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: none !important;
  }
  
  .bg-full {
    text-align: center;
    font-size: 18px;
    background: #fff;
    float: left;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  
  .swiper-container1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .swiper-container2 {
    overflow: hidden;
  }
  
  .third_bg_btn {
    background: none;
    text-align: center !important;
  }
  
  .third_f_item:nth-child(2) {
    position: absolute;
    left: 70%;
    top: -24px;
  }
  
  .slide_module {
    width: 100%;
    height: 247px;
    background: red;
    position: absolute;
    background: url(../images/jn.png) no-repeat;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .slide_module button {
    border: none;
    background: transparent;
    width: 120px;
    height: 30px;
  }
  
  .slide_module a {
    border: none;
    background: url(../images/tyu.png);
    background-size: cover;
    font-size: 12px;
    width: 100%;
    height: 100%;
    display: inline-block;
    line-height: 26px;
    color: #C00F0F;
  }
  
  .slide_module_text {
    margin: 0 !important;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 16px 0 !important;
  }
  
  .slide_module_text:nth-child(2) {
    font-size: 12px;
    width: 80%;
  }
  
  .full_text {
    font-weight: bold;
  }
  
  .video {
    position: relative;
  }
  
  .close_video {
    position: absolute;
    right: -40px;
    top: -20px;
    width: 40px;
    height: 40px;
    z-index: 999;
    cursor: pointer;
  }
  
  .tabbar {
    position: fixed;
    right: 70px;
    top: 50%;
    transform: translate(0, -50%);
    height: auto;
    z-index: 100;
  }
  
  .tabbar_bg {
    width: 144px;
    background-size: cover;
    height: 330px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 2px #eee;
  }
  
  .tabbar_bg li {
    width: 105px;
    margin-top: 2rem;
    ;
  }
  
  .tabbar_bg p {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }
  
  .tabbar_bg img {
    width: 100%;
    height: 100%;
  }
  
  .tabbar_bg ul {}
  
  .tabbar_icon {
    position: absolute;
    top: 22%;
    transform: translate(0, -50%);
    right: -70px;
    /* display: none; */
  
  }
  
  .tabbar_icon li {
    background: url(../Images/ban/bgs.png) no-repeat;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .tabbar_icon li:nth-child(2) {
    line-height: 2rem;
  }
  
  .tabbar_icon img {
    width: 2.13rem;
    height: 2.5rem;
  }
  
  .tabbar_icon p {
    font-size: 12px;
    color: #fff;
  }
  
  .tabbar_icon .back {
    width: 1.35rem;
    height: 0.88rem;
  }
  
  .trangle .trangleImg {
    width: 674px;
  }
  
  .trangle {
    margin: 100px auto 0;
    width: 1200px;
    text-align: center;
  }
  
  .lineheight {
    height: 1030px; 
    background: #000;
    width: 1px;
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translate(-50%);
  }
  .timeline:before{
      display: inline-block;
      content: '';
      width: 1130px;
      height: 1130px;
      background-color: #F6F7FA;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 145px;
      margin-left: -565px;
      z-index: 0;
  }
  .cicleline{
      width: 16px;
  }
  .cicleline,
  .timeline p {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    z-index: 99;
    color: #999;
  }
  
  .timedesc1,
  .cicleline:nth-child(1) {
    top: 250px !important;
  }
  
  .timedesc2,
  .cicleline:nth-child(2) {
    top: 350px !important;
  }
  
  .timedesc3,
  .cicleline:nth-child(3) {
    top: 450px !important;
  }
  
  .timedesc4,
  .cicleline:nth-child(4) {
    top: 550px !important;
  }
  
  .timedesc5,
  .cicleline:nth-child(5) {
    top: 650px !important;
  }
  
  .timedesc6,
  .cicleline:nth-child(6) {
    top: 750px !important;
  }
  
  .timedesc7,
  .cicleline:nth-child(7) {
    top: 850px !important;
  }
  
  .timedesc8,
  .cicleline:nth-child(8) {
    top: 950px !important;
  }
  
  .lineleft span:nth-child(1) {
    position: absolute !important;
    left: -327px !important;
    color: #273447;
    font-size: 14px;
    border: 1px solid #273447;
    border-radius: 50px;
    background: #FFFFFF;
    padding: 10px;
    display: inline-block;
    text-align: center;
    top: -12px;
  
  }
  
  .lineright span:nth-child(1) {
    position: absolute;
    left: -120px;
    font-size: 36px;
    font-family: "MicrosoftYaHei-Bold";
    top: -16px;
    color: #273447;
    font-weight: bold;
  
  
  }
  
  .lineleft span:nth-child(2) {
    position: absolute !important;
    left: 30px !important;
    font-size: 36px;
    font-family: "MicrosoftYaHei-Bold";
    color: #273447;
    top: -16px;
    font-weight: bold;
  
  }
  
  .lineright span:nth-child(2) {
    position: absolute;
    right: -190px;
    color: #273447;
    font-size: 14px;
    border: 1px solid #273447;
    border-radius: 50px;
    background: #FFFFFF;
    padding: 10px;
    display: inline-block;
    text-align: center;
    top: -12px;
  
  }
  
  .timedesc9,
  .cicleline:nth-child(9) {
    top: 1050px !important;
  }
  
  .timedesc10,
  .cicleline:nth-child(10) {
    top: 1150px !important;
  }
  
  .contentcicle {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .3);
    /* opacity: 0.5; */
    border-radius: 50%;
    position: absolute;
    border: 2px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .contentcicle p {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .position_cicle {
    position: absolute;
    width: 1200px;
    height: 790px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .position_cicle .vv {
    position: absolute;
    left: 175px;
    top: 36px;
  }
  
  .zr {
    position: absolute;
    left: 700px;
    top: -36px;
  }
  
  .wc {
    position: absolute;
    left: 306px;
    top: 70px;
  }
  
  .zb {
    position: absolute;
    top: 318px;
    left: 82px;
  }
  
  .sxx {
    position: absolute;
    bottom: 26px;
    left: 190px;
  }
  
  .ds {
    position: absolute;
    right: 212px;
    top: 108px;
  }
  
  .yj {
    position: absolute;
    bottom: -36px;
    left: 540px;
  }
  
  .aj {
    position: absolute;
    right: 117px;
    bottom: 80px;
  }
  
  .showimg img {
    width: 163px;
    height: 163px;
  }
  
  .showimg {
    position: relative;
    width: 163px;
    height: 163px;
    cursor: pointer;
  }
  
  .showimg .content {
    display: none;
  }
  
  .showimg:hover .content {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 18px;
    width: 163px;
    height: 163px;
    font-weight: bold;
    top: 1px;
    left: 1px;
    min-height: 0 !important;
  }
  
  .platform {
    left: 43%;
    top: 88px;
  }
  
  .food {
    top: 158px;
    right: -984px;
  }
  
  .zbp {
    top: 16%;
    left: 270px;
  }
  
  .businesstitle {
    height: 790px;
    color: #fff;
    position: absolute;
    width: 1200px;
  
  }
  
  .businesstitle .businessdesc {
    position: absolute;
  
  }
  
  .businessdesc i {
    width: 10px;
    height: 10px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-left: 4px;
    box-shadow: 1px 0px 4px 1px #fff;
  }
  
  .showimg div {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 16px;
    width: 163px;
    height: 163px;
    top: 1px;
    left: 1px;
  }

  .info_baner .info_title .tab_item .tab_ul .test_hide p {
    font-size: 12px;
    }

    .contentTitle {
    color: white;
    font-size: 38px;
    font-weight: bold;
    position: relative !important;
    font-size: 18px;
    left: auto;
    top: auto;
    transform: none;
    }

    .news {
    display: none;
    }

    .cvvc {
    height: 390px;
    width: 390px;
    display: flex;
    cursor: pointer;
    }

    .cvvc img {
    position: absolute;
    }

    * {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    }

    #job_box {
    width: 1000px;
    margin: 20px auto;
    }

    #job_list li {
    line-height: 35px;
    clear: both;
    width: 100%;
    border-bottom: 1px solid #ccc;
    }

    #job_list li .job_tip {
    margin: 10px;
    cursor: pointer;
    }

    #job_list li .job_tip span {
    display: block;
    float: left;
    }

    .job_xq {
    display: none;
    overflow: hidden;
    height: 100px;
    }

    .job_xq_content {
    padding-bottom: 30px;
    }

    #search_msg {
    clear: both;
    color: #000
    }

    .ccc {
    border: none;
    background: url(./images/tab/e.png)
    }

    #page {
    width: 100%;
    height: 80px;
    margin: 50px 0;
    }