/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 0. sassCore's style
 */

        html {
        	font-family: sans-serif;
        	/* 1 */
        	-ms-text-size-adjust: 100%;
        	/* 2 */
        	-webkit-text-size-adjust: 100%;
        	/* 2 */
        	overflow-y: scroll;
        	/* 0 */
        	-webkit-overflow-scrolling: touch
        		/* 0 */
        }

        /**
   * 1. Remove default margin
   * 0. sassCore's style.
   */

        body {
        	margin: 0;
        	/* 1 */
        	font-size: 12px;
        	/* 0 */
        	line-height: 2;
        	/* 0 */
        	color: #333;
        	/* 0 */
        	background-color: #fff
        		/* 0 */
        }

        /* HTML5 display definitions
     ========================================================================== */
        /**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */

        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        main,
        nav,
        section,
        summary {
        	display: block;
        }

        /**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   * 3. Correct `inline-block` display in IE 6/7.
   */

        audio,
        canvas,
        progress,
        video {
        	display: inline-block;
        	/* 1 */
        	vertical-align: baseline;
        	/* 2 */
        	*display: inline;
        	/* 3 */
        	*zoom: 1
        		/* 3 */
        }

        /**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */

        audio:not([controls]) {
        	display: none;
        	height: 0;
        }

        /**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
   */

        [hidden],
        template {
        	display: none;
        }

        /* Links
     ========================================================================== */
        /**
   * 1. Remove the gray background color from active links in IE 10.
   * 2. Improve readability when focused and also mouse hovered in all browsers.
   * 0. sassCore's style.
   */

        a {
        	background: transparent;
        	/* 1 */
        	/* 0 */
        	text-decoration: none;
        }

        a:active,
        a:hover {
        	outline: 0
        		/* 2 */
        }

        /* Text-level semantics
     ========================================================================== */
        /**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */

        abbr[title] {
        	border-bottom: 1px dotted;
        }

        /**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */

        b,
        strong {
        	font-weight: bold;
        }

        /**
   * Address styling not present in Safari and Chrome.
   */

        dfn {
        	font-style: italic;
        }

        /**
   * Address styling not present in IE 8/9.
   */

        mark {
        	background: #ff0;
        	color: #000;
        }

        /**
   * Address inconsistent and variable font size in all browsers.
   */

        small {
        	font-size: 80%;
        }

        /**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */

        sub,
        sup {
        	font-size: 75%;
        	line-height: 0;
        	position: relative;
        	vertical-align: baseline;
        }

        sup {
        	top: -0.5em;
        }

        sub {
        	bottom: -0.25em;
        }

        /* Embedded content
     ========================================================================== */
        /**
   * 1. Remove border when inside `a` element in IE 8/9/10.
   * 2. Improve image quality when scaled in IE 7.
   * 0. sassCore's style.
   */

        img {
        	border: 0;
        	/* 1 */
        	vertical-align: middle;
        	/* 0 */
        	-ms-interpolation-mode: bicubic
        		/* 2 */
        }

        /**
   * Correct overflow not hidden in IE 9/10/11.
   */

        svg:not(:root) {
        	overflow: hidden;
        }

        /* Grouping content
     ========================================================================== */
        /**
   * Address differences between Firefox and other browsers.
   */

        hr {
        	box-sizing: content-box;
        	height: 0;
        }

        /**
   * 1. Contain overflow in all browsers.
   * 2. Improve readability of pre-formatted text in all browsers.
   */

        pre {
        	overflow: auto;
        	/* 1 */
        	white-space: pre;
        	/* 2 */
        	white-space: pre-wrap;
        	/* 2 */
        	word-wrap: break-word
        		/* 2 */
        }

        /**
   * 1. Address odd `em`-unit font size rendering in all browsers.
   * 2. Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
   */

        code,
        kbd,
        pre,
        samp {
        	font-family: monospace, monospace;
        	/* 1 */
        	_font-family: 'courier new', monospace;
        	/* 1 */
        	font-size: 1em
        		/* 2 */
        }

        /* Forms
     ========================================================================== */
        /**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
        /**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */

        button,
        input,
        optgroup,
        select,
        textarea {
        	color: inherit;
        	/* 1 */
        	font: inherit;
        	/* 2 */
        	margin: 0
        		/* 3 */
        }

        /**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */

        button {
        	overflow: visible;
        }

        /**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */

        button,
        select {
        	text-transform: none;
        }

        /**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
   *    Known issue: inner spacing remains in IE 6.
   */

        button,
        html input[type="button"],
        input[type="reset"],
        input[type="submit"] {
        	-webkit-appearance: button;
        	/* 2 */
        	cursor: pointer;
        	/* 3 */
        	*overflow: visible
        		/* 4 */
        }

        /**
   * Re-set default cursor for disabled elements.
   */

        button[disabled],
        html input[disabled] {
        	cursor: default;
        }

        /**
   * Remove inner padding and border in Firefox 4+.
   */

        button::-moz-focus-inner,
        input::-moz-focus-inner {
        	border: 0;
        	padding: 0;
        }

        textarea:focus,
        input:focus {
        	outline: none;
        }

        /**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */

        input {
        	line-height: normal;
        }

        /**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   * 3. Remove excess padding in IE 7.
   *    Known issue: excess padding remains in IE 6.
   */

        input[type="checkbox"],
        input[type="radio"] {
        	box-sizing: border-box;
        	/* 1 */
        	padding: 0;
        	/* 2 */
        	*height: 13px;
        	/* 3 */
        	*width: 13px
        		/* 3 */
        }

        /**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */

        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
        	height: auto;
        }

        /**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
   *    (include `-moz` to future-proof).
   */

        input[type="search"] {
        	-webkit-appearance: textfield;
        	/* 1 */
        	/* 2 */
        	box-sizing: content-box;
        }

        /**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration,
        input[type="text"] {
        	-webkit-appearance: none;
        }

        /**
   * Define consistent border, margin, and padding.
   */

        fieldset {
        	border: 1px solid #c0c0c0;
        	margin: 0 2px;
        	padding: 0.35em 0.625em 0.75em;
        }

        /**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   * 3. Correct alignment displayed oddly in IE 6/7.
   */

        legend {
        	border: 0;
        	/* 1 */
        	padding: 0;
        	/* 2 */
        	*margin-left: -7px
        		/* 3 */
        }

        /**
   * 1. Remove default vertical scrollbar in IE 8/9/10/11.
   * 0. sassCore's style
   */

        textarea {
        	overflow: auto;
        	/* 1 */
        	resize: vertical
        		/* 0 */
        }

        /**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */

        optgroup {
        	font-weight: bold;
        }

        /* Tables
     ========================================================================== */
        /**
   * Remove most spacing between table cells.
   */

        table {
        	border-collapse: collapse;
        	border-spacing: 0;
        }

        td,
        th {
        	padding: 0;
        }

        /**
   * Address CSS quotes not supported in IE 6/7.
   */

        q {
        	quotes: none;
        }

        html,
        button,
        input,
        select,
        textarea {
        	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma, 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: 18px;
        }

        h2 {
        	font-size: 15.6px;
        }

        h3 {
        	font-size: 14.04px;
        }

        h4 {
        	font-size: 12px;
        }

        h5,
        h6 {
        	font-size: 10.2px;
        	text-transform: uppercase;
        }

        input:-moz-placeholder,
        textarea:-moz-placeholder {
        	color: #ccc;
        }

        input::-moz-placeholder,
        textarea::-moz-placeholder {
        	color: #ccc;
        }

        input:-ms-input-placeholder,
        textarea:-ms-input-placeholder {
        	color: #ccc;
        }

        input::-webkit-input-placeholder,
        textarea::-webkit-input-placeholder {
        	color: #ccc;
        }

        .clear {
        	clear: both;
        }

        .f-cb {
        	zoom: 1;
        }

        .f-cb:after {
        	display: block;
        	height: 0;
        	clear: both;
        	visibility: hidden;
        	overflow: hidden;
        	content: ".";
        }

        .fl {
        	float: left;
        	display: inline;
        }

        .fr {
        	float: right;
        	display: inline;
        }

        .por {
        	position: relative;
        }

        .poa {
        	position: absolute;
        }

        .pof {
        	position: fixed;
        }

        .poa-f {
        	position: absolute;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        }

        .ovh {
        	overflow: hidden;
        }

        .noselect {
        	-moz-user-select: none;
        	-webkit-user-select: none;
        	-ms-user-select: none;
        }

        .dn {
        	display: none;
        }

        .w-f {
        	width: 100%;
        }

        .h-f {
        	height: 100%;
        }

        /*.loader{
      width: 50px;
      height: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -25px 0 0 -25px;
      font-size: 10px;
      border-top: 1px solid rgba(0,0,0, 0.08);
      border-right: 1px solid rgba(0,0,0, 0.08);
      border-bottom: 1px solid rgba(0,0,0, 0.08);
      border-left: 1px solid rgba(0,0,0, 0.5);
      border-radius: 50%;
      animation: spinner 700ms infinite linear;
  }
  .loader.white{
      border-top: 1px solid rgba(255,255,255, 0.08);
      border-right: 1px solid rgba(255,255,255, 0.08);
      border-bottom: 1px solid rgba(255,255,255, 0.08);
      border-left: 1px solid rgba(255,255,255, 0.5);
  }*/

        .clearfix:before,
        .clearfix:after,
        .dl-horizontal dd:before,
        .dl-horizontal dd:after,
        .container:before,
        .container:after,
        .container-fluid:before,
        .container-fluid:after,
        .row:before,
        .row:after,
        .form-horizontal .form-group:before,
        .form-horizontal .form-group:after,
        .btn-toolbar:before,
        .btn-toolbar:after,
        .btn-group-vertical>.btn-group:before,
        .btn-group-vertical>.btn-group:after,
        .nav:before,
        .nav:after,
        .navbar:before,
        .navbar:after,
        .navbar-header:before,
        .navbar-header:after,
        .navbar-collapse:before,
        .navbar-collapse:after,
        .pager:before,
        .pager:after,
        .panel-body:before,
        .panel-body:after,
        .modal-header:before,
        .modal-header:after,
        .modal-footer:before,
        .modal-footer:after {
        	display: table;
        	content: " ";
        }

        .col-xs-4 {
        	width: 40%;
        	float: left;
        	margin: 0 5%;
        }

        .header {
        	background-color: #fff;
        }

        @-webkit-keyframes spinner {
        	0% {
        		-webkit-transform: rotate(0deg);
        		transform: rotate(0deg);
        	}

        	100% {
        		-webkit-transform: rotate(360deg);
        		transform: rotate(360deg);
        	}
        }

        @keyframes spinner {
        	0% {
        		-webkit-transform: rotate(0deg);
        		transform: rotate(0deg);
        	}

        	100% {
        		-webkit-transform: rotate(360deg);
        		transform: rotate(360deg);
        	}
        }

        body,
        html {
        	font-family: "Microsoft YaHei", "Source Han Sans CN", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
        }

        @font-face {
        	font-family: 'fon1';
        	src: url("fonts/FRAMDCN.eot");
        	src: url("fonts/FRAMDCN.eot") format("embedded-opentype"), url("fonts/FRAMDCN.woff2") format("woff2"), url("fonts/FRAMDCN.woff") format("woff"), url("fonts/FRAMDCN.ttf") format("truetype"), url("fonts/FRAMDCN.svg#FRAMDCN") format("svg");
        }

        @font-face {
        	font-family: 'fon2';
        	src: url("fonts/SPYAGENCY3.eot");
        	src: url("fonts/SPYAGENCY3.eot") format("embedded-opentype"), url("fonts/SPYAGENCY3.woff2") format("woff2"), url("fonts/SPYAGENCY3.woff") format("woff"), url("fonts/SPYAGENCY3.ttf") format("truetype"), url("fonts/SPYAGENCY3.svg#SPYAGENCY3") format("svg");
        }

        @font-face {
        	font-family: 'fon3';
        	src: url("fonts/OPTIAKROGROTESK-COND.eot");
        	src: url("fonts/OPTIAKROGROTESK-COND.eot") format("embedded-opentype"), url("fonts/OPTIAKROGROTESK-COND.woff2") format("woff2"), url("fonts/OPTIAKROGROTESK-COND.woff") format("woff"), url("fonts/OPTIAKROGROTESK-COND.ttf") format("truetype"), url("fonts/OPTIAKROGROTESK-COND.svg#OPTIAKROGROTESK-COND") format("svg");
        }

        body {
        	background: #f7f7f7;
        }

        .w1440 {
        	width: 82%;
        	margin: 0 auto;
        }

        .ovh-h {
        	overflow: hidden;
        	position: fixed;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        }

        .i-banner {
        	height: 100vh;
        	/*background-size:cover !important; */
        	/*height: auto;*/
        	min-height: 600px;
        	overflow: hidden;
        	position: relative;
        }

        .i-banner .swiper-slide {
        	background-size: cover !important;
        }

        .i-banner .swiper-slide img {
        	max-width: 100%;
        	min-height: 600px;
        }

        .i-banner .swiper-slide a {
        	width: 100%;
        	height: 100%;
        	display: block;
        }

        .i-banner .swiper-slide .text {
        	position: absolute;
        	width: 630px;
        	height: 170px;
        	left: 50%;
        	top: 50%;
        	margin-top: -85px;
        	margin-left: -640px;
        	-webkit-transition: all .5s ease;
        	-o-transition: all .5s ease;
        	transition: all .5s ease;
        }

        .i-banner.cur .swiper-slide .text {
        	margin-top: -200px;
        }

        .i-banner .swiper-slide .text .tit-x {
        	font-size: 57px;
        	line-height: 1;
        	margin-bottom: 5px;
        	color: #fff;
        	font-weight: bold;
        	letter-spacing: 3px;
        	text-shadow: 5px 1px 6px rgba(0, 0, 0, 0.5);
        	opacity: 0;
        	transform: translate(0, 40px);
        	-webkit-transition: all .3s .6s;
        	-o-transition: all .3s .6s;
        	transition: all .3s .6s;
        }

        .i-banner .swiper-slide .text .tit-h {
        	font-size: 82px;
        	color: #fff;
        	font-weight: bold;
        	line-height: 1;
        	letter-spacing: 3px;
        	text-shadow: 5px 1px 6px rgba(0, 0, 0, 0.5);
        	opacity: 0;
        	transform: translate(0, 60px);
        	-webkit-transition: all .3s .8s;
        	-o-transition: all .3s .8s;
        	transition: all .3s .8s;
        }

        .i-banner .swiper-slide.swiper-slide-active .text .tit-x,
        .i-banner .swiper-slide.swiper-slide-active .text .tit-h {
        	opacity: 1;
        	transform: translate(0, 0px);
        }

        .i-banner .swiper-pagination.swiper-pagination-bullets {
        	height: auto;
        	position: absolute;
        	right: 0 !important;
        	left: auto;
        	z-index: 5;
        	top: 50%;
        	bottom: auto;
        	width: auto;
        }

        .i-banner .swiper-pagination.swiper-pagination-bullets span {
        	display: block;
        	width: 26px;
        	height: 5px;
        	background: #fff;
        	margin: 0 0 9px 10px !important;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        	cursor: pointer;
        	position: relative;
        	float: none;
        	border-radius: 0;
        	opacity: 1;
        }

        .i-banner .swiper-pagination.swiper-pagination-bullets span.swiper-pagination-bullet-active {
        	background: #0074bc;
        	width: 36px;
        	height: 5px;
        	margin-left: 0 !important;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .mobile-banner .swiper-slide img {
        	width: 100%;
        }

        .bocweb-footer {
        	background: #fff;
        	position: relative;
        	z-index: 3;
        }

        .bocweb-footer .top {
        	padding: 60px 0 45px;
        	border-bottom: 1px solid #f1f1f1;
        }

        .bocweb-footer .f-left {
        	margin-right: 3.5%;
        	width: 45%;
        }

        .bocweb-footer .f-left .li {
        	display: inline-block;
        	margin-right: 30%;
        	float: left;
        	width: 90px;
        }

        .bocweb-footer .f-left .li a {
        	color: #333;
        	line-height: 1.8;
        	font-size: 13px;
        	display: block;
        	-webkit-transition: opacity .8s, color .8s;
        	transition: opacity .8s, color .8s;
        }

        .bocweb-footer .f-left .li a:hover {
        	color: #2dbef0;
        	opacity: .9;
        }

        .bocweb-footer .f-mid {
        	width: 230px;
        	margin-top: 10px;
        }

        .bocweb-footer .f-mid span {
        	font-size: 14px;
        	color: #333;
        	line-height: 25px;
        	width: 40px;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox {
        	width: 180px;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a {
        	width: 25px;
        	height: 25px;
        	padding: 0;
        	margin: 0 13px 0 0;
        	-webkit-transition: opacity .8s;
        	transition: opacity .8s;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a.bds_tsina {
        	background: url(../img/img3.jpg) no-repeat left center;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a.bds_tqq {
        	background: url(../img/img3.jpg) no-repeat -40px center;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a.bds_sqq {
        	background: url(../img/img3.jpg) no-repeat -80px center;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a.bds_weixin {
        	background: url(../img/img3.jpg) no-repeat -115px center;
        }

        .bocweb-footer .f-mid .bdsharebuttonbox a.bds_more {
        	margin-right: 0;
        	background: url(../img/img3.jpg) no-repeat -151px center;
        }

        .bocweb-footer .f-right {
        	width: 315px;
        }

        .bocweb-footer .f-right .text-right {
        	text-align: right;
        	border-bottom: 1px solid #e5e5e5;
        }

        .bocweb-footer .f-right .wleft {
        	width: 170px;
        }

        .bocweb-footer .f-right .wleft .h {
        	font-size: 18px;
        	line-height: 1.2;
        	color: #666;
        }

        .bocweb-footer .f-right .wleft .tit {
        	color: #666;
        	font-size: 24px;
        	font-family: "fon1";
        	line-height: 30px;
        	font-weight: bold;
        }

        .bocweb-footer .f-right .wright {
        	width: 95px;
        	height: 95px;
        }

        .bocweb-footer .f-right .gup {
        	margin-top: 0px;
        }

        .bocweb-footer .f-right .gup a {
        	display: block;
        }

        .bocweb-footer .f-right .gup img {
        	max-width: 100%;
        }

        .bocweb-footer .f-right .gup .su2 {
        	color: #999;
        	line-height: 2;
        }

        .bocweb-footer .f-right .gup .su3 {
        	font-size: 20px;
        	color: #f44a4a;
        	margin-top: 28px;
        	line-height: 1;
        	font-family: "fon2";
        }

        .bocweb-footer .f-right .gup-l .su {
        	font-size: 50px;
        	line-height: 1;
        	color: #f44a4a;
        	font-weight: bold;
        	font-family: "fon2";
        }

        .bocweb-footer .f-right .gup-l .jt {
        	background: url(../img/img3.png) no-repeat left center;
        	width: 11px;
        	height: 9px;
        	display: inline-block;
        }

        .bocweb-footer .bot {
        	padding: 23px 0 40px;
        	position: relative;
        	z-index: 2;
        }

        .bocweb-footer .bot .bot-l {
        	width: 450px;
        }

        .bocweb-footer .bot .wfspan {
        	position: relative;
        }

        .bocweb-footer .bot .fspandiv {
        	width: 100%;
        	border: 1px solid #d5d5d5;
        	position: absolute;
        	left: 0;
        	bottom: 33px;
        	width: 276px;
        	background: #fff;
        	border-radius: 10px;
        	display: none;
        }

        .bocweb-footer .bot .fspandiv a {
        	height: 33px;
        	line-height: 33px;
        	text-indent: 12px;
        	color: #999;
        	border-bottom: 1px solid #d5d5d5;
        	width: 100%;
        	display: block;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .bocweb-footer .bot .fspandiv a:last-child {
        	border-bottom: none;
        }

        .bocweb-footer .bot .fspandiv a:hover {
        	color: #2dbef0;
        }

        .bocweb-footer .bot .fspan {
        	width: 276px;
        	height: 33px;
        	line-height: 33px;
        	color: #999;
        	text-indent: 12px;
        	background: url(../img/img4.png) no-repeat center;
        	cursor: pointer;
        	font-size: 14px;
        }

        .bocweb-footer .bot .ul {
        	margin-left: 25px;
        }

        .bocweb-footer .bot .ul .li {
        	font-size: 13px;
        	line-height: 33px;
        	color: #333;
        	margin-right: 15px;
        }

        .bocweb-footer .bot .ul a {
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .bocweb-footer .bot .ul a:hover {
        	color: #2dbef0;
        }

        .bocweb-footer .bot .bot-r {
        	font-size: 12px;
        	line-height: 33px;
        	color: #999;
        }

        .bocweb-footer .bot .bot-r a {
        	font-size: 12px;
        	line-height: 33px;
        	color: #999;
        	display: inline-block;
        }

        .bocweb-header {
        	padding: 25px 20px;
        	position: absolute;
        	left: 0;
        	top: 0;
        	z-index: 9;
        	width: 100%;
        	box-sizing: border-box;
        	-webkit-transition: all .3s;
        	transition: all .3s;
        	-webkit-transition-delay: .3s;
        	transition-delay: .3s;
        }

        .bocweb-header .boc-logo {
        	width: 173px;
        	height: 50px;
        }

        .bocweb-header .boc-logo a {
        	display: block;
        }

        .bocweb-header .boc-logo img {
        	max-width: 100%;
        	-webkit-transition: all .6s ease-in-out;
        	-o-transition: all .6s ease-in-out;
        	transition: all .6s ease-in-out;
        }

        .bocweb-header .imgb {
        	display: none;
        }

        .bocweb-header .header-l {
        	width: 260px;
        	-webkit-transition: all .5s ease-in-out;
        	-o-transition: all .5s ease-in-out;
        	transition: all .5s ease-in-out;
        }

        .bocweb-header .nav-btn {
        	width: 35px;
        	height: 22px;
        	position: relative;
        	cursor: pointer;
        	margin-top: 12px;
        }

        .bocweb-header .nav-btn .line {
        	display: block;
        	width: 80%;
        	height: 2px;
        	border-radius: 3px;
        	background-color: #fff;
        	position: absolute;
        	left: 0;
        	-webkit-transition: all .4s;
        	transition: all .4s;
        }

        .bocweb-header .nav-btn .line1 {
        	top: 0px;
        	-webkit-transform-origin: left top 0;
        	-ms-transform-origin: left top 0;
        	transform-origin: left top 0;
        }

        .bocweb-header .nav-btn .line2 {
        	top: 10px;
        	width: 100%;
        }

        .bocweb-header .nav-btn .line3 {
        	bottom: 0;
        	-webkit-transform-origin: left bottom 0;
        	-ms-transform-origin: left bottom 0;
        	transform-origin: left bottom 0;
        }

        .bocweb-header .nav-btn.active {
        	-webkit-animation: rotate 0.5s linear 0s;
        	animation: rotate 0.5s linear 0s;
        }

        .bocweb-header .nav-btn.hover .line {
        	left: 6px;
        	background: #000;
        }

        .bocweb-header .header-right {
        	margin-top: 10px;
        }

        .bocweb-header .header-right .search-btn {
        	width: 23px;
        	height: 23px;
        	margin-left: 15px;
        	cursor: pointer;
        	background: url(../img/img5.png) no-repeat center;
        }

        .bocweb-header .language-btn {
        	width: 24px;
        	height: 24px;
        	background: url(../img/img5-1.png) no-repeat right center;
        	background-size: 24px auto;
        	font-size: 24px;
        	color: #fff;
        	position: relative;
        	padding-left: 15px;
        	-webkit-transition: all .3s linear;
        	transition: all .3s linear;
        }

        .bocweb-header .language-btn:before {
        	content: '';
        	position: absolute;
        	width: 1px;
        	height: 14px;
        	background: rgba(255, 255, 255, 0.5);
        	left: 0px;
        	top: 50%;
        	margin-top: -7px;
        }

        .bocweb-header .language-btn:hover {
        	color: #1E7FF0;
        }

        .footer-mobile-mu .sub-menu ul {
        	border-top: 1px solid #dcdcdc;
        	margin-top: 35px;
        }

        .mobile-mu .sub-menu {
        	width: 100%;
        	position: absolute;
        	left: 0;
        	top: 0;
        	z-index: 2;
        	overflow-y: auto;
        }

        .mobile-mu .sub-menu ul {
        	width: 100%;
        }

        .mobile-mu .sub-menu li {
        	border-bottom: 1px solid #dcdcdc;
        	font-size: 16px;
        }

        .mobile-mu .sub-menu .tit {
        	display: block;
        	width: 100%;
        	padding: 0 3%;
        	line-height: 60px;
        	color: #000;
        	position: relative;
        	box-sizing: border-box;
        }

        .mobile-mu .sub-menu .titx {
        	display: block;
        	width: 100%;
        	padding: 0 3%;
        	line-height: 60px;
        	color: #000;
        	position: relative;
        	border-bottom: 1px solid #dcdcdc;
        }

        .mobile-mu .sub-menu .sub-tit:after {
        	content: '';
        	display: block;
        	width: 26px;
        	height: 26px;
        	background: url(../img/ico_03.png) no-repeat center;
        	background-size: 20px auto;
        	position: absolute;
        	right: 3%;
        	top: 15px;
        }

        .mobile-mu .sub-menu .sub-tit.on {
        	background-color: #36bef0;
        	color: #fff;
        }

        .mobile-mu .sub-menu .sub-tit.on:after {
        	background: url(../img/ico_03_h.png) no-repeat center;
        	background-size: 20px auto;
        }

        .mobile-mu .sub-menu .sec-list {
        	line-height: 40px;
        	padding: 10px 4%;
        	display: none;
        }

        .mobile-mu .sub-menu .sec-list p {
        	background: url(../img/ico_04.png) no-repeat left center;
        	background-size: 3px auto;
        	font-size: 14px;
        }

        .mobile-mu .sub-menu .sec-list a {
        	padding-left: 3%;
        	color: #666;
        	display: block;
        }

        .mobile-mu .sub-menu span {
        	font-family: "CALIFR";
        	margin-left: 10px;
        }

        .bocweb-header.on {
        	position: fixed;
        }

        /*.bocweb-header .header-nav{
    padding:25px 20px;
  }
  .bocweb-header .header-right{
    padding:38px 20px;
  }*/

        .bocweb-header.on {
        	padding: 5px 20px;
        	background: rgba(255, 255, 255, .8);
        }

        /*.bocweb-header.on .header-nav{
    background: rgba(255,255,255,.6);
    padding: 5px 20px;
  }
  .bocweb-header.on .header-right{
    background: rgba(255,255,255,.8);
    padding: 18px 20px;
    opacity: 0;
  }*/

        .bocweb-header.on .header-l {
        	width: 230px;
        }

        .bocweb-header.on .boc-logo img {
        	max-width: 85%;
        	margin-top: 4px;
        }

        .bocweb-header.on .header-l .boc-logo .imga {
        	display: none;
        }

        .bocweb-header.on .header-l .boc-logo .imgb {
        	display: block;
        }

        .bocweb-header.on .header-right .search-btn {
        	background: url(../img/img5-2.png) no-repeat center;
        }

        .bocweb-header.on .header-right .language-btn {
        	background: url(../img/img5-3.png) no-repeat right center;
        }

        .bocweb-header.on .header-right .language-btn:before {
        	background: rgba(0, 0, 0, 0.5);
        }

        .bocweb-header.on .nav-btn .line {
        	background: #a5a5a5;
        }

        .bocweb-header.active {
        	background: #fff;
        	/*padding:5px 20px;*/
        	position: fixed;
        	-webkit-transition-delay: .3s;
        	transition-delay: .3s;
        }

        .bocweb-header.active .header-l .boc-logo .imga {
        	display: none;
        }

        .bocweb-header.active .header-l .boc-logo .imgb {
        	display: block;
        }

        .bocweb-header.active .nav-btn .line {
        	background: #a5a5a5;
        }

        .bocweb-header.active .nav-btn .line1 {
        	-webkit-transform: rotate(45deg);
        	-ms-transform: rotate(45deg);
        	transform: rotate(45deg);
        }

        .bocweb-header.active .nav-btn .line2 {
        	opacity: 0;
        }

        .bocweb-header.active .nav-btn .line3 {
        	-webkit-transform: rotate(-45deg);
        	-ms-transform: rotate(-45deg);
        	transform: rotate(-45deg);
        }

        .bocweb-header.active .header-right .search-btn {
        	background: url(../img/img5-2.png) no-repeat center;
        }

        .bocweb-header.active .header-right .language-btn {
        	background: url(../img/img5-3.png) no-repeat right center;
        }

        .bocweb-header.active .header-right .language-btn:before {
        	background: rgba(0, 0, 0, 0.5);
        }

        .meun-nav {
        	width: 100%;
        	height: calc(100% - 100px);
        	position: fixed;
        	left: 0;
        	top: 100px;
        	background: #e5e5e5;
        	z-index: 9;
        	/*transform: scale3d(0,0,0);
    opacity: 0;*/
        	display: none;
        }

        .meun-nav .close {
        	background: url(../img/close-icon.svg) no-repeat center;
        	position: absolute;
        	right: 0px;
        	top: 0px;
        	z-index: 10;
        	box-sizing: border-box;
        	width: 40px;
        	height: 40px;
        	-webkit-transition: -webkit-transform .25s ease;
        	transition: transform .25s ease;
        	cursor: pointer;
        }

        .meun-nav .w1440 {
        	padding-top: 6%;
        }

        .meun-nav .imgbox {
        	width: 37.5%;
        	float: right;
        	margin-top: 45px;
        }

        .meun-nav .imgbox .img,
        .meun-nav .imgbox img {
        	width: 100%;
        }

        .meun-nav .imgbox .text {
        	margin-top: 15px;
        }

        .meun-nav .imgbox .text .h {
        	font-size: 20px;
        	line-height: 1.5;
        	color: #333;
        	margin-bottom: 5px;
        }

        .meun-nav .imgbox .text .p {
        	font-size: 14px;
        	line-height: 1.5;
        	color: #666;
        }

        .meun-nav .nav-list {
        	width: 44%;
        	float: left;
        }

        .meun-nav .nav-list .ul {
        	width: 50%;
        	position: relative;
        }

        .meun-nav .nav-list .ul:before {
        	content: '';
        	position: absolute;
        	right: 0;
        	top: 50%;
        	width: 1px;
        	margin-top: -210px;
        	height: 450px;
        	background: #cbcbcb;
        }

        .meun-nav .nav-list .nav-li {
        	width: 50%;
        	position: relative;
        	margin-top: 45px;
        }

        .meun-nav .nav-list .nav-li .sub-li {
        	position: absolute;
        	left: 0;
        	top: 0;
        	opacity: 0;
        	visibility: hidden;
        	width: 100%;
        }

        .meun-nav .nav-list .nav-li .sub-li.active {
        	opacity: 1;
        	visibility: visible;
        }

        .meun-nav .nav-list .nav-li a {
        	display: block;
        	text-indent: 50%;
        	font-size: 18px;
        	margin-bottom: 5px;
        	color: #333;
        	line-height: 1.8;
        	cursor: pointer;
        	-webkit-transition: all .35s ease;
        	transition: all .35s ease;
        	-webkit-transform: translate(-20px, 0);
        	-ms-transform: translate(-20px, 0);
        	transform: translate(-20px, 0);
        	opacity: 0;
        }

        .meun-nav .nav-list .nav-li a:hover {
        	color: #2dbef0;
        	padding-left: 5px;
        }

        .meun-nav .nav-list .nav-li a.cur {
        	-webkit-transform: translate(0, 0);
        	-ms-transform: translate(0, 0);
        	transform: translate(0, 0);
        	opacity: 1;
        }

        .meun-nav .ul .li-index {
        	font-size: 14px;
        	line-height: 1.8;
        	color: #333;
        	margin-bottom: 18px;
        	display: block;
        	-webkit-transition: all .3s;
        	transition: all .3s;
        	cursor: pointer;
        }

        .meun-nav .ul .li-index:hover {
        	color: #2dbef0;
        }

        .meun-nav .ul .li {
        	display: block;
        	-webkit-box-align: center;
        	-webkit-align-items: center;
        	-ms-flex-align: center;
        	align-items: center;
        	overflow: hidden;
        	overflow: visible !important;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	font-size: 30px;
        	line-height: 1.8;
        	-webkit-transition: color .2s ease;
        	transition: color .2s ease;
        	cursor: pointer;
        	color: #000;
        	position: relative;
        	-webkit-transition: padding-left .35s ease, text-indent .35s ease, color .35s;
        	transition: padding-left .35s ease, text-indent .35s ease, color .35s;
        }

        .meun-nav .ul .li:before {
        	content: "";
        	position: absolute;
        	width: 0;
        	left: 0;
        	top: 50%;
        	margin-top: -1px;
        	left: 0;
        	height: 2px;
        	background-color: #2dbef0;
        	-webkit-transition: width .35s ease;
        	transition: width .35s ease;
        }

        .meun-nav .ul .li:hover,
        .meun-nav .ul .li.cur {
        	color: #2dbef0;
        	padding-left: 30px;
        	text-indent: 10px;
        }

        .meun-nav .ul .li:hover:before,
        .meun-nav .ul .li.cur:before {
        	width: 30px;
        }

        .search-alert {
        	position: fixed;
        	z-index: 100;
        	background-color: #222222;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        	display: none;
        }

        .search-alert .close {
        	display: block;
        	width: 30px;
        	height: 30px;
        	background: url(../img/img5-4.png) no-repeat center;
        	position: absolute;
        	top: 38px;
        	right: 2.6%;
        	cursor: pointer;
        	-webkit-transition: -webkit-transform 0.3s ease 0s;
        	transition: transform 0.3s ease 0s;
        }

        .search-alert .cent-form {
        	position: absolute;
        	width: 94.8%;
        	left: 2.6%;
        	top: 50%;
        	height: 124px;
        	margin-top: -63px;
        	border-bottom: 1px solid #515151;
        }

        .search-alert .cent-form .tex {
        	border: none;
        	font-size: 66px;
        	height: 124px;
        	line-height: 124px;
        	text-align: center;
        	width: 100%;
        	box-sizing: border-box;
        	color: #555;
        	background: none;
        	padding-left: 88px;
        	padding-right: 80px;
        	background: url(../img/img5.png) no-repeat 35px 60px;
        }

        .search-alert .cent-form .sub-butn {
        	border: none;
        	height: 100px;
        	margin-top: 24px;
        	font-size: 24px;
        	line-height: 100px;
        	color: #555;
        	text-align: right;
        	background: none;
        	position: absolute;
        	right: 0;
        	top: 0;
        	width: 100px;
        	text-align: center;
        }

        .search-alert .close:hover {
        	-webkit-transform: rotate(90deg);
        	-ms-transform: rotate(90deg);
        	transform: rotate(90deg);
        }

        .w1300 {
        	width: 1300px;
        	margin: 0 auto;
        	position: relative;
        	display: inline-block;
        }

        .i-lista {
        	width: 100%;
        	position: absolute;
        	bottom: 40px;
        	text-align: center;
        	z-index: 3;
        }

        .i-lista .n-list {
        	padding: 35px;
        	width: 100%;
        	box-sizing: border-box;
        }

        .i-lista .list-box {
        	width: 100%;
        	height: 390px;
        	box-sizing: border-box;
        	background: rgba(0, 115, 188, .8);
        	margin-bottom: 8px;
        	text-align: left;
        	position: absolute;
        	bottom: 60px;
        	display: none;
        }

        .i-lista .list-box .list {
        	position: absolute;
        	opacity: 0;
        	-webkit-transform: translateY(20px);
        	-moz-transform: translateY(20px);
        	visibility: hidden;
        	left: 0;
        	top: 0;
        	width: 100%;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .i-lista .list-box .list.active {
        	opacity: 1;
        	-webkit-transform: translateY(0px);
        	-moz-transform: translateY(0px);
        	visibility: visible;
        }

        .i-lista .list-box .list1 .img {
        	width: 26%;
        	float: left;
        }

        .i-lista .list-box .list1 .img img {
        	width: 100%;
        }

        .i-lista .list-box .list1 .p-text {
        	width: 68%;
        	float: right;
        	height: 305px;
        }

        .i-lista .list-box .list1 .h {
        	font-size: 45px;
        	line-height: 1;
        	margin-bottom: 10px;
        	margin-top: 13px;
        	color: #fff;
        }

        .i-lista .list-box .list1 .p {
        	font-size: 16px;
        	line-height: 28px;
        	margin-bottom: 40px;
        	color: #fff;
        	width: 90%;
        }

        .i-lista .list-box .list2 .n-list {
        	padding: 50px 35px;
        }

        .i-lista .list-box .list2 .carousel {
        	overflow: hidden;
        	width: 100%;
        }

        .i-lista .list-box .list2 .newsli {
        	display: block;
        	padding: 0 40px 0 0;
        }

        .i-lista .list-box .list2 .time {
        	font-size: 12px;
        	color: #fff;
        	line-height: 1.5;
        	margin-bottom: 10px;
        	opacity: .7;
        }

        .i-lista .list-box .list2 .h {
        	font-size: 15px;
        	color: #fff;
        	line-height: 22px;
        	height: 44px;
        	margin-bottom: 25px;
        	display: -webkit-box;
        	-webkit-box-orient: vertical;
        	-webkit-line-clamp: 2;
        	overflow: hidden;
        }

        .i-lista .list-box .list2 .img {
        	overflow: hidden;
        }

        .i-lista .list-box .list2 .img img {
        	width: 100%;
        	-webkit-transition: opacity 1s, -webkit-transform 1s;
        	transition: opacity 1s, transform 1s;
        }

        .i-lista .list-box .list2 .newsli:hover .img img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        	opacity: .8;
        }

        .i-lista .ul {
        	width: 100%;
        }

        .i-lista .ul .li {
        	width: 24.5%;
        	margin-right: .661%;
        	height: 60px;
        	line-height: 60px;
        	float: left;
        	background: #fff;
        	font-size: 16px;
        	color: #333;
        	padding: 0 35px;
        	cursor: pointer;
        	box-sizing: border-box;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        	border-top: 1px solid #fff;
        }

        .i-lista .ul .li:nth-child(4n) {
        	margin-right: 0;
        }

        .i-lista .ul .li:hover,
        .i-lista .ul .li.active {
        	background: #2dbef0;
        	height: 68px;
        	margin-top: -8px;
        	border-top: 1px solid #0894c4;
        }

        .i-lista .ul .li:hover span,
        .i-lista .ul .li.active span {
        	color: #fff;
        }

        .i-lista .ul .li:hover .img .img1,
        .i-lista .ul .li.active .img .img1 {
        	opacity: 0;
        	-webkit-transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        	transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        }

        .i-lista .ul .li:hover .img .img2,
        .i-lista .ul .li.active .img .img2 {
        	opacity: 1;
        	-webkit-transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        	transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        }

        .i-lista .ul .li span {
        	display: inline-block;
        	float: left;
        	color: #333;
        }

        .i-lista .ul .li .img {
        	width: 45px;
        	height: 45px;
        	margin-top: 7.5px;
        	position: relative;
        	float: left;
        	margin-right: 5px;
        	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
        	transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
        }

        .i-lista .ul .li .img img {
        	max-width: 100%;
        }

        .i-lista .ul .li .img .img1 {
        	-webkit-transform-origin: left center;
        	-ms-transform-origin: left center;
        	transform-origin: left center;
        	-webkit-transition: all 0.5s;
        	transition: all 0.5s;
        	position: absolute;
        	left: 50%;
        	top: 0;
        	opacity: 1;
        	-webkit-transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        	transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        	margin-left: -22px;
        }

        .i-lista .ul .li .img .img2 {
        	position: absolute;
        	left: 50%;
        	margin-left: -22px;
        	top: 0;
        	opacity: 0;
        	-webkit-transform-origin: right center;
        	-ms-transform-origin: right center;
        	transform-origin: right center;
        	-webkit-transition: all 0.5s;
        	transition: all 0.5s;
        	-webkit-transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        	transition: 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
        }

        .pa100 {
        	padding-bottom: 100px;
        }

        .n-videopage .page-header {
        	border-bottom: none;
        	text-align: center;
        }

        .n-videopage .video-box {
        	width: 100%;
        	height: auto;
        	overflow: hidden;
        	cursor: pointer;
        	background: #000;
        	position: relative;
        }

        .n-videopage .video-box .video {
        	width: 100%;
        	height: 100%;
        	opacity: 1;
        	visibility: visible;
        	position: relative;
        	z-index: 1;
        	-webkit-transition: all 0.8s;
        	transition: all 0.8s;
        }

        .n-videopage .video-box .video.cur {
        	opacity: 0;
        	visibility: hidden;
        }

        .n-videopage .video-box video {
        	width: 100%;
        	max-height: 620px;
        	height: auto;
        }

        .n-videopage .video-box .btnx {
        	width: 91px;
        	height: 91px;
        	position: absolute;
        	left: 50%;
        	top: 50%;
        	margin-top: -45.5px;
        	margin-left: -45.5px;
        	z-index: 3;
        	-webkit-transform: scale(1);
        	-ms-transform: scale(1);
        	transform: scale(1);
        	opacity: 1;
        	-webkit-transition: all 0.8s;
        	transition: all 0.8s;
        }

        .n-videopage .video-box .imga {
        	width: 100%;
        	height: 100%;
        	position: absolute;
        	left: 0;
        	top: 0;
        	z-index: 2;
        	-webkit-transform: translate(0, 0);
        	-ms-transform: translate(0, 0);
        	transform: translate(0, 0);
        	opacity: 1;
        	-webkit-transition: all 0.8s;
        	transition: all 0.8s;
        }

        .n-videopage .video-box.cur .btnx {
        	-webkit-transform: scale(0.6);
        	-ms-transform: scale(0.6);
        	transform: scale(0.6);
        	-webkit-transition-delay: 0.2s;
        	transition-delay: 0.2s;
        	opacity: 0;
        	visibility: hidden;
        }

        .n-videopage .video-box.cur .imga {
        	-webkit-transform: translate(0, 20px);
        	-ms-transform: translate(0, 20px);
        	transform: translate(0, 20px);
        	-webkit-transition-delay: 0.5s;
        	transition-delay: 0.5s;
        	opacity: 0;
        	visibility: hidden;
        }

        .n-videopage .p {
        	font-size: 18px;
        	line-height: 1.2;
        	padding: 30px 0;
        	color: #333;
        	text-indent: 50px;
        	background: #fff;
        }

        .n-news a {
        	display: block;
        }

        .n-news .ul .li {
        	width: 31.3%;
        	box-sizing: border-box;
        	margin-right: 3%;
        	margin-bottom: 3%;
        	float: left;
        	overflow: hidden;
        	position: relative;
        	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        }

        .n-news .ul .li:hover {
        	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        	-webkit-transition: all 0.5s 0s cubic-bezier(0.86, 0.17, 1, 1);
        	transition: all 0.5s 0s cubic-bezier(0.86, 0.17, 1, 1);
        }

        .n-news .ul .li:nth-child(3n) {
        	margin-right: 0;
        }

        .n-news .ul .li:hover .img img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        .n-news .ul .bot {
        	position: relative;
        }

        .n-news .ul .li .img {
        	overflow: hidden;
        	width: 100%;
        }

        .n-news .ul .li .img img {
        	width: 100%;
        	max-width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-news .ul .li .p-text {
        	padding: 28px;
        	background: #fff;
        }

        .n-news .ul .li .h {
        	font-size: 18px;
        	color: #000;
        	line-height: 26px;
        	height: 52px;
        	overflow: hidden;
        	margin-bottom: 10px;
        }

        .n-news .ul .li .p {
        	font-size: 14px;
        	color: #666;
        	line-height: 24px;
        	height: 48px;
        	overflow: hidden;
        	margin-bottom: 12px;
        }

        .n-news .ul .bot {
        	border-top: 1px solid #e5e5e5;
        	background: #fff;
        	padding: 16px 20px;
        }

        .n-news .ul .more {
        	font-size: 14px;
        	color: #b7b7b7;
        	line-height: 22px;
        	position: relative;
        	z-index: 2;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-news .ul .time {
        	font-size: 14px;
        	color: #b7b7b7;
        	line-height: 22px;
        	font-family: "Arial";
        	position: relative;
        	z-index: 2;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-news .dlbox {
        	background: #fff;
        	margin-bottom: 20px;
        }

        .n-news .dlbox .dd {
        	width: 540px;
        }

        .n-news .dlbox .dd img {
        	width: 100%;
        }

        .n-news .dlbox .dt {
        	width: calc(100% - 540px);
        	padding: 64px 6%;
        	box-sizing: border-box;
        }

        .n-news .dlbox .dt .h {
        	font-size: 22px;
        	line-height: 32px;
        	margin-bottom: 18px;
        	color: #333;
        	font-weight: bold;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .n-news .dlbox .dt .p {
        	font-size: 14px;
        	color: #666;
        	line-height: 28px;
        	height: 84px;
        	overflow: hidden;
        	margin-bottom: 45px;
        }

        .n-news .dlbox .dt .ex-more {
        	font-size: 14px;
        	color: #fff;
        	background: #36bef0;
        	width: 145px;
        	height: 40px;
        	line-height: 40px;
        	border-radius: 0;
        }

        .n-news .dlbox .dt .ex-more:hover::after {
        	right: 30px;
        }

        .n-news .ul-two .li {
        	padding: 40px 0;
        	border-bottom: 1px solid #dedede;
        }

        .n-news .ul-two .li:hover .li-r img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        .n-news .ul-two .li:hover .li-l .h {
        	color: #36bef0;
        }

        .n-news .ul-two .li-l {
        	width: calc(100% - 300px);
        }

        .n-news .ul-two .li-l .h {
        	font-size: 18px;
        	line-height: 24px;
        	width: calc(100% - 90px);
        	color: #333;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	margin-bottom: 15px;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-news .ul-two .li-l .time {
        	margin-left: 15px;
        	font-size: 14px;
        	color: #666;
        	line-height: 18px;
        }

        .n-news .ul-two .li-l .p {
        	font-size: 14px;
        	line-height: 28px;
        	color: #666;
        	height: 56px;
        	overflow: hidden;
        }

        .n-news .ul-two .li-r {
        	width: 190px;
        	overflow: hidden;
        }

        .n-news .ul-two .li-r img {
        	width: 100%;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        }

        .n-info-two {
        	margin-top: 80px;
        }

        .n-info-two .infobox {
        	padding: 70px 120px;
        	background: #fff;
        	box-sizing: border-box;
        	width: 100%;
        	min-height: 600px;
        }

        .n-info-two .infobox .info-top {
        	border-bottom: 1px solid #e5e5e5;
        	padding-bottom: 18px;
        	text-align: left;
        }

        .n-info-two .infobox .info-top .h {
        	font-size: 24px;
        	line-height: 36px;
        	color: #333;
        	text-align: center;
        	width: 80%;
        	margin: 0 auto 35px;
        }

        .n-info-two .infobox .info-top .time {
        	color: #999;
        	font-size: 14px;
        	line-height: 24px;
        	padding-left: 25px;
        	background: url(../img/img8.png) no-repeat left center;
        	display: block;
        	margin: 0 auto;
        	width: 100px;
        }

        .n-info-two .infobox .text {
        	padding: 55px 0;
        	font-size: 14px;
        	color: #666;
        	line-height: 28px;
        	border-bottom: 1px solid #e5e5e5;
        }

        .n-info-two .infobox .text img {
        	max-width: 100%;
        	display: block;
        	margin: 0 auto;
        }

        .n-info-two .infobox .bot {
        	padding-top: 45px;
        }

        .n-info-two .infobox .bot-l {
        	width: 70%;
        }

        .n-info-two .infobox .bot-l span {
        	font-size: 14px;
        	line-height: 28px;
        	color: #666;
        	display: block;
        }

        .n-info-two .infobox .bot-l span a {
        	color: #666;
        	width: 95%;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	display: inline-block;
        	-webkit-transition: all 0.5s 0s cubic-bezier(0.86, 0.5, 1, 1);
        	transition: all 0.5s 0s cubic-bezier(0.86, 0.5, 1, 1);
        }

        .n-info-two .infobox .bot-l span a:hover {
        	color: #36bef0;
        }

        .n-info-two .infobox .bot-r {
        	width: 60px;
        }

        .n-info-two .infobox .bot-r a {
        	display: block;
        	text-align: left;
        	color: #333;
        	font-size: 14px;
        	-webkit-transition: all 0.8s ease;
        	transition: all 0.8s ease;
        	padding-right: 25px;
        	background: url(../img/img9.png) no-repeat right top;
        }

        .n-info-two .infobox .bot-r a:hover {
        	color: #36bef0;
        	background: url(../img/img9.png) no-repeat right bottom;
        }

        .sreach-box {
        	margin: 60px 0 70px;
        	height: 70px;
        	box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.1);
        	background: #fff;
        	position: relative;
        	z-index: 1;
        }

        .sreach-box label {
        	width: 100%;
        	height: 70px;
        	display: block;
        }

        .sreach-box .text {
        	width: 1000px;
        	border: none;
        	background: none;
        	line-height: 70px;
        	height: 70px;
        	color: #666;
        	text-indent: 10px;
        	font-weight: normal;
        }

        .sreach-box .submit {
        	height: 70px;
        	width: 85px;
        	background: url(../img/img5-2.png) no-repeat center center;
        	border: none;
        	position: relative;
        	z-index: 12;
        }

        .n-inestor .ul,
        .n-inestor .li {
        	width: 100%;
        }

        .n-inestor .ul .li {
        	padding: 35px 40px;
        	box-sizing: border-box;
        	border-bottom: 1px solid #e5e5e5;
        	background: #fff;
        	line-height: 26px;
        	position: relative;
        }

        .n-inestor .ul .li .p {
        	font-size: 18px;
        	color: #666;
        	width: calc(100% - 150px);
        	padding-left: 40px;
        	box-sizing: border-box;
        	background: url(../img/img11.png) no-repeat left 5px;
        }

        .n-inestor .ul .li .p p {
        	margin-bottom: 0;
        }

        .n-inestor .ul .li .time {
        	font-size: 14px;
        	color: #999;
        }

        .n-inestor .ul-two .li {
        	width: 22%;
        	margin-right: 3.5%;
        	margin-bottom: 3.5%;
        	float: left;
        }

        .n-inestor .ul-two .li:nth-child(4n) {
        	margin-right: 0;
        }

        .n-inestor .ul-two .li:hover .h {
        	color: #36bef0;
        }

        .n-inestor .ul-two .img {
        	overflow: hidden;
        	margin-bottom: 20px;
        }

        .n-inestor .ul-two .img img {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s ease;
        	transition: all .8s ease;
        }

        .n-inestor .ul-two .bot {
        	background: url(../img/img11.png) no-repeat right 5px;
        }

        .n-inestor .ul-two .h {
        	font-size: 18px;
        	line-height: 22px;
        	margin-bottom: 5px;
        	color: #000;
        	width: calc(100% - 35px);
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	-webkit-transition: all .8s ease;
        	transition: all .8s ease;
        }

        .n-inestor .ul-two .time {
        	font-size: 14px;
        	line-height: 1.5;
        	color: #666;
        }

        .n-personnel .page-header {
        	padding-top: 40px;
        	margin-top: 0;
        }

        .n-personnel .lista {
        	background: #fff;
        	padding-bottom: 80px;
        }

        .n-personnel .lista .dlbox {
        	background: #fff;
        	margin-bottom: 20px;
        	margin-top: 40px;
        }

        .n-personnel .lista .dlbox .dd {
        	width: 50%;
        	height: 460px;
        }

        .n-personnel .lista .dlbox .dd img {
        	width: 100%;
        }

        .n-personnel .lista .dlbox .dt {
        	width: 50%;
        	height: 460px;
        	padding: 80px 5%;
        	box-sizing: border-box;
        	border: 1px solid #f0f0f0;
        }

        .n-personnel .lista .dlbox .dt .h {
        	font-size: 34px;
        	line-height: 34px;
        	margin-bottom: 10px;
        	color: #333;
        	font-weight: bold;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .n-personnel .lista .dlbox .dt .y {
        	font-size: 18px;
        	color: #999;
        	line-height: 24px;
        	margin-bottom: 15px;
        	text-transform: capitalize;
        }

        .n-personnel .lista .dlbox .dt .line {
        	width: 25px;
        	height: 2px;
        	background: #b2b2b2;
        	display: block;
        }

        .n-personnel .lista .dlbox .dt .p {
        	margin-top: 20px;
        	font-size: 16px;
        	color: #666;
        	line-height: 28px;
        }

        .n-personnel .listb {
        	padding: 80px 0 0;
        }

        /*.listb .line{
    display:none;
  }*/

        .listb .line div {
        	font-size: 16px;
        	color: #333;
        	line-height: 1.7em;
        }

        .n-personnel .listb .li-list {
        	width: 23%;
        	margin-right: 2.6%;
        	float: left;
        	background: #fff;
        }

        .n-personnel .listb .li-list:nth-child(4n) {
        	margin-right: 0;
        }

        .n-personnel .listb .li-list .img {
        	overflow: hidden;
        }

        .n-personnel .listb .li-list .img img {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-personnel .listb .li-list:hover .img img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        .n-personnel .listb .p-text {
        	width: 100%;
        	padding: 25px 30px;
        	box-sizing: border-box;
        }

        .n-personnel .listb .p-text .h {
        	font-size: 18px;
        	line-height: 30px;
        	padding-bottom: 5px;
        	margin-bottom: 15px;
        	border-bottom: 1px solid #e5e5e5;
        }

        .n-personnel .listb .p-text .spdiv {
        	height: 100px;
        }

        .n-personnel .listb .p-text .sp {
        	font-size: 14px;
        	line-height: 1.8;
        	color: #999;
        	padding-left: 15px;
        	background: url(../img/img13.jpg) no-repeat left 8px;
        }

        .n-personnel .listd {
        	background: #fff;
        	padding: 80px 0;
        }

        .n-personnel .listd .dlbox {
        	background: #fff;
        	margin-bottom: 20px;
        }

        .n-personnel .listd .dlbox .dd {
        	width: 50%;
        	height: 460px;
        }

        .n-personnel .listd .dlbox .dd img {
        	width: 100%;
        }

        .n-personnel .listd .dlbox .dt {
        	width: 50%;
        	height: 460px;
        	padding: 80px 5%;
        	box-sizing: border-box;
        	border: 1px solid #f0f0f0;
        }

        .n-personnel .listd .dlbox .dt .h {
        	font-size: 30px;
        	line-height: 30px;
        	margin-bottom: 10px;
        	color: #333;
        	font-weight: bold;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .n-personnel .listd .dlbox .dt .y {
        	font-size: 18px;
        	color: #999;
        	line-height: 24px;
        	margin-bottom: 15px;
        	text-transform: capitalize;
        }

        .n-personnel .listd .dlbox .dt .line {
        	width: 25px;
        	height: 2px;
        	background: #b2b2b2;
        	display: block;
        }

        .n-personnel .listd .dlbox .dt .p {
        	margin-top: 20px;
        	font-size: 14px;
        	color: #666;
        	line-height: 28px;
        }

        /*.n-personnel .listd span {
    background: url(../img/img12.png) no-repeat center;
    width: 48px;
    height: 48px;
    display: inline-block;
  }
  .n-personnel .listd .swiper-button-prev {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 0%;
    top: 50%;
    margin-top: -24px;
    background: #f5f3f1;
  }
  .n-personnel .listd .swiper-button-next {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 50%;
    top: 50%;
    margin-top: -24px;
    background: #f5f3f1;
  }
  .n-personnel .listd .swiper-button-next span {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }*/

        .n-personnel .listc {
        	padding: 70px 0;
        }

        .n-personnel .listc .li-list {
        	width: 32%;
        	margin-right: 2%;
        	float: left;
        	background: #fff;
        }

        .n-personnel .listc .li-list:nth-child(3n) {
        	margin-right: 0;
        }

        .n-personnel .listc .li-list .img {
        	overflow: hidden;
        }

        .n-personnel .listc .li-list .img img {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        /*.n-personnel .listc .li-list:hover .img img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }*/

        .n-personnel .listc .h {
        	font-size: 18px;
        	line-height: 24px;
        	padding: 28px 0;
        	border-top: 1px solid #e5e5e5;
        	text-align: center;
        }

        .n-personnel .liste .page-header {
        	border-bottom: none;
        }

        .n-personnel .liste .li {
        	float: left;
        }

        .n-personnel .liste .carousel .li {
        	background: #fff;
        	text-align: center;
        }

        .n-personnel .liste .carousel .li .img {
        	overflow: hidden;
        }

        .n-personnel .liste .carousel .li img {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-personnel .liste .carousel .li:hover .img img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        .n-personnel .liste .carousel .li:hover .p {
        	background: #2dbef0;
        	color: #fff;
        }

        .n-personnel .liste .carousel .owl-pagination {
        	text-align: center;
        	margin-top: 35px;
        }

        .n-personnel .liste .carousel .p {
        	font-size: 16px;
        	color: #666;
        	height: 50px;
        	line-height: 50px;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-personnel .liste .carousel .owl-pagination .owl-page {
        	width: 10px;
        	height: 10px;
        	background: #8d8d8d;
        	border-radius: 50%;
        	display: inline-block;
        	margin: 0 7px;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .n-personnel .liste .carousel .owl-pagination .owl-page.active {
        	background: #2dbef0;
        }

        .n-chance .lista {
        	padding: 1px 0 60px;
        	background: #fff;
        }

        .n-chance .lista .w-ul {
        	text-align: center;
        	margin-top: 40px;
        }

        .n-chance .lista .ul {
        	display: inline-block;
        }

        .n-chance .lista .li {
        	text-align: center;
        	margin: 0 56px;
        	width: 180px;
        	height: 180px;
        	padding: 50px 0 20px;
        	box-sizing: border-box;
        	border: 1px solid #f1f1f1;
        	cursor: pointer;
        	position: relative;
        	float: left;
        }

        .n-chance .lista .li .sp {
        	width: 60px;
        	height: 60px;
        	margin-bottom: 15px;
        	display: inline-block;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-chance .lista .li .sp1 {
        	background: url(../img/img13.png) no-repeat center top;
        }

        .n-chance .lista .li .sp2 {
        	background: url(../img/img13-1.png) no-repeat center top;
        }

        .n-chance .lista .li .sp3 {
        	background: url(../img/img13-2.png) no-repeat center top;
        }

        .n-chance .lista .li .sp4 {
        	background: url(../img/img13-3.png) no-repeat center top;
        }

        .n-chance .lista .li .p {
        	font-size: 18px;
        	line-height: 24px;
        	color: #333;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-chance .lista .li .j {
        	width: 0;
        	height: 0;
        	border-left: 10px solid transparent;
        	border-right: 10px solid transparent;
        	border-top: 10px solid #fff;
        	position: absolute;
        	left: 50%;
        	margin-left: -10px;
        	bottom: -5px;
        	opacity: 0;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-chance .lista .li:hover,
        .n-chance .lista .li.cur {
        	background: #36bef0;
        	border: 1px solid #36bef0;
        }

        .n-chance .lista .li:hover .sp,
        .n-chance .lista .li.cur .sp {
        	background-position: center bottom !important;
        }

        .n-chance .lista .li:hover .p,
        .n-chance .lista .li.cur .p {
        	color: #fff;
        }

        .n-chance .lista .li:hover .j,
        .n-chance .lista .li.cur .j {
        	opacity: 1;
        	-webkit-transform: translate(0, 5px);
        	-ms-transform: translate(0, 5px);
        	transform: translate(0, 5px);
        	border-top: 10px solid #36bef0;
        }

        .n-chance .listb {
        	padding: 20px 0 100px;
        }

        /*.n-chance .listb .ulbox {
    margin-top: 60px;
  }*/

        .n-chance .listb .ulbox li {
        	padding: 40px 30px;
        	float: left;
        	margin-bottom: 2.6%;
        	background: #fff;
        	width: 23%;
        	cursor: pointer;
        	margin-right: 2.6%;
        	box-sizing: border-box;
        }

        .n-chance .listb .ulbox li:nth-child(4n) {
        	margin-right: 0;
        }

        .n-chance .listb .ulbox li .t {
        	color: #989898;
        	font-size: 15px;
        	line-height: 20px;
        	font-family: "Arial";
        	margin-bottom: 15px;
        }

        .n-chance .listb .ulbox li .h {
        	font-size: 20px;
        	color: #666;
        	line-height: 100%;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	width: 95%;
        	padding-bottom: 10px;
        	border-bottom: 1px solid #e7e7e7;
        }

        .n-chance .listb .ulbox li .p {
        	color: #666;
        	line-height: 22px;
        	font-size: 14px;
        	height: 110px;
        	overflow: hidden;
        	margin: 26px 0 55px;
        }

        .n-chance .listb .ulbox li .more {
        	font-size: 14px;
        	color: #333;
        	width: 110px;
        	height: 35px;
        	line-height: 35px;
        	text-align: center;
        	background: #f7f7f7;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .n-chance .listb .ulbox li .j {
        	width: 9px;
        	height: 10px;
        	background: url(../img/img14.png) no-repeat center center;
        }

        .n-chance .listb .ulbox li .j {
        	display: inline-block;
        }

        .n-chance .listb .ulbox li:hover .j {
        	background: url(../img/img14-1.png) no-repeat center;
        }

        .n-chance .listb .ulbox li:hover .more {
        	background: #36bef0;
        	color: #fff;
        }

        /*.n-chance .listb .wpage {
    padding-top: 30px;
  }*/

        .n-business .lista {
        	background: #fff;
        	padding: 80px 0;
        }

        .n-business .lista .dlbox {
        	background: #fff;
        }

        .n-business .lista .dlbox .dd {
        	width: 45%;
        	/*height: 460px;*/
        	text-align: center;
        }

        .n-business .lista .dlbox .dd img {
        	max-width: 100%;
        }

        .n-business .lista .dlbox .dt {
        	width: 53%;
        	height: 460px;
        	padding: 0 3.5%;
        	box-sizing: border-box;
        }

        .n-business .lista .dlbox .dt .h {
        	font-size: 30px;
        	line-height: 32px;
        	margin-bottom: 10px;
        	color: #333;
        	font-weight: bold;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .n-business .lista .dlbox .dt .y {
        	font-size: 18px;
        	color: #999;
        	line-height: 24px;
        	margin-bottom: 15px;
        	text-transform: capitalize;
        }

        .n-business .lista .dlbox .dt .line {
        	width: 25px;
        	height: 2px;
        	background: #b2b2b2;
        	display: block;
        }

        .n-business .lista .dlbox .dt .p {
        	margin-top: 20px;
        	font-size: 14px;
        	color: #666;
        	line-height: 28px;
        }

        /*.n-business .lista .dlbox .dt .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #2dbef0;
  }*/

        .n-business .listb {
        	padding: 40px 0 80px;
        }

        .n-business .listb .page-header {
        	border-bottom: none;
        }

        .n-business .listb .ul {
        	width: 100%;
        }

        .n-business .listb .li {
        	width: 48.5%;
        	margin-right: 3%;
        	margin-bottom: 3%;
        	float: left;
        	padding: 50px;
        	background: #fff;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        	box-sizing: border-box;
        }

        .n-business .listb .li .h {
        	font-size: 22px;
        	line-height: 1.8;
        	color: #0074bc;
        	margin-bottom: 5px;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-business .listb .li .p {
        	font-size: 16px;
        	line-height: 30px;
        	margin-bottom: 16px;
        	color: #666;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-business .listb .li .h-tit {
        	font-size: 16px;
        	line-height: 24px;
        	margin-bottom: 10px;
        	color: #333;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-business .listb .li .sp {
        	width: 180px;
        	height: 45px;
        	line-height: 45px;
        	padding: 0 20px;
        	background: #e1e1e1;
        	color: #333;
        	display: block;
        	position: relative;
        	float: left;
        	margin-right: 9px;
        	margin-bottom: 9px;
        	box-sizing: border-box;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-business .listb .li .sp:before {
        	content: '';
        	width: 10px;
        	height: 45px;
        	position: absolute;
        	right: 20px;
        	top: 0;
        	background: url(../img/img16.png) no-repeat center;
        }

        .n-business .listb .li .sp:hover {
        	background: #fff;
        }

        .n-business .listb .li:nth-child(2n) {
        	margin-right: 0;
        }

        .n-business .listb .li:hover {
        	background: #2dbef0;
        }

        .n-business .listb .li:hover .h,
        .n-business .listb .li:hover .h-tit {
        	color: #fff;
        }

        .n-business .listb .li:hover .p {
        	color: #fff;
        	opacity: .8;
        }

        .n-busines-info .p-text {
        	margin: 50px 0;
        	font-size: 16px;
        	line-height: 30px;
        	color: #666;
        }

        .n-busines-info .lista {
        	background: #fff;
        	padding-top: 1px;
        	padding-bottom: 60px;
        }

        .n-busines-info .lista .carousel .li {
        	background: #fff;
        	text-align: center;
        	float: left;
        	position: relative;
        	margin: 0 15px;
        }

        .n-busines-info .lista .carousel .li .img {
        	overflow: hidden;
        }

        .n-busines-info .lista .carousel .li img {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-busines-info .lista .carousel .li:hover .img img {
        	width: 100%;
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        /*.n-busines-info .lista .carousel .owl-prev, .n-busines-info .lista .carousel .owl-next {
    width: 48px;
    height: 48px;
    text-indent: -99px;
    overflow: hidden;
    display: inline-block;
  }
  .n-busines-info .lista .carousel .owl-prev {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -70px;
    background: #f5f3f1 url(../img/img12.png) no-repeat center;
  }
  .n-busines-info .lista .carousel .owl-next {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -60px;
    background: #f5f3f1 url(../img/img12.png) no-repeat center;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }*/

        .n-busines-info .lista .carousel .owl-pagination {
        	text-align: center;
        	margin-top: 35px;
        }

        .n-busines-info .lista .carousel .p {
        	font-size: 16px;
        	color: #fff;
        	height: 50px;
        	line-height: 50px;
        	background: rgba(0, 0, 0, 0.6);
        	position: absolute;
        	width: 100%;
        	bottom: 0;
        }

        .n-busines-info .lista .carousel .owl-pagination .owl-page {
        	width: 10px;
        	height: 10px;
        	background: #8d8d8d;
        	border-radius: 50%;
        	display: inline-block;
        	margin: 0 7px;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .n-busines-info .lista .carousel .owl-pagination .owl-page.active {
        	background: #2dbef0;
        }

        .n-busines-info .listb {
        	padding: 40px 0 80px;
        }

        .n-busines-info .listb a {
        	display: block;
        }

        .n-busines-info .listb .carousel .li {
        	background: #fff;
        	text-align: center;
        	float: left;
        	position: relative;
        	margin-right: 15px;
        }

        .n-busines-info .listb .carousel .li .img {
        	overflow: hidden;
        	position: relative;
        }

        .n-busines-info .listb .carousel .li .imga {
        	width: 100%;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-busines-info .listb .carousel .li .bgimg {
        	width: 100%;
        	height: 100%;
        	position: absolute;
        	left: 0;
        	top: 0;
        	background: #2dbef0;
        	opacity: 0;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-busines-info .listb .carousel .li .bgimg img {
        	width: 130px;
        	height: 130px;
        	position: absolute;
        	left: 50%;
        	top: 50%;
        	margin-left: -65px;
        	margin-top: -65px;
        }

        .n-busines-info .listb .carousel .li:hover .bgimg {
        	opacity: 1;
        }

        .n-busines-info .listb .carousel .li:hover .p {
        	background: #2dbef0;
        	color: #fff;
        	border-top: 1px solid #42c5f2;
        }

        .n-busines-info .listb .carousel .owl-pagination {
        	text-align: center;
        	margin-top: 35px;
        }

        .n-busines-info .listb .carousel .p {
        	font-size: 16px;
        	color: #333;
        	height: 50px;
        	line-height: 50px;
        	background: #fff;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        	border-top: 1px solid #fff;
        }

        .n-busines-info .listb .carousel .owl-pagination .owl-page {
        	width: 10px;
        	height: 10px;
        	background: #8d8d8d;
        	border-radius: 50%;
        	display: inline-block;
        	margin: 0 7px;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .n-busines-info .listb .carousel .owl-pagination .owl-page.active {
        	background: #2dbef0;
        }

        .n-about {
        	position: relative;
        	z-index: 2;
        }

        .n-about .lista {
        	padding: 1px 0 60px;
        	background: #fff;
        	overflow: hidden;
        }

        .n-about .lista .page-header {
        	border-bottom: none;
        	text-align: center;
        }

        .n-about .lista .dlbox {
        	background: #fff;
        	margin-bottom: 20px;
        	margin-top: 40px;
        }

        .n-about .lista .dlbox .dd {
        	width: 38%;
        }

        .n-about .lista .dlbox .dd img {
        	width: 100%;
        }

        .n-about .lista .dlbox .dt {
        	width: 60%;
        	/*height: 460px;*/
        	margin-top: 70px;
        	box-sizing: border-box;
        }

        .n-about .lista .dlbox .dt .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        	background: #000;
        	border-radius: 0;
        }

        .n-about .lista .dlbox .dt .h {
        	font-size: 30px;
        	line-height: 30px;
        	margin-bottom: 10px;
        	font-weight: bold;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .n-about .lista .dlbox .dt .y {
        	font-size: 18px;
        	color: #999;
        	line-height: 24px;
        	margin-bottom: 25px;
        	/*text-transform: capitalize;*/
        }

        .n-about .lista .dlbox .dt .line {
        	width: 20px;
        	height: 2px;
        	background: #b2b2b2;
        	display: block;
        }

        .n-about .lista .dlbox .dt .p {
        	margin-top: 20px;
        	font-size: 14px;
        	color: #666;
        	/*height: 220px;*/
        	line-height: 28px;
        	margin-bottom: 56px;
        }

        .n-about .lista .dlbox .dt .p img {
        	max-width: 100%;
        }

        .n-about .lista .dlbox .dt .p-bot span {
        	color: #333;
        	font-size: 16px;
        	height: 58px;
        	line-height: 58px;
        	margin-right: 10px;
        }

        .n-about .lista .dlbox .dt .p-bot img {
        	display: inline-block;
        }

        .n-about .listb {
        	padding: 30px 0 80px;
        }

        .n-about .listb .page-header {
        	border-bottom: none;
        	text-align: center;
        }

        .n-about .listb .p {
        	width: 1140px;
        	margin: 0 auto 50px;
        	font-size: 16px;
        	line-height: 30px;
        	color: #666;
        	height: 280px;
        	overflow: hidden;
        }

        .n-about .listb .p img {
        	max-width: 100%;
        }

        .n-about .listb .p.active {
        	height: auto;
        }

        .n-about .listb .ul {
        	width: 1100px;
        	margin: 0 auto 50px;
        }

        .n-about .listb .ul .li {
        	width: 25%;
        	float: left;
        	text-align: center;
        }

        .n-about .listb .ul .li .hsu {
        	font-size: 90px;
        	line-height: 1;
        	margin-bottom: 15px;
        	color: #2dbef0;
        	font-family: "fon3";
        }

        .n-about .listb .ul .li .p1 {
        	font-size: 14px;
        	line-height: 1.5;
        	color: #666;
        }

        .n-about .listb .more {
        	width: 160px;
        	height: 45px;
        	line-height: 45px;
        	text-align: center;
        	border: 1px solid #c2c2c2;
        	margin: 0 auto;
        	cursor: pointer;
        	padding: 0 40px;
        	box-sizing: border-box;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        	position: relative;
        }

        .n-about .listb .more span {
        	display: inline-block;
        	position: relative;
        	z-index: 3;
        }

        .n-about .listb .more .img {
        	width: 15px;
        	height: 45px;
        	background: url(../img/img18.png) no-repeat center;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        	display: inline-block;
        }

        .n-about .listb .more:hover {
        	border: 1px solid #2dbef0;
        	/*background: #2dbef0;*/
        	color: #fff;
        }

        .n-about .listb .more:hover .img {
        	background: url(../img/img18-1.png) no-repeat center;
        }

        .n-about .listc {
        	width: 100%;
        }

        .n-about .listc .li {
        	box-sizing: border-box;
        	float: left;
        	width: 33.3%;
        	/*padding: 135px 0;*/
        	text-align: center;
        }

        .n-about .listc .li .imga {
        	width: calc(100% + 20px);
        }

        .n-about .listc .li .img {
        	margin-bottom: 15px;
        }

        .n-about .listc .li .p-text {
        	position: absolute;
        	top: 50%;
        	height: 174px;
        	margin-top: -85px;
        	text-align: center;
        	width: 100%;
        }

        .n-about .listc .li .img img {
        	width: 80px;
        }

        .n-about .listc .li .h-tit {
        	font-size: 20px;
        	line-height: 1;
        	margin-bottom: 15px;
        	color: #fff;
        }

        .n-about .listc .li .p {
        	font-size: 16px;
        	line-height: 1.5;
        	color: #fff;
        }

        .n-about .listd {
        	padding: 40px 0 80px;
        }

        .n-about .listd .page-header {
        	border-bottom: none;
        	text-align: center;
        }

        .n-about .listd .li {
        	width: 18.5%;
        	margin-right: 1.75%;
        	margin-bottom: 1.75%;
        	background: #fff;
        	cursor: pointer;
        	float: left;
        	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-about .listd .li .img img {
        	width: 100%;
        }

        .n-about .listd .li:nth-child(5n) {
        	margin-right: 0;
        }

        .n-about .listd .li .p-text {
        	padding: 20px;
        }

        .n-about .listd .li .h {
        	font-size: 20px;
        	color: #333;
        	line-height: 25px;
        	margin-bottom: 5px;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-about .listd .li .sp {
        	padding-left: 25px;
        	background: url(../img/img20.png) no-repeat center 2px;
        }

        .n-about .listd .li .p {
        	font-size: 15px;
        	height: 48px;
        	overflow: hidden;
        	line-height: 1.5;
        	color: #999;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-about .listd .li:hover {
        	background: #36bef0;
        }

        .n-about .listd .li:hover .h,
        .n-about .listd .li:hover .p {
        	color: #fff;
        }

        .n-about .listd .li:hover .sp {
        	background: url(../img/img20.png) no-repeat center 98%;
        }

        .n-about .liste {
        	padding: 40px 0 120px;
        }

        .n-about .liste .page-header {
        	border-bottom: none;
        	text-align: center;
        	color: #fff;
        }

        .n-about .liste .wtimelist {
        	width: 860px;
        	margin: 0 auto 80px;
        	padding: 0 56px;
        	height: 35px;
        	box-sizing: border-box;
        	position: relative;
        }

        .n-about .liste .wtimelist .swiper-button-next {
        	width: 35px;
        	height: 35px;
        	position: absolute;
        	right: 0;
        	top: 50%;
        	margin-top: -17.5px;
        	-webkit-transform: rotate(-180deg);
        	-ms-transform: rotate(-180deg);
        	transform: rotate(-180deg);
        	background: url(../img/img22.png) no-repeat center;
        }

        .n-about .liste .wtimelist .swiper-button-prev {
        	width: 35px;
        	height: 35px;
        	position: absolute;
        	right: 0;
        	top: 50%;
        	margin-top: -17.5px;
        	background: url(../img/img22.png) no-repeat center;
        }

        .n-about .liste .timelist {
        	overflow: hidden;
        }

        .n-about .liste .timelist .swiper-slide {
        	height: 35px;
        	line-height: 35px;
        	color: #fff;
        	font-size: 18px;
        	float: left;
        	font-family: "Arial";
        	text-align: center;
        	border: 1px solid rgba(255, 255, 255, 0);
        	box-sizing: border-box;
        	cursor: pointer;
        	opacity: .5;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        }

        .n-about .liste .timelist .swiper-slide.cur {
        	border: 1px solid rgba(255, 255, 255, 0.5);
        	opacity: 1;
        }

        .n-about .liste .honorbox {
        	overflow: hidden;
        	position: relative;
        }

        .n-about .liste .honorbox .swiper-slide {
        	background: #fff;
        }

        .n-about .liste .honorbox .swiper-slide .img {
        	position: relative;
        	overflow: hidden;
        }

        .n-about .liste .honorbox .swiper-slide img {
        	width: 100%;
        	-webkit-transition: all .8s;
        	transition: all .8s;
        	-webkit-transform: scale3d(1, 1, 1);
        	transform: scale3d(1, 1, 1);
        }

        .n-about .liste .honorbox .swiper-slide .time {
        	width: auto;
        	padding: 0 15px;
        	height: 30px;
        	line-height: 30px;
        	text-align: center;
        	background: #2dbef0;
        	font-size: 18px;
        	font-family: "Arial";
        	position: absolute;
        	left: 0;
        	top: 0;
        	color: rgba(255, 255, 255, .9);
        }

        .n-about .liste .honorbox .swiper-slide .p-text {
        	padding: 25px;
        	font-size: 18px;
        	line-height: 30px;
        	color: #000;
        }

        .n-about .liste .honorbox .swiper-slide .p-text .p {
        	height: 90px;
        	overflow: hidden;
        }

        .n-about .liste .honorbox .swiper-slide:hover .img img {
        	-webkit-transform: scale3d(1.1, 1.1, 1);
        	transform: scale3d(1.1, 1.1, 1);
        }

        .n-about .liste .honorbox .swiper-button-next {
        	width: 47px;
        	height: 47px;
        	position: absolute;
        	right: 25px;
        	top: 50%;
        	margin-top: -23.5px;
        	background: url(../img/img23-1.png) no-repeat center;
        }

        .n-about .liste .honorbox .swiper-button-prev {
        	width: 47px;
        	height: 47px;
        	position: absolute;
        	left: 25px;
        	top: 50%;
        	margin-top: -23.5px;
        	background: url(../img/img23.png) no-repeat center;
        }

        .n-about .liste .honorbox .swiper-button-prev:hover {
        	background: url(../img/img23-2.png) no-repeat center;
        }

        .n-about .liste .honorbox .swiper-button-next:hover {
        	background: url(../img/img23-3.png) no-repeat center;
        }

        .n-about .listf {
        	padding: 80px 0;
        }

        .n-about .listf .li {
        	width: 50%;
        	float: left;
        	padding: 90px 0;
        	display: block;
        	text-align: center;
        }

        .n-about .listf .li .h-tit {
        	font-size: 36px;
        	line-height: 1;
        	margin-bottom: 15px;
        	color: #fff;
        }

        .n-about .listf .li .p {
        	font-size: 18px;
        	line-height: 1.5;
        	height: 48px;
        	overflow: hidden;
        	color: #fff;
        	padding: 0 10px;
        }

        .n-about .listf .li .btnx {
        	margin-top: 15px;
        	width: 56px;
        	height: 56px;
        	overflow: hidden;
        	display: inline-block;
        	position: relative;
        }

        .n-about .listf .li .btnx:after {
        	content: "";
        	left: 0;
        	top: 0;
        	width: 56px;
        	height: 56px;
        	position: absolute;
        	-webkit-transition: all .5s;
        	-o-transition: all .5s;
        	transition: all .5s;
        	background: url(../img/img21.png) no-repeat center top;
        }

        .n-about .listf .li .btnx:before {
        	position: absolute;
        	content: "";
        	background: url(../img/img21-1.png) no-repeat center bottom;
        	width: 56px;
        	height: 56px;
        	left: 0;
        	top: 0;
        	opacity: 0;
        	-webkit-transition: all .5s;
        	-o-transition: all .5s;
        	transition: all .5s;
        	transform: scale(.6, .6);
        }

        .n-about .listf .li .btnx:hover:after {
        	opacity: 0;
        	transform: scale(.6, .6);
        }

        .n-about .listf .li .btnx:hover:before {
        	opacity: 1;
        	transform: scale(1, 1);
        }

        .n-videopage-t .video-box .imga {
        	position: relative;
        }

        .text-blue {
        	color: #2dbef0;
        }

        .video-ajax::after,
        .video-ajax::before {
        	content: "";
        	display: block;
        	position: absolute;
        	left: 0;
        	width: 100%;
        	height: 50%;
        	/*background: #f7f7f7;*/
        	z-index: -1;
        	-webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
        	transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
        }

        .video-ajax::before {
        	top: 0;
        }

        .video-ajax::after {
        	bottom: 0;
        }

        .video-ajax.hide-a::after,
        .video-ajax.hide-a::before {
        	height: 0;
        }

        .video-ajax.hidetwo .recrult-t {
        	opacity: 1;
        	-webkit-transform: translateY(0);
        	-ms-transform: translateY(0);
        	transform: translateY(0);
        	-webkit-transition: ease all .5s;
        	transition: ease all .5s;
        }

        .video-ajax {
        	position: fixed;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        	z-index: 23;
        	display: none;
        }

        .video-ajax .bg-close {
        	background: rgba(0, 0, 0, 0.4);
        	position: fixed;
        	left: 0;
        	top: 0;
        	width: 100%;
        	height: 100%;
        	cursor: pointer;
        	z-index: 10;
        }

        .video-ajax .recrult-t {
        	opacity: 0;
        	-webkit-transition: ease all .5s;
        	transition: ease all .5s;
        	-webkit-transform: translateY(-20px);
        	-ms-transform: translateY(-20px);
        	transform: translateY(-20px);
        	z-index: 24;
        	width: 650px;
        	height: 650px;
        	top: 50%;
        	left: 50%;
        	margin-top: -325px;
        	margin-left: -325px;
        	position: absolute;
        	background: #fcfcfc;
        	padding: 50px 40px 70px;
        	box-sizing: border-box;
        }

        .video-ajax .recrult-t .p-text {
        	width: 100%;
        }

        .video-ajax .recrult-t .p-text .h {
        	font-size: 22px;
        	line-height: 22px;
        	padding-bottom: 15px;
        	color: #333;
        	border-bottom: 1px solid #D4D4D4;
        	margin-bottom: 25px;
        	font-weight: bold;
        }

        .video-ajax .recrult-t .p-text .p {
        	font-size: 14px;
        	color: #666;
        	line-height: 24px;
        	height: 350px;
        }

        .video-ajax .recrult-t .p-text .mCSB_scrollTools .mCSB_draggerRail {
        	background: #000;
        }

        .video-ajax .recrult-t .p-text .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        	background: #36BEF0;
        }

        .video-ajax .recrult-t .p-text .box1 {
        	margin-bottom: 35px;
        }

        .video-ajax .recrult-t .p-text .h-tit {
        	font-size: 16px;
        	color: #333;
        	margin-bottom: 10px;
        	line-height: 1.5;
        	font-weight: bold;
        }

        .video-ajax .recrult-t .p-text .ex-more {
        	margin-top: 60px;
        	width: 150px;
        	height: 40px;
        	border-radius: 0;
        	background: #36bef0;
        }

        .video-ajax .recrult-t .p-text .ex-more:after {
        	background: url(../img/img15.png) no-repeat center center;
        	background-size: 16px auto;
        }

        .video-ajax .recrult-t .p-text .ex-more:hover:after {
        	right: 25px;
        }

        .img-mobile {
        	display: none;
        }

        .h-news-nav-ico1 {
        	background-image: url(../img/img6.png);
        }

        .h-news-nav-ico2 {
        	background-image: url(../img/img6-1.png);
        }

        .h-investor-ico1 {
        	background-image: url(../img/img6-2.png);
        }

        .h-investor-ico2 {
        	background-image: url(../img/img6-3.png);
        }

        .h-investor-ico3 {
        	background-image: url(../img/img6-4.png);
        }

        .h-investor-ico4 {
        	background-image: url(../img/img6-5.png);
        }

        .h-investor-ico5 {
        	background-image: url(../img/img6-6.png);
        }

        .h-per-nav-ico1 {
        	background-image: url(../images/img6-7.png);
        }

        .h-per-nav-ico2 {
        	background-image: url(../images/img6-8.png);
        }

        .h-per-nav-ico3 {
        	background-image: url(../img/img6-9.png);
        }

        .h-bus-nav-ico1 {
        	background-image: url(../img/img6-10.png);
        }

        .h-bus-nav-ico2 {
        	background-image: url(../img/img6-11.png);
        }

        .h-bus-nav-ico3 {
        	background-image: url(../img/img6-12.png);
        }

        .wclosebtn {
        	position: absolute;
        	top: 10px;
        	right: 10px;
        	cursor: pointer;
        	z-index: 9;
        }

        .wclosebtn span {
        	vertical-align: middle;
        }

        .wclosebtn .icon {
        	position: relative;
        	width: 35px;
        	height: 35px;
        	margin-left: 12px;
        	display: inline-block;
        }

        .wclosebtn .icon .circle {
        	position: absolute;
        	top: 0;
        	left: 0;
        	display: block;
        	width: 100%;
        	height: 100%;
        	box-sizing: border-box;
        	border: 2px solid #000;
        	border-radius: 50%;
        	-webkit-transition: all 300ms ease-out;
        	transition: all 300ms ease-out;
        	-webkit-transform-origin: center center;
        	-ms-transform-origin: center center;
        	transform-origin: center center;
        }

        .wclosebtn .icon .line {
        	position: absolute;
        	top: 50%;
        	left: 50%;
        	display: block;
        	width: 14px;
        	height: 2px;
        	margin: -1px 0 0 -7px;
        	background-color: #000;
        	-webkit-transition: all 300ms ease-out;
        	transition: all 300ms ease-out;
        }

        .z-activity-container {
        	margin-bottom: 50px;
        }

        @media (min-width: 1024px) {
        	.wclosebtn .icon:hover .circle {
        		-webkit-transform: scale(1.1);
        		-ms-transform: scale(1.1);
        		transform: scale(1.1);
        	}

        	.wclosebtn .icon:hover .line.line1 {
        		-webkit-transform: rotate(45deg);
        		-ms-transform: rotate(45deg);
        		transform: rotate(45deg);
        	}

        	.wclosebtn .icon:hover .line.line2 {
        		-webkit-transform: rotate(-45deg);
        		-ms-transform: rotate(-45deg);
        		transform: rotate(-45deg);
        		top: 16px;
        	}

        	.h-story-container .swiper-slide-active .h-story-slide {
        		cursor: pointer;
        	}

        	.h-story-container .swiper-slide-active .h-story-slide .tit {
        		-webkit-transition: all .5s;
        		-o-transition: all .5s;
        		transition: all .5s;
        	}

        	.h-story-container .swiper-slide-active .h-story-slide:hover .tit {
        		color: #2dbef0;
        	}
        }

        @media (max-width: 1024px) {
        	.wclosebtn .icon .circle {
        		-webkit-transform: scale(1.1);
        		-ms-transform: scale(1.1);
        		transform: scale(1.1);
        	}

        	.wclosebtn .icon .line.line1 {
        		-webkit-transform: rotate(45deg);
        		-ms-transform: rotate(45deg);
        		transform: rotate(45deg);
        	}

        	.wclosebtn .icon .line.line2 {
        		-webkit-transform: rotate(-45deg);
        		-ms-transform: rotate(-45deg);
        		transform: rotate(-45deg);
        	}
        }

        @media (max-width: 720px) {
        	.wclosebtn .icon {
        		width: 31px;
        		height: 30px;
        	}
        }

        .col-xs-m {
        	width: 20%;
        	float: left;
        	padding: 0 15px;
        	box-sizing: border-box;
        }

        .ex-more {
        	position: relative;
        	display: block;
        	width: 180px;
        	height: 40px;
        	font-size: 16px;
        	font-weight: lighter;
        	line-height: 40px;
        	text-align: center;
        	border-radius: 40px;
        	color: #fff;
        	background: #2dbef0;
        }

        .ex-more span {
        	position: relative;
        	-webkit-transition: all 0.4s;
        	transition: all 0.4s;
        	display: inline-block;
        	-webkit-transform: translateX(0px);
        	-ms-transform: translateX(0px);
        	transform: translateX(0px);
        }

        .ex-more::after {
        	content: ' ';
        	position: absolute;
        	top: 50%;
        	right: 50px;
        	width: 16px;
        	height: 16px;
        	margin-top: -8px;
        	background: url(../img/img2.png) no-repeat center center;
        	background-size: 15px auto;
        	opacity: 0;
        	filter: alpha(opacity=0);
        	-webkit-transition: right 0.4s, opacity 0.4s;
        	transition: right 0.4s, opacity 0.4s;
        }

        @media (min-width: 1024px) {
        	.ex-more:hover span {
        		opacity: 1;
        		color: #fff;
        		filter: alpha(opacity=100);
        		-webkit-transition: all 0.4s;
        		transition: all 0.4s;
        		-webkit-transform: translateX(-10px);
        		-ms-transform: translateX(-10px);
        		transform: translateX(-10px);
        	}

        	.ex-more:hover::after {
        		right: 40px;
        		opacity: 1;
        		filter: alpha(opacity=100);
        	}

        	.n-business .listb .li .p-text {
        		height: 255px;
        	}
        }

        @media (max-width: 1024px) {
        	.ex-more {
        		width: 128px;
        		height: 35.2px;
        		line-height: 35.2px;
        	}
        }

        @media (max-width: 768px) {
        	.ex-more {
        		width: 112px;
        		height: 30.8px;
        		font-size: 14px;
        		line-height: 30.8px;
        	}
        }

        @-webkit-keyframes downbtn2 {

        	0%,
        	30%,
        	60%,
        	90% {
        		-webkit-transform: translateY(-3px);
        		transform: translateY(-3px);
        	}

        	20%,
        	50%,
        	80% {
        		-webkit-transform: translateY(3px);
        		transform: translateY(3px);
        	}
        }

        @keyframes downbtn2 {

        	0%,
        	30%,
        	60%,
        	90% {
        		-webkit-transform: translateY(-3px);
        		transform: translateY(-3px);
        	}

        	20%,
        	50%,
        	80% {
        		-webkit-transform: translateY(3px);
        		transform: translateY(3px);
        	}
        }

        @-webkit-keyframes downbtn {

        	0%,
        	30%,
        	60%,
        	90% {
        		-webkit-transform: translateY(-5px);
        		transform: translateY(-5px);
        	}

        	20%,
        	50%,
        	80% {
        		-webkit-transform: translateY(5px);
        		transform: translateY(5px);
        	}
        }

        @keyframes downbtn {

        	0%,
        	30%,
        	60%,
        	90% {
        		-webkit-transform: translateY(-5px);
        		transform: translateY(-5px);
        	}

        	20%,
        	50%,
        	80% {
        		-webkit-transform: translateY(5px);
        		transform: translateY(5px);
        	}
        }

        .wpage {
        	text-align: center;
        	/*padding: 60px 0 0;*/
        }

        .page {
        	font-size: 14px;
        	font-weight: bold;
        	line-height: 22px;
        	clear: both;
        	display: inline-block;
        }

        .page a {
        	text-decoration: none;
        	color: #d2d2d2;
        	padding: 10px 15px;
        	margin-right: 3px;
        	font-size: 18px;
        	display: inline-block;
        	background: #fff;
        	border: 1px solid #fff;
        	font-weight: normal;
        	-webkit-transition: all .5s;
        	transition: all .5s;
        }

        .page a.active {
        	background: #36bef0;
        	color: #fff;
        	border: 1px solid #36bef0;
        }

        .page a:hover {
        	text-decoration: none;
        	color: #fff;
        	background: #36bef0;
        	border: 1px solid #36bef0;
        }

        .n-videopage-t .p {
        	background: #fff url(../img/img11.png) no-repeat 20px center;
        	-webkit-transition: all .5s;
        	-o-transition: all .5s;
        	transition: all .5s;
        	cursor: pointer;
        }

        .n-videopage-t .p:hover {
        	color: #2dbef0;
        }

        .n-about .lista .dlbox .dd,
        .n-about .lista .dlbox .dt {
        	-webkit-transform: translate(50px, 0);
        	-ms-transform: translate(50px, 0);
        	transform: translate(50px, 0);
        	opacity: 0;
        	-webkit-transition: -webkit-transform 1.2s ease-out, opacity 1.2s;
        	transition: transform 1.2s ease-out, opacity 1.2s;
        }

        .n-about .listb .p,
        .n-about .listc {
        	-webkit-transform: translate(0, 20px);
        	-ms-transform: translate(0, 20px);
        	transform: translate(0, 20px);
        	opacity: 0;
        	-webkit-transition: -webkit-transform 1.2s ease-out, opacity 1.2s;
        	transition: transform 1.2s ease-out, opacity 1.2s;
        }

        .h-banner-title,
        .h-banner .h-banner-txt {
        	-webkit-transform: translate(0, 20px);
        	-ms-transform: translate(0, 20px);
        	transform: translate(0, 20px);
        	-webkit-transition: -webkit-transform .8s ease-out, opacity .8s;
        	transition: transform .8s ease-out, opacity .8s;
        }

        .h-banner .h-banner-txt {
        	-webkit-transition-delay: .2s;
        	-moz-transition-delay: .2s;
        }

        .h-banner .h-nav .annav,
        .h-banner .h-nav .owl-item {
        	-webkit-transform: translate(0, 20px);
        	-ms-transform: translate(0, 20px);
        	transform: translate(0, 20px);
        	-webkit-transition: -webkit-transform 1s ease-out, opacity 1s;
        	transition: transform 1s ease-out, opacity 1s;
        }

        .n-about .lista .dlbox .dt {
        	-webkit-transition-delay: .5s;
        	transition-delay: .5s;
        }

        .animate {
        	-webkit-transform: translate(0px, 0) !important;
        	-ms-transform: translate(0px, 0) !important;
        	transform: translate(0px, 0) !important;
        	opacity: 1 !important;
        }

        .mobile-mu .sub-menu li {
        	-webkit-transform: translate(-10px, 0);
        	-ms-transform: translate(-10px, 0);
        	transform: translate(-10px, 0);
        	opacity: 0;
        	-webkit-transition: -webkit-transform .3s ease-out, opacity .8s;
        	transition: transform .6s ease-out, opacity .8s;
        }

        @media (min-width: 1024px) {
        	.n-news .ul .bot:before {
        		content: "";
        		width: 100%;
        		height: 0px;
        		background: #36bef0;
        		position: absolute;
        		left: 0;
        		bottom: 0;
        		-webkit-transition: all .5s 0s ease-in-out;
        		transition: all .5s 0s ease-in-out;
        		z-index: 1;
        	}

        	.n-news .ul .li:hover .bot:before {
        		height: 100%;
        		visibility: visible;
        	}

        	.n-news .ul .li:hover .bot .more,
        	.n-news .ul .li:hover .bot .time {
        		color: #fff;
        	}

        	.n-inestor .ul .li:before {
        		content: "";
        		width: 100%;
        		height: 100%;
        		background: #36bef0;
        		position: absolute;
        		left: 0;
        		bottom: 0;
        		opacity: 0;
        		-webkit-transition: all .6s 0s ease-in-out;
        		transition: all .6s 0s ease-in-out;
        		z-index: 1;
        	}

        	.n-inestor .ul .li:hover:before {
        		opacity: 1;
        		visibility: visible;
        	}

        	.n-inestor .ul .li:hover .p {
        		background: url(../img/img11-1.png) no-repeat left 5px;
        	}

        	.n-inestor .ul .li:hover .p,
        	.n-inestor .ul .li:hover .time {
        		color: #fff;
        	}

        	.n-inestor .ul .li .p,
        	.n-inestor .ul .li .time {
        		position: relative;
        		z-index: 2;
        		-webkit-transition: all .8s 0s ease-in-out;
        		transition: all .8s 0s ease-in-out;
        	}

        	.n-personnel .lista .dlbox .dt .p {
        		height: 240px;
        	}

        	.n-personnel .listd .dlbox .dt .p {
        		height: 140px;
        	}

        	.n-business .lista .dlbox .dt .p {
        		height: 330px;
        	}

        	.hvr-left {
        		vertical-align: middle;
        		-webkit-transform: translateZ(0);
        		transform: translateZ(0);
        		box-shadow: 0 0 1px transparent;
        		-webkit-backface-visibility: hidden;
        		backface-visibility: hidden;
        		-moz-osx-font-smoothing: grayscale;
        		position: relative;
        	}

        	.hvr-left:before {
        		content: "";
        		position: absolute;
        		z-index: -1;
        		background: #2dbef0;
        		right: 0%;
        		width: 0%;
        		bottom: 0;
        		height: 100%;
        		-webkit-transition-property: all;
        		transition-property: all;
        		-webkit-transition-duration: 0.5s;
        		transition-duration: 0.5s;
        		-webkit-transition-timing-function: ease-out;
        		transition-timing-function: ease-out;
        	}

        	.hvr-left:hover:before,
        	.hvr-left.cur:before {
        		width: 100%;
        		left: 0%;
        	}

        	.activity-big .link p {
        		-webkit-transition: .5s all ease-out;
        		-o-transition: .5s all ease-out;
        		transition: .5s all ease-out;
        	}

        	.activity-big .link:hover p {
        		color: #fff;
        		background: url(../img/icon_arrow_1.png) no-repeat;
        		background-size: 20px 20px;
        		background-position: 100px center;
        	}

        	.h-brand-item .img img {
        		-webkit-transform: scale3d(1, 1, 1);
        		transform: scale3d(1, 1, 1);
        		-webkit-transition: all .8s;
        		transition: all .8s;
        	}

        	.h-brand-item:hover .img img {
        		-webkit-transform: scale3d(1.1, 1.1, 1);
        		transform: scale3d(1.1, 1.1, 1);
        	}

        	.n-about .listc .li .imga {
        		transform: translate3d(10px, 10px, 0);
        		margin: -10px 0 0 -10px;
        		-webkit-backface-visibility: hidden;
        		backface-visibility: hidden;
        		transition: opacity 0.35s, transform 0.35s;
        	}

        	.n-about .listc .li:hover img {
        		/*opacity: 0.6;*/
        		-webkit-transform: translate3d(0, 0, 0);
        		transform: translate3d(0, 0, 0);
        	}

        	/*.n-about .listc .li:hover{
            background: -webkit-linear-gradient(bottom left, #000 0%, #fff 100%);
            background: -o-linear-gradient(bottom left, #000 0%, #fff 100%);
            background: linear-gradient(to top right, #000 0%, #fff 100%);
        }*/
        	/*.n-about .listc .li:before{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.5);
      content: '';
      -webkit-transition: -webkit-transform 1s;
      transition: transform 1s;
      -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
      transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    }
    .n-about .listc .li:hover::before{
      -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
      transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    }*/
        	.n-about .listc .li .img img {
        		transform: translate(0, 0);
        		-webkit-transition: all 0.35s;
        		transition: all 0.35s;
        	}

        	.n-about .listc .li:hover .img img {
        		transform: translate(0, -10px);
        	}
        }

        .hvr-left-nav {
        	vertical-align: middle;
        	-webkit-transform: translateZ(0);
        	transform: translateZ(0);
        	box-shadow: 0 0 1px transparent;
        	-webkit-backface-visibility: hidden;
        	backface-visibility: hidden;
        	-moz-osx-font-smoothing: grayscale;
        	position: relative;
        }

        .hvr-left-nav:before {
        	content: "";
        	position: absolute;
        	z-index: -1;
        	background: #2dbef0;
        	left: 0%;
        	width: 0%;
        	bottom: 0;
        	height: 100%;
        	-webkit-transition-property: all;
        	transition-property: all;
        	-webkit-transition-duration: 0.5s;
        	transition-duration: 0.5s;
        	-webkit-transition-timing-function: ease-out;
        	transition-timing-function: ease-out;
        }

        .hvr-left-nav:hover:before,
        .hvr-left-nav.cur:before {
        	width: 100%;
        }

        .hvr-left-nav-red:before {
        	background: #da242b !important;
        }

        .h-nav-a:hover,
        .h-nav-a.cur {
        	/*background-color: #36bef0;*/
        	color: #fff;
        }

        .h-nav-a:hover .ico,
        .h-nav-a.cur .ico {
        	background-position: 0 100%;
        }

        .n-sunshine .sreach-box {
        	margin-bottom: 20px;
        }

        .n-sunshine .ul .li .p,
        .n-inestor .ul .li .p {
        	min-height: 30px;
        }

        .n-personnel .liste .carousel {
        	margin-left: -10px;
        }

        .n-personnel .liste .carousel .li {
        	width: 100%;
        }

        .n-personnel .liste .carousel .owl-item {
        	padding: 0 10px;
        	box-sizing: border-box;
        }

        .owl-buttons .owl-prev {
        	left: 30px;
        }

        .owl-buttons .owl-next {
        	right: 30px;
        }

        .owl-buttons .owl-prev,
        .owl-buttons .owl-next {
        	display: block;
        	width: 60px;
        	height: 60px;
        	border-radius: 50%;
        	background: #fff;
        	color: #666;
        	box-shadow: 0 20px 35px rgba(0, 0, 0, .1);
        	text-align: center;
        	line-height: 60px;
        	font-size: 30px;
        	font-weight: 100;
        	font-family: 'å®‹ä½“';
        	transition: all 0.3s;
        	position: absolute;
        	top: 50%;
        	margin-top: -30px;
        }

        .owl-buttons .owl-prev:hover,
        .owl-buttons .owl-next:hover {
        	background-color: #36bef0;
        	color: #fff;
        }

        .n-personnel .listd .swiper-button-prev,
        .n-personnel .listd .swiper-button-next {
        	display: block;
        	width: 60px;
        	height: 60px;
        	border-radius: 50%;
        	background: #fff;
        	color: #666;
        	box-shadow: 0 20px 35px rgba(0, 0, 0, .1);
        	text-align: center;
        	line-height: 60px;
        	font-size: 30px;
        	font-weight: 100;
        	font-family: 'å®‹ä½“';
        	transition: all 0.3s;
        	position: absolute;
        	top: 50%;
        	margin-top: -30px;
        }

        .n-personnel .listd .swiper-button-prev {
        	left: 30px;
        }

        .n-personnel .listd .swiper-button-next {
        	right: 52.5%;
        }

        .n-personnel .listd .swiper-button-prev:hover,
        .n-personnel .listd .swiper-button-next:hover {
        	background-color: #36bef0;
        	color: #fff;
        }

        .bocweb-header,
        .bocweb-header .header-nav,
        .bocweb-header .header-right {
        	-webkit-transition: all .6s ease;
        	-o-transition: all .6s ease;
        	transition: all .6s ease;
        }

        .recrult-listbox .sreach-box {
        	margin: 30px auto 45px;
        }

        .n-news .page-header,
        .n-busines-info .page-header,
        .container-main .page-header {
        	margin-top: 80px;
        }

        .n-about .page-header {
        	font-size: 36px;
        }

        @media (max-width: 1023px) {

        	/*.bocweb-header .header-right,.bocweb-header .header-nav,.bocweb-header.on .header-right,.bocweb-header.on .header-nav{
      padding:0!important;
    }
    .bocweb-header.on{
      padding: 0 0 0 3%;
    }*/
        	.bocweb-header.on {
        		padding: 0 0 0 10px !important
        	}

        	.bocweb-header.on {
        		background: #fff;
        	}

        	.wxbox-img2 {
        		position: fixed;
        	}

        	.wxbox-img2 .img {
        		margin-top: -95px;
        		margin-left: -95px;
        	}

        	.wxbox-img2 .bg-close {
        		display: block;
        	}
        }

        @media (max-width: 786px) {
        	.n-personnel .listc .li-list:last-child {
        		margin-bottom: 0;
        	}
        }

        @media (max-width: 960px) {

        	.owl-buttons .owl-prev,
        	.owl-buttons .owl-next {
        		width: 38px;
        		height: 38px;
        		color: #666;
        		line-height: 38px;
        		font-size: 16px;
        		margin-top: -19px;
        	}

        	.owl-buttons .owl-prev {
        		left: 15px;
        	}

        	.owl-buttons .owl-next {
        		right: 15px;
        	}

        	.n-personnel .listd .swiper-button-prev,
        	.n-personnel .listd .swiper-button-next {
        		width: 38px;
        		height: 38px;
        		color: #666;
        		line-height: 38px;
        		font-size: 16px;
        		margin-top: -19px;
        	}

        	.n-personnel .listd .swiper-button-prev {
        		left: 15px;
        	}

        	.n-personnel .listd .swiper-button-next {
        		right: 15px;
        	}
        }

        @media (max-width: 425px) {
        	.n-personnel .liste .carousel {
        		margin-left: 0;
        	}

        	.n-personnel .liste .carousel .owl-item {
        		padding: 0;
        	}

        	.n-personnel .listd .swiper-button-prev,
        	.n-personnel .listd .swiper-button-next {
        		display: none;
        	}

        	.n-personnel .listd .dlbox .dt .p {
        		font-size: 12px;
        		line-height: 24px;
        		margin-top: 10px;
        	}
        }

        .n-personnel .listd .dlbox .dt .p,
        .h-legal-content .col-md-offset-1,
        .n-info-two .infobox .text,
        .n-busines-info .p-text,
        .h-brand-item .txt {
        	text-indent: 2em;
        	text-align: justify;
        }

        .n-about .lista .dlbox .dt .p,
        .n-about .listb .p,
        .n-business .lista .dlbox .dt .p,
        .n-business .listb .li .p,
        .activity-big .detail,
        .activity .content {
        	text-align: justify;
        }

        .i-lista .list-box {
        	overflow: hidden;
        }

        .i-lista .list-box .list1 {
        	opacity: 0;
        	-webkit-transform: translateY(20px);
        	-moz-transform: translateY(20px);
        	-webkit-transition: all .2s 0s ease-in-out;
        	transition: all .2s 0s ease-in-out;
        }

        .i-lista .list-box .list1.active {
        	opacity: 1;
        	-webkit-transform: translateX(0px);
        	-moz-transform: translateX(0px);
        	-webkit-transition: all .6s .2s ease-in-out;
        	transition: all .6s .2s ease-in-out;
        }

        .n-about .listc .li {
        	position: relative;
        	overflow: hidden;
        }

        .h-banner-sunshine {
        	margin-bottom: 0 !important;
        }

        .index-load {
        	position: fixed;
        	width: 100%;
        	height: 100vh;
        	left: 0;
        	top: 0;
        	z-index: 99;
        	background: #fff;
        	background-size: cover;
        	transition: all .8s ease-in-out;
        }

        .index-load .loading-logo {
        	position: absolute;
        	left: 50%;
        	top: 50%;
        	margin-left: -85px;
        	margin-top: -25px;
        	z-index: 2;
        }

        .index-load .line {
        	width: 100%;
        	height: 2px;
        	position: absolute;
        	left: 0;
        	top: 0;
        	z-index: 2;
        }

        .index-load .line:before {
        	content: "";
        	position: absolute;
        	background: #2dbef0;
        	left: 0%;
        	height: 2px;
        	animation: width-load 2.5s forwards ease-out;
        }

        .index-load.active {
        	transform: translateY(100%);
        	-webkit-transform: translateY(100%);
        	-moz-transform: translateY(100%);
        }

        .index-load.active .line:before {
        	height: 100vh;
        	transition: all .3s .1s ease-in-out;
        }

        .index-warp {
        	transform: translateY(-10%);
        	-webkit-transform: translateY(-10%);
        	-moz-transform: translateY(-10%);
        	opacity: 0;
        	-webkit-transition: all 1s ease-in-out;
        	-o-transition: all 1s ease-in-out;
        	transition: all 1s ease-in-out;
        }

        .index-warp.active {
        	transform: translateY(0%);
        	-webkit-transform: translateY(0%);
        	-moz-transform: translateY(0%);
        	opacity: 1;
        }

        @keyframes width-load {
        	0% {
        		width: 0;
        	}

        	100% {
        		width: 100%;
        	}
        }

        .n-business .lista .dlbox .dt .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
        .video-ajax .recrult-t .p-text .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        	background: #000;
        }

        /*.n-business .listb .li .p-text .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background: #000;
  }
  .n-business .listb .li .p-text .mCSB_scrollTools .mCSB_draggerRail{
    background-color: #e8e8e8;
  }*/

        .n-personnel .listd .dlbox .dt .p .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        	background: #000;
        }

        .n-personnel .listd .dlbox .dt .p .mCSB_scrollTools .mCSB_draggerRail {
        	background-color: #e8e8e8;
        }

        .banner-nav-3 {
        	width: 1120px;
        	display: inline-block;
        }

        .h-nav-a span {
        	margin-right: 5px;
        }

        .h-banner-txt .pa1 {
        	font-size: 18px;
        	line-height: 24px;
        }

        @media (min-width: 1024px) {
        	.n-inestor .ul .li:before {
        		background: #0073bc;
        	}
        }

        .hvr-left-nav:before,
        .meun-nav .ul .li:before,
        .index-load .line:before,
        .i-lista .ul .li:hover,
        .i-lista .ul .li.active,
        .hvr-left:before,
        .n-about .listd .li:hover,
        .n-business .listb .li:hover,
        .page a.active,
        .page a:hover,
        .n-personnel .liste .carousel .li:hover .p,
        .n-chance .lista .li:hover,
        .n-chance .lista .li.cur,
        .n-chance .listb .ulbox li:hover .more,
        .video-ajax .recrult-t .p-text .ex-more,
        .n-news .ul .bot:before,
        .n-busines-info .listb .carousel .li:hover .p,
        .n-busines-info .listb .carousel .li .bgimg,
        .owl-buttons .owl-prev:hover,
        .owl-buttons .owl-next:hover {
        	background: #0073bc;
        }

        .bocweb-footer .f-left .li a:hover,
        .bocweb-footer .bot .ul .li:hover,
        .bocweb-footer .bot .fspandiv a:hover,
        .meun-nav .ul .li:hover,
        .meun-nav .ul .li.cur,
        .meun-nav .nav-list .nav-li a:hover,
        .text-blue,
        .n-about .listb .ul .li .hsu,
        .n-videopage-t .p:hover,
        .n-inestor .ul-two .li:hover .h {
        	color: #0073bc;
        }

        .n-about .listb .more:hover,
        .page a:hover,
        .page a.active {
        	border: 1px solid #0073bc;
        }

        .text-blue {
        	color: #0073bc !important;
        }

        .n-busines-info .listb .carousel .li:hover .p {
        	border-top: 1px solid #2d88c1;
        }

        .n-chance .lista .li:hover .j,
        .n-chance .lista .li.cur .j {
        	border-top: 10px solid #0073bc;
        }

        .page-header .s-sub-nav .sp2 {
        	background: #0073bc !important;
        }

        /** å¾®ä¿¡ç«¯é¡µé¢ **/

        .wx-banner img {
        	max-width: 100%;
        }

        .n-wx {
        	padding: 0 2% 40px;
        }

        .n-wx .li {
        	width: 33.3%;
        	float: left;
        	padding: 4% 2% 0;
        	box-sizing: border-box;
        }

        .n-wx .li p {
        	height: 40px;
        	line-height: 40px;
        	color: #333;
        	font-size: 12px;
        	text-align: center;
        	padding: 0 10px;
        	border: 1px solid #e5e5e5;
        	border-top: none;
        	background: #fff;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        	box-sizing: border-box;
        }

        .n-wx .li .img {
        	border: 1px solid #e5e5e5;
        }

        .n-wx .li .img img {
        	max-width: 100%;
        }

        .n-wxmore {
        	text-align: center;
        	width: 100%;
        }

        .wxmore {
        	padding: 0 20px;
        	border: 1px solid #959595;
        	text-align: center;
        	border-radius: 35px;
        	display: inline-block;
        	margin: 30px auto 0;
        }

        .wxmore p {
        	display: inline-block;
        	height: 35px;
        	line-height: 35px;
        	font-size: 12px;
        	color: #333;
        	background: url(../img/w1.png) no-repeat right center;
        	background-size: 12px auto;
        	padding-right: 20px;
        }

        .wx-er {
        	position: fixed;
        	top: 0;
        	left: 0;
        	width: 100%;
        	height: 100%;
        	display: none;
        }

        .wx-er img {
        	width: 200px;
        	height: 200px;
        	position: absolute;
        	left: 50%;
        	top: 50%;
        	margin-left: -100px;
        	margin-top: -100px;
        	z-index: 2;
        }

        .wx-er .bg-close {
        	position: absolute;
        	width: 100%;
        	height: 100%;
        	background: rgba(0, 0, 0, .6);
        	z-index: 1;
        }

        .bocweb-header .language-btn:before {
        	display: none;
        }

        header .langage-box {
        	width: 24px;
        	height: 24px;
        	position: relative;
        	padding-right: 15px;
        }

        .bocweb-header.on .header-right .langage-box:before {
        	background: rgba(0, 0, 0, 0.5);
        }

        header .langage-box:before {
        	content: '';
        	position: absolute;
        	width: 1px;
        	height: 14px;
        	background: rgba(255, 255, 255, 0.5);
        	right: 0px;
        	top: 50%;
        	margin-top: -7px;
        }

        header .langage-box i {
        	position: absolute;
        	width: 0;
        	height: 0;
        	left: 50%;
        	top: -10px;
        	border-width: 5px;
        	border-style: solid;
        	border-color: transparent transparent #fff;
        	margin-left: -5px;
        }

        .bocweb-header .language-btn {
        	display: block;
        	padding-left: 0;
        }

        header .langage-box .lang_z {
        	position: absolute;
        	left: 50%;
        	top: 35px;
        	width: 100px;
        	margin-left: -58px;
        	background: #fff;
        	border-radius: 3px;
        	display: none;
        	height: auto;
        	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .1);
        }

        header .langage-box .lang_z dd a {
        	display: block;
        	border-bottom: 1px solid #dbdbdb;
        	line-height: 35px;
        	font-size: 14px;
        	color: #545454;
        	text-align: center;
        }

        header .langage-box .lang_z dd:last-child a {
        	border-bottom: none;
        }

        .bocweb-header .wnav-btn {
        	height: 34px;
        	line-height: 34px;
        	width: 80px;
        }

        .bocweb-header .wnav-btn .sp {
        	float: right;
        	color: #fff;
        	margin-top: 5px;
        	font-size: 14px;
        	font-weight: bold;
        }

        .bocweb-header .nav-btn {
        	float: left;
        }

        .bocweb-header .header-l {
        	width: 300px;
        }

        .bocweb-header.active .wnav-btn .sp,
        .bocweb-header.on .wnav-btn .sp {
        	color: #333;
        }

        .bocweb-header.on .header-l {
        	width: 300px;
        }

        @media (max-width: 1023px) {
        	.bocweb-header .wnav-btn .sp {
        		display: none;
        	}
        }

        .mobile-banner,
        .mobile-mu {
        	display: none;
        }

        .img-mobilex,
        .img-mobilex-2 {
        	display: none;
        }

        .mobile-mu {
        	width: 100%;
        	height: 100%;
        }

        @media (max-width: 1514px) {
        	.w1440 {
        		width: 92%;
        	}

        	.i-banner .swiper-slide .text {
        		margin-left: -44%;
        	}
        }

        @media (max-width: 1500px) {
        	.meun-nav .w1440 {
        		padding-top: 3%;
        	}
        }

        @media (max-width: 1480px) {
        	.i-banner.cur .swiper-slide .text {
        		margin-top: -230px;
        	}

        	.i-lista .list-box .list1 .img img {
        		max-height: 250px;
        	}

        	.i-lista .list-box {
        		height: 310px;
        	}

        	.i-lista .list-box .list2 .n-list {
        		padding: 30px 35px;
        	}

        	.i-lista .list-box .list1 .p-text {
        		height: 240px;
        	}

        	.i-lista .list-box .list1 .p {
        		height: 84px;
        		margin-bottom: 20px;
        	}

        	.i-lista .list-box .list2 .time {
        		margin-bottom: 5px;
        	}

        	.i-lista .list-box .list2 .h {
        		margin-bottom: 10px;
        	}

        	.i-lista .list-box .list2 .img img {
        		width: 94%;
        	}
        }

        @media (max-width: 1370px) {
        	.banner-nav-3 {
        		width: 100%;
        	}

        	.w1300 {
        		width: 92%;
        	}

        	.i-banner .swiper-slide .text {
        		margin-left: -46%;
        	}

        	.i-banner .swiper-slide .text .tit-x {
        		font-size: 36px;
        	}

        	.i-banner .swiper-slide .text .tit-h {
        		font-size: 56px;
        	}

        	.i-lista .list-box .list1 .h {
        		font-size: 36px;
        	}

        	.bocweb-footer .f-left {
        		width: 36%;
        	}

        	.bocweb-footer .f-left .li {
        		margin-right: 20%;
        	}

        	.n-info-two .infobox {
        		padding: 50px 70px;
        	}

        	.meun-nav .ul .li {
        		font-size: 26px;
        	}

        	/* .meun-nav .w1440 {
          padding-top: 9%;
        }*/
        	.meun-nav .nav-list .ul:before {
        		margin-top: -175px;
        		height: 400px;
        	}

        	.bocweb-header {
        		padding: 15px 20px;
        	}

        	.meun-nav {
        		top: 80px;
        		height: calc(100% - 80px);
        	}
        }

        @media (max-width: 1275px) {
        	.sreach-box .text {
        		width: 80%;
        	}

        	.n-news .dlbox .dt {
        		width: 50%;
        		padding: 34px 6%;
        	}

        	.n-news .ul-two .li {
        		padding: 20px 0;
        	}

        	.n-news .dlbox .dd {
        		width: 50%;
        	}

        	.h-banner-content-two .h-nav {
        		margin-top: 60px;
        	}

        	.h-banner-title {
        		font-size: 45px !important;
        		line-height: 1 !important;
        	}

        	.h-banner-txt {
        		font-size: 20px !important;
        	}

        	.h-banner-txt .pa1 {
        		font-size: 14px;
        		line-height: 1.5;
        		margin-top: 5px;
        	}

        	.h-nav-a {
        		font-size: 16px !important;
        	}

        	.n-chance .lista .li {
        		margin: 0 15px;
        	}

        	.h-banner .down-btn {
        		width: 40px !important;
        		height: 40px !important;
        		margin-left: -17.5px !important;
        	}

        	.h-banner .down-btn img {
        		width: 15px;
        	}

        	.n-about .listb .p,
        	.n-about .listb .ul {
        		width: 100%;
        	}

        	.n-about .listb .ul .li .hsu {
        		font-size: 60px;
        	}

        	.meun-nav .nav-list .nav-li a {
        		text-indent: 35%;
        	}

        	.meun-nav .ul .li {
        		font-size: 24px;
        	}
        }

        .i-lista .list-box .list1 .img .imgb {
        	display: none;
        }

        @media (max-width: 1023px) {

        	.pc-banner,
        	.pc-mu {
        		display: none;
        	}

        	/*.i-lista .list-box .list2 .h{
          height: auto;
        }*/
        	.mobile-banner,
        	.mobile-mu {
        		display: block;
        		min-height: auto;
        	}

        	.mobile-banner .swiper-slide img,
        	.mobile-mu .swiper-slide img {
        		min-height: auto;
        	}

        	.i-banner .swiper-slide .text {
        		width: 240px;
        		height: 100px;
        		margin-top: -50px;
        	}

        	.i-banner .swiper-slide .text .tit-x {
        		font-size: 28px;
        	}

        	.i-banner .swiper-slide .text .tit-h {
        		font-size: 40px;
        	}

        	.i-banner .swiper-pagination.swiper-pagination-bullets span {
        		width: 20px;
        		height: 2px;
        		margin: 0 0 9px 5px !important;
        	}

        	.i-banner .swiper-pagination.swiper-pagination-bullets span.swiper-pagination-bullet-active {
        		width: 25px;
        		height: 2px;
        	}

        	.i-lista {
        		position: relative;
        	}

        	.i-lista .w1300 {
        		width: 100%;
        	}

        	.i-lista .ul .li {
        		width: 25%;
        		margin-right: 0;
        		border-right: 1px solid #e6e6e6;
        		box-sizing: border-box;
        		height: auto;
        	}

        	.i-lista .ul .li:hover,
        	.i-lista .ul .li.active {
        		height: auto;
        		margin-top: 0;
        		border-right: 1px solid #2dbef0;
        	}

        	.i-lista .ul .li {
        		text-align: center;
        		padding: 28px 0;
        	}

        	.i-lista .ul .li .img {
        		width: 100%;
        		margin-bottom: 10px;
        		margin-right: 0;
        	}

        	.i-lista .ul .li span {
        		display: block;
        		width: 100%;
        		line-height: 1;
        	}

        	.i-lista .list-box {
        		position: relative;
        		bottom: 0;
        	}

        	.i-lista {
        		bottom: 0;
        	}

        	.i-lista .list-box {
        		margin-bottom: 0;
        	}

        	.bocweb-header {
        		padding: 0 0 0 3%;
        	}

        	.bocweb-header .boc-logo img {
        		max-width: 85%;
        		margin-top: 4px;
        	}

        	.bocweb-header .header-l {
        		width: 145px;
        	}

        	.bocweb-header.on .header-l {
        		width: 145px;
        	}

        	.bocweb-header {
        		background: #fff;
        		position: fixed;
        		height: 60px;
        	}

        	.bocweb-header .nav-btn {
        		position: absolute;
        		right: 8px;
        		top: 20px;
        		margin-top: 0;
        	}

        	.bocweb-header .header-right {
        		margin-top: 0;
        		margin-right: 60px;
        	}

        	/*.bocweb-header .header-right .search-btn {
          height: 60px;
          width: 60px;
          margin-right: 0;
          border-left: 1px solid #e5e5e5;
        }
        .bocweb-header .header-right .language-btn {
          height: 60px;
          width: 60px;
          padding-left: 0;
          border-left: 1px solid #e5e5e5;
          border-right: 1px solid #e5e5e5;
          background: url(../img/img5-3.png) no-repeat center center;
        }
        .bocweb-header .header-l .boc-logo .imga {
          display: none;
        }
        .bocweb-header .header-l .boc-logo .imgb {
          display: block;
        }
        .bocweb-header .header-right .search-btn {
          background: url(../img/img5-2.png) no-repeat center;
        }
        .bocweb-header .header-right .language-btn:before {
          display: none;
        }
        */
        	.bocweb-header .header-right .search-btn {
        		height: 60px;
        		width: 60px;
        		margin-left: 0;
        		border-right: 1px solid #e5e5e5;
        	}

        	header .langage-box {
        		height: 60px;
        		width: 60px;
        		padding-right: 0;
        		border-left: 1px solid #e5e5e5;
        		border-right: 1px solid #e5e5e5;
        	}

        	header .langage-box:before {
        		display: none;
        	}

        	header .langage-box .lang_z {
        		width: 80px;
        		margin-left: -40px;
        		top: 60px;
        	}

        	.bocweb-header .header-right .language-btn {
        		height: 60px;
        		width: 60px;
        		/*padding-left: 0;
          border-left: 1px solid #e5e5e5;
          border-right: 1px solid #e5e5e5;*/
        		background: url(../img/img5-3.png) no-repeat center center;
        	}

        	.bocweb-header .header-l .boc-logo .imga {
        		display: none;
        	}

        	.bocweb-header .header-l .boc-logo .imgb {
        		display: block;
        	}

        	.bocweb-header .header-right .search-btn {
        		background: url(../img/img5-2.png) no-repeat center;
        	}

        	.bocweb-header .header-right .language-btn:before {
        		display: none;
        	}

        	.bocweb-header .nav-btn .line {
        		background: #a5a5a5;
        	}

        	.bocweb-header.active .header-right .language-btn,
        	.bocweb-header.on .header-right .language-btn {
        		background: url(../img/img5-3.png) no-repeat center center;
        	}

        	.meun-nav {
        		height: calc(100% - 60px);
        		top: 60px;
        	}

        	.bocweb-header .boc-logo {
        		width: 145px;
        		margin-top: 8px;
        	}

        	.bocweb-footer .f-right .wright {
        		display: none;
        	}

        	.bocweb-footer .f-right .wleft,
        	.bocweb-footer .f-right {
        		width: 100%;
        	}

        	.bocweb-footer .f-right .text-right,
        	.bocweb-footer .f-right .gup {
        		width: 50%;
        		float: left;
        		padding: 0 3%;
        		box-sizing: border-box;
        	}

        	.bocweb-footer .f-right .text-right {
        		text-align: left;
        		border-bottom: none;
        		border-right: 1px solid #e5e5e5;
        	}

        	.bocweb-footer .f-right .gup {
        		margin-top: 0;
        		margin-top: -10px;
        	}

        	.bocweb-footer .f-mid span {
        		display: none;
        	}

        	.bocweb-footer .f-mid {
        		width: 100%;
        		margin: 25px 0;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox {
        		display: block;
        		margin: 0 auto;
        		float: none;
        		width: 320px;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a {
        		margin: 0 19px;
        		width: 40px;
        		height: 40px;
        		border: 1px solid #b4b4b4;
        		border-radius: 50%;
        		text-align: center;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a.bds_tsina {
        		background: url(../img/img3.jpg) no-repeat 6px center;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a.bds_tqq {
        		background: url(../img/img3.jpg) no-repeat -34px center;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a.bds_sqq {
        		background: url(../img/img3.jpg) no-repeat -72px center;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a.bds_weixin {
        		background: url(../img/img3.jpg) no-repeat -109px center;
        	}

        	.bocweb-footer .f-left {
        		display: none;
        	}

        	.footer-mobile-mu .sub-menu {
        		position: relative;
        		overflow-y: hidden;
        	}

        	.bocweb-footer .bot .ul {
        		display: none;
        	}

        	.bocweb-footer .top {
        		padding-bottom: 0;
        		border-bottom: none;
        	}

        	.bocweb-footer .bot {
        		padding: 0;
        	}

        	.bocweb-footer .bot .bot-l,
        	.bocweb-footer .wbot {
        		width: 100%;
        	}

        	.bocweb-footer .wbot {
        		box-sizing: border-box;
        	}

        	.bocweb-footer .bot .bot-l {
        		margin: 0 auto 40px;
        		text-align: center;
        		padding: 0 3%;
        		box-sizing: border-box;
        	}

        	.bocweb-footer .bot .wfspan {
        		float: none;
        		display: block;
        		width: 100%;
        	}

        	.bocweb-footer .bot .fspan {
        		text-align: left;
        		height: 55px;
        		line-height: 55px;
        	}

        	.bocweb-footer .bot .fspandiv {
        		bottom: 55px;
        		width: calc(100% - 2px);
        		border-radius: 0;
        	}

        	.bocweb-footer .bot .fspandiv a {
        		line-height: 45px;
        		height: 45px;
        		font-size: 14px;
        	}

        	.bocweb-footer .bot .fspan {
        		width: 100%;
        		font-size: 14px;
        		background: #f2f2f2 url(../img/img24.png) no-repeat 96% center;
        	}

        	.bocweb-footer .bot .bot-r {
        		background: #e6e6e6;
        		padding: 25px 4%;
        		width: 100%;
        		border-top: 1px solid #f1f1f1;
        		text-align: center;
        		box-sizing: border-box;
        	}

        	.i-lista .n-list {
        		padding: 35px 4%;
        	}

        	.n-news .ul .li .p-text {
        		padding: 10px;
        	}

        	.n-news .ul .li {
        		width: 32%;
        		margin-right: 1.8%;
        	}

        	.sreach-box {
        		margin: 40px 0 50px;
        	}

        	/*.wpage {
          padding-top: 40px;
        }*/
        	.pa100 {
        		padding-bottom: 80px;
        	}

        	.n-news .dlbox .dd,
        	.n-news .dlbox .dt {
        		width: 100%;
        	}

        	.n-news .dlbox .dt {
        		padding: 30px 4%;
        	}

        	.n-info-two .infobox {
        		padding: 60px 40px;
        	}

        	.img-mobilex {
        		display: inline-block !important;
        	}

        	.n-business .lista .dlbox .dd {
        		margin-bottom: 35px;
        		background: none !important;
        	}

        	.n-business .lista .dlbox .dd,
        	.n-business .lista .dlbox .dt {
        		width: 100%;
        		height: auto;
        	}

        	.n-business .lista {
        		padding: 60px 0;
        	}

        	.n-business .listb {
        		padding: 20px 0 60px;
        	}

        	.n-business .listb .li {
        		padding: 25px;
        	}

        	.n-inestor .ul .li {
        		padding: 15px 20px;
        	}

        	.n-inestor .ul .li .p {
        		font-size: 16px;
        		line-height: 1.5;
        	}

        	.n-personnel .lista .dlbox .dd,
        	.n-personnel .listd .dlbox .dd {
        		background: none !important;
        		width: 100%;
        		height: auto;
        	}

        	.n-personnel .lista .dlbox .dt,
        	.n-personnel .listd .dlbox .dt {
        		width: 100%;
        		padding: 35px 3%;
        		height: auto;
        	}

        	.n-personnel .lista .dlbox .dt .h,
        	.n-personnel .listd .dlbox .dt .h {
        		font-size: 24px;
        		margin-bottom: 5px;
        		white-space: initial;
        		text-overflow: inherit;
        		overflow: auto;
        	}

        	.n-personnel .lista .dlbox .dt .y,
        	.n-personnel .listd .dlbox .dt .y {
        		font-size: 16px;
        		margin-bottom: 10px;
        	}

        	.n-personnel .listb .li-list {
        		width: 48%;
        		margin-right: 4%;
        		margin-bottom: 4%;
        	}

        	/*.n-personnel .listb .li-list:nth-child(2n) {
          margin-right: 0;
        }*/
        	.n-personnel .listd .swiper-button-next {
        		right: 0;
        	}

        	.n-chance .lista .ul {
        		width: 100%;
        	}

        	.n-chance .lista .li {
        		width: 23%;
        		margin: 0 1%;
        	}

        	.n-chance .listb .ulbox li {
        		padding: 15px;
        	}

        	.n-chance .listb .ulbox li {
        		width: 30%;
        		margin-right: 4.5%;
        		margin-bottom: 4.5%;
        	}

        	.n-chance .listb .ulbox li:nth-child(4n) {
        		margin-right: 4.5%;
        	}

        	.n-chance .listb .ulbox li:nth-child(3n) {
        		margin-right: 0%;
        	}

        	.n-videopage .video-box .btnx {
        		width: 60px;
        		height: 60px;
        		margin-left: -30px;
        		margin-top: -30px;
        	}

        	.n-about .listf .li {
        		padding: 60px 20px;
        		box-sizing: border-box;
        	}

        	.n-about .listf .li .h-tit {
        		font-size: 26px;
        	}

        	.n-about .listf .li .p {
        		font-size: 16px;
        	}

        	.n-about .listf .li .btnx {
        		width: 45px;
        		height: 45px;
        	}

        	.n-about .listf .li .btnx:after {
        		width: 45px;
        		height: 45px;
        		background: url(../img/img21.png) no-repeat center top;
        		background-size: 45px auto;
        	}

        	.n-about .listf .li .btnx:before {
        		width: 45px;
        		height: 45px;
        		background: url(../img/img21-1.png) no-repeat center bottom;
        		background-size: 45px auto;
        	}

        	#nav {
        		display: none;
        	}

        	.i-banner {
        		height: auto;
        	}

        	.n-chance .listb {
        		padding-bottom: 60px;
        	}

        	.page a {
        		padding: 4px 10px;
        		font-size: 14px;
        		margin-right: 6px;
        	}

        	.video-ajax .recrult-t .p-text .p {
        		height: 300px;
        	}

        	.video-ajax .recrult-t {
        		height: 450px;
        		padding: 20px;
        		margin-top: -220px;
        	}

        	.video-ajax.hidetwo .recrult-t {
        		width: 92%;
        		margin-left: -46%;
        	}

        	.video-ajax .recrult-t .p-text .ex-more {
        		margin-top: 25px;
        		width: 112px;
        		height: 30.8px;
        	}

        	.video-ajax .recrult-t .p-text .h {
        		font-size: 20px;
        		margin-bottom: 10px;
        	}

        	.n-news .page-header,
        	.n-busines-info .page-header,
        	.container-main .page-header {
        		margin-top: 45px;
        	}

        	.n-info-two {
        		margin-top: 45px;
        	}

        	.n-about .listb .p {
        		height: auto;
        	}

        	.n-about .listb .more {
        		display: none;
        	}

        	.i-lista .list-box .list1 .p {
        		height: auto;
        	}
        }

        @media (max-width: 960px) {
        	.i-lista .list-box .list1 .h {
        		font-size: 28px;
        	}

        	.i-lista .list-box .list1 .p,
        	.i-lista .ul .li {
        		font-size: 14px;
        		line-height: 1.6;
        	}

        	.search-alert .cent-form .tex {
        		font-size: 24px;
        		line-height: 100px;
        		height: 100px;
        		text-align: left;
        		text-indent: 20px;
        	}

        	.search-alert .cent-form {
        		height: 100px;
        		margin-top: -90px;
        	}

        	.search-alert .close {
        		top: 20px;
        		right: 20px;
        	}

        	.search-alert .cent-form .tex {
        		background: url(../img/img5.png) no-repeat 15px 40px;
        	}

        	.search-alert .cent-form .tex {
        		padding: 0 35px;
        	}

        	.search-alert .cent-form .sub-butn {
        		margin-top: 0;
        		font-size: 18px;
        	}

        	.n-news .ul .li {
        		width: 48%;
        		margin-right: 4%;
        		margin-bottom: 4%;
        	}

        	.n-news .ul .li:nth-child(3n) {
        		margin-right: 4%;
        	}

        	.n-news .ul .li:nth-child(2n) {
        		margin-right: 0;
        	}

        	.n-news .dlbox .dt .h,
        	.n-news .ul-two .li-l .h {
        		font-size: 18px;
        		margin-bottom: 5px;
        	}

        	.n-news .ul-two .li-l .p {
        		line-height: 24px;
        		height: 48px;
        		overflow: hidden;
        	}

        	.n-news .dlbox .dt .p {
        		margin-bottom: 30px;
        	}

        	.n-news .ul-two .li-l {
        		width: calc(100% - 230px);
        	}

        	.n-business .listb .li {
        		padding: 3%;
        	}

        	.n-business .lista .dlbox .dt .h {
        		font-size: 22px;
        		margin-bottom: 5px;
        	}

        	.n-business .lista .dlbox .dt .y {
        		font-size: 16px;
        		margin-bottom: 5px;
        	}

        	.n-business .lista .dlbox .dt .p {
        		line-height: 24px;
        	}

        	.n-inestor .ul-two .li {
        		width: 30%;
        		margin-right: 4%;
        		margin-bottom: 4%;
        	}

        	.n-inestor .ul-two .li:nth-child(4n) {
        		margin-right: 4%;
        	}

        	.n-inestor .ul-two .li:nth-child(3n) {
        		margin-right: 0;
        	}

        	.pa100,
        	.n-personnel .lista {
        		padding-bottom: 60px;
        	}

        	.n-personnel .listb .p-text {
        		padding: 10px;
        	}

        	.n-personnel .listb .p-text .h {
        		font-size: 16px;
        	}

        	.n-personnel .listb .p-text .sp {
        		font-size: 12px;
        	}

        	.n-personnel .listb {
        		padding-top: 60px;
        	}

        	.n-personnel .listc .h {
        		font-size: 16px;
        		padding: 15px 0;
        	}

        	.n-personnel .listd {
        		padding: 60px 0;
        	}

        	.n-about .listd {
        		padding-bottom: 60px;
        	}

        	.n-chance .listb .ulbox li .t {
        		font-size: 12px;
        		margin-bottom: 5px;
        	}

        	.n-chance .listb .ulbox li .h {
        		font-size: 16px;
        	}

        	.n-chance .listb .ulbox li .p {
        		margin: 15px 0 30px;
        		font-size: 12px;
        		line-height: 1.5;
        	}

        	.n-chance .listb .ulbox li .more {
        		font-size: 12px;
        	}

        	.n-chance .lista {
        		padding-bottom: 40px;
        	}

        	.n-videopage .p {
        		padding: 15px 0;
        		/*text-indent: 15px;*/
        		font-size: 16px;
        	}

        	.n-videopage .page-header {
        		margin-bottom: 0;
        	}

        	.n-about .lista .dlbox .dd {
        		width: 100%;
        		margin-bottom: 35px;
        	}

        	.n-about .lista .dlbox .dt {
        		width: 100%;
        	}

        	.n-about .lista .dlbox .dt .h {
        		font-size: 26px;
        		margin-bottom: 5px;
        	}

        	.n-about .lista .dlbox .dt .y {
        		font-size: 16px;
        	}

        	.n-about .lista .dlbox .dt .p {
        		margin-bottom: 35px;
        	}

        	.n-about .listb .page-header,
        	.n-about .listd .page-header {
        		margin-top: 15px;
        		margin-bottom: 0;
        	}

        	.n-about .listb .ul .li .hsu {
        		font-size: 45px;
        	}

        	.n-about .listb .ul .li .p1 {
        		font-size: 12px;
        	}

        	.n-about .listb .p {
        		margin-bottom: 35px;
        	}

        	.n-about .listb .more {
        		width: 115px;
        		padding: 0 20px;
        	}

        	.n-about .listb .p {
        		font-size: 14px;
        	}

        	.n-about .listc .li {
        		width: 100%;
        		margin-bottom: 10px;
        	}

        	.n-about .listd .li {
        		width: 31%;
        		margin-right: 3.5%;
        		margin-bottom: 3.5%;
        	}

        	.n-about .listd .li:nth-child(5n) {
        		margin-right: 3.5%;
        	}

        	.n-about .listd .li:nth-child(3n) {
        		margin-right: 0;
        	}

        	.n-about .liste .wtimelist {
        		width: 90%;
        		margin-bottom: 55px;
        	}

        	.n-about .listf .li {
        		width: 100%;
        		margin-bottom: 10px;
        	}

        	.n-about .listf {
        		padding: 60px 0;
        	}

        	.n-about .lista .dlbox .dt {
        		margin-top: 0;
        	}

        	.n-personnel .listc {
        		padding-bottom: 30px;
        	}

        	/*.index-load.active{
          transform: translateY(-100%);
        }
        .index-warp{
          transform: translateY(20%);
          transition: all .6s ease-in-out;
        }*/
        	#navlist {
        		position: absolute;
        	}
        }

        @media (max-width: 786px) {
        	.i-lista .list-box .list1 .img {
        		width: 100%;
        		margin-bottom: 30px;
        	}

        	.i-lista .list-box .list1 .p-text,
        	.i-lista .list-box .list1 .p {
        		width: 100%;
        	}

        	.i-lista .list-box .list1 .p {
        		margin-bottom: 20px;
        	}

        	.bocweb-footer .bot .bot-r {
        		line-height: 15px;
        	}

        	.container-fluid .wcol-xs {
        		width: 100% !important;
        	}

        	.sreach-box .text {
        		width: 68%;
        	}

        	.n-news .ul-two .li-l {
        		width: calc(100% - 160px);
        	}

        	.n-news .ul-two .li-r {
        		width: 140px;
        	}

        	.n-news .ul-two .li-l .time {
        		display: block;
        		margin-top: 10px;
        		margin-left: 0;
        	}

        	.n-news .ul-two .li-l .h {
        		width: 100%;
        	}

        	.page-header {
        		font-size: 22px !important;
        	}

        	.n-news .ul-two .li-l .p {
        		line-height: 20px;
        		height: 40px;
        		overflow: hidden;
        	}

        	.n-info-two .infobox {
        		padding: 40px 3%;
        	}

        	.n-info-two .infobox .info-top .h {
        		width: 100%;
        		margin-bottom: 35px;
        		font-size: 20px;
        	}

        	.n-info-two .infobox .text {
        		padding: 30px 0;
        	}

        	.n-inestor .ul .li .p {
        		font-size: 14px;
        		width: calc(100% - 100px);
        	}

        	.h-banner-title {
        		font-size: 36px !important;
        	}

        	.h-banner-txt {
        		font-size: 16px !important;
        	}

        	.n-inestor .ul-two .li {
        		width: 48%;
        		margin-right: 4%;
        		margin-bottom: 30px;
        	}

        	.n-inestor .ul-two .li:nth-child(3n) {
        		margin-right: 4%;
        	}

        	.n-inestor .ul-two .li:nth-child(4n) {
        		margin-right: 4%;
        	}

        	.n-inestor .ul-two .li:nth-child(2n) {
        		margin-right: 0;
        	}

        	.n-inestor .ul-two .h {
        		font-size: 14px;
        	}

        	.n-inestor .ul-two .time {
        		font-size: 12px;
        	}

        	.n-inestor .ul-two .bot {
        		background: url(../img/img11.png) no-repeat right 5px;
        		background-size: 16px auto;
        	}

        	.n-personnel .listb .li-list {
        		width: 100%;
        		margin-bottom: 30px;
        	}

        	.n-personnel .listc .li-list {
        		width: 100%;
        		margin-right: 0;
        		margin-bottom: 30px;
        	}

        	.n-personnel .listd .dlbox .dt {
        		padding: 15px 3%;
        	}

        	.n-personnel .lista .dlbox .dt .h,
        	.n-personnel .listd .dlbox .dt .h {
        		font-size: 20px;
        	}

        	.h-nav {
        		border-bottom: 1px solid #f1f2f1;
        	}

        	.n-chance .listb .ulbox li {
        		width: 48%;
        		margin-right: 4%;
        		margin-bottom: 4%;
        	}

        	.n-chance .listb .ulbox li:nth-child(3n) {
        		margin-right: 4%;
        	}

        	.n-chance .listb .ulbox li:nth-child(4n) {
        		margin-right: 4%;
        	}

        	.n-chance .listb .ulbox li:nth-child(2n) {
        		margin-right: 0%;
        	}

        	.n-chance .lista .li .sp {
        		width: 35px;
        		height: 35px;
        		background-size: 35px auto !important;
        	}

        	.n-chance .lista .li {
        		padding: 15px 0;
        		height: auto;
        	}

        	.n-chance .lista .li .p {
        		font-size: 14px;
        		height: 36px;
        		line-height: 18px;
        	}

        	.n-about .listc .li {
        		/*padding: 60px 0;*/
        	}

        	.n-about .listc .li .img img {
        		width: 60px;
        	}

        	.n-about .listd .li .h {
        		font-size: 16px;
        	}

        	.n-about .listd .li .p {
        		font-size: 12px;
        	}

        	.n-about .listd .li .p-text {
        		padding: 10px;
        	}

        	.n-about .liste .honorbox .swiper-slide .p-text {
        		padding: 10px;
        		height: auto;
        		font-size: 14px;
        		line-height: 1.5;
        	}

        	.n-about .liste {
        		padding: 40px 0 60px;
        	}

        	.n-about .liste .page-header {
        		margin-top: 0;
        	}

        	.n-about .liste .timelist .swiper-slide {
        		font-size: 16px;
        	}

        	.n-about .liste .honorbox .swiper-slide .time {
        		font-size: 14px;
        		height: 25px;
        		line-height: 25px;
        	}

        	.n-about .liste .honorbox .swiper-button-prev,
        	.n-about .liste .honorbox .swiper-button-next {
        		width: 30px;
        		height: 30px;
        		margin-top: -15px;
        		background-size: 30px auto;
        	}

        	.n-about .liste .honorbox .swiper-button-prev:hover,
        	.n-about .liste .honorbox .swiper-button-next:hover {
        		width: 30px;
        		height: 30px;
        		background-size: 30px auto;
        	}

        	.n-busines-info .p-text {
        		margin: 35px 0;
        		line-height: 24px;
        		font-size: 14px;
        	}

        	.n-busines-info .listb {
        		padding-bottom: 60px;
        	}

        	.n-busines-info .listb .page-header {
        		margin-top: 0;
        	}

        	.wxboxbtn {
        		margin-top: 20px;
        	}

        	.img-mobilex-2 {
        		display: block;
        	}

        	.ex-more span {
        		font-size: 14px;
        	}

        	.n-busines-info .lista .carousel .li {
        		margin: 0;
        	}

        	.n-busines-info .listb .carousel .li {
        		margin-right: 0;
        	}
        }

        @media (max-width: 560px) {
        	.listb .line div {
        		font-size: .32rem;
        	}

        	.i-lista .ul .li {
        		padding: 5px 0 15px;
        	}

        	.i-lista .ul .li .img {
        		margin-top: 0;
        	}

        	.bocweb-footer .top {
        		padding: 40px 0 30px;
        	}

        	.header-mobile-mu .sub-menu {
        		height: 550px;
        	}

        	.i-lista .ul .li span {
        		font-size: 12px;
        	}

        	.n-news .ul .li {
        		width: 100%;
        		margin-right: 0%;
        		margin-bottom: 25px;
        	}

        	.n-news .ul .li:nth-child(3n) {
        		margin-right: 0%;
        	}

        	.n-news .ul .li:nth-child(2n) {
        		margin-right: 0;
        	}

        	.page-header .s-sub-nav .sp {
        		width: 75px !important;
        		padding: 0 5px !important;
        	}

        	.page-header .s-sub-nav {
        		/*width: 185px !important;*/
        	}

        	.page-header .s-sub-nav .sp2 {
        		padding: 0 20px 0 15px !important;
        		width: 70px !important;
        	}

        	.page-header .s-sub-nav .s-sub-navbox {
        		/*width: 110px !important;*/
        	}

        	.page-header .s-sub-nav .sp2:before {
        		right: 10px !important;
        	}

        	.n-business .listb .li {
        		width: 100%;
        		margin-right: 0;
        		margin-bottom: 35px;
        	}

        	.bocweb-footer .f-right .gup-l .su {
        		font-size: 36px;
        	}

        	.bocweb-footer .f-right .wleft .h {
        		font-size: 14px;
        	}

        	.bocweb-footer .f-right .gup .su3 {
        		font-size: 15px;
        		margin-top: 22px;
        	}

        	.n-inestor .ul .li .p {
        		width: 100%;
        		margin-bottom: 5px;
        	}

        	.n-inestor .ul .li .time {
        		width: 100%;
        		padding-left: 40px;
        		box-sizing: border-box;
        	}

        	.n-chance .lista .li .p {
        		font-size: 12px;
        	}

        	.sreach-box {
        		margin: 25px 0 30px;
        	}

        	.sreach-box .submit {
        		width: 60px;
        	}

        	.sreach-box label,
        	.sreach-box .text,
        	.sreach-box .submit,
        	.sreach-box {
        		height: 55px;
        		line-height: 55px;
        	}

        	.n-about .listd .li {
        		width: 48%;
        		margin-right: 4%;
        		margin-bottom: 25px;
        	}

        	.n-about .listd .li:nth-child(5n) {
        		margin-right: 4%;
        	}

        	.n-about .listd .li:nth-child(3n) {
        		margin-right: 4%;
        	}

        	.n-about .listd .li:nth-child(2n) {
        		margin-right: 0;
        	}

        	.n-about .listf .li {
        		padding: 35px 15px;
        	}

        	.n-about .listf .li .btnx {
        		margin-top: 15px;
        	}

        	.n-about .listf .li .btnx {
        		width: 30px;
        		height: 30px;
        	}

        	/*.n-about .listf .li:hover .btnx {
          background-size: 30px auto;
        }*/
        	.n-about .listf .li .btnx:after {
        		width: 30px;
        		height: 30px;
        		background: url(../img/img21.png) no-repeat center top;
        		background-size: 30px auto;
        	}

        	.n-about .listf .li .btnx:before {
        		width: 30px;
        		height: 30px;
        		background: url(../img/img21-1.png) no-repeat center bottom;
        		background-size: 30px auto;
        	}

        	.n-about .lista .dlbox .dt .h {
        		font-size: 24px;
        	}

        	.i-lista .list-box .list2 .newsli {
        		padding: 0 10px 0 0;
        	}

        	.n-about .liste .wtimelist {
        		padding: 0 40px;
        	}

        	.n-about .listb .ul .li {
        		width: 50%;
        		margin-bottom: 35px;
        	}

        	.n-about .listb .ul {
        		margin-bottom: 0;
        	}

        	.search-alert .cent-form .tex {
        		font-size: 18px;
        	}

        	.h-nav-a {
        		font-size: 14px !important;
        	}

        	.i-banner .swiper-pagination.swiper-pagination-bullets {
        		display: inline-block;
        		margin: 0 3px;
        		bottom: 10px;
        		left: 50%;
        		right: auto !important;
        		top: auto !important;
        	}

        	.i-banner .swiper-pagination.swiper-pagination-bullets span {
        		width: 6px;
        		height: 6px;
        		border-radius: 50%;
        		margin: 0 3px !important;
        		float: left;
        	}

        	.i-banner .swiper-pagination.swiper-pagination-bullets span.swiper-pagination-bullet-active {
        		width: 6px;
        		height: 6px;
        		margin: 0 3px !important;
        		border-radius: 50%;
        	}

        	.n-info-two .infobox .info-top .h {
        		font-size: 18px;
        		line-height: 28px;
        	}

        	.n-info-two .infobox .info-top .h {
        		margin-bottom: 20px;
        	}

        	.n-info-two .infobox .bot {
        		padding-top: 25px;
        	}

        	.bocweb-footer .bot .fspan {
        		background: #f2f2f2 url(../img/img24.png) no-repeat 96% center;
        		background-size: 20px auto;
        	}

        	.i-lista .ul .li .img img {
        		width: 35px;
        		margin-left: -17.5px !important;
        	}

        	.i-lista .ul .li .img {
        		height: 35px;
        	}

        	.z-idea-container .z-idea {
        		margin-top: 15px !important;
        	}

        	.page-header {
        		border-bottom: none !important;
        		padding-bottom: 0 !important;
        		margin: 30px 0 10px !important;
        	}

        	.n-personnel .page-header {
        		padding-top: 30px;
        		margin-top: 0 !important;
        	}

        	.n-news .page-header,
        	.n-busines-info .page-header,
        	.container-main .page-header {
        		margin: 30px 0 10px !important;
        	}

        	.n-personnel .lista .dlbox,
        	.n-chance .lista .w-ul {
        		margin-top: 20px;
        	}

        	.n-personnel .lista .dlbox .dt,
        	.n-personnel .listd .dlbox .dt {
        		padding: 25px 0 0;
        		margin-bottom: 0;
        		border: none;
        	}

        	.n-personnel .lista .dlbox {
        		margin-bottom: 0;
        	}

        	.n-personnel .lista,
        	.n-chance .listb,
        	.n-about .lista {
        		padding-bottom: 45px;
        	}

        	.n-personnel .listb {
        		padding: 45px 0 0;
        	}

        	.n-personnel .listb .li-list:last-child,
        	.n-about .listc .li {
        		margin-bottom: 0;
        	}

        	.n-about .listb,
        	.n-about .listd {
        		padding: 10px 0 45px;
        	}

        	.pa100 {
        		padding-bottom: 45px;
        	}

        	.index-load .line {
        		display: none;
        	}

        	.n-chance .lista .li {
        		padding: 15px 0 5px;
        	}

        	.n-chance .lista .li .sp {
        		margin-bottom: 0;
        	}

        	.activity .content {
        		max-height: 52px;
        		height: auto !important;
        	}
        }

        @media (max-width: 450px) {
        	.n-chance .lista .li .p {
        		padding: 0 5px;
        	}
        }

        @media (max-width: 320px) {

        	.bocweb-header .header-l,
        	.bocweb-header .boc-logo {
        		width: 110px;
        		height: auto;
        	}

        	.bocweb-header .boc-logo {
        		margin-top: 15px;
        	}

        	.i-lista .ul .li .img {
        		height: 35px;
        		margin-bottom: 5px;
        	}

        	.i-lista .ul .li .img .img1 {
        		width: 32px;
        		margin-left: -18px !important;
        	}

        	.i-lista .ul .li .img .img2 {
        		width: 32px;
        		margin-left: -18px !important;
        	}

        	.i-lista .ul .li span {
        		height: 30px;
        		overflow: hidden;
        		line-height: 1.2;
        	}

        	.i-lista .ul .li {
        		padding: 5px 0;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox {
        		width: 280px;
        	}

        	.bocweb-footer .f-mid .bdsharebuttonbox a {
        		margin: 0 14px;
        	}

        	.header-mobile-mu .sub-menu {
        		height: 445px;
        	}

        	.bocweb-header.on {
        		padding: 0 !important;
        	}

        	.bocweb-header {
        		padding: 0 !important;
        	}

        	.bocweb-header .header-l {
        		width: 120px;
        		margin-left: 10px;
        	}

        	.bocweb-header.on .header-l {
        		width: 120px;
        		margin-left: 10px;
        	}
        }

        .i-banner .swiper-slide .text .tit-x,
        .i-banner .swiper-slide .text .tit-h {
        	-webkit-transition: all .6s;
        	transition: all .6s;
        }

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

        @media (min-width: 1480px) {
        	.container {
        		width: 1440px;
        	}
        }

        a:hover,
        a:focus {
        	text-decoration: none !important;
        }

        .page-header {
        	font-size: 26px;
        	line-height: 45px;
        	border-bottom: 1px solid #e4e4e4;
        	position: relative;
        	z-index: 3;
        }

        .page-header .s-sub-nav {
        	/*width: 260px;*/
        	height: 45px;
        	line-height: 45px;
        }

        .page-header .s-sub-nav .sp {
        	width: 100px;
        	text-align: center;
        	font-size: 14px;
        	color: #666;
        	padding: 0 10px;
        	background: #ebebeb;
        	display: table-cell;
        }

        .page-header .s-sub-nav .sp span {
        	display: inline-block;
        	vertical-align: middle;
        	line-height: 1.2;
        }

        .page-header .s-sub-nav .s-sub-navbox {
        	position: relative;
        }

        .page-header .s-sub-nav .sp2 {
        	background: #36bef0;
        	/*text-indent: 15px;*/
        	font-size: 14px;
        	color: #fff;
        	position: relative;
        	width: 100%;
        	cursor: pointer;
        	padding: 0 30px 0 15px;
        	width: 80px;
        	display: table-cell;
        }

        .page-header .s-sub-nav .sp2 span {
        	display: inline-block;
        	vertical-align: middle;
        	line-height: 1.2;
        }

        .page-header .s-sub-nav .s-sub-navlist {
        	position: absolute;
        	left: 0;
        	top: 45px;
        	width: 100%;
        	background: #fff;
        	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .1);
        	display: none;
        }

        .page-header .s-sub-nav a {
        	font-size: 14px;
        	height: 40px;
        	color: #666;
        	width: 100%;
        	display: block;
        	text-indent: 15px;
        	border-bottom: 1px solid #f7f7f7;
        	transition: all .5s;
        }

        .page-header .s-sub-nav a:hover {
        	color: #36bef0;
        }

        .page-header .s-sub-nav .sp2:before {
        	content: '';
        	position: absolute;
        	right: 30px;
        	top: 50%;
        	margin-top: -4px;
        	background: url(../img/img7.png) no-repeat;
        	width: 12px;
        	height: 8px;
        	transition: all .5s;
        }

        .page-header .s-sub-nav .sp2.active:before {
        	transform: rotate(-180deg);
        }

        .page-header .s-sub-nav .s-sub-navbox {
        	/*width: 160px;*/
        }

        .h-banner {
        	position: relative;
        	background-position: center;
        	background-size: cover;
        }

        .h-banner-img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        }

        .h-banner-content {
        	position: absolute;
        	left: 0;
        	right: 0;
        	bottom: 0;
        	text-align: center;
        	color: #fff;
        	height: 300px;
        	overflow: hidden;
        }

        .h-banner-title {
        	margin-bottom: 10px;
        	font-size: 32px;
        	text-shadow: 0 0 18px rgba(0, 0, 0, .18);
        }

        .h-banner-txt {
        	font-size: 16px;
        	text-shadow: 0 0 18px rgba(0, 0, 0, .18);
        }

        .h-banner-txt2 {
        	text-shadow: 0 0 18px rgba(0, 0, 0, .18);
        }

        .h-banner-title.text-blue,
        .h-banner-txt.text-blue,
        .h-banner-txt2.text-blue {
        	color: #0d6ead;
        }

        .h-nav {
        	position: absolute;
        	left: 0;
        	right: 0;
        	bottom: -5px;
        	height: 70px;
        }

        .h-nav-a {
        	display: block;
        	color: #333;
        	margin: 0 -15px;
        	height: 70px;
        	background-color: #fff;
        	font-size: 16px;
        	text-align: center;
        	transition: color 0.6s;
        	box-sizing: border-box;
        }

        .h-nav-a .ico {
        	display: block;
        	width: 36px;
        	height: 36px;
        	margin: 0 auto;
        	background-size: 100% auto;
        	background-position: 0 0;
        	vertical-align: middle;
        }

        .h-banner .down-btn {
        	width: 52px;
        	height: 52px;
        	position: absolute;
        	left: 50%;
        	bottom: 30px;
        	margin-left: -22.5px;
        	border: 2px solid #fff;
        	text-align: center;
        	line-height: 52px;
        	border-radius: 50%;
        	cursor: pointer;
        	animation: downbtn2 5s cubic-bezier(.455, .03, .515, .955) infinite;
        }

        .container-fluid {
        	background: #fff;
        }

        .container-fluid .h-nav {
        	text-align: center;
        }

        .container-fluid .wcol-xs {
        	display: inline-block;
        	width: 770px;
        }

        .h-banner .down-btn img {
        	display: inline-block;
        	animation: downbtn 5s cubic-bezier(.455, .03, .515, .955) infinite;
        }

        #navlist {
        	padding: 0;
        	margin-left: 0;
        	margin-right: 0;
        	/*position: absolute;*/
        }

        #navlist .owl-item .col-xs-m {
        	width: 100%;
        }

        .content {
        	width: 82%;
        	margin: 0 auto 20px;
        }

        
        .interesting-list-nav {
            padding-top: 40px;
            overflow: hidden;
            text-align: center;
        }
        
        .interesting-nav {
            padding: 20px 0;
            position: relative;
            margin: auto;
            display: inline-block;
        }
        
        .interesting-nav::after {
            content: '';
            width: 100%;
            height: 3px;
            background: #ccc;
            bottom: 0;
            position: absolute;
            right: 0;
        }
        
        .interesting-list-nav a {
            font-size: 17px;
            color: #999999;
            font-weight: bold;
            margin-left: 50px;
            display: inline-block;
            position: relative;
            transition: 0.3s all;
            -webkit-transition: 0.3s all;
            -moz-transition: 0.3s all;
            -ms-transition: 0.3s all;
            -o-transition: 0.3s all;
        }
        
        .interesting-list-nav a.cur::after {
            content: '';
            width: 100%;
            height: 4px;
            background: #004EA2;
            bottom: -21px;
            position: absolute;
            right: 0;
            z-index: 1;
        }
        
        .interesting-list-nav a:first-child {
            margin-left: 0;
        }
        
        .interesting-list-nav a.cur {
            color: #1a1a1a;
        }
        
        .interesting-list-nav a:hover {
            color: #000;
        }
        
        .interesting-list {
            overflow: hidden;
            padding: 40px 0;
        }
        
        .interesting-list a {
            width: 32.3%;
            float: left;
            background: #f7f7f7;
            margin-right: 1%;
            margin-bottom: 1%;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .interesting-list a.mr0 {
            margin-right: 0;
        }
        
        .interesting-list a .text {
            position: relative;
            bottom: auto;
            width: 100%;
            padding: 3%;
            left: auto;
            color: #000000;
            height: 90px;
        	box-sizing: border-box;
        }
        
        .interesting-list a .text h3 {
            margin: 0;
            font-size: 18px;
            line-height: 26px;
            margin-bottom: 10px;
        }
        
        .interesting-list a .text h6 {
            margin: 0;
            font-size: 14px;
            color: #999999;
            font-weight: normal;
        }
        
        .interesting-list a .img {
            position: relative;
            overflow: hidden;
        }
        
        .interesting-list a .img img {
            display: block;
            width: 100%;
            height: 100%;
        	object-fit: cover;
            z-index: 13;
            position: relative;
        }
        
        .interesting-list a:hover .img img.img-center {
            opacity: .8;
            transform: scale(1.1);
        }
        

        @media (max-width: 786px) {
        	.h-banner-content-two .h-banner-title {
        		margin-top: 80px;
        	}

        	.pa100,
        	.n-personnel .lista {
        		padding-bottom: 0;
        	}
        }

        @media (min-width: 992px) {
        	.page-header {
        		font-size: 34px;
        	}

        	.h-banner {
        		height: 360px;
        		margin-top: 50px;
        		margin-bottom: 0;
        	}

        	.h-banner-img {
        		display: block;
        		height: 100%;
        		width: 100%;
        		object-fit: cover;
        	}

        	.h-banner-content {
        		margin: 0 auto;
        		top: 50%;
        		height: 300px;
        		margin-top: -130px;
        	}

        	.h-banner-title {
        		font-size: 55px;
        		margin-top: 0;
        		margin-bottom: 15px;
        	}

        	.h-banner-txt {
        		font-size: 24px;
        	}

        	.h-nav {
        		margin-top: 30px;
        		position: relative;
        		height: auto;
        		background-color: transparent;
        		box-shadow: none;
        	}

        	.h-banner-content-two .h-nav {
        		margin-top: 90px;
        	}

        	.h-nav-a {
        		display: block;
        		padding: 0;
        		line-height: 70px;
        		font-size: 20px;
        		margin: 0;
        		border-right: none;
        		box-sizing: border-box;
        	}

        	.h-nav-a .ico {
        		display: inline-block;
        		width: 50px;
        		height: 50px;
        		margin-right: 8px;
        	}

        	.banner-ccp-t .h-banner-title {
        		margin-top: 45px;
        	}

        	.banner-ccp-t .h-nav {
        		margin-top: 80px;
        	}

        	.n-personnel .page-header {
        		padding-top: 20px;
        	}
        }


        @media (min-width: 1270px) {
        	.h-banner {
        		height: 530px;
        		margin-top: 70px;
        	}

        	.h-banner-content-two {
        		height: 340px;
        		margin-top: -170px;
        	}

        	.h-banner-content-s {
        		margin-top: -120px;
        	}
        }

        @media (max-width: 980px) {
        	.banner-nav-3 {
        		display: none;
        	}

        	.h-banner {
        		margin-top: 50px;
        	}
        }

        @media (max-width: 800px) {
        	.h-banner {
        		height: 260px;
        	}

        	.h-banner-title {
        		font-size: 30px !important;
        	}

        	.h-banner-content {
        		height: auto;
        		bottom: 70px;
        	}

        	.h-nav {
        		position: unset;
        	}

        	.n-personnel .listb .p-text .spdiv {
        		height: 80px;
        	}
			.content{width: 95%;}
			.interesting-list-nav{padding-top: 0;}
			.interesting-list-nav a{font-size: 14px;margin-left: 5px;margin-bottom: 10px;}
			.interesting-list-nav a.cur::after{bottom: -5px;}
			.interesting-nav{padding: 10px 0;}
			.interesting-list-nav a.cur::after{bottom: -5px;}
        }

        @media (max-width: 600px) {
        	.h-banner {
        		height: 160px;
        	}

        	.h-banner-content {
        		bottom: 40px;
        	}
        }
