﻿.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.simple-form-basic,
.simple-text,
.simple-textarea,
.simple-select {
    border: 1px solid #ccc;
    padding: 4px;
    vertical-align: middle;
}

.simple-form-basic:focus,
.simple-text:focus,
.simple-textarea:focus,
.simple-select:focus {
    outline: 0 none;
}

.simple-text {
    height: 18px;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.simple-text:focus {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}

.simple-textarea {
    height: 18px;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 80px;
    width: 500px;
    vertical-align: top;
}

.simple-textarea:focus {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}

.simple-select {
    *margin-top: 5px;
    *margin-bottom: 5px;
    *vertical-align: top;
}

.reset-radio-checkbox {
    margin: 0 5px 0 0;
    padding: 0;
    font-size: 13px;
    *width: 13px;
    *height: 13px;
}


/**
 * 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;
    color: #08c;
}

a:active,
a:hover {
    outline: 0;
    /* 2 */
}

a:hover {
    color: #006699;
}


/* 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 {
    -moz-box-sizing: content-box;
    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 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 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";
}

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;
}

html {
    overflow: hidden;
    overflow-y: scroll;
}

button,
input,
textarea,
select {
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

.clear {
    clear: both;
}

.f-cb {
    zoom: 1;
}

.f-cb:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    content: ".";
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.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: fixed;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    border-right: 2px solid rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    animation: spinner 700ms infinite linear;
}

.loader.white {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    border-right: 2px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*手机上a链接有黑色透明底怎么去掉
给a加这个样式*/

a {
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

select,
input {
    outline: none;
}


/*ie 去掉自带关闭*/

input::-ms-clear {
    display: none;
}


/*网站单位设置*/

@media only screen and (min-width: 360px) {
    html {
        font-size: 26px !important;
    }
}

@media only screen and (min-width: 435px) {
    html {
        font-size: 30px !important;
    }
}


/*@media only screen and(min-width: 500px) {
  html {
    font-size: 36px!important
  }
}*/

@media (min-width: 769px) {
    html {
        font-size: 34px !important;
    }
}

@media only screen and (min-width: 1024px) {
    html {
        font-size: 28px !important;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 30px !important;
    }
}

@media only screen and (min-width: 1440px) {
    html {
        font-size: 34px !important;
    }
}

@media only screen and (min-width: 1680px) {
    html {
        font-size: 40px !important;
    }
}

::-moz-selection {
    background: red;
    color: #fff;
}

::selection {
    background: red;
    color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background-image: -webkit-linear-gradient(0, #d77515, #d71518);
    background-image: linear-gradient(0, #d77515, #d71518);
    background-image: -webkit-linear-gradient(bottom, #d77515, #d71518);
    background-image: linear-gradient(to top, #d77515, #d71518);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-image: -webkit-linear-gradient(0, #d77515, #d71518);
    background-image: linear-gradient(0, #d77515, #d71518);
    background-image: -webkit-linear-gradient(bottom, #d77515, #d71518);
    background-image: linear-gradient(to top, #d77515, #d71518);
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-image: -webkit-linear-gradient(0, #d77515, #d71518);
    background-image: linear-gradient(0, #d77515, #d71518);
    background-image: -webkit-linear-gradient(bottom, #d77515, #d71518);
    background-image: linear-gradient(to top, #d77515, #d71518);
}


/*==常用颜色==*/

.col-fff {
    color: #fff;
}

.col-000 {
    color: #000;
}

.col-111 {
    color: #111;
}

.col-222 {
    color: #222;
}

.col-333 {
    color: #333;
}

.col-666 {
    color: #666;
}

.col-999 {
    color: #999;
}

.main_color {
    color: #1d2974;
}


/*==常用字号==*/

.tit-12 {
    font-size: 12px;
    line-height: 2;
}

.tit-13 {
    font-size: 13px;
    line-height: 2;
}

.tit-14 {
    font-size: 14px;
    line-height: 2;
}

.tit-15 {
    font-size: 15px;
    line-height: 2;
}

.tit-16 {
    line-height: 1.8;
    font-size: 16px;
}

.tit-17 {
    line-height: 1.8;
    font-size: 17px;
}

.tit-18 {
    line-height: 1.8;
    font-size: 18px;
}

.tit-19 {
    line-height: 1.8;
    font-size: 19px;
}

.tit-20 {
    line-height: 1.8;
    font-size: 20px;
}

.tit-21 {
    line-height: 1.8;
    font-size: 21px;
}

.tit-22 {
    line-height: 1.8;
    font-size: 22px;
}

.tit-23 {
    line-height: 1.8;
    font-size: 23px;
}

.tit-24 {
    line-height: 1.8;
    font-size: 24px;
}

.tit-25 {
    line-height: 1.8;
    font-size: 25px;
}

.tit-26 {
    line-height: 1.8;
    font-size: 26px;
}

.tit-27 {
    line-height: 1.8;
    font-size: 27px;
}

.tit-28 {
    line-height: 1.8;
    font-size: 28px;
}

.tit-29 {
    line-height: 1.8;
    font-size: 29px;
}

.tit-30 {
    line-height: 1.8;
    font-size: 30px;
}

.tit-31 {
    line-height: 1.8;
    font-size: 31px;
}

.tit-32 {
    line-height: 1.8;
    font-size: 32px;
}

.tit-33 {
    line-height: 1.8;
    font-size: 33px;
}

.tit-34 {
    line-height: 1.8;
    font-size: 34px;
}

.tit-35 {
    line-height: 1.8;
    font-size: 35px;
}

.tit-36 {
    line-height: 1.8;
    font-size: 36px;
}

.tit-37 {
    line-height: 1.8;
    font-size: 37px;
}

.tit-38 {
    line-height: 1.8;
    font-size: 38px;
}

.tit-39 {
    line-height: 1.8;
    font-size: 39px;
}

.tit-40 {
    line-height: 1.8;
    font-size: 40px;
}

.tit-41 {
    line-height: 1.8;
    font-size: 41px;
}

.tit-42 {
    line-height: 1.8;
    font-size: 42px;
}

.tit-43 {
    line-height: 1.8;
    font-size: 43px;
}

.tit-44 {
    line-height: 1.8;
    font-size: 44px;
}

.tit-45 {
    line-height: 1.8;
    font-size: 45px;
}

.tit-46 {
    line-height: 1.8;
    font-size: 46px;
}

.tit-47 {
    line-height: 1.8;
    font-size: 47px;
}

.tit-48 {
    line-height: 1.8;
    font-size: 48px;
}

.tit-49 {
    line-height: 1.8;
    font-size: 49px;
}

.tit-50 {
    line-height: 1.8;
    font-size: 50px;
}

.tit-51 {
    line-height: 1.8;
    font-size: 51px;
}

.tit-52 {
    line-height: 1.8;
    font-size: 52px;
}

.tit-53 {
    line-height: 1.8;
    font-size: 53px;
}

.tit-54 {
    line-height: 1.8;
    font-size: 54px;
}

.tit-55 {
    line-height: 1.8;
    font-size: 55px;
}

.tit-56 {
    line-height: 1.8;
    font-size: 56px;
}

.tit-57 {
    line-height: 1.8;
    font-size: 57px;
}

.tit-58 {
    line-height: 1.8;
    font-size: 58px;
}

.tit-59 {
    line-height: 1.8;
    font-size: 59px;
}

.tit-60 {
    line-height: 1.8;
    font-size: 60px;
}

.tit-61 {
    line-height: 1.8;
    font-size: 61px;
}

.tit-62 {
    line-height: 1.8;
    font-size: 62px;
}

.tit-63 {
    line-height: 1.8;
    font-size: 63px;
}

.tit-64 {
    line-height: 1.8;
    font-size: 64px;
}

.tit-65 {
    line-height: 1.8;
    font-size: 65px;
}

.tit-66 {
    line-height: 1.8;
    font-size: 66px;
}

.tit-67 {
    line-height: 1.8;
    font-size: 67px;
}

.tit-68 {
    line-height: 1.8;
    font-size: 68px;
}

.tit-69 {
    line-height: 1.8;
    font-size: 69px;
}

.tit-70 {
    line-height: 1.8;
    font-size: 70px;
}

.tit-71 {
    line-height: 1.8;
    font-size: 71px;
}

.tit-72 {
    line-height: 1.8;
    font-size: 72px;
}

.tit-73 {
    line-height: 1.8;
    font-size: 73px;
}

.tit-74 {
    line-height: 1.8;
    font-size: 74px;
}

.tit-75 {
    line-height: 1.8;
    font-size: 75px;
}

.tit-76 {
    line-height: 1.8;
    font-size: 76px;
}

.tit-77 {
    line-height: 1.8;
    font-size: 77px;
}

.tit-78 {
    line-height: 1.8;
    font-size: 78px;
}

.tit-79 {
    line-height: 1.8;
    font-size: 79px;
}

.tit-80 {
    line-height: 1.8;
    font-size: 80px;
}

@media (max-width: 1681px) {
    /*==常用字号==*/
    .tit-12 {
        font-size: 12px;
    }
    .tit-13 {
        font-size: 13px;
    }
    .tit-14 {
        font-size: 13px;
    }
    .tit-15 {
        font-size: 14px;
    }
    .tit-16 {
        font-size: 15px;
    }
    .tit-17 {
        font-size: 16px;
    }
    .tit-18 {
        font-size: 17px;
    }
    .tit-19 {
        font-size: 18px;
    }
    .tit-20 {
        font-size: 18px;
    }
    .tit-21 {
        font-size: 19px;
    }
    .tit-22 {
        font-size: 20px;
    }
    .tit-23 {
        font-size: 21px;
    }
    .tit-24 {
        font-size: 22px;
    }
    .tit-25 {
        font-size: 23px;
    }
    .tit-26 {
        font-size: 24px;
    }
    .tit-27 {
        font-size: 25px;
    }
    .tit-28 {
        font-size: 26px;
    }
    .tit-29 {
        font-size: 27px;
    }
    .tit-30 {
        font-size: 27px;
    }
    .tit-31 {
        font-size: 28px;
    }
    .tit-32 {
        font-size: 29px;
    }
    .tit-33 {
        font-size: 30px;
    }
    .tit-34 {
        font-size: 31px;
    }
    .tit-35 {
        font-size: 32px;
    }
    .tit-36 {
        font-size: 33px;
    }
    .tit-37 {
        font-size: 34px;
    }
    .tit-38 {
        font-size: 35px;
    }
    .tit-39 {
        font-size: 36px;
    }
    .tit-40 {
        font-size: 37px;
    }
    .tit-42 {
        font-size: 38px;
    }
    .tit-43 {
        font-size: 39px;
    }
    .tit-44 {
        font-size: 40px;
    }
    .tit-45 {
        font-size: 41px;
    }
    .tit-46 {
        font-size: 42px;
    }
    .tit-47 {
        font-size: 43px;
    }
    .tit-48 {
        font-size: 44px;
    }
    .tit-50 {
        font-size: 45px;
    }
    .tit-51 {
        font-size: 46px;
    }
    .tit-52 {
        font-size: 47px;
    }
    .tit-53 {
        font-size: 48px;
    }
    .tit-54 {
        font-size: 49px;
    }
    .tit-55 {
        font-size: 50px;
    }
    .tit-56 {
        font-size: 51px;
    }
    .tit-57 {
        font-size: 52px;
    }
    .tit-58 {
        font-size: 53px;
    }
    .tit-59 {
        font-size: 54px;
    }
    .tit-60 {
        font-size: 54px;
    }
    .tit-61 {
        font-size: 55px;
    }
    .tit-62 {
        font-size: 56px;
    }
    .tit-63 {
        font-size: 57px;
    }
    .tit-64 {
        font-size: 58px;
    }
    .tit-65 {
        font-size: 59px;
    }
    .tit-66 {
        font-size: 60px;
    }
    .tit-67 {
        font-size: 61px;
    }
    .tit-68 {
        font-size: 62px;
    }
    .tit-69 {
        font-size: 63px;
    }
    .tit-70 {
        font-size: 62px;
    }
    .tit-71 {
        font-size: 63px;
    }
    .tit-72 {
        font-size: 64px;
    }
    .tit-73 {
        font-size: 65px;
    }
    .tit-74 {
        font-size: 66px;
    }
    .tit-75 {
        font-size: 67px;
    }
    .tit-76 {
        font-size: 68px;
    }
    .tit-77 {
        font-size: 69px;
    }
    .tit-78 {
        font-size: 70px;
    }
    .tit-79 {
        font-size: 71px;
    }
    .tit-80 {
        font-size: 72px;
    }
}

@media (max-width: 1481px) {
    /*==常用字号==*/
    .tit-13 {
        font-size: 12px;
    }
    .tit-14 {
        font-size: 12px;
    }
    .tit-15 {
        font-size: 13px;
    }
    .tit-16 {
        font-size: 14px;
    }
    .tit-17 {
        font-size: 15px;
    }
    .tit-18 {
        font-size: 16px;
    }
    .tit-19 {
        font-size: 17px;
    }
    .tit-20 {
        font-size: 18px;
    }
    .tit-20 {
        font-size: 16px;
    }
    .tit-21 {
        font-size: 17px;
    }
    .tit-22 {
        font-size: 18px;
    }
    .tit-23 {
        font-size: 19px;
    }
    .tit-24 {
        font-size: 20px;
    }
    .tit-25 {
        font-size: 21px;
    }
    .tit-26 {
        font-size: 22px;
    }
    .tit-27 {
        font-size: 23px;
    }
    .tit-28 {
        font-size: 24px;
    }
    .tit-29 {
        font-size: 25px;
    }
    .tit-30 {
        font-size: 26px;
    }
    .tit-31 {
        font-size: 25px;
    }
    .tit-32 {
        font-size: 26px;
    }
    .tit-33 {
        font-size: 27px;
    }
    .tit-34 {
        font-size: 28px;
    }
    .tit-35 {
        font-size: 29px;
    }
    .tit-36 {
        font-size: 30px;
    }
    .tit-37 {
        font-size: 31px;
    }
    .tit-38 {
        font-size: 32px;
    }
    .tit-39 {
        font-size: 33px;
    }
    .tit-40 {
        font-size: 34px;
    }
    .tit-41 {
        font-size: 35px;
    }
    .tit-42 {
        font-size: 36px;
    }
    .tit-43 {
        font-size: 37px;
    }
    .tit-44 {
        font-size: 38px;
    }
    .tit-45 {
        font-size: 37px;
    }
    .tit-46 {
        font-size: 38px;
    }
    .tit-47 {
        font-size: 39px;
    }
    .tit-48 {
        font-size: 40px;
    }
    .tit-49 {
        font-size: 41px;
    }
    .tit-50 {
        font-size: 42px;
    }
    .tit-51 {
        font-size: 43px;
    }
    .tit-52 {
        font-size: 44px;
    }
    .tit-53 {
        font-size: 45px;
    }
    .tit-54 {
        font-size: 46px;
    }
    .tit-55 {
        font-size: 47px;
    }
    .tit-56 {
        font-size: 48px;
    }
    .tit-57 {
        font-size: 49px;
    }
    .tit-58 {
        font-size: 50px;
    }
    .tit-59 {
        font-size: 51px;
    }
    .tit-60 {
        font-size: 52px;
    }
    .tit-61 {
        font-size: 51px;
    }
    .tit-62 {
        font-size: 52px;
    }
    .tit-63 {
        font-size: 53px;
    }
    .tit-64 {
        font-size: 54px;
    }
    .tit-65 {
        font-size: 55px;
    }
    .tit-66 {
        font-size: 56px;
    }
    .tit-67 {
        font-size: 57px;
    }
    .tit-68 {
        font-size: 58px;
    }
    .tit-69 {
        font-size: 59px;
    }
    .tit-70 {
        font-size: 60px;
    }
    .tit-71 {
        font-size: 55px;
    }
    .tit-72 {
        font-size: 56px;
    }
    .tit-73 {
        font-size: 57px;
    }
    .tit-74 {
        font-size: 58px;
    }
    .tit-75 {
        font-size: 59px;
    }
    .tit-76 {
        font-size: 60px;
    }
    .tit-77 {
        font-size: 61px;
    }
    .tit-78 {
        font-size: 62px;
    }
    .tit-79 {
        font-size: 63px;
    }
    .tit-80 {
        font-size: 64px;
    }
}

@media (max-width: 1281px) {
    /*==常用字号==*/
    .tit-13 {
        font-size: 12px;
    }
    .tit-14 {
        font-size: 12px;
    }
    .tit-15 {
        font-size: 12px;
    }
    .tit-16 {
        font-size: 13px;
    }
    .tit-17 {
        font-size: 16px;
    }
    .tit-18 {
        font-size: 15px;
    }
    .tit-19 {
        font-size: 16px;
    }
    .tit-20 {
        font-size: 17px;
    }
    .tit-22 {
        font-size: 18px;
    }
    .tit-24 {
        font-size: 19px;
    }
    .tit-25 {
        font-size: 20px;
    }
    .tit-26 {
        font-size: 21px;
    }
    .tit-27 {
        font-size: 22px;
    }
    .tit-28 {
        font-size: 23px;
    }
    .tit-29 {
        font-size: 24px;
    }
    .tit-30 {
        font-size: 25px;
    }
    .tit-31 {
        font-size: 26px;
    }
    .tit-32 {
        font-size: 27px;
    }
    .tit-33 {
        font-size: 24px;
    }
    .tit-34 {
        font-size: 25px;
    }
    .tit-35 {
        font-size: 26px;
    }
    .tit-36 {
        font-size: 27px;
    }
    .tit-37 {
        font-size: 28px;
    }
    .tit-38 {
        font-size: 29px;
    }
    .tit-39 {
        font-size: 30px;
    }
    .tit-40 {
        font-size: 31px;
    }
    .tit-41 {
        font-size: 32px;
    }
    .tit-42 {
        font-size: 33px;
    }
    .tit-43 {
        font-size: 34px;
    }
    .tit-44 {
        font-size: 35px;
    }
    .tit-45 {
        font-size: 36px;
    }
    .tit-46 {
        font-size: 37px;
    }
    .tit-47 {
        font-size: 38px;
    }
    .tit-48 {
        font-size: 39px;
    }
    .tit-49 {
        font-size: 40px;
    }
    .tit-50 {
        font-size: 38px;
    }
    .tit-51 {
        font-size: 39px;
    }
    .tit-52 {
        font-size: 40px;
    }
    .tit-53 {
        font-size: 41px;
    }
    .tit-54 {
        font-size: 42px;
    }
    .tit-55 {
        font-size: 43px;
    }
    .tit-56 {
        font-size: 44px;
    }
    .tit-57 {
        font-size: 45px;
    }
    .tit-58 {
        font-size: 46px;
    }
    .tit-59 {
        font-size: 47px;
    }
    .tit-60 {
        font-size: 48px;
    }
    .tit-61 {
        font-size: 49px;
    }
    .tit-62 {
        font-size: 50px;
    }
    .tit-63 {
        font-size: 51px;
    }
    .tit-64 {
        font-size: 52px;
    }
    .tit-65 {
        font-size: 53px;
    }
    .tit-66 {
        font-size: 54px;
    }
    .tit-67 {
        font-size: 55px;
    }
    .tit-68 {
        font-size: 56px;
    }
    .tit-69 {
        font-size: 57px;
    }
    .tit-70 {
        font-size: 58px;
    }
    .tit-71 {
        font-size: 51px;
    }
    .tit-72 {
        font-size: 52px;
    }
    .tit-73 {
        font-size: 53px;
    }
    .tit-74 {
        font-size: 54px;
    }
    .tit-75 {
        font-size: 55px;
    }
    .tit-76 {
        font-size: 56px;
    }
    .tit-77 {
        font-size: 57px;
    }
    .tit-78 {
        font-size: 58px;
    }
    .tit-79 {
        font-size: 59px;
    }
    .tit-80 {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .tit-24 {
        font-size: 16px;
    }
    .tit-25 {
        font-size: 17px;
    }
    .tit-26 {
        font-size: 18px;
    }
    .tit-27 {
        font-size: 19px;
    }
    .tit-28 {
        font-size: 20px;
    }
    .tit-29 {
        font-size: 21px;
    }
    .tit-30 {
        font-size: 20px;
    }
    .tit-31 {
        font-size: 23px;
    }
    .tit-32 {
        font-size: 24px;
    }
    .tit-33 {
        font-size: 21px;
    }
    .tit-34 {
        font-size: 22px;
    }
    .tit-35 {
        font-size: 23px;
    }
    .tit-36 {
        font-size: 24px;
    }
    .tit-37 {
        font-size: 25px;
    }
    .tit-38 {
        font-size: 26px;
    }
    .tit-39 {
        font-size: 27px;
    }
    .tit-40 {
        font-size: 28px;
    }
    .tit-41 {
        font-size: 29px;
    }
    .tit-42 {
        font-size: 30px;
    }
    .tit-43 {
        font-size: 31px;
    }
    .tit-44 {
        font-size: 32px;
    }
    .tit-45 {
        font-size: 33px;
    }
    .tit-46 {
        font-size: 34px;
    }
    .tit-47 {
        font-size: 35px;
    }
    .tit-48 {
        font-size: 36px;
    }
    .tit-49 {
        font-size: 37px;
    }
    .tit-50 {
        font-size: 34px;
    }
    .tit-51 {
        font-size: 35px;
    }
    .tit-52 {
        font-size: 36px;
    }
    .tit-53 {
        font-size: 37px;
    }
    .tit-54 {
        font-size: 38px;
    }
    .tit-55 {
        font-size: 39px;
    }
    .tit-56 {
        font-size: 40px;
    }
    .tit-57 {
        font-size: 41px;
    }
    .tit-58 {
        font-size: 42px;
    }
    .tit-59 {
        font-size: 43px;
    }
    .tit-60 {
        font-size: 44px;
    }
    .tit-61 {
        font-size: 45px;
    }
    .tit-62 {
        font-size: 46px;
    }
    .tit-63 {
        font-size: 47px;
    }
    .tit-64 {
        font-size: 48px;
    }
    .tit-65 {
        font-size: 49px;
    }
    .tit-66 {
        font-size: 50px;
    }
    .tit-67 {
        font-size: 51px;
    }
    .tit-68 {
        font-size: 52px;
    }
    .tit-69 {
        font-size: 53px;
    }
    .tit-70 {
        font-size: 54px;
    }
    .tit-71 {
        font-size: 47px;
    }
    .tit-72 {
        font-size: 48px;
    }
    .tit-73 {
        font-size: 49px;
    }
    .tit-74 {
        font-size: 50px;
    }
    .tit-75 {
        font-size: 51px;
    }
    .tit-76 {
        font-size: 52px;
    }
    .tit-77 {
        font-size: 53px;
    }
    .tit-78 {
        font-size: 54px;
    }
    .tit-79 {
        font-size: 55px;
    }
    .tit-80 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    #baojia-fuwu {
        display: none;
    }
    .tit-16 {
        font-size: 12px;
    }
    .tit-18 {
        font-size: 14px;
    }
    .tit-20 {
        font-size: 16px;
    }
    .tit-33 {
        font-size: 20px;
    }
    .tit-34 {
        font-size: 21px;
    }
    .tit-35 {
        font-size: 22px;
    }
    .tit-36 {
        font-size: 23px;
    }
    .tit-37 {
        font-size: 24px;
    }
    .tit-38 {
        font-size: 25px;
    }
    .tit-39 {
        font-size: 26px;
    }
    .tit-40 {
        font-size: 24px;
    }
    .tit-41 {
        font-size: 25px;
    }
    .tit-42 {
        font-size: 26px;
    }
    .tit-43 {
        font-size: 27px;
    }
    .tit-44 {
        font-size: 28px;
    }
    .tit-45 {
        font-size: 29px;
    }
    .tit-46 {
        font-size: 30px;
    }
    .tit-47 {
        font-size: 31px;
    }
    .tit-48 {
        font-size: 32px;
    }
    .tit-49 {
        font-size: 33px;
    }
    .tit-50 {
        font-size: 28px;
    }
    .tit-51 {
        font-size: 29px;
    }
    .tit-52 {
        font-size: 30px;
    }
    .tit-53 {
        font-size: 31px;
    }
    .tit-54 {
        font-size: 32px;
    }
    .tit-55 {
        font-size: 33px;
    }
    .tit-56 {
        font-size: 34px;
    }
    .tit-57 {
        font-size: 35px;
    }
    .tit-58 {
        font-size: 36px;
    }
    .tit-59 {
        font-size: 37px;
    }
    .tit-60 {
        font-size: 36px;
    }
    .tit-61 {
        font-size: 37px;
    }
    .tit-62 {
        font-size: 38px;
    }
    .tit-63 {
        font-size: 39px;
    }
    .tit-64 {
        font-size: 40px;
    }
    .tit-65 {
        font-size: 41px;
    }
    .tit-66 {
        font-size: 42px;
    }
    .tit-67 {
        font-size: 43px;
    }
    .tit-68 {
        font-size: 44px;
    }
    .tit-69 {
        font-size: 45px;
    }
    .tit-70 {
        font-size: 46px;
    }
    .tit-70 {
        font-size: 42px;
    }
    .tit-71 {
        font-size: 43px;
    }
    .tit-72 {
        font-size: 44px;
    }
    .tit-73 {
        font-size: 45px;
    }
    .tit-74 {
        font-size: 46px;
    }
    .tit-75 {
        font-size: 47px;
    }
    .tit-76 {
        font-size: 48px;
    }
    .tit-77 {
        font-size: 49px;
    }
    .tit-78 {
        font-size: 50px;
    }
    .tit-79 {
        font-size: 51px;
    }
    .tit-80 {
        font-size: 52px;
    }
}


/*正文字号*/

.conbox-14 {
    font-size: 14 px;
    line-height: 1.8;
}

.conbox-15 {
    font-size: 15 px;
    line-height: 1.8;
}

.conbox-16 {
    font-size: 16 px;
    line-height: 1.8;
}

.conbox-17 {
    font-size: 17 px;
    line-height: 1.8;
}

.conbox-18 {
    font-size: 18 px;
    line-height: 1.8;
}

.conbox-19 {
    font-size: 19 px;
    line-height: 1.8;
}

.conbox-20 {
    font-size: 20 px;
    line-height: 1.8;
}

.conbox-21 {
    font-size: 21 px;
    line-height: 1.8;
}

.conbox-22 {
    font-size: 22 px;
    line-height: 1.8;
}

.conbox-23 {
    font-size: 23 px;
    line-height: 1.8;
}

.conbox-24 {
    font-size: 24 px;
    line-height: 1.8;
}

@media (max-width: 1481px) {
    .conbox-18 {
        font-size: 16px;
    }
    .conbox-20 {
        font-size: 18px;
    }
    .conbox-24 {
        font-size: 20px;
    }
}

@media (max-width: 1281px) {
    .conbox-14 {
        font-size: 13px;
    }
    .conbox-16 {
        font-size: 14px;
    }
    .conbox-18 {
        font-size: 15px;
    }
    .conbox-20 {
        font-size: 15px;
    }
    .conbox-24 {
        font-size: 16px;
    }
}


/*弹性盒样式*/

.f-no {
    display: flex;
    flex-flow: row wrap;
}

.f-no-b-center {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.f-no-b-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.f-no-b-stretch {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.f-no-c-center {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.f-no-c-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

.f-no-c-stretch {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
}

.f-no-s-center {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.f-no-s-end {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.f-no-s-stretch {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.f-no-end-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
}

.f-no-col {
    display: flex;
    flex-flow: column wrap;
}

.f-no-col-b-center {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
}

.f-no-col-c-center {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.f-no-col-s-center {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
}

.f-no-col-s-end {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.f-no-col-c-start {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
}

.f-no-col-b-start {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.f-no-col-end-start {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: flex-start;
}


/*响应隐藏样式*/

.pc-block {
    display: block;
}

.pc-block-768 {
    display: block;
}

.pc-block-767 {
    display: block;
}

.m-block {
    display: none;
}

.m-block-767 {
    display: none;
}

.m-block-768 {
    display: none;
}

@media (max-width: 1024px) {
    .pc-block {
        display: none;
    }
    .m-block {
        display: block;
    }
}

@media (max-width: 768px) {
    .pc-block-768 {
        display: none;
    }
    .m-block-768 {
        display: block;
    }
}

@media (max-width: 767px) {
    .pc-block-767 {
        display: none;
    }
    .tixi {
        display: none;
    }
    .m-block-767 {
        display: block;
    }
}


/*常用样式类名*/

.poa-middle {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.tran-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-hide {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pointer {
    cursor: pointer;
}

.bgtop {
    background-position: top;
}

.containbg {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justif {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-bold {
    font-weight: bold;
}

.centerh {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.centerv {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.centerblock {
    margin-left: auto;
    margin-right: auto;
}

.shadow1 {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
}

.full {
    width: 100%;
    height: 100%;
}

.fullw {
    width: 100%;
}

.fullh {
    height: 100%;
}

.fullvh {
    height: 100vh;
}

.top {
    top: 0;
}

.btm {
    bottom: 0;
}

.lt {
    left: 0;
}

.rt {
    right: 0;
}

.block {
    display: block;
}

.inlineblock {
    display: inline-block;
}

.notrans {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

.no-hover {
    pointer-events: none !important;
    cursor: default;
}

.trans3d0 {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.round {
    border-radius: 50%;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.in-block {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}


/*网站主体区域宽度样式*/

.w1720 {
    max-width: 1720px;
    width: 90%;
    margin: 0 auto;
}

.w1400 {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.w1300 {
    width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1350px) {
    .w1300 {
        width: 94%;
    }
}

.w1080 {
    width: 1080px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .w1080 {
        width: 94%;
    }
}

.w1070 {
    width: 1070px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .w1070 {
        width: 94%;
    }
}


/*分页样式*/

.wpage {
    text-align: center;
}

.page {
    padding: 40px 0 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    clear: both;
    display: inline-block;
}

.page a {
    text-decoration: none;
    color: #111;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    margin: 0 2px;
    display: block;
    background-color: transparent;
    float: left;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a.active {
    background: #1d2974;
    color: #fff;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page span.laypage_curr {
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin: 0 2px;
    display: inline-block;
    background: #da3830;
    color: #fff;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a:hover {
    text-decoration: none;
    color: #fff;
    background: #1d2974;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}


/*分页样式end*/

@media (max-width: 767px) {
    .wrap {
        padding: 30px;
    }
}

.wrap-sm {
    padding: 30px;
}

@media (max-width: 767px) {
    .wrap-sm {
        padding: 15px;
    }
}

.wrap-xs {
    padding: 20px;
}

@media (max-width: 767px) {
    .wrap-xs {
        padding: 10px;
    }
}

.p-v-xs {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .p-v-xs {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.p-v-sm {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .p-v-sm {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.p-v-md {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 959px) {
    .p-v-md {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .p-v-md {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.p-v-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 959px) {
    .p-v-lg {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .p-v-lg {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.p-h-sm {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .p-h-sm {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.m-v-lg {
    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 959px) {
    .m-v-lg {
        margin-top: 70px;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .m-v-lg {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.m-b-xxs {
    margin-bottom: 5px;
}

.m-b-xs {
    margin-bottom: 10px;
}

.m-b-sm {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .m-b-sm {
        margin-bottom: 15px;
    }
}

.m-b-md {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .m-b-md {
        margin-bottom: 20px;
    }
}

.m-b-lg {
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .m-b-lg {
        margin-bottom: 40px;
    }
}

.m-b-xl {
    margin-bottom: 100px;
}

@media (max-width: 959px) {
    .m-b-xl {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .m-b-xl {
        margin-bottom: 50px;
    }
}

.m-t-xxs {
    margin-top: 5px;
}

.m-t-xs {
    margin-top: 10px;
}

.m-t-sm {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .m-t-sm {
        margin-top: 15px;
    }
}

.m-t-md {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .m-t-md {
        margin-top: 20px;
    }
}

.m-t-lg {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .m-t-lg {
        margin-top: 40px;
    }
}

.m-r-xxs {
    margin-right: 5px;
}

.m-r-xs {
    margin-right: 10px;
}

.m-r-sm {
    margin-right: 20px;
}

@media (max-width: 767px) {
    .m-r-sm {
        margin-right: 10px;
    }
}

.m-l-xxs {
    margin-left: 5px;
}

.m-l-xs {
    margin-left: 10px;
}

.m-l-sm {
    margin-left: 20px;
}

@media (max-width: 767px) {
    .m-l-sm {
        margin-left: 10px;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .phone-v-fullw {
        width: 100%;
    }
    .phone-v-p0 {
        padding: 0;
    }
}


/*常用css3动画样式*/

.trans {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all 0.4s;
}

.trans2 {
    -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.trans-md {
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all 0.8s;
}

.trans-md2 {
    -webkit-transition: all 0.8s cubic-bezier(1, 0, 0, 1);
    -o-transition: all 0.8s cubic-bezier(1, 0, 0, 1);
    transition: all 0.8s cubic-bezier(1, 0, 0, 1);
}


/*loadering动画样式2*/

.anim-loader {
    animation: loader 1829ms linear infinite, loader_dash 2156ms ease-in-out infinite;
}

.anim-fade-out {
    -webkit-animation: fade_out .5s ease forwards;
    animation: fade_out 0.5s ease forwards;
}


/*模块加载的loading-2*/

.ajax-loader {
    background: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    z-index: 1036;
}

.tt-ajax-loader .ajax-loader {
    visibility: visible;
    opacity: 1;
}

.tt-ajax-loader .ajax-loader .loader-icon .line {
    -webkit-animation: loader 1829ms linear infinite, loader_dash 2156ms ease-in-out infinite;
    animation: loader 1829ms linear infinite, loader_dash 2156ms ease-in-out infinite;
}


/*end*/


/*入场动画样式*/

.cssanimations .anim_emt,
.cssanimations .anim_group .anim_item {
    visibility: hidden;
}

.cssanimations .anim_emt.visb,
.cssanimations .anim_group .anim_item.visb {
    visibility: inherit;
}

.anim_emt.start {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.anim_emt.start.scale_up {
    -webkit-animation-name: mk_scale;
    animation-name: mk_scale;
}

.anim_emt.start.fade_in {
    -webkit-animation-name: mk_fade;
    animation-name: mk_fade;
}

.anim_emt.start.r_to_l {
    -webkit-animation-name: mk_right_to_left;
    animation-name: mk_right_to_left;
}

.anim_emt.start.l_to_r {
    -webkit-animation-name: mk_left_to_right;
    animation-name: mk_left_to_right;
}

.anim_emt.start.t_to_b {
    -webkit-animation-name: mk_top_to_bottom;
    animation-name: mk_top_to_bottom;
}

.anim_emt.start.b_to_t {
    -webkit-animation-name: mk_bottom_to_top;
    animation-name: mk_bottom_to_top;
}

.slide_anim {
    visibility: hidden;
}

.slide_anim.start {
    visibility: visible;
}

.slide_anim.b_to_t.start {
    -webkit-animation: mk_bottom_to_top .6s;
    animation: mk_bottom_to_top 0.6s;
}

.anim_emt.palx_img.start {
    overflow: hidden;
    -webkit-animation-name: tt_palx_wrap;
    animation-name: tt_palx_wrap;
}

.anim_emt.palx_img.start .img-wrap {
    -webkit-animation: tt_palx_img .6s;
    animation: tt_palx_img 0.6s;
}

@keyframes tt_palx_wrap {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tt_palx_img {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes loader {
    to {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes loader_dash {
    from {
        stroke-dasharray: 0 150;
        stroke-dashoffset: 0;
    }
    to {
        stroke-dasharray: 100 150;
        stroke-dashoffset: -140;
    }
}

@keyframes line_w100 {
    to {
        left: 100%;
    }
}

@keyframes rotate_360 {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fade_out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade_out_in {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes mk_scale {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes mk_fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes mk_left_to_right {
    0% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes mk_right_to_left {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes mk_bottom_to_top {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes mk_top_to_bottom {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes mk_spt {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.a-del1 {
    animation-delay: 0.1s;
}

.a-del2 {
    animation-delay: 0.2s;
}

.a-del3 {
    animation-delay: 0.3s;
}

.a-del4 {
    animation-delay: 0.4s;
}

.a-del5 {
    animation-delay: 0.5s;
}

.a-del6 {
    animation-delay: 0.6s;
}

.a-del7 {
    animation-delay: 0.7s;
}

.a-del8 {
    animation-delay: 0.8s;
}

.a-del9 {
    animation-delay: 0.9s;
}

.a-del10 {
    animation-delay: 1s;
}

.a-dur1 {
    animation-duration: 0.3s;
}

.a-dur2 {
    animation-duration: 0.4s;
}

.a-dur3 {
    animation-duration: 0.5s;
}

.a-dur4 {
    animation-duration: 0.6s;
}

.a-dur5 {
    animation-duration: 0.7s;
}

.a-dur6 {
    animation-duration: 0.8s;
}

.a-dur7 {
    animation-duration: 0.9s;
}

.a-dur8 {
    animation-duration: 1s;
}

.a-dur9 {
    animation-duration: 1.1s;
}

.a-dur10 {
    animation-duration: 1.2s;
}

.a-dur11 {
    animation-duration: 1.3s;
}

.a-dur12 {
    animation-duration: 1.4s;
}

.a-dur13 {
    animation-duration: 1.5s;
}

.a-dur14 {
    animation-duration: 1.6s;
}

.a-dur15 {
    animation-duration: 1.7s;
}

.a-dur16 {
    animation-duration: 1.8s;
}

.a-dur17 {
    animation-duration: 1.9s;
}

.a-dur18 {
    animation-duration: 2s;
}

.t-del1 {
    transition-delay: 0.1s;
}

.t-del2 {
    transition-delay: 0.2s;
}

.t-del3 {
    transition-delay: 0.3s;
}

.t-del4 {
    transition-delay: 0.4s;
}

.t-del5 {
    transition-delay: 0.5s;
}

.t-del6 {
    transition-delay: 0.6s;
}

.t-del7 {
    transition-delay: 0.7s;
}

.t-del8 {
    transition-delay: 0.8s;
}

.t-del9 {
    transition-delay: 0.9s;
}

.t-del10 {
    transition-delay: 1s;
}


/*ie10以下显示*/

.browsers {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff url(../../img/img1.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 99;
}


/*文字引用*/


/*@include font-face($font-family:'ad', $file-path:"../fonts/BEBAS", $weight: normal, $style: normal);
@include simple-text($borderColorFocus:#000);
@include simple-textarea($borderColorFocus:#52a8ec, $width:500px, $height:80px)
@include simple-btn($formbtn:false, $bgColor: $primary, $textColor:$white);
/*@include triangle(left, 10px, #000 )*/


/*@include triangle($direction, $size, $borderColor )*/


/*.conbox-16{
  color:nth($infoColor,1);
  background:nth($infoColor,2);
  border:1px solid nth($infoColor,3);
}*/


/*@include placeholder(#999);*/


/*margin-right: pe(16px);*/


/*@extend .in-block;*/


/*初始样式结束*/

.fl1 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.fl2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.fl3 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.fl4 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

.fl5 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.fl6 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.fl7 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: flex-start;
}

.fl8 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.fl9 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.fl10 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: baseline;
}

.fl11 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: stretch;
}

.fl12 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: baseline;
}

.fl13 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.fl12 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: baseline;
}

.fl13 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
}

.fl14 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: baseline;
}

.fl15 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.fl16 {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
}

.fl17 {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.fl18 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
}

.fl19 {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
}

.fl20 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.fl21 {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.fl22 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: flex-start;
}

.fl23 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.fl24 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.fl25 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: baseline;
}

.fl26 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: stretch;
}

.fl27 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: baseline;
}

.fl28 {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.fl29 {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: baseline;
}

.fl30 {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: stretch;
}

.fl31 {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: baseline;
}

.fl32 {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: stretch;
}

.fl33 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}


/*首页加载loading*/

body.loading {
    overflow: hidden;
}

#pageloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f3f0;
    overflow: hidden;
    z-index: 5000;
}

#pageloader .logo {
    width: auto;
    height: 51px;
}

.darkmode #pageloader {
    background: #252525;
}

body.init #pageloader {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

body.init #pageloader .cont {
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all 0.6s;
}

body.init #pageloader .logo,
body.init #pageloader div {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all 0.6s;
}

body.init #pageloader .logo {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

body.init #pageloader .small {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

body.init #pageloader .loader-line {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.loader-line {
    width: 50vw;
    max-width: 300px;
    height: 2px;
    background: #A96B41;
    overflow: hidden;
}

.loader-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.loader-icon .line {
    fill: none;
    stroke: #fff;
    stroke-width: 4px;
    stroke-linecap: round;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
}


/*.loader-line .gradient,.loader-line .gradient2 {
  width:40%;
  height:100%;
  left:-40%;
  background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(218,157,119,0)),color-stop(50%,#DA9D77),to(rgba(218,157,119,0)));
  background-image:-o-linear-gradient(left,rgba(218,157,119,0) 0,#DA9D77 50%,rgba(218,157,119,0) 100%);
  background-image:linear-gradient(to right,rgba(218,157,119,0) 0,#DA9D77 50%,rgba(218,157,119,0) 100%);
  -webkit-animation:line_w100 2s cubic-bezier(.165,.84,.44,1) infinite;
  animation:line_w100 2s cubic-bezier(.165,.84,.44,1) infinite
}
.loader-line .gradient2 {
  -webkit-animation-delay:1s;
  animation-delay:1s
}*/


/*首页加载loading-end*/

.bocweb-header3 {
    width: 100%;
}

.m-bocweb-header3 {
    position: relative;
    width: 100%;
    height: 100px;
    z-index: 99;
}

.m-bocweb-header3 .header2 {
    background: #fff;
    height: 100px;
    padding: 0 4%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 99;
}

.m-bocweb-header3 .header2 .logo {
    width: auto;
    height: auto;
    display: block;
    position: relative;
    z-index: 12;
}

.m-bocweb-header3 .header2 .logo img {
    width: 100%;
}

.m-bocweb-header3 .header2 .nav .tit {
    display: block;
    width: 100%;
    padding: 0 5%;
    line-height: 60px;
    position: relative;
    margin: 0;
}

.m-bocweb-header3 .header2 .nav .sub-tit:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-size: 100% auto;
    position: absolute;
    right: 6.4%;
    top: 16px;
    background: url(../img/img1.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 20px auto;
    transform: rotate(0);
    transform-origin: center center;
    transition: all .3s ease-in-out;
}

.m-bocweb-header3 .header2 .nav .sub-tit.on:after {
    transform: rotate(-180deg);
}

.m-bocweb-header3 .header2 .nav .sec-list {
    line-height: 40px;
    padding: .55rem 6%;
    background: #d31169;
    display: none;
}

.m-bocweb-header3 .header2 .nav .sec-list a {
    color: #fff;
}

.m-bocweb-header3 .header2 .hamburger {
    padding: 0;
    height: 24px;
    cursor: pointer;
}

.m-bocweb-header3 .header2 .hamburger-box {
    width: 30px;
    height: 40px;
}

.m-bocweb-header3 .header2 .hamburger-inner,
.m-bocweb-header3 .header2 .hamburger-inner::before,
.m-bocweb-header3 .header2 .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background: #222;
    content: "";
    position: absolute;
}

.m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner,
.m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::before,
.m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::after {
    background: #222;
}

.m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner {
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.5s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::before,
.m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0.6s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.m-bocweb-header3 .header2 .h-right {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 12;
}

.m-bocweb-header3 .header2 .search-box {
    position: relative;
}

.m-bocweb-header3 .header2 .search-btn {
    cursor: pointer;
    margin-right: 30px;
}

.m-bocweb-header3 .header2 .search-btn svg {
    width: 25px;
    height: 25px;
    fill: #666;
}

.m-bocweb-header3 .header2 .warp-nav {
    height: calc(100vh - 100px);
    padding: 0 0 45px;
    position: fixed;
    background: #fff;
    width: 100%;
    left: 0;
    top: 60px;
    z-index: 9;
    display: none;
}

.m-bocweb-header3 .header2 .nav {
    font-size: 16px;
    color: #333;
    position: relative;
    overflow-y: auto;
    height: calc(100vh - 100px);
}

.m-bocweb-header3 .header2 .nav .li {
    position: relative;
    width: 100%;
    line-height: 60px;
    background: #f7f7f7;
}

.m-bocweb-header3 .header2 .nav .li:nth-child(2n) {
    background: #fff;
}

.m-bocweb-header3 .header2 .nav .warp-btn {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    display: block;
    padding-left: 5%;
    position: relative;
    color: #333;
    transition: all .3s ease;
}

.m-bocweb-header3 .header2 .nav .warp-btn .btn {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 5px;
    top: 50%;
    margin-top: -10px;
    left: 0;
}

.m-bocweb-header3 .header2 .nav .warp-btn .btn img {
    position: absolute;
    left: 0;
    top: 0;
}

.m-bocweb-header3 .header2 .nav .li:hover .warp-btn,
.m-bocweb-header3 .header2 .nav .li:hover .warp-btn.cur,
.m-bocweb-header3 .header2 .nav .li.cur .warp-btn,
.m-bocweb-header3 .header2 .nav .li.cur .warp-btn.cur {
    color: #016cb6;
}

.m-bocweb-header3 .header2 .nav .nav-item {
    position: absolute;
    top: 100px;
    width: 180px;
    left: 50%;
    margin-left: -100px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    display: none;
}

.m-bocweb-header3 .header2 .nav .nav-item p {
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #e7eaec;
}

.m-bocweb-header3 .header2 .nav .nav-item a {
    display: block;
    color: #666;
    text-align: center;
    transition: all .3s ease;
}

.m-bocweb-header3 .header2 .nav .nav-item a:hover {
    color: #016cb6;
    font-weight: bold;
}

.pc-bocweb-header3 {
    height: 110px;
    position: fixed;
    z-index: 99999;
    width: 100%;
    left: 0;
    top: 0;
    background: #101214;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: all .3s ease-in-out;
}

.pc-bocweb-header3 .n-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

.pc-bocweb-header3 .logo {
    width: 240px;
    height: 61px;
    position: relative;
    display: block;
    margin-left: 0;
}

.pc-bocweb-header3 .logo .img1 {
    opacity: 1;
}

.pc-bocweb-header3 .logo .img2 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}

.pc-bocweb-header3 .right-btn {
    position: relative;
}

.pc-bocweb-header3 .right-btn a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.pc-bocweb-header3 .right-btn a svg {
    fill: #fff;
}

.pc-bocweb-header3 .right-btn a:hover svg {
    fill: #1d2974;
}

.pc-bocweb-header3 .right-btn a .img1 {
    opacity: 1;
    width: 25px;
}

.pc-bocweb-header3 .right-btn a .img2 {
    opacity: 0;
}

.pc-bocweb-header3 .right-btn a:hover .img1 {
    opacity: 0;
}

.pc-bocweb-header3 .right-btn a:hover .img2 {
    opacity: 1;
}

.pc-bocweb-header3 .right-btn a .ewm {
    width: 132px;
    height: 132px;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -66px;
    display: none;
}

.pc-bocweb-header3 .nav {
    font-size: 18px;
}

.pc-bocweb-header3 .nav .li {
    margin: 0 .65rem;
    position: relative;
}

.pc-bocweb-header3 .nav .warp-btn {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    display: block;
    height: 110px;
    line-height: 110px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.pc-bocweb-header3 .nav .li:hover .warp-btn,
.pc-bocweb-header3 .nav .li.cur .warp-btn {
    color: #1d2974;
}

.pc-bocweb-header3 .nav .li:after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    background-color: #1d2974;
    bottom: 0;
    left: 0;
    transition: all .3s ease;
}

.pc-bocweb-header3 .nav .li:hover:after {
    width: 100%;
}

.pc-bocweb-header3 .nav .li.on:after {
    width: 100%;
}

.pc-bocweb-header3 .nav .li.on .warp-btn {
    color: #1d2974;
}

.pc-bocweb-header3 .nav .nav-item {
    position: absolute;
    top: 100px;
    width: 180px;
    left: 50%;
    margin-left: -100px;
    background: #fff;
    font-size: 16px;
    display: none;
}

.pc-bocweb-header3 .nav .nav-item p {
    width: 100%;
    text-align: center;
    line-height: 1.5;
    display: inline-block;
    border-bottom: 1px solid #f7f7f7;
}

.pc-bocweb-header3 .nav .nav-item p:last-child {
    border-bottom: none;
}

.pc-bocweb-header3 .nav .nav-item a {
    line-height: 1.8;
    padding: .5rem 0;
    display: block;
    color: #333;
    text-align: center;
    transition: all .3s ease;
}

.pc-bocweb-header3 .nav .nav-item a:hover {
    color: #d31169;
}

@media (max-width: 1440px) {
    .pc-bocweb-header3 .nav .li {
        margin: 0 .7rem;
    }
}

@media (max-width: 1280px) {
    .pc-bocweb-header3 .nav .li {
        margin: 0 .5rem;
    }
}

@media (max-width: 1100px) {
    .pc-bocweb-header3 .nav .li {
        margin: 0 .3rem;
    }
}

.warp-search-form {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    height: 95px;
    border-bottom: 1px solid #e3e3e3;
    z-index: 99;
}

.warp-search-form .search-form .dxnav-search-icon {
    height: 24px;
    width: 24px;
    display: flex;
    margin: 0 33px;
    align-self: center;
    align-items: center;
    justify-content: center;
}

.warp-search-form .search-form .dxnav-icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
}

.warp-search-form .search-form .input2 {
    width: calc(100% - 320px - 0.5rem);
    margin-right: .5em;
    font-size: 2.4em;
    background-color: transparent;
    border: none;
}

.warp-search-form .search-form .search-close {
    width: 44px;
    height: 44px;
    margin: 0 10px 0 32px;
    cursor: pointer;
    background-color: transparent;
}

.warp-search-form .search-form .search-close svg {
    width: 20px;
    height: 20px;
}

.warp-search-form .search-form .submit-button {
    width: 125px;
    height: 45px;
    margin: 0;
    padding: 0 12px;
    font-size: 12px;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #1d2974;
    background-color: #1d2974;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    letter-spacing: .12em;
    transition: color .4s ease, background-color .4s ease;
}

.warp-search-form .search-form .submit-button:hover {
    background-color: #1d2974;
    color: #fff;
    box-shadow: inset 0 0 0 1px #1d2974;
}

.warp-search-form .search-form .submit-button:disabled {
    cursor: not-allowed;
    color: #fff;
    background-color: #e4e4e4;
    box-shadow: none;
    border: none;
}

.warp-search-form .search-form.active {
    transform: translateY(0%);
}

.warp-search-form .search-form {
    height: 95px;
}

@media (max-width: 1024px) {
    .warp-search-form {
        top: 60px;
    }
    .m-bocweb-header3 .header2 {
        height: 60px;
        position: fixed;
    }
    .m-bocweb-header3 {
        height: 60px;
    }
    .m-bocweb-header3 .header2 .search-btn {
        margin-right: 15px;
    }
    .m-bocweb-header3 .header2 .logo {
        width: auto;
    }
    .m-bocweb-header3 .header2 .search-btn svg {
        width: 22px;
        height: 22px;
    }
    .m-bocweb-header3 .header2 .hamburger-box {
        width: 30px;
        height: 40px;
        margin-top: 10px;
    }
    .m-bocweb-header3 .header2 .hamburger {
        height: 20px;
    }
    .m-bocweb-header3 .hamburger-inner::before {
        top: -8px;
    }
    .m-bocweb-header3 .hamburger-inner::after {
        bottom: -8px;
    }
    .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner,
    .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::before,
    .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::after {
        background: #222;
    }
    .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner {
        transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.5s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    }
    .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::before,
    .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::after {
        transition: transform 0.6s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    }
    .m-bocweb-header3 .hamburger--3dx-r.is-active .hamburger-inner::before {
        transform: translate3d(0, 8px, 0) rotate(45deg);
    }
    .m-bocweb-header3 .hamburger--3dx-r.is-active .hamburger-inner::after {
        transform: translate3d(0, -8px, 0) rotate(-45deg);
    }
    .hamburger--3dx-r.is-active .hamburger-inner {
        background-color: transparent !important;
        transform: rotateY(-180deg);
    }
}

@media (max-width: 767px) {
    .warp-search-form .search-form .dxnav-search-icon {
        margin: 0 1% 0 3%;
    }
    .warp-search-form .search-form .search-close {
        width: 30px;
        height: 30px;
        margin: 0 3% 0 1%;
    }
    .warp-search-form .search-form .search-close svg {
        width: 16px;
        height: 16px;
        fill: #1d2974;
    }
    .warp-search-form .search-form .submit-button {
        width: 65px;
        height: 30px;
        padding: 0 6px;
    }
    .warp-search-form .search-form .dxnav-icon {
        width: 20px;
        height: 20px;
        fill: #1d2974;
    }
    .warp-search-form .search-form,
    .warp-search-form {
        height: 60px;
    }
    .warp-search-form .search-form .input2 {
        font-size: 14px;
        width: calc(100% - 165px);
    }
}

.dxnav__dropdown-overlay {
    background: rgba(250, 250, 250, 0.85);
    height: 100vh;
    left: 0;
    max-width: 100vw;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    backdrop-filter: blur(5px);
}

.overlay--open {
    animation: overlayOpen .4s ease-out forwards;
}

@keyframes overlayOpen {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
        z-index: -1;
    }
    1% {
        width: 100%;
        height: 100vh;
        z-index: 95;
    }
    100% {
        opacity: 1;
        width: 100%;
        height: 100vh;
        z-index: 95;
    }
}


/*# sourceMappingURL=yystyle.css.map */


/*手机头部*/

.bocweb-header-m {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.8s;
}

.bocweb-header-m .bocweb-logo {
    position: absolute;
    left: 5.28%;
    top: 15px;
    display: block;
    transition: all 0.8s;
}

.bocweb-header-m .bocweb-logo img {
    display: block;
    height: 50px;
}

.bocweb-header-m .bocweb-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -80.55%;
    width: 80.55%;
    height: 100vh;
    background-color: #fff;
}

.bocweb-header-m .bocweb-nav li {
    padding: 0 8.27%;
    border-bottom: 1px solid #ebebeb;
    font-size: 26px;
    background: #f6f6f6;
}

.bocweb-header-m .bocweb-nav li.dy {
    background: #000;
}

.bocweb-header-m .bocweb-nav li.dy a {
    padding: 0;
    color: #fff;
}

.bocweb-header-m .bocweb-nav li .link {
    position: relative;
    display: block;
    padding: 6% 0;
    color: #222;
    transition: all 0.6s;
    transform: translateX(100px);
    opacity: 0;
}

.bocweb-header-m .bocweb-nav li .link .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    width: 14px;
    height: 24px;
    margin-top: -10px;
    background: url(../img/arrow-r.png) no-repeat center center;
}

.bocweb-header-m .bocweb-nav li .hide {
    position: absolute;
    top: 0;
    left: 101%;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.8s;
}

.bocweb-header-m .bocweb-nav li .hide .sub-link {
    display: block;
    padding: 6% 8.27%;
    border-bottom: 1px solid #ebebeb;
    font-size: 26px;
    color: #222;
    background: #f6f6f6;
}

.bocweb-header-m .bocweb-nav li .hide .sub-link .text {
    display: block;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.6s;
}

.bocweb-header-m .bocweb-nav li .hide .title {
    position: relative;
    height: 80px;
    padding: 0;
    line-height: 80px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    background: #1d2974;
}

.bocweb-header-m .bocweb-nav li .hide .title .back {
    position: absolute;
    left: 8.27%;
    top: 50%;
    display: block;
    width: 14px;
    height: 24px;
    margin-top: -10px;
    background: url(../img/arrow-l.png) no-repeat center center;
}

.bocweb-header-m .bocweb-nav li.weibo {
    background-color: #fff;
}

.bocweb-header-m .bocweb-nav li.weibo .link .icon {
    margin-right: 16px;
}

.bocweb-header-m .bocweb-nav li.weibo .link .icon img {
    max-width: 100%;
}

.bocweb-header-m .bocweb-nav li.wechat {
    background-color: #fff;
}

.bocweb-header-m .bocweb-nav li.wechat .link .icon {
    margin-right: 16px;
}

.bocweb-header-m .bocweb-nav li.wechat .link .icon img {
    max-width: 100%;
}

.bocweb-header-m .bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.1;
    filter: alpha(opacity=10);
    cursor: pointer;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    backdrop-filter: blur(60px);
    transition: all 0s;
}

.bocweb-header-m .menu-box {
    position: relative;
    transition: all 0.6s;
}

.bocweb-header-m .bocweb-menu {
    width: 35px;
    margin: 0 auto;
    cursor: pointer;
}

.bocweb-header-m .bocweb-menu .line {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    height: 4px;
    transition: transform 0.3s ease, top 0.3s ease, width 0.3s ease, opacity 0.3s, background 0.3s;
    transform-origin: center center;
    background: #1d2974;
}

.bocweb-header-m .bocweb-menu .line:nth-child(2) {
    margin: 8px 0;
}

.bocweb-header-m.ishow {
    transform: translateX(-80.55%);
}

.bocweb-header-m.ishow .bg {
    transform: scaleX(1);
    opacity: 0.1;
}

.bocweb-header-m.ishow .bocweb-nav li .link {
    transform: translateX(0px);
    opacity: 1;
}

.bocweb-header-m.ishow .bocweb-nav li .hide.ishow {
    transform: translateX(-101%);
}

.bocweb-header-m.ishow .bocweb-nav li .hide.ishow .sub-link .text {
    transform: translateX(0px);
    opacity: 1;
}

.bocweb-header-m.ishow .menu-box {
    right: 0;
}

.bocweb-header-m.ishow .bocweb-menu .line:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
    opacity: 0.8;
}

.bocweb-header-m.ishow .bocweb-menu .line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.bocweb-header-m.ishow .bocweb-menu .line:nth-child(3) {
    top: -12px;
    transform: rotate(-45deg);
    opacity: 0.8;
}

@media (min-width: 1025px) {
    .bocweb-header-m {
        display: none;
    }
}

@media (max-width: 750px) {
    .bocweb-header-m {
        height: 70px;
    }
    .bocweb-header-m .bocweb-logo {
        top: 10px;
    }
    .bocweb-header-m .bocweb-nav li {
        font-size: 18px;
    }
    .bocweb-header-m .bocweb-nav li .link .arrow {
        width: 9.8px;
        height: 16.8px;
        margin-top: -8.4px;
        background-size: contain;
    }
    .bocweb-header-m .bocweb-nav li .hide .sub-link {
        font-size: 18px;
    }
    .bocweb-header-m .bocweb-nav li .hide .title {
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
    .bocweb-header-m .bocweb-nav li .hide .title .back {
        width: 9.8px;
        height: 16.8px;
        margin-top: -8.4px;
        background-size: contain;
    }
    .bocweb-header-m .bocweb-nav li.weibo .link .icon {
        width: 24px;
        margin-right: 0.4rem;
    }
    .bocweb-header-m .bocweb-nav li.wechat .link .icon {
        width: 24px;
        margin-right: 0.4rem;
    }
    .bocweb-header-m .bocweb-menu {
        width: 26px;
    }
    .bocweb-header-m .bocweb-menu .line {
        height: 2px;
    }
    .bocweb-header-m .bocweb-menu .line:nth-child(2) {
        margin: 6px 0;
    }
    .bocweb-header-m.ishow .bocweb-menu .line:nth-child(1) {
        top: 8px;
    }
    .bocweb-header-m.ishow .bocweb-menu .line:nth-child(3) {
        top: -8px;
    }
}

@media (max-width: 500px) {
    .bocweb-header-m {
        height: 50px;
    }
    .bocweb-header-m .bocweb-logo {
        top: 8px;
    }
    .bocweb-header-m .bocweb-logo img {
        height: 35px;
    }
    .bocweb-header-m .bocweb-nav li {
        font-size: 16px;
    }
    .bocweb-header-m .bocweb-nav li .link .arrow {
        width: 8.4px;
        height: 14.4px;
        margin-top: -7.2px;
    }
    .bocweb-header-m .bocweb-nav li .hide .sub-link {
        font-size: 16px;
    }
    .bocweb-header-m .bocweb-nav li .hide .title {
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
    .bocweb-header-m .bocweb-nav li .hide .title .back {
        width: 8.4px;
        height: 14.4px;
        margin-top: -7.2px;
    }
    .bocweb-header-m .bocweb-nav li.dy {
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
    .bocweb-header-m .bocweb-nav li.weibo .link .icon {
        width: 22px;
    }
    .bocweb-header-m .bocweb-nav li.wechat .link .icon {
        width: 22px;
    }
}

.bocweb-header-m .right-btn {
    float: right;
    height: 100%;
    margin-right: 5%;
}

.bocweb-header-m .right-btn a {
    display: inline-block;
    width: 36px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.bocweb-header-m .right-btn a .img1 {
    opacity: 0;
}

.bocweb-header-m .right-btn a .img2 {
    opacity: 1;
}

.bocweb-header-m .right-btn a .ewm {
    width: 132px;
    height: 132px;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -66px;
    display: none;
}

.fixdclear {
    height: 110px;
    position: relative;
}

.bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .8s;
}

.wr {
    width: 100%;
    position: relative;
}


/*banner*/

.banner {
    height: 16.4rem;
    overflow: hidden;
}

.banner .swiper-slide {
    height: 100%;
}

.banner .cont {
    display: block;
    background-image: url(../img/bannertxt.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: content;
    position: absolute;
    top: 50%;
    left: 13.5%;
    transform: translateY(-40%);
    padding: 1.25rem;
    color: #fff;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 1s;
}

.banner .cont .tit-50 {
    line-height: 1.4;
    margin-top: 0.5rem;
}

.banner .swiper-slide-active .cont {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.banner-button-prev,
.banner-button-next {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 8;
    right: 13.5%;
    top: 50%;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.banner-button-prev svg,
.banner-button-next svg {
    width: 30px;
    height: 30px;
    fill: #444444;
}

.banner-button-prev:hover,
.banner-button-next:hover {
    background-color: #1d2974;
}

.banner-button-prev:hover svg,
.banner-button-next:hover svg {
    fill: #fff;
}

.banner-button-prev {
    margin-top: -50px;
    transform: rotate(180deg);
}

.banner-button-next {
    margin-top: 15px;
}

.pt4 {
    padding-top: 2.5rem;
}

.home_a {
    height: 26.55rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_tit {
    position: relative;
}

.index_tit br {
    display: none;
}

.index_tit .border {
    border: 1px solid #d3d3d3;
    display: inline-block;
    padding: 0 1.3rem;
    border-top: 0;
    position: relative;
}

.index_tit .border:after {
    content: "";
    position: absolute;
    width: 1.2rem;
    height: 1px;
    background-color: #d3d3d3;
    left: 0;
    top: 0;
}

.index_tit .border:before {
    content: "";
    position: absolute;
    width: 1.2rem;
    height: 1px;
    background-color: #d3d3d3;
    right: 0;
    top: 0;
}

.index_tit .border .txt {
    transform: translateY(-40%);
}

.index_tit .border .txt .tit-46 {
    line-height: 1;
}

.index_tit .border .txt .tit-16 {
    line-height: 1;
    margin-top: 0.5rem;
}

.home_a .content {
    margin-top: 2rem;
}

.home_a .content .left {
    float: left;
    width: 18.75%;
    margin-right: 1.25%;
    height: 14.3rem;
    overflow: hidden;
    position: relative;
}

.home_a .content .left .tit-16 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: .4rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.home_a .content .left .swiper-slide.swiper-slide-thumb-active {
    border: 4px solid #1d2974;
}

.home_a .content .right {
    float: right;
    width: 80%;
    height: 14.3rem;
    overflow: hidden;
}

.home_a .content .right .bg {
    width: 80%;
}

.home_a .content .right .cont {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    width: 35%;
    transform: translateY(-50%);
    padding: 2rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0.4rem #33333366;
}

.home_a .content .right .cont .more {
    margin-top: 1rem;
}

.left-button-prev,
.left-button-next {
    width: 18.75%;
    position: absolute;
    left: 0;
    text-align: center;
    cursor: pointer;
    outline: none;
}

.left-button-prev svg,
.left-button-next svg {
    fill: #444444;
}

.left-button-prev:hover svg,
.left-button-next:hover svg {
    fill: #1d2974;
}

.left-button-prev {
    top: -1.3rem;
    transform: rotate(180deg);
}

.left-button-next {
    bottom: -1.3rem;
}

.more {
    width: 4rem;
    height: 1.3rem;
    line-height: 1.3rem;
    display: inline-block;
    border-radius: 55px;
    font-size: .4rem;
    color: #fff;
    text-align: center;
    background-color: #1d2974;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
    border: 1px solid transparent;
    cursor: pointer;
}

.more:hover {
    background-color: #fff;
    color: #1d2974;
    border: 1px solid #1d2974;
}

.home_b {
    height: 29rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_b .content {
    margin-top: 1rem;
}

.home_b .content .li {
    width: 32%;
    margin-right: 2%;
    height: 15.825rem;
    float: left;
    position: relative;
}

.home_b .content .li a {
    height: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.home_b .content .li .tit-24 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.2rem;
    width: 100%;
}

.home_b .content .li:last-child {
    margin-right: 0;
}

.home_b .content .li a:hover .bg {
    transform: scale(1.1);
}

.home_b .content .li2 a {
    height: 49%;
    margin-bottom: 3%;
}

.home_b .content .li2 a .tit-24 {
    bottom: .6rem;
}

.home_b .content .li2 a:last-child {
    margin-bottom: 0;
}

.hb {
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

.table {
    text-align: center;
    margin-top: 1.5rem;
    overflow: hidden;
}

.table a {
    display: inline-block;
    padding: 0 0.6rem;
    line-height: 50px;
    font-size: 16px;
    color: #333;
    border-radius: 50px;
    background-color: #fff;
    width: 125px;
    margin: 0 8px;
    transition: 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.table a.on {
    background-color: #1d2974;
    color: #fff;
}

.table a:hover {
    background-color: #1d2974;
    color: #fff;
}

.table .swiper-wrapper {
    justify-content: center;
}

.home_c {
    padding-bottom: 3.5rem;
}

.home_c .content {
    margin-top: 1.5rem;
}

.home_c .content .li {
    height: 13.25rem;
    width: 7%;
    background-color: #868686;
    float: left;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
}

.home_c .content .li .bg {
    opacity: 0;
}

.home_c .content .li .img {
    width: 33px;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.home_c .content .li .tit-24 {
    width: 24px;
    position: absolute;
    top: 7.5rem;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
}

.home_c .content .li .tit-16 {
    position: absolute;
    top: 5rem;
    line-height: 1;
    left: 50%;
    line-height: 1.6;
    transform: translateX(-50%);
    opacity: 0;
}

.home_c .content .li .hd {
    position: absolute;
    top: 9.125rem;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
}

.home_c .content .li:nth-child(2n) {
    background-color: #1d2974;
}

.home_c .content .li.on {
    width: 79%;
}

.home_c .content .li.on .bg {
    opacity: 1;
}

.home_c .content .li.on .tit-24 {
    width: 100%;
    text-align: center;
    top: 4rem;
}

.home_c .content .li.on .tit-16 {
    opacity: 1;
    transition: all 0.5s;
    transition-delay: .5s;
}

.home_c .content .li.on .hd {
    opacity: 1;
    transition: all 0.5s;
    transition-delay: .5s;
}

.home_e {
    padding-bottom: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_e .content {
    margin-top: 1.2rem;
    overflow: hidden;
}

.home_e .content .list {
    width: 32%;
    height: 14.825rem;
    margin-right: 2%;
    position: relative;
}

.home_e .content .list .bigbg {
    transition: none;
}

.home_e .content .list .txt {
    position: absolute;
    text-align: center;
    bottom: 0rem;
    padding: 1rem .5rem;
    text-align: left;
    width: 100%;
    font-size: 0.4rem;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.home_e .content .list .more2 {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #1d2974;
    border-radius: 50%;
    position: absolute;
    right: .6rem;
    bottom: 1rem;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.home_e .content .list .more2:hover {
    background-color: #fff;
    color: #1d2974;
    border: 1px solid #1d2974;
}

.home_e .content .list .li {
    width: 48%;
    height: 48%;
    margin-bottom: 4%;
    margin-right: 4%;
    float: left;
    position: relative;
    cursor: pointer;
}

.home_e .content .list .li .bg {
    background-position: center top;
}

.home_e .content .list .li img {
    height: 100%;
    width: 100%;
}

.home_e .content .list .li .tit-16 {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 0rem;
    padding: .5rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.home_e .content .list .li:nth-child(2n) {
    margin-right: 0;
}

.home_e .content .list:last-child {
    margin-right: 0;
}

.he-button-prev,
.he-button-next {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 8;
    top: 50%;
    margin-top: -25px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
    outline: none;
}

.he-button-prev svg,
.he-button-next svg {
    width: 22px;
    height: 50px;
    fill: #444444;
}

.he-button-prev:hover,
.he-button-next:hover {
    background-color: #1d2974;
}

.he-button-prev:hover svg,
.he-button-next:hover svg {
    fill: #fff;
}

.he-button-prev {
    left: -80px;
    transform: rotate(180deg);
}

.he-button-next {
    right: -80px;
}

.home_f {
    padding-bottom: 3rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_f .content {
    margin-top: 1.2rem;
}

.home_f .content a {
    display: block;
    width: 24.25%;
    margin-right: 1%;
    float: left;
    height: 5.75rem;
    margin-bottom: 10px;
    position: relative;
}

.home_f .content a .tit-22 {
    width: 100%;
    position: absolute;
    bottom: 0rem;
    padding: .3rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.home_f .content a .mak {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-out 0s;
    opacity: 0;
}

.home_f .content a:nth-child(4n) {
    margin-right: 0;
}

.home_f .content a:hover .mak {
    opacity: 1;
}

.home_f .content a:hover .tit-22 {
    background-image: none;
    transition: all 0.4s ease-out 0s;
    transform: translateY(-50%);
}

.table2 .swiper-wrapper {
    justify-content: normal;
}

.w564 {
    width: 680px;
    margin: auto;
}

.table2 {
    width: 564px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 1.2rem;
}

.table-button-prev,
.table-button-next {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 8;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
    outline: none;
}

.table-button-prev svg,
.table-button-next svg {
    width: 22px;
    height: 50px;
    fill: #444444;
}

.table-button-prev:hover svg,
.table-button-next:hover svg {
    fill: #1d2974;
}

.table-button-prev {
    left: 0;
    transform: rotate(90deg);
}

.table-button-next {
    right: 0;
    transform: rotate(-90deg);
}

.home_g {
    background-color: #383838;
    padding-bottom: 2.5rem;
}

.home_g .w1400 {
    margin-top: 1.7rem;
}

.home_h {
    padding-bottom: 2.8rem;
}

.home_h .content {
    margin-top: 1.7rem;
    height: 16.65rem;
    background-color: #fff;
}

.home_h .content .right {
    width: 60%;
    float: right;
    height: 100%;
    padding: 0.7rem 0.9rem;
    padding-right: 2.5rem;
    border-left: 1px solid #ccc;
}

.home_h .content .right a {
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: space-around;
    align-items: center;
}

.home_h .content .right a .news-time {
    margin-right: 0.7rem;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

.home_h .content .right a .news-time .tit-36 {
    line-height: 1;
    margin-bottom: 0.2rem;
}

.home_h .content .right a .news-con {
    width: 80%;
}

.home_h .content .right a:hover {
    color: #1d2974;
}

.home_h .content .left {
    width: 40%;
    float: left;
    height: 100%;
    padding: 1.25rem 0.9rem;
}

.home_h .content .left img {
    max-height: 7.5rem;
}

.home_h .content .left .tit {
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: space-around;
    align-items: center;
}

.home_h .content .left .tit .news-con {
    width: 80%;
}

.home_h .content .left .tit .news-time {
    margin-left: 0.7rem;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

.home_h .content .left .tit .news-time .tit-36 {
    line-height: 1;
    margin-bottom: 0.2rem;
}

.home_h .content .left .more {
    margin-top: 0.7rem;
}

.num {
    font-family: "BEBAS";
}

.footer_top {
    height: 10.5rem;
    overflow: hidden;
    position: relative;
}

.footer_top .tit-48 {
    z-index: 2;
    margin-top: 1rem;
}

.footer_top .list {
    margin-top: 1rem;
    z-index: 3;
    position: relative;
}

.footer_top .list .li {
    width: 33%;
    float: left;
    border-right: 1px solid rgba(78, 78, 78, 0.7);
}

.footer_top .list .li .img {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(78, 78, 78, 0.7);
    margin-bottom: 0.55rem;
}

.footer_top .list .li:last-child {
    border-right: 0;
}

.footer_top .teasers-con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.movescale {
    transform: scale(1.05);
}

.footer_cont {
    background-color: #242424;
    height: 9.15rem;
}

.footer_cont .w1400 {
    height: 100%;
}

.footer_cont .footer_nav {
    height: 100%;
    padding: 1.5rem 0 0;
    float: left;
    width: 76%;
    border-right: 1px solid rgba(78, 78, 78, 0.7);
}

.footer_cont .footer_nav .li {
    float: left;
    margin-right: 9.3%;
}

.footer_cont .footer_nav .li a:hover {
    color: #fff;
}

.footer_cont .footer_nav .li .sub {
    width: 100%;
    margin-top: 0.5rem;
}

.footer_cont .footer_nav .li .sub a {
    display: block;
    color: #fff;
    opacity: 0.6;
    font-size: .4rem;
}

.footer_cont .footer_nav .li .sub a:hover {
    opacity: 1;
}

.footer_cont .footer_nav .li:last-child {
    margin-right: 0;
}

.footer_cont .footer_right {
    height: 100%;
    width: 24%;
    float: right;
    padding: 1.5rem 0 0;
    padding-left: 2rem;
}

.footer_cont .footer_right img {
    width: 3.25rem;
}

.footer_cont .footer_right .tit-14 {
    color: #fff;
    opacity: 0.6;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer_cont .footer_right .tit-14 a {
    color: #fff;
    opacity: 0.6;
    line-height: 1.6;
}

.footer_cont .footer_right .tit-14 a img {
    width: .5rem;
    display: inline-block;
}

.footer_cont .footer_right a:hover {
    opacity: 1;
}

.footer_bot {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(78, 78, 78, 0.7);
    background-color: #242424;
}

.footer_bot span {
    color: #fff;
    opacity: 0.6;
    margin-right: 0.5rem;
}

.footer_bot a {
    display: inline-block;
    color: #fff;
    opacity: 0.6;
    margin-right: 0.5rem;
}

.footer_bot a:hover {
    opacity: 1;
}

.backtop-1 {
    position: fixed;
    bottom: 2rem;
    left: 1%;
    background-color: #fff;
    cursor: pointer;
    height: 50px;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 0.4rem #33333366;
    width: 50px;
    border-radius: 50%;
    z-index: 1111;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    ransition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    line-height: 60px;
    cursor: pointer;
}

.backtop-1.active {
    opacity: 1;
}

.fix-nav {
    width: 75px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 222;
    box-shadow: 0 0 0.4rem #33333366;
}

.fix-nav a {
    width: 100%;
    height: 75px;
    background-color: #f5721c;
    display: block;
    border-bottom: 1px solid #ccc;
    color: #111;
    position: relative;
}

.hewmbox {
    width: 200%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, -18%);
    transition: all .8s;
    opacity: 0;
    display: none;
}

.hewmbox.on {
    opacity: 1;
    transform: translate(-100%, 0);
}

.phonebox {
    width: 200%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -56%);
    transition: all .4s;
    opacity: 0;
    display: none;
    height: 75px;
    line-height: 75px;
    background-color: #fff;
    box-shadow: 0 0 0.4rem #33333366;
}

.phonebox.on {
    opacity: 1;
    transform: translate(-100%, -50%);
}

.fix-nav a svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-top: 10px;
}

.fix-nav a:last-child {
    border-bottom: 0;
}

.fix-nav a:hover {
    background-color: #1d2974;
    color: #fff;
}

.fix-nav a:hover svg {
    fill: #fff;
}

.sub-banner {
    height: 14.75rem;
    overflow: hidden;
}

.sub-banner .tit-60 {
    line-height: 1.2;
}

.sub-banner .bg {
    transition: none;
}

.addss {
    width: 100%;
    background-color: #e2e2e2;
    height: 2rem;
    text-align: center;
    font-size: 0;
}

.addss a {
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    position: relative;
    margin: 0;
    border-right: 1px solid #ccc;
}

.addss a:first-child {
    border-left: 1px solid #ccc;
}

.addss a:after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    background-color: #1d2974;
    bottom: 0;
    left: 0;
    transition: all .3s ease;
}

.addss a:hover {
    color: #1d2974;
}

.addss a:hover:after {
    width: 100%;
}

.addss a.cur {
    color: #1d2974;
}

.addss a.cur:after {
    width: 100%;
}

.addss.a3 a {
    width: 33.33%;
}

.addss.a4 a {
    width: 25%;
}

.addss.a5 a {
    width: 20%;
}

.addss.a2 a {
    width: 50%;
}

.sev_a {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 3.5rem;
}

.sev_a .list {
    margin-top: 1.5rem;
}

.sev_a .list a {
    display: block;
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 1rem;
}

.sev_a .list a .img {
    width: 100%;
    height: 10.225rem;
    overflow: hidden;
}

.sev_a .list a .txt {
    padding: .5rem 1.25rem;
    border: 1px solid #ccc;
    border-top: 0;
}

.sev_a .list a:nth-child(2n) {
    margin-right: 0;
}

.sev_a .list a:hover .bg {
    transform: scale(1.1);
}

.sev_b {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 3.5rem;
}

.sev_b .content {
    margin-top: 1.5rem;
}

.sev_b .content .item {
    width: 10px;
    height: 10px;
    position: absolute;
    cursor: pointer;
    z-index: 22;
}

.sev_b .content .item .bot {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    -webkit-animation: warn 2s ease-out;
    -moz-animation: warn 2s ease-out;
    animation: warn 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.sev_b .content .item .bot2 {
    width: 10px;
    height: 10px;
    background-color: #1d2974;
    z-index: 2;
    border-radius: 50%;
}

.sev_b .content .item .line {
    width: 7rem;
    position: absolute;
    height: 1px;
    background-color: #1d2974;
    top: 50%;
    transition: all 0.3s;
    opacity: 0;
}

.sev_b .content .item .line.on {
    opacity: 1;
}

.sev_b .content .item .line:after {
    content: "";
    left: -5rem;
    width: 5rem;
    position: absolute;
    height: 1px;
    background-color: #1d2974;
    transition: all 0.3s;
    opacity: 0;
}

.sev_b .content .item .line.on:after {
    opacity: 1;
}

.sev_b .content .item .cont {
    width: 8.5rem;
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    position: absolute;
    display: none;
    opacity: 0;
    transition: all 0.3s;
}

.sev_b .content .item .cont .top {
    width: 100%;
    border-radius: 8px;
    background-color: #1d2974;
    padding: 0.5rem;
}

.sev_b .content .item .cont.on {
    display: block;
    opacity: 1;
}

.sev_b .content .item1 {
    top: 34%;
    left: 48%;
}

.sev_b .content .item1 .line {
    left: -6.9rem;
    transform-origin: right;
    transform: rotate(45deg);
    top: 20%;
}

.sev_b .content .item1 .line:after {
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item1 .cont {
    left: -18rem;
    top: -6.2rem;
}

.sev_b .content .item1 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item1 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item2 {
    top: 54%;
    left: 38%;
}

.sev_b .content .item2 .line {
    left: -5.9rem;
    transform-origin: right;
    width: 6rem;
    top: 20%;
}

.sev_b .content .item2 .line:after {
    display: none;
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item2 .cont {
    left: -14.5rem;
    top: -6.2rem;
    z-index: 2;
}

.sev_b .content .item2 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item2 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item3 {
    top: 65%;
    left: 45%;
}

.sev_b .content .item3 .line {
    left: -5.9rem;
    transform-origin: right;
    width: 6rem;
    top: 20%;
}

.sev_b .content .item3 .line:after {
    display: none;
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item3 .cont {
    left: -14.5rem;
    top: -6.2rem;
    z-index: 2;
}

.sev_b .content .item3 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item3 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item4 {
    top: 73%;
    left: 55%;
}

.sev_b .content .item4 .line {
    left: 0;
    transform-origin: right;
    width: 6rem;
    top: 20%;
}

.sev_b .content .item4 .line:after {
    display: none;
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item4 .cont {
    left: 6rem;
    top: -6.2rem;
    z-index: 2;
}

.sev_b .content .item4 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item4 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item5 {
    top: 58%;
    left: 59%;
}

.sev_b .content .item5 .line {
    left: 0;
    transform-origin: right;
    width: 8rem;
    top: 20%;
}

.sev_b .content .item5 .line:after {
    display: none;
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item5 .cont {
    left: 8rem;
    top: -6.2rem;
    z-index: 2;
}

.sev_b .content .item5 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item5 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item6 {
    top: 50%;
    left: 55%;
}

.sev_b .content .item6 .line {
    left: 0;
    transform-origin: right;
    width: 8rem;
    top: 20%;
}

.sev_b .content .item6 .line:after {
    display: none;
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item6 .cont {
    left: 8rem;
    top: -6.2rem;
    z-index: 2;
}

.sev_b .content .item6 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item6 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b .content .item7 {
    top: 15%;
    left: 56%;
}

.sev_b .content .item7 .line {
    left: -6.9rem;
    transform-origin: right;
    transform: rotate(45deg);
    top: 20%;
}

.sev_b .content .item7 .line:after {
    transform-origin: right;
    transform: rotate(-45deg);
}

.sev_b .content .item7 .cont {
    left: -18rem;
    top: -6.2rem;
}

.sev_b .content .item7 .cont .cp {
    padding: .5rem;
}

.sev_b .content .item7 .cont .cp p {
    margin-bottom: 0.6rem;
}

.sev_b img {
    width: 51%;
    margin: auto;
}

.pb4 {
    padding-bottom: 3.5rem;
}

.sev_c {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sev_c .img {
    display: block;
    height: 15rem;
    position: relative;
    margin-top: 1.5rem;
}

@keyframes warn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    5% {
        transform: translate(-50%, -50%) scale(0.05);
        opacity: 1;
    }
    10% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 1;
    }
    15% {
        transform: translate(-50%, -50%) scale(0.15);
        opacity: 1;
    }
    20% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 1;
    }
    25% {
        transform: translate(-50%, -50%) scale(0.25);
        opacity: 1;
    }
    30% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 1;
    }
    35% {
        transform: translate(-50%, -50%) scale(0.35);
        opacity: 1;
    }
    40% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 1;
    }
    45% {
        transform: translate(-50%, -50%) scale(0.45);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    65% {
        transform: translate(-50%, -50%) scale(0.65);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 1;
    }
    75% {
        transform: translate(-50%, -50%) scale(0.75);
        opacity: 1;
    }
    80% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    85% {
        transform: translate(-50%, -50%) scale(0.85);
    }
    90% {
        transform: translate(-50%, -50%) scale(0.9);
    }
    95% {
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.home_c.sev .content .li {
    width: 5.7%;
}

.home_c.sev .content .li.on {
    width: 65.8%;
}

.home_c.sev .content .li.on .tit-18 {
    left: 1rem;
    transform: translateX(0);
}

.home_c.sev .num {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.home_c.sev .content .li .tit-20 {
    width: 20px;
    position: absolute;
    top: 7.5rem;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
}

.home_c .content .li.on .tit-20 {
    width: 100%;
    text-align: left;
    top: 1.65rem;
    left: 2rem;
    transform: translateX(0);
}

.home_c.sev .list {
    width: 80%;
    height: 80%;
    left: 10%;
    position: absolute;
    top: 20%;
    opacity: 0;
}

.home_c.sev .li.on .list {
    opacity: 1;
    transition: all 0.5s;
    transition-delay: .5s;
}

.home_c.sev .li.on .list li {
    float: left;
    width: 25%;
    text-align: left;
    opacity: 0.6;
    margin-bottom: 0.2rem;
}

.sec_d {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

.sec_d .jlbtit img {
    width: 16.425rem;
}

.sec_d .jlbtit .tit-18 {
    width: 60%;
    margin: auto;
    margin-top: 1rem;
}

.sec_d .jlb_img {
    margin-top: 1rem;
}

.sec_d .jlb_img img {
    width: 49%;
}

.sec_d .index_tit {
    margin-top: 4rem;
}

.jlb_list {
    margin-top: 4rem;
}

.jlb_list .li {
    width: 32%;
    margin-right: 2%;
    border-top: 5px solid #1d2974;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    float: left;
}

.jlb_list .li .tit-30 {
    height: 2.8rem;
    line-height: 2.8rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
}

.jlb_list .li .cin {
    width: 100%;
}

.jlb_list .li .cin .tit-16 {
    line-height: 1.8rem;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 0 0.5rem;
    display: block;
}

.jlb_list .li .cin .tit-16:hover {
    background-color: #1d2974;
    color: #fff;
}

.jlb_list .li .more3 {
    line-height: 1.8rem;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 0 0.5rem;
    display: block;
}

.jlb_list .li .more3:hover {
    background-color: #1d2974;
    color: #fff;
}

.jlb_list .li:last-child {
    margin-right: 0;
}

.bt4 {
    padding-bottom: 3.25rem;
}

.qua_a .tit-48 {
    margin-top: 1.8rem;
}

.qua_a .content {
    margin-top: 1rem;
    border: 1px solid #ccc;
}

.qua_a .content .left {
    width: 68.5%;
    height: 20.625rem;
    border-right: 1px solid #ccc;
    float: left;
    position: relative;
}

.qua_a .content .right {
    width: 31.5%;
    float: right;
    height: 20.625rem;
}

.qua_a .content .right .item {
    padding: 1.4rem;
    height: 33.33%;
    border-bottom: 1px solid #ccc;
    transition: all 0.8s;
}

.qua_a .content .right .item .tit-30 {
    line-height: 1.4;
    margin-bottom: 1rem;
}

.qua_a .content .right .item:last-child {
    border-bottom: 0;
}

.qua_a .content .right .item:hover {
    background-color: #1d2974;
    color: #fff;
}

.qua_b .content {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.qua_b .content .li {
    width: 33.33%;
    float: left;
    padding: 3rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.qua_b .content .li .img {
    display: inline-block;
    height: 3.875rem;
    width: 3.875rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.qua_b .content .li .con {
    margin-top: 2rem;
}

.qua_b .content .li .con .text-bold {
    line-height: 1;
}

.qua_b .content .li:last-child {
    border-right: 0;
}

.qua_c .list {
    margin-top: 1.5rem;
}

.qua_c .list .li {
    width: 100%;
    margin-bottom: 0.3rem;
}

.qua_c .list .li:nth-child(2n) .left {
    float: right;
}

.qua_c .list .li:nth-child(2n) .right {
    float: left;
}

.qua_c .list .left {
    width: 50%;
    height: 7.5rem;
    float: left;
    overflow: hidden;
}

.qua_c .list .left .bg:hover {
    transform: scale(1.1);
}

.qua_c .list .right {
    width: 50%;
    height: 7.5rem;
    float: right;
    border: 1px solid #ccc;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background-color: #fff;
}

.qua_c .list .right .tit-24 {
    margin-bottom: .75rem;
}

.qua_e {
    overflow: hidden;
}

.qua_e-container {
    margin-top: 1.6rem;
}

.qua_e-container .swiper-slide {
    height: 16.5rem;
    transform: scale(0.9);
}

.qua_e-container .swiper-slide .tit-20 {
    margin-top: 0.6rem;
    opacity: 0;
}

.qua_e-container .swiper-slide-active,
.qua_e-container .swiper-slide-duplicate-active {
    transform: scale(1);
}

.qua_e-container .swiper-slide-active .tit-20,
.qua_e-container .swiper-slide-duplicate-active .tit-20 {
    opacity: 1;
}

.qua_f-container {
    overflow: hidden;
    margin-top: 1.5rem;
}

.qua_f-container .swiper-slide {
    width: 100%;
}

.qua_f-container .swiper-slide .item {
    width: 18.4%;
    height: 4.2rem;
    background-color: #fff;
    float: left;
    margin-right: 2%;
    margin-bottom: .5rem;
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
}

.qua_f-container .swiper-slide .item img {
    transition: all 0.8s;
}

.qua_f-container .swiper-slide .item:nth-child(5n) {
    margin-right: 0;
}

.qua_f-container .swiper-slide .item:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}

.qua_f-pagination {
    text-align: center;
    margin-top: 1.8rem;
}

.qua_f-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #1d2974;
    background-color: transparent;
    opacity: 1;
}

.qua_f-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1d2974;
}

.sotf_a {
    height: auto;
}

.sotf_a .content .right .cont {
    background-color: #fff;
    padding: 1.2rem;
    width: 38%;
}

.sotf_a .content .right .cont .tit-30 {
    line-height: 1.2;
}

.sotf_a .content .right .cont .tit-16 {
    margin-top: .5rem;
    position: relative;
    padding: 0 32px;
}

.sotf_a .content .right .cont .tit-16:before {
    content: "";
    position: absolute;
    background-image: url(../img/yh.png);
    width: 25px;
    height: 16px;
    background-size: 25px, 16px;
    left: 0;
}

.sotf_a .content .right .cont .tit-16:after {
    content: "";
    position: absolute;
    background-image: url(../img/yh2.png);
    width: 25px;
    height: 16px;
    background-size: 25px, 16px;
    right: 0;
}

.sotf_a .content .right .cont .more {
    margin-left: 32px;
}

.sotf_a .hd {
    margin-top: 2rem;
}

.sotf_a .hd .more {
    width: 10rem;
}

.sotf_b {
    padding-top: 2rem;
}

.sotf_b form {
    margin-top: 2rem;
    white-space: nowrap;
    text-align: center;
}

.sotf_b form .item {
    display: inline-block;
    width: 16%;
    height: 1.25rem;
    line-height: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 .5rem;
    position: relative;
    overflow: hidden;
}

.sotf_b form .item img {
    cursor: pointer;
    position: absolute;
    right: 0;
    height: 100%;
    width: 30%;
}

.sotf_b form .item .lab {
    float: left;
    height: 100%;
    line-height: 1.25rem;
}

.sotf_b form .item input {
    width: 52%;
    float: left;
    height: 100%;
    background-color: transparent;
}

.sotf_b form .itemsub {
    background-color: #1d2974;
}

.sotf_b form .itemsub input {
    width: 100%;
}

.sotf_c .list {
    margin-top: 1.5rem;
}

.sotf_c .list .li {
    width: 24.25%;
    margin-right: 1%;
    border: 1px solid #ccc;
    float: left;
}

.sotf_c .list .li .txt {
    width: 100%;
    padding: 1rem;
    text-align: center;
    transition: all 0.5s;
}

.sotf_c .list .li .txt .tit-15 {
    line-height: 1.4;
    margin-top: 0.5rem;
}

.sotf_c .list .li .img {
    width: 100%;
    height: 6.4rem;
    overflow: hidden;
}

.sotf_c .list .li:hover .txt {
    color: #1d2974;
}

.sotf_c .list .li:hover .bg {
    transform: scale(1.1);
}

.sotf_c .list .li:last-child {
    margin-right: 0;
}

.sotf_e .content {
    margin-top: 1rem;
}

.sotf_e .content .li .img {
    width: 100%;
    height: 10.575rem;
    overflow: hidden;
}

.sotf_e .content .li .tit-18 {
    margin-top: 0.5rem;
}

.sotf_e .content .li .bg:hover {
    transform: scale(1.1);
}

.li50 {
    width: 49%;
    float: left;
    margin-right: 2%;
}

.li50:last-child {
    margin-right: 0;
}

.sotf_f .f_sub {
    width: 65.3%;
    margin: auto;
    margin-top: 1.3rem;
}

.sotf_f .content {
    border: 0;
}

.sotf_f .content .left {
    border: 0;
}

.sotf_f .content .right {
    height: auto;
    margin-top: 0;
}

.sotf_f .content .right .item {
    padding: 1rem;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.8s;
}

.sotf_f .content .right .item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sotf_f .content .right .item:first-child {
    border-bottom: 0;
}

.sotf_f .content .right .item .tit-30 {
    margin-bottom: 0.3rem;
}

.case_a .top .search {
    margin-bottom: 0.4rem;
}

.case_a .top .search .search_box {
    width: 6.75rem;
    height: 1.375rem;
    border-radius: 1.375rem;
    border: 1px solid #ccc;
    overflow: hidden;
}

.case_a .top .search .search_box input {
    height: 100%;
    width: 80%;
    float: left;
    padding-left: 0.6rem;
    line-height: 1.375rem;
    font-size: 14px;
}

.case_a .top .search .search_box .subime {
    width: 20%;
    height: 100%;
    float: right;
    cursor: pointer;
    background-image: url(../img/ss2.png);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.case_a .top .search_item {
    height: auto;
    line-height: 1.4rem;
    border: 1px solid #ccc;
    border-bottom: 0;
}

.case_a .top .search_item .main_color {
    line-height: 1.65rem;
    display: inline-block;
    width: 10%;
}

.case_a .top .search_item .item {
    width: 90%;
}

.case_a .top .search_item .item div {
    cursor: pointer;
    display: inline-block;
    height: 33px;
    line-height: 33px;
    padding: 0 15px;
    border-radius: 33px;
    transition: all 0.5s;
    font-size: 0.4rem;
    color: #111;
}

.case_a .top .search_item .item div.on {
    background-color: #1d2974;
    color: #fff;
}

@media (min-width: 1025px) {
    .case_a .top .search_item .item div:hover {
        background-color: #1d2974;
        color: #fff;
    }
}

.case_a .top .search_item:last-child {
    border-bottom: 1px solid #ccc;
}

.li3 {
    width: 32%;
    margin-right: 2%;
    float: left;
}

.li3:nth-child(3n) {
    margin-right: 0;
}

.li4 {
    width: 23.5%;
    margin-right: 2%;
    float: left;
}

.li4:nth-child(4n) {
    margin-right: 0;
}

.ajaxlist {
    margin-top: 2rem;
}

.ajaxlist .list .li {
    display: block;
    margin-bottom: 1.25rem;
}

.ajaxlist .list .li .img {
    width: 100%;
    height: 7.225rem;
    position: relative;
}

.ajaxlist .list .li .img .hover_box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(234, 87, 3, 0.8);
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.ajaxlist .list .li .img .hover_box .more4 {
    margin-top: .6rem;
    width: 120px;
    height: 37px;
    line-height: 37px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ajaxlist .list .li .img .hover_box .more4:hover {
    background-color: transparent;
    color: #fff;
}

.ajaxlist .list .li .txt {
    width: 100%;
    padding: 0.75rem 0.5rem;
    height: 4.5rem;
    border: 1px solid #ccc;
    border-top: 0;
}

.ajaxlist .list .li .txt .list {
    margin-top: 0.2rem;
}

.ajaxlist .list .li .txt .list .tit-14 {
    display: inline-block;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.3rem;
    background-color: #e6e6e6;
    border-radius: 8px;
    color: #111;
}

.ajaxlist .list .li:hover .hover_box {
    opacity: 1;
}

.ajaxlist .list .li:nth-child(3n) {
    margin-right: 0;
}

.vr_ajaxlist {
    margin-top: 2rem;
}

.vr_ajaxlist .list .li {
    display: block;
    margin-bottom: .8rem;
    border: 1px solid #ccc;
}

.vr_ajaxlist .list .li .left {
    width: 71%;
    height: 10rem;
    position: relative;
    float: left;
    cursor: pointer;
}

.vr_ajaxlist .list .li .left img {
    cursor: pointer;
    transition: all 0.5s;
}

.vr_ajaxlist .list .li .left img:hover {
    transform: translate(-50%, -60%);
}

.vr_ajaxlist .list .li .right {
    width: 29%;
    float: left;
    height: 10rem;
    padding: 1rem;
    background-color: #fff;
}

.vr_ajaxlist .list .li .right .more {
    margin-top: 1rem;
    width: 100%;
    height: 1.1rem;
    line-height: 1.1rem;
    background-color: #e6e6e6;
    color: #111;
}

.vr_ajaxlist .list .li .right .more:hover {
    background-color: #1d2974;
    color: #fff;
    border: 0;
}

.vr_ajaxlist .list .li:nth-child(2n) {
    margin-right: 0;
}

.vr_doilg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: none;
}

.vr_doilg .mak {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #111;
    opacity: 0.3;
}

.vr_doilg .box {
    width: 80%;
    height: 73%;
    z-index: 9999;
    background-color: #fff;
}

.vr_doilg .box .top {
    padding: 0 20px 0 20px;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    background-color: #F8F8F8;
    border-radius: 2px 2px 0 0;
}

.vr_doilg .box .top .tit-16 {
    line-height: 42px;
    height: 42px;
}

.vr_doilg .box .top .cose {
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: all 0.5s;
}

.vr_doilg .box .top .cose svg {
    width: 100%;
}

.vr_doilg .box .cont {
    width: 100%;
    height: calc(100% - 42px);
}

.vr_doilg .box .cont iframe {
    height: 100%;
}

.video_ajaxlist {
    margin-top: 2rem;
}

.video_ajaxlist .list .li {
    display: block;
    margin-bottom: .8rem;
    height: auto;
    position: relative;
}

.video_ajaxlist .list .li .bg {
    height: 11.125rem;
}

.video_ajaxlist .list .li img {
    cursor: pointer;
    transition: all 0.5s;
}

.video_ajaxlist .list .li img:hover {
    transform: translate(-50%, -60%);
}

.video_ajaxlist .list .li .tit-14 {
    width: 130px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #1d2974;
    border-radius: 45px;
    position: absolute;
    top: 18px;
    left: 18px;
}

.video_ajaxlist .list .li:nth-child(2n) {
    margin-right: 0;
}

.videos {
    width: 70%;
    height: auto;
    position: fixed;
    z-index: 999;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.videos video {
    display: block;
    width: 100%;
}

.videos .vclose {
    position: absolute;
    cursor: pointer;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    top: 0.375rem;
    right: 0.375rem;
}

.videos_mask {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    background: #000;
    display: none;
    opacity: 0.6;
}

.build_ajaxlist {
    margin-top: 2rem;
}

.build_ajaxlist .list .li {
    display: block;
    margin-bottom: .8rem;
    border: 1px solid #ccc;
    position: relative;
}

.build_ajaxlist .list .li .img {
    width: 100%;
    height: 7.35rem;
    overflow: hidden;
    position: relative;
}

.build_ajaxlist .list .li .img .bg:hover {
    transform: scale(1.1);
}

.build_ajaxlist .list .li .img .tit-16 {
    width: 100%;
    position: absolute;
    bottom: 0rem;
    padding: .2rem .4rem;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease-out 0s;
}

.build_ajaxlist .list .li .txt {
    width: 100%;
    padding: 0.5rem .4rem;
    background-color: #fff;
}

.build_ajaxlist .list .li .txt .tit-16 {
    line-height: 1rem;
}

.build_ajaxlist .list .li .txt .tit-14 {
    display: inline-block;
    line-height: 1rem;
    padding: 0 .6rem;
    background-color: #e6e6e6;
    border-radius: 8px;
    float: right;
    margin-right: .2rem;
}

.build_ajaxlist .list .li:nth-child(3n) {
    margin-right: 0;
}

.build_ajaxlist .list .li:hover {
    color: #111;
}

.black {
    width: 106px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #1d2974;
}

.black:hover {
    background-color: #fff;
    border: 1px solid #1d2974;
    color: #1d2974;
}

.case_info {
    padding-top: 1.5rem;
}

.case_info .content {
    margin-top: 1rem;
}

.case_info .content .left {
    width: 70%;
    float: left;
    padding: 0.75rem;
    border: 1px solid #ccc;
    height: 21rem;
    background-color: #fff;
}

.case_info .content .left .bigimg {
    width: 79%;
    float: left;
    height: 12.625rem;
    overflow: hidden;
    position: relative;
}

.case_info .content .left .samll_list {
    width: 17%;
    float: right;
    height: 12.625rem;
    overflow: auto;
    padding-right: 1%;
}

.case_info .content .left .samll_list .li {
    width: 100%;
    height: 2.25rem;
    margin-bottom: .4rem;
}

.case_info .content .left .samll_list .li.on {
    border: 3px solid #1d2974;
}

.case_info .content .left .tip_list {
    margin-top: 0.5rem;
}

.case_info .content .left .tip_list .tit-14 {
    display: inline-block;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.3rem;
    background-color: #e6e6e6;
    border-radius: 8px;
    color: #111;
}

.case_info .content .left .tit-18 {
    margin-top: 0.6rem;
}

.case_info .content .left .tit-14 {
    height: 4rem;
    overflow: auto;
}

.case_info .content .right {
    width: 29%;
    float: right;
    border: 1px solid #ccc;
    height: 21rem;
    padding: 0.7rem 0.4rem;
    background-color: #fff;
}

.case_info .content .right .img {
    width: 100%;
    height: 11.6rem;
    position: relative;
}

.case_info .content .right .img .bg {
    background-position: center top;
}

.case_info .content .right .img .txt {
    width: 100%;
    position: absolute;
    bottom: 0rem;
    padding: 1rem .5rem;
    text-align: left;
    font-size: 0.4rem;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.case_info .content .right .tit-20 {
    margin-top: .4rem;
}

.case_info .content .right .tit-14 {
    margin-top: .4rem;
    line-height: .6rem;
    height: 3.6rem;
    overflow: auto;
    margin-bottom: .4rem;
}

.case_info .content .right .more {
    width: 48%;
    height: 1.25rem;
    line-height: 1.25rem;
    font-size: 14px;
}

.case_info .content .right .more6 {
    background-color: #e6e6e6;
    color: #111;
}

.more6 svg {
    vertical-align: middle;
    margin-right: 2px;
    fill: #333;
}

.case_info .content .right .more6:hover {
    background-color: #1d2974;
    color: #fff;
    border: 0;
}

.case_info .content .right .more6:hover svg {
    fill: #fff;
}

.case_info .content .right .more6.on {
    background-color: #1d2974;
    color: #fff;
    border: 0;
}

.case_info .content .right .more6.on svg {
    fill: #fff;
}

.case_info_a {
    margin-top: 2rem;
}

.case_info_a .pagechange {
    width: 120px;
    height: 50px;
}

.case_info_a .pagechange div {
    width: 50px;
    height: 50px;
    background-color: #ebebeb;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.case_info_a .pagechange div svg {
    width: 20px;
    fill: #9b9b9b;
}

.case_info_a .pagechange .case_info-button-prev {
    transform: rotate(180deg);
}

.case_info_a .pagechange div:hover {
    background-color: #1d2974;
}

.case_info_a .pagechange div:hover svg {
    fill: #fff;
}

.case_info-container {
    margin-top: 1rem;
    overflow: hidden;
}

.case_info-container .li {
    display: block;
    margin-bottom: 1.25rem;
}

.case_info-container .li .img {
    width: 100%;
    height: 6.225rem;
    position: relative;
}

.case_info-container .li .txt {
    width: 100%;
    padding: 0.75rem 0.5rem;
    height: 4.5rem;
    border: 1px solid #ccc;
    border-top: 0;
}

.case_info-container .li .txt .list {
    margin-top: 0.2rem;
}

.case_info-container .li .txt .list .tit-14 {
    display: inline-block;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.3rem;
    background-color: #e6e6e6;
    border-radius: 8px;
    color: #111;
}

.building_info .content {
    margin-top: .8rem;
    padding: 0.51rem;
    border: 1px solid #ccc;
}

.building_info .content .left {
    width: 60%;
    height: 12.15rem;
    float: left;
}

.building_info .content .right {
    width: 40%;
    float: right;
    padding: 0.4rem 1rem;
}

.building_info .content .right .tit-16 {
    margin-top: 0.4rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.building_info .content .right .list .tit-14 {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 0.3rem;
    background-color: #e6e6e6;
    border-radius: 8px;
    color: #111;
    margin-bottom: 10px;
}

.building_info .content .right .list .tit-14:last-child {
    width: 100%;
    position: relative;
}

.building_info .content .right .list .tit-14:last-child:after {
    content: "";
    width: 17px;
    height: 23px;
    background-image: url(../img/mapicon.png);
    background-size: 17px 23px;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    margin-top: -11.5px;
}

.building_info .content .right .more_list {
    margin-top: 1.5rem;
}

.building_info .content .right .more_list .more {
    height: 1.25rem;
    line-height: 1.25rem;
    font-size: 14px;
}

.building_info .case_info_a {
    margin-bottom: 2rem;
}

.building_info_a {
    margin-top: .8rem;
}

.building_info_a .left {
    width: 75%;
    height: 12.025rem;
    float: left;
    border: 1px solid #ccc;
    background-color: #fff;
    margin-bottom: .6rem;
}

.building_info_a .left .img {
    width: 60%;
    height: 100%;
    float: left;
}

.building_info_a .left .txt {
    width: 40%;
    float: left;
    height: 100%;
    padding: 1.2rem 1rem;
}

.building_info_a .left .txt .tit-30 {
    margin-bottom: 0.6rem;
    line-height: 1.2;
    font-size: 0.7rem;
    margin-right: .5rem;
    color: black;
}

.building_info_a .left .txt .tit-16 p {
    margin-bottom: 0.2rem;
}

.building_info_a .left .txt .more {
    margin-top: 1rem;
}

.building_info_a .right {
    width: 23%;
    height: 11.025rem;
    float: right;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 1.25rem .5rem;
}

.building_info_a .right form {
    width: 100%;
    margin-top: .4rem;
}

.building_info_a .right form .item {
    width: 100%;
    height: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

.building_info_a .right form .item .lab {
    width: 40%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
    text-align: center;
}

.building_info_a .right form .item input {
    width: 50%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
}

.building_info_a .right form .submit {
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .2rem;
    height: 1.25rem;
    line-height: 1.25rem;
    background-color: #1d2974;
    font-size: .4rem;
    color: #fff;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.building_info_a .right form .submit:hover {
    background-color: #fff;
    color: #1d2974;
    border: 1px solid #1d2974;
}

.mtp1 {
    margin-top: 1.5rem;
}

.qus_a .tit-20.text-center {
    margin-top: 0.4rem;
}

.qus_a .sucb {
    width: 54%;
    margin: auto;
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.qus_a .list {
    text-align: center;
}

.qus_a .list .li {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0 .5rem;
    vertical-align: top;
    transition: all 0.5s;
    cursor: pointer;
}

.qus_a .list .li .cont {
    width: 100%;
}

.qus_a .list .li .img {
    width: 1rem;
    height: 1.1rem;
    position: relative;
    display: inline-block;
}

.qus_a .list .li:hover {
    background-color: #1d2974;
}

.qus_b .tit-15 {
    width: 60%;
    margin: auto;
    margin-top: 1rem;
}

.qus_b .img {
    margin-top: 1.5rem;
}

.qus_b .more {
    margin-top: 2rem;
    width: 260px;
}

.qus_e .list {
    margin-top: 1.2rem;
}

.qus_e .list .li {
    height: 6.375rem;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 .5rem;
    transition: all 0.5s;
}

.qus_e .list .li .cont {
    width: 100%;
}

.qus_e .list .li .img {
    width: 1.7rem;
    height: 1.2rem;
    margin-bottom: 1.2rem;
}

.qus_e .list .li .img .img1 {
    opacity: 1;
}

.qus_e .list .li .img .img2 {
    opacity: 0;
}

.qus_e .list .li:hover {
    background-color: #1d2974;
    color: #fff;
}

.qus_e .list .li:hover .img1 {
    opacity: 0;
}

.qus_e .list .li:hover .img2 {
    opacity: 1;
}

.sub {
    width: 60%;
    margin: auto;
    margin-top: 1rem;
}

.qus_f .cont {
    height: 9.775rem;
}

.qus_f .cont .left {
    height: 100%;
    width: 24.7%;
    background-color: #1d2974;
    float: left;
}

.qus_f .cont .left .item {
    width: 100%;
    height: 50%;
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qus_f .cont .left .item .tit-90 {
    font-size: 1.5rem;
    margin-right: 8px;
}

.qus_f .cont .right {
    height: 100%;
    width: 73%;
    float: right;
    background-color: #fff;
}

.qus_f .cont .right .li {
    height: 49%;
    margin-bottom: 1%;
    overflow: hidden;
}

.qus_f .cont .right .li .tit-18 {
    width: 100%;
    position: absolute;
    bottom: 0rem;
    padding: .3rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease-out 0s;
}

.qus_f .cont .right .li:hover .bg {
    transform: scale(1.1);
}

.qus_g .left-button-prev svg,
.qus_g .left-button-next svg {
    fill: #fff;
}

.qus_g .content .right .bg {
    width: 100%;
}

.qus_g .content .right {
    width: 75%;
}

.qus_g .content .left {
    width: 23%;
}

.qus_g .left-button-prev,
.qus_g .left-button-next {
    width: 23%;
}

.qus_h .left {
    width: 50%;
    height: 13.475rem;
    float: left;
}

.qus_h .right {
    width: 50%;
    height: 13.475rem;
    float: left;
    background-color: #1d2974;
    position: relative;
}

.qus_h .right .cpn {
    width: 100%;
}

.qus_h .right .cpn .tit-20 {
    margin: 1.1rem 0;
}

.qus_j .left {
    width: 60%;
    height: 13.475rem;
    float: left;
}

.qus_j .right {
    width: 40%;
    float: right;
    height: 13.475rem;
    background-color: rgba(56, 56, 56, 0.7);
}

.qus_j .right .tit-30 {
    width: 34%;
    height: 100%;
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.qus_j .right .tit-30 span {
    width: 30px;
    line-height: 1;
    height: 100%;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.qus_j .right .list {
    width: 66%;
    float: left;
    height: 100%;
    padding: 1.25rem 1.6rem 0 1.6rem;
}

.qus_j .right .list .item {
    position: relative;
    margin-bottom: 1rem;
}

.qus_j .right .list .item .tit-16 {
    opacity: 0.6;
}

.qus_j .right .list .item:after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: -1.6rem;
    top: 15px;
    margin-left: -8px;
}

.qus_k .left {
    width: 26%;
    float: left;
    height: 9rem;
}

.qus_k .left a {
    display: block;
    height: 2rem;
    width: 100%;
    border-radius: 2rem;
    background-color: #d7d7d7;
    color: #111;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 1.3rem;
    position: relative;
}

.qus_k .left a:hover {
    background-color: #1d2974;
    color: #fff;
}

.qus_k .left a.on {
    background-color: #1d2974;
    color: #fff;
}

.qus_k .left a:after {
    content: "";
    width: 23px;
    height: 13px;
    background-image: url(../img/qkjt.png);
    background-color: 23px 13px;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    bottom: -.8rem;
}

.qus_k .left a:last-child:after {
    display: none;
}

.qus_k .right {
    width: 72%;
    float: right;
    height: 9rem;
    position: relative;
}

.qus_k .right .list {
    width: 100%;
    height: 9rem;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.qus_k .right .li {
    height: 100%;
    height: 9rem;
    overflow: hidden;
}

.qus_k .right .li .bg:hover {
    transform: scale(1.1);
}

.fact .fac_ajaxlist {
    width: 75%;
    float: left;
}

.fact .fac_ajaxlist .li {
    margin-top: 0;
    margin-bottom: .8rem;
    width: 100%;
    height: 12.025rem;
    background-color: #fff;
}

.fac_ajaxlist .li .left {
    width: 100%;
}

.fact .right {
    width: 17vw;
    height: 12.025rem;
    float: right;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 1.25rem .5rem;
}

.fact .right form {
    width: 100%;
    margin-top: .4rem;
}

.fact .right form .item {
    width: 100%;
    height: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

.fact .right form .item .lab {
    width: 40%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
    text-align: center;
}

.fact .right form .item input {
    width: 50%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
}

.fact .right form .submit {
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .2rem;
    height: 1.25rem;
    line-height: 1.25rem;
    background-color: #1d2974;
    font-size: .4rem;
    color: #fff;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.fact .right form .submit:hover {
    background-color: #fff;
    color: #1d2974;
    border: 1px solid #1d2974;
}

.fact .right.fixed {
    position: fixed !important;
    top: 110px;
    right: 14%;
}

.fact .right.bottom {
    position: absolute !important;
    top: auto;
    bottom: .8rem;
    right: 0;
}

.sjx {
    position: absolute;
    right: 0;
    top: 0;
    width: 95px;
    height: 95px;
    background-image: url(../img/sjx.png);
    background-size: 95px 95px;
}

.sjx .tit-14 {
    width: 56%;
    text-align: center;
    margin: auto;
    line-height: 1.5;
    margin-top: 8px;
    margin-left: 34px;
}

.fac_info .pross {
    height: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #1d2974;
    margin-top: 1.25rem;
}

.fac_info .pross a {
    width: 13.8%;
    float: left;
    text-align: center;
    height: 1.5rem;
    border-radius: 1.5rem;
    line-height: 1.5rem;
    color: #555555;
}

.fac_info .pross a svg {
    height: 100%;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 5px;
    fill: #555555;
}

.fac_info .pross a.on {
    background-color: #1d2974;
    color: #fff;
}

.fac_info .pross a.on svg {
    fill: #fff;
}

.fac_info .cont {
    margin-bottom: 2.5rem;
}

.fac_info .cont .left {
    width: 75%;
    height: 21.75rem;
    float: left;
}

.fac_info .cont .left .left-container {
    height: 80%;
    overflow: hidden;
    --swiper-navigation-color: #fff;
}

.fac_info .cont .left .left-container .swiper-slide {
    width: 100%;
    height: 100%;
}

.fac_info .cont .left .left-bot {
    width: 100%;
    height: 2.5rem;
    background-color: #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.2rem;
    margin-top: 1.5rem;
}

.fac_info .cont .left .left-bot a {
    color: #111;
}

.fac_info .cont .left .left-bot a:hover {
    color: #1d2974;
}

.fac_info .cont .right {
    width: 23%;
    height: 21.75rem;
    float: right;
    background-color: #fff;
}

.fac_info .cont .right .box {
    padding: 1.25rem .5rem;
    border: 1px solid #ccc;
    width: 100%;
    height: 50%;
    margin-bottom: 2%;
}

.fac_info .cont .right .box2 {
    padding: .5rem;
    height: 48%;
    margin-bottom: 0;
    position: relative;
}

.fac_info .cont .right .box2 .img {
    width: 100%;
    height: 100%;
}

.fac_info .cont .right .box2 .more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.8rem;
    cursor: pointer;
    height: 1.1rem;
    line-height: 1.1rem;
}

.fac_info .cont .right form {
    width: 100%;
    margin-top: .4rem;
}

.fac_info .cont .right form .item {
    width: 100%;
    height: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

.fac_info .cont .right form .item .lab {
    width: 40%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
    text-align: center;
}

.fac_info .cont .right form .item input {
    width: 50%;
    float: left;
    height: 100%;
    line-height: 1.5rem;
}

.fac_info .cont .right form .submit {
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .2rem;
    height: 1.25rem;
    line-height: 1.25rem;
    background-color: #1d2974;
    font-size: .4rem;
    color: #fff;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.fac_info .cont .right form .submit:hover {
    background-color: #fff;
    color: #1d2974;
    border: 1px solid #1d2974;
}

.comm-tc {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.comm-tc .mak {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-out 0s;
}

.comm-tc .box {
    width: 72%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comm-tc .box .top {
    width: 100%;
    height: 1.85rem;
    line-height: 1.85rem;
    background-color: #1d2974;
}

.comm-tc .box form {
    padding: 1rem;
}

.comm-tc .box form .item {
    width: 43%;
    float: left;
    height: 1.675rem;
    border: 1px solid #ccc;
    margin-right: 1%;
    overflow: hidden;
}

.comm-tc .box form .item .lab {
    width: 28%;
    text-align: center;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
    font-size: .4rem;
}

.comm-tc .box form .item input {
    width: 68%;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
}

.comm-tc .box form .submit {
    width: 12%;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
    background-color: #1d2974;
    color: #fff;
    font-size: .4rem;
    border-radius: 0;
}

.teamajaxlist {
    margin-top: 1.6rem;
}

.teamajaxlist .li {
    height: 14.85rem;
    margin-bottom: 1rem;
    position: relative;
    display: block;
    overflow: hidden;
}

.teamajaxlist .li .bg {
    background-position: center top;
}

.teamajaxlist .li .tit-16 {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 0rem;
    padding: 1rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.teamajaxlist .li .txt {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0rem;
    padding: 1rem .5rem;
    text-align: left;
    font-size: 0.4rem;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s;
}

.teamajaxlist .li .more2 {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #1d2974;
    border-radius: 50%;
    position: absolute;
    right: .6rem;
    bottom: 1rem;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
    opacity: 0;
    transition: all 0.4s;
}

.teamajaxlist .li .icon {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.teamajaxlist .li:hover .tit-16 {
    opacity: 0;
}

.teamajaxlist .li:hover .txt {
    transform: translateY(0);
    opacity: 1;
}

.teamajaxlist .li:hover .more2 {
    transition-delay: .3s;
    opacity: 1;
}

.team-info .content .left {
    width: 83%;
    float: left;
    border: 1px solid #ccc;
    padding: 1rem;
}

.team-info .content .left .img {
    width: 40%;
    height: 12.85rem;
    position: relative;
    float: left;
}

.team-info .content .left .img {
    background-position: center top;
}

.team-info .content .left .img .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.team-info .content .left .img .more_list {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0.5rem;
}

.team-info .content .left .img .more_list div {
    width: 40%;
    display: inline-block;
    height: 1.25rem;
    line-height: 1.25rem;
    background-color: #1d2974;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.4s;
    cursor: pointer;
}

.team-info .content .left .img .more_list div:nth-child(2) {
    background-color: #e6e6e6;
    color: #111;
}

.team-info .content .left .img .more_list div svg {
    fill: #111;
}

.team-info .content .left .img .more_list div.on {
    background-color: #1d2974;
    color: #fff;
}

.team-info .content .left .img .more_list div:nth-child(2):hover svg {
    fill: #fff;
}

.team-info .content .left .img .more_list div.on svg {
    fill: #fff;
}

.team-info .content .left .img .more_list div:nth-child(1):hover {
    border: 1px solid #1d2974;
    background-color: transparent;
    color: #1d2974;
}

.team-info .content .left .img .more_list div:nth-child(2):hover {
    border: 1px solid #1d2974;
    background-color: #1d2974;
    color: #fff;
}

.team-info .content .left .txt {
    width: 60%;
    float: left;
    padding-left: 1rem;
}

.team-info .content .left .txt .name {
    margin-bottom: 1rem;
}

.team-info .content .left .txt .name .tit-30 {
    line-height: 1;
    vertical-align: top;
}

.team-info .content .left .txt .name .tit-15 {
    display: inline-block;
    line-height: 0.75rem;
    padding: 0 0.2rem;
    border-radius: 4px;
    background-color: #1d2974;
    color: #fff;
    vertical-align: top;
}

.team-info .content .right {
    width: 16%;
    float: right;
}

.team-info .content .right .img {
    display: block;
    margin-top: 0.4rem;
    width: 100%;
    height: 6.125rem;
    position: relative;
}

.team-info .content .right .img .bg {
    background-position: center top;
}

.team-info .content .right .img .tit-15 {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 0rem;
    padding: .5rem 0;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.constru .list {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.constru .list .li {
    background-color: #fff;
    border: 1px solid #ccc;
    float: left;
}

.constru .list .li .txt {
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.5s;
}

.constru .list .li .txt .tit-15 {
    line-height: 1.4;
    margin-top: 0.5rem;
}

.constru .list .li .img {
    width: 100%;
    height: 6.4rem;
    overflow: hidden;
}

.constru .list .li:hover .txt {
    color: #1d2974;
}

.constru .list .li:hover .bg {
    transform: scale(1.1);
}

.constru .list .li:last-child {
    margin-right: 0;
}

.constru .lt-list .li {
    margin-bottom: 1.2rem;
}

.constru .lt-list .li .img {
    width: 12.8%;
    height: 4.75rem;
    border-radius: 25px 0 25px 25px;
    overflow: hidden;
    float: left;
}

.constru .lt-list .li .ttx {
    width: 86%;
    float: right;
    border: 1px solid #ccc;
    border-radius: 0 25px 25px 25px;
    background-color: #fff;
    padding: 1.5rem 4rem;
}

.constru .lt-list .li .ttx .tit-24:after {
    content: "";
    position: absolute;
    width: 23px;
    height: 16px;
    background-image: url(../img/yh1.png);
    background-size: 23px 16px;
    left: -2rem;
    top: 0;
}

.constru .lt-list .li .ttx .tit-24:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 16px;
    background-image: url(../img/yh3.png);
    background-size: 23px 16px;
    right: -2rem;
    bottom: 0;
}

.constru .lt-list .li:nth-child(2n) .img {
    float: right;
}

.constru .lt-list .li:nth-child(2n) .ttx {
    float: left;
}

.pro-ajaxlist {
    margin-top: 2rem;
}

.pro-ajaxlist .left {
    width: 74%;
    float: left;
}

.pro-ajaxlist .left .item {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 1.2rem;
    background-color: #fff;
}

.pro-ajaxlist .left .item .img {
    width: 15%;
    float: left;
}

.pro-ajaxlist .left .item .img .yy {
    width: 80%;
    height: 1rem;
    line-height: 1rem;
    margin: auto;
    margin-top: 10px;
    border-radius: 1rem;
    border: 1px solid #1d2974;
    color: #1d2974;
    transition: all 0.4s;
    cursor: pointer;
}

.pro-ajaxlist .left .item .img .yy:hover {
    background-color: #1d2974;
    color: #fff;
}

.pro-ajaxlist .left .item .txt {
    width: 83%;
    float: right;
}

.pro-ajaxlist .left .item .txt .name {
    margin-bottom: .5rem;
}

.pro-ajaxlist .left .item .txt .name .tit-30 {
    line-height: 1;
    vertical-align: top;
}

.pro-ajaxlist .left .item .txt .name .tit-15 {
    display: inline-block;
    line-height: 0.75rem;
    padding: 0 0.2rem;
    border-radius: 4px;
    background-color: #1d2974;
    color: #fff;
    vertical-align: top;
}

.pro-ajaxlist .left .item .txt .text-bold {
    margin-top: 0.4rem;
}

.pro-ajaxlist .left .item .txt .con {
    line-height: 1.5;
}

.pro-ajaxlist .left .item .list {
    margin-top: 1rem;
    float: left;
}

.pro-ajaxlist .left .item .list .li {
    height: auto;
    position: relative;
    margin-bottom: 0.6rem;
}

.pro-ajaxlist .left .item .list .li .mak {
    position: absolute;
    width: 100%;
    height: 4rem;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-out 0s;
    opacity: 0;
}

.pro-ajaxlist .left .item .list .li .bg {
    height: 4rem;
}

.pro-ajaxlist .left .item .list .li .tit-16 {
    margin-top: 0.4rem;
}

.pro-ajaxlist .left .item .list .li:hover .mak {
    opacity: 1;
}

.pro-ajaxlist .right {
    width: 25%;
    float: right;
}

.pro-ajaxlist .right .tit-22 {
    width: 100%;
    line-height: 1.6rem;
    background-color: #1d2974;
}

.pro-ajaxlist .right .li {
    width: 100%;
    margin-top: .5rem;
    display: block;
    border: 1px solid #ccc;
}

.pro-ajaxlist .right .li .img {
    width: 100%;
    height: 5.7rem;
    overflow: hidden;
}

.pro-ajaxlist .right .li .tit-16 {
    padding: 0.4rem 0;
}

.commit-box {
    margin-top: 2rem;
}

.ser-box {
    margin-top: 2rem;
}

.about .cont {
    margin-bottom: 4rem;
}

.about .cont .left {
    width: 48%;
    float: left;
    height: 12.225rem;
    position: relative;
}

.about .cont .left img {
    cursor: pointer;
    transition: all 0.5s;
}

.about .cont .left img:hover {
    transform: translate(-50%, -60%);
}

.about .cont .right {
    width: 48%;
    float: right;
    padding-top: 1.3rem;
}

.about .cont .right .tit-16 p {
    margin-bottom: 1.4rem;
}

.about .cont .right .tit-16 p span {
    color: #f60000;
}

.about .he-button-prev,
.about .he-button-next {
    background-color: #ddd;
    outline: none;
}

.about .he-button-prev:hover,
.about .he-button-next:hover {
    background-color: #1d2974;
}

.honr-container {
    margin-top: 1.5rem;
    overflow: hidden;
}

.honr-container .swiper-slide {
    padding: 15px;
    background-color: #e6e6e6;
}

.honr-container .swiper-slide img {
    width: 100%;
}

.hisconte {
    margin-top: 1.5rem;
    box-sizing: content-box;
}

.his-con {
    width: 100%;
    height: 9.5rem;
    margin-top: 1rem;
    padding: 1rem 11px;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.his-con .swiper-slide {
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px 1px #ccc;
    color: #111;
    transition: all 0.5s;
    text-align: left;
    box-sizing: content-box;
}

.num2 {
    font-family: "BEBAS";
}

.his-con .swiper-slide .tit-70 {
    margin-left: 1rem;
    padding-top: 1rem;
    padding-bottom: .5rem;
    position: relative;
    line-height: 1;
    font-size: 1.2rem;
}

.his-con .swiper-slide .tit-16 {
    padding: 0 1rem;
    margin-top: 0;
    max-height: 6rem;
    overflow: auto;
}

.his-con .swiper-slide.swiper-slide-active {
    background-color: #1d2974;
    color: #fff;
}

.his-con .swiper-slide.on {
    background-color: #1d2974;
    color: #fff;
}

.his-con .swiper-slide.swiper-slide-active .tit-70:after {
    background-color: #fff;
}

.his-con .swiper-slide:hover {
    background-color: #1d2974;
    color: #fff;
}

.his-con .swiper-slide:hover .tit-70:after {
    background-color: #fff;
}

.his-table {
    margin-top: 1rem;
    height: 1.5rem;
    line-height: 1.5rem;
    border: 1px solid #1d2974;
    border-radius: 1.5rem;
    overflow: hidden;
}

.his-table .tit-20 {
    display: block;
    width: 25%;
    height: 1.5rem;
    line-height: 1.5rem;
    float: left;
    border-radius: 1.5rem;
    cursor: pointer;
}

.his-table .tit-20:hover {
    background-color: #1d2974;
    color: #fff;
}

.his-table .tit-20.on {
    background-color: #1d2974;
    color: #fff;
}

.contact_a .left {
    width: 65%;
    height: 16rem;
    float: left;
}

.contact_a .left .map {
    width: 100%;
    height: 100%;
}

.contact_a .right {
    width: 34%;
    float: right;
    height: 16rem;
    background-color: #fff;
    padding: 0.8rem 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact_a .right .tit-36 {
    margin-top: 0.5rem;
}

.contact_a .right p {
    margin: 0.4rem 0;
    color: #111;
}

.amap-icon img {
    width: 0.8rem;
}

.contact_b {
    background-color: #fff;
    padding: 1.6rem 2.25rem;
    margin-top: 0.75rem;
    display: flex;
    align-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3.7rem;
}

.contact_b .ewm2 {
    margin-right: 1rem;
}

.sjs {
    display: none;
}

.news .table a {
    border: 1px solid #ccc;
}

.news .content {
    margin-top: 1rem;
    border-top: 1px solid #ccc;
}

.news_a {
    margin-top: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.news_a .img {
    width: 35%;
    height: 7.5rem;
    overflow: hidden;
}

.news_a .img .bg:hover {
    transform: scale(1.1);
}

.news_a .right {
    width: 60%;
}

.news_a .right .tit {
    margin-top: 0.1rem;
    margin-bottom: 0.35rem;
}

.news_a .right .more {
    margin-top: 0.8rem;
}

.news_b {
    margin-top: 2.25rem;
}

.news_b a {
    display: block;
}

.news_b a .img {
    width: 100%;
    height: 7rem;
}

.news_b a .cont {
    margin-top: 0.1rem;
}

.news_b a .cont .tit {
    margin-top: 0.1rem;
    margin-bottom: 0.2em;
}

.news_b a:hover .bg {
    transform: scale(1.05);
}

.news_b a:hover .tit {
    color: #1d2974;
}

.news_c {
    margin-top: 2rem;
    border-top: 1px solid #ccc;
}

.news_c .list a {
    display: flex;
    width: 100%;
    padding: 0.7rem 0;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #ccc;
    transition: all 0.4s;
}

.news_c .list a .time {
    color: #111;
    font-family: "BEBAS";
}

.news_c .list a .con {
    width: 90%;
}

.news_c .list a:hover {
    background-color: #1d2974;
}

.news_c .list a:hover .time {
    color: #fff;
}

.news_c .list a:hover .tit-24 {
    color: #fff;
}

.news_c .list a:hover .tit-16 {
    color: #fff;
}

.news_c .wpage {
    margin-top: 1rem;
}

.wdcx .cont .map {
    width: 50.5%;
    float: left;
    position: relative;
}

.wdcx .cont .map .item {
    width: 19px;
    height: 20px;
    position: absolute;
}

.wdcx .cont .map .item img {
    position: relative;
    z-index: 1;
}

.team-info {
    padding-top: 1rem;
}

.wdcx .cont .map .item .hoverbox {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -3rem;
    transform: translateY(-100%);
    width: 6rem;
    height: 3.5rem;
    background-image: url(../img/dhk.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: .2rem;
    opacity: 0;
    display: none;
    z-index: 22;
}

.wdcx .cont .map .item .hoverbox .num-p {
    font-size: .4rem;
    border-top: 1px solid #ccc;
    margin-top: 0.2rem;
    text-align: left;
    padding: 0 .2rem;
}

.wdcx .cont .map .item:hover img {
    transition: all 0.3s;
    transform: scale(1.2);
}

.wdcx .cont .map .item.on .hoverbox {
    transition: all 0.3s;
    display: block;
    opacity: 1;
}

.wdcx .cont .map .item.on {
    z-index: 33;
}

.wdcx .cont .map .item.on img {
    transition: all 0.3s;
    transform: scale(1.2);
}

.wdcx .cont .map .item.on .hoverbox {
    transition: all 0.3s;
    display: block;
    opacity: 1;
}

.wdcx .cont .map .item1 {
    top: 48%;
    left: 48%;
}

.wdcx .cont .list {
    width: 42%;
    float: right;
    background-color: #fff;
    border-top: 4px solid #1d2974;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.wdcx .cont .list .top {
    padding: 0.75rem 0;
    padding-bottom: 1rem;
}

.wdcx .cont .list .top .tit-28 {
    line-height: 1.3;
}

.wdcx .cont .list .top .tit-36 {
    line-height: 1;
}

.wdcx .cont .list ul li {
    width: 50%;
    float: left;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    line-height: 2rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s;
}

.wdcx .cont .list ul li svg {
    width: 30px;
    height: 30px;
    fill: #ccc;
    transition: all 0.4s;
}

.wdcx .cont .list ul li:hover {
    color: #1d2974;
}

.wdcx .cont .list ul li:hover svg {
    fill: #1d2974;
}

.wdcx .cont .list ul li.on {
    color: #1d2974;
}

.wdcx .cont .list ul li.on svg {
    fill: #1d2974;
}

.wdcx .cont .list ul li:nth-child(12) {
    border-bottom: 1px solid #ccc;
}


/*# sourceMappingURL=yystyle.css.map */

.wdcx .cont .map .item2 {
    top: 47%;
    left: 63%;
}

.wdcx .cont .map .item3 {
    top: 37%;
    left: 48%;
}

.wdcx .cont .map .item4 {
    top: 58%;
    left: 71%;
}

.wdcx .cont .map .item5 {
    top: 35%;
    left: 53%;
}

.wdcx .cont .map .item6 {
    top: 52%;
    left: 63%;
}

.wdcx .cont .map .item7 {
    top: 35%;
    left: 59%;
}

.wdcx .cont .map .item8 {
    top: 46%;
    left: 34%;
}

.wdcx .cont .map .item9 {
    top: 65%;
    left: 21%;
}

.wdcx .cont .map .item10 {
    top: 30%;
    left: 30%;
}

.wdcx .cont .map .item11 {
    top: 71%;
    left: 57%;
}

.wdcx .cont .map .item12 {
    top: 51%;
    left: 57%;
}

.wdcx .cont .map .item13 {
    top: 40%;
    left: 66%;
}

.comm-tc .box form.baojia .item {
    width: 28%;
}

.comm-tc .box form.baojia .item .lab {
    width: 40%;
}

.comm-tc .box form.baojia .item input {
    width: 60%;
}

.ewmbox {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.ewmbox .mak {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-out 0s;
}

.prostar {
    position: relative;
    top: -110px;
}

.eva-rg:hover {
    background-color: #ea570;
    color: #fff;
}

.act_a {
    background-color: rgb(233, 233, 233);
    padding: 1.5rem 0;
}

.act_a form {
    padding: 1rem 0;
}

.act_a form .item {
    width: 28%;
    float: left;
    height: 1.675rem;
    border: 1px solid #ccc;
    margin-right: 1%;
    overflow: hidden;
}

.act_a form .item .lab {
    width: 45%;
    text-align: center;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
    font-size: .4rem;
}

.act_a form .item input {
    width: 55%;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
    background: transparent;
}

.act_a form .submit {
    width: 12%;
    float: left;
    height: 1.675rem;
    line-height: 1.675rem;
    background-color: #1d2974;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
}

.eva-rg:hover {
    background-color: #1d2974;
}

.eva-rg:hover a {
    color: #fff;
}

.bigimg .next,
.bigimg .perv {
    position: absolute;
    top: 50%;
    cursor: pointer;
    margin-top: -16px;
    z-index: 2;
}

.bigimg .next svg,
.bigimg .perv svg {
    fill: #fff;
}

.bigimg .next:hover svg,
.bigimg .perv:hover svg {
    fill: #1d2974;
}

.bigimg .next {
    right: 1%;
}

.bigimg .perv {
    left: 1%;
    transform: rotate(180deg)
}

.close {
    position: absolute;
    right: 2%;
    top: 16%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.qua_e-container .he-button-prev {
    left: 13%;
}

.qua_e-container .he-button-next {
    right: 13%;
}

.sub_nav {
    width: 220%;
    height: auto;
    background-color: #101214;
    position: absolute;
    left: -60%;
    text-align: center;
    display: none;
}

.sub_nav a {
    display: block;
    line-height: 50px;
    margin: 0px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6)
}

.sub_nav a:hover {
    color: #1d2974;
}

.index_tit.about_tit .border {
    padding: 0 3rem;
}

.index_tit.about_tit .border:before {
    width: 2.2rem;
}

.index_tit.about_tit .border:after {
    width: 2.2rem;
}

.newspage {}

.newspage .pagination a {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    color: #333333;
    text-align: center;
    border-radius: 0;
    font-weight: 550;
    margin: 0 .2rem;
    font-size: 16px;
}

.newspage .pagination a[rel*="next"] {
    width: 2rem;
}

.newspage .pagination a[rel*="prev"] {
    width: 2rem;
}

.newspage .pagination .active {
    background-color: #E95702;
    color: #FFFFFF;
}

.newspage .pagination a:hover {
    background-color: #E95702;
    color: #FFFFFF;
}

.cuper {
    cursor: pointer;
}

.video_ajaxlist .list .li .tit-18 {
    margin: .4rem 0;
}

.search-wrap {
    padding: 2rem 0;
    /*margin-top: 120px;*/
}

.search-wrap .tab-btns {
    float: left;
    width: 15.17%;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
}

.search-wrap .tab-btns a {
    display: block;
    height: 1.95rem;
    line-height: 1.95rem;
    font-family: "Microsoft Yahei";
    text-align: center;
    color: #666;
    font-size: .45rem;
    border-bottom: 1px solid #e6e6e6;
    transition: all .3s;
}

.search-wrap .tab-btns a:last-child {
    border-bottom: none;
}

.search-wrap .tab-btns a.cur {
    color: #fff;
    background-color: #1d2974;
}

.search-wrap .right {
    float: right;
    width: 78.57%;
    min-height: 60vh;
}

.search-wrap .right .num {
    font-size: .45rem;
    line-height: .5rem;
    border-bottom: 1px solid #e6e6e6;
    color: #999;
    padding-bottom: .75rem;
    font-family: "Microsoft Yahei";
}

.search-list .item {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #e6e6e6;
}

.search-list .item .tit {
    font-size: .6rem;
    line-height: .7rem;
    color: #333;
    font-weight: bold;
}

.search-list .item .pub-con {
    margin-top: .5rem;
}

.search-list .item .time {
    font-size: .4rem;
    line-height: .5rem;
    color: #999;
    font-family: "Microsoft Yahei";
    margin-top: .75rem;
}

.pub-con {
    font-size: .4rem;
    line-height: .7rem;
    color: #4c4c4c;
}

@media (max-width: 767px) {
    .search-wrap {
        padding: 2rem 0;
    }
    .search-wrap .tab-btns {
        float: none;
        width: 100%;
        font-size: 0;
    }
    .search-wrap .tab-btns a {
        width: 50%;
        display: inline-block;
        *display: inline;
        zoom: 1;
        border-right: 1px solid #e6e6e6;
        box-sizing: border-box;
        height: 2rem;
        line-height: 2rem;
        font-size: 0.75rem;
    }
    .search-wrap .tab-btns a:nth-child(2n) {
        border-right: none;
    }
    .pub-con {
        font-size: 0.6rem;
        line-height: 1.6;
    }
    .search-wrap .right {
        float: none;
        width: 100%;
        margin-top: 1.25rem;
    }
    .search-wrap .right .num {
        font-size: 0.6rem;
        line-height: 1rem;
        padding-bottom: 0.75rem;
    }
    .search-list .item {
        padding: 1rem 0;
    }
    .search-list .item .tit {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .search-list .item .pub-con {
        margin-top: 0.5rem;
    }
    .search-list .item .time {
        font-size: 0.6rem;
        line-height: 1rem;
        margin-top: 0.5rem;
    }
    .search-dialog .search {
        width: 75%;
        padding: 0.25rem 0.5rem;
    }
    .search-dialog .search input[type=submit] {
        width: 1rem;
        height: 1rem;
    }
    .search-dialog {
        position: absolute;
        right: 0;
        left: 0;
        margin-top: 0;
        width: 70%;
        margin: auto;
    }
    .search-dialog .search input[type=text] {
        width: 80%;
        height: 1rem;
        line-height: 1rem;
        font-size: 0.75rem;
    }
    .search-dialog .search-close {
        width: 0.75rem;
        height: 0.8rem;
        margin-top: -0.4rem;
    }
}

.por_list.ajaxlist .list .li .txt {
    height: 3rem;
}

.por_list.ajaxlist {
    margin-top: 0;
}

.qua_prv,
.qua_next {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    cursor: pointer;
}

.qua_prv {
    left: -1.5rem;
    transform: translateY(-50%) rotate(180deg);
}

.qua_next {
    right: -1.5rem;
}

.qua_prv svg,
.qua_next svg {
    fill: #8a8a8a;
}

.qua_prv:hover svg,
.qua_next:hover svg {
    fill: #1d2974;
}

.bigimg-container {
    height: 100%;
}

.bigimg-container .swiper-slide {
    width: 100%;
    height: 100%;
}

.submit-box input.dxcaptcha {
    width: 30%;
}

.sendcode {
    width: 24%;
    height: 1.3rem;
    line-height: 1.3rem;
    background: #1d2974;
    text-align: center;
    color: #fff;
    border-radius: 0.3rem;
}

.act_a form .item2 {
    width: 15%;
    float: left;
    height: 1.675rem;
    border: 1px solid #ccc;
    margin-right: 1%;
    overflow: hidden;
}

.sendcode2 {
    float: left;
    width: 10%;
    height: 1.675rem;
    line-height: 1.675rem;
    border-radius: 0;
    margin-right: 1%;
    font-size: 16px;
}

@media (max-width: 379px) {
    .comm-tc .box form.baojia .item .lab {
        width: 50%;
    }
    .comm-tc .box form.baojia .item input {
        width: 50%;
    }
}

{
    .comm-tc .box form.baojia .item .lab {
        width: 60%;
    }
    .comm-tc .box form.baojia .item input {
        width: 40%;
    }
}

@media (min-width: 1626px) {
    .contact_a .left {
        width: 65%;
        height: 14rem;
        float: left;
    }
    .contact_a .right {
        width: 34%;
        float: right;
        height: 14rem;
        background-color: #fff;
        padding: 0.8rem 1rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
}

@media(min-width:768px) {
    .xiaoguo-biaodan2 {
        display: flex;
        justify-content: start;
        align-items: start;
        position: relative;
        width: 750px;
        float: left;
    }
    .xiaoguo-biaodan3 {
        display: flex;
        justify-content: start;
        align-items: start;
        position: relative;
        left: -80px;
        width: 850px;
        margin: auto;
    }
    .xiaoguo-biaodan4 {
        display: flex;
        justify-content: start;
        align-items: start;
        position: relative;
        width: 850px;
        margin: auto;
    }
    .info-left {
        float: left;
        width: 76%;
    }
    .info-right {
        float: left;
        width: 22%;
        margin-left: 2%;
    }
    .left1 {
        border: thin solid #b1b1b1;
        padding: 0 40px 40px;
    }
    .left2 {
        border: thin solid #b1b1b1;
        padding: 40px;
        margin: 20px 0;
    }
    .chakan {
        margin-top: 1rem;
    }
    .xuxian {
        border-bottom: thin dashed #b3b3b3;
    }
    .tuijianwz a {
        color: #212121;
        max-width: 100%;
        margin-right: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
        display: inline-block;
        vertical-align: top;
        font-style: normal;
        line-height: 3;
    }
}

@media(max-width:767px) {
    .info-left {
        margin: 0;
    }
    .info-right {
        display: none;
    }
}

.rightpont {
    text-align: center;
    height: 50px;
    background-color: #f3f3f3;
    font-size: 16px;
    color: #333;
    line-height: 50px;
}

.normal-sec1 {
    background: url(/bocstatic/web/img/no-bg1.jpg) no-repeat top center;
    background-size: 100% 100%;
    padding: 50px 0 0;
}

.nor-tit {
    background: url(/bocstatic/web/img/no-tit1.png) no-repeat center;
    height: 80px;
    width: 658px;
    margin: 0 auto;
}

.nor-tit h3 {
    font: bold 35px/60px "微软雅黑";
    text-align: center;
    line-height: 80px;
    color: white;
}

.normal-sec1 .w1200 {
    background: url(/bocstatic/web/img/no-shadow.png) no-repeat top center;
    height: 644px;
    width: 1050px;
    margin: 40px auto 0 auto;
}

.normal-sec1 .w1200 .cont {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
}

.normal-sec1 .left ul {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-around;
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
}

.normal-sec1 .left h3 {
    font-weight: bold;
    font-size: 42px;
    color: #de5b06;
    text-align: center;
    line-height: 1;
}

.normal-sec1 .left {
    width: 620px;
    padding-top: 60px;
}

.normal-sec1 .left strong {
    font-size: 80px;
    color: #E62128;
    font-family: symbol;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 130px;
}

.normal-sec1 .left strong b {
    font-size: 80px;
    font-weight: 600;
}

.normal-sec1 .left p {
    color: #000000;
    font-size: 18px;
    text-align: center;
}

.normal-sec1 .left li b {
    color: #E62128;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 16px;
}

.normal-sec1 .left li p {
    color: #000;
    text-align: center;
    width: 100%;
    line-height: 60px;
    font-size: 16px;
}

.normal-sec1 .right {
    padding: 90px 60px;
    width: 516px;
}

.normal-sec1 .right h3 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.normal-sec1 .right p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
}

.normal-sec1 .right p b {
    color: #E60012;
    display: inline-block;
    vertical-align: middle;
}

.normal-sec1 .div-input {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    width: 400px;
    padding: 0 20px;
    margin-bottom: 20px;
    position: relative;
}

.normal-sec1 .div-input input {
    height: 60px;
    line-height: 60px;
    padding-left: 10px;
    width: 80%;
}

.normal-sec1 .sub {
    background: #E60012;
    color: #fff;
    font-size: 22px;
    display: block;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    width: 100%;
}

.normal-sec1 select {
    width: 95%;
}

.normal-sec1 .div-input b {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 30px;
    border-top: 5px solid #000;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: 30px;
}

.normal-sec1 option {
    padding-top: 50px;
}

.normal-sec1 .right .div-input ul {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #000;
    z-index: 333;
    display: none;
}

.normal-sec1 .right .div-input li {
    color: #fff;
    padding-left: 10px;
    line-height: 40px;
    z-index: 33;
}

.normal-sec2 {
    background: url(/bocstatic/web/img/no-bg1.jpg) no-repeat top center;
    background-size: 100% 100%;
    padding: 50px 0 2rem;
}

.normal-sec2 .v1200 {
    background: white;
    height: auto;
    width: 1050px;
    margin: 40px auto;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.normal-sec2 .v1200 .cont {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
}

.normal-sec2 .left ul {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-around;
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
    width: auto;
    flex-wrap: wrap;
}

.normal-sec2 .left h3 {
    font-weight: bold;
    font-size: 42px;
    color: #de5b06;
    text-align: center;
    line-height: 1;
}

.normal-sec2 .left {
    width: 620px;
    padding-top: 60px;
}

.normal-sec2 .left strong {
    font-size: 80px;
    color: #E62128;
    font-family: symbol;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 130px;
}

.normal-sec2 .left strong b {
    font-size: 80px;
    font-weight: 600;
}

.normal-sec2 .left p {
    color: #000000;
    font-size: 18px;
    text-align: center;
}

.normal-sec2 .left li figure {
    width: 70px;
    margin: auto;
    transition: all 0.3s;
}

.normal-sec2 .left li figure:hover {
    transform: translate(0, -10px);
}

.normal-sec2 .left li b {
    color: #E62128;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 16px;
}

.normal-sec2 .left li p {
    color: #000;
    text-align: center;
    width: 100%;
    line-height: 23px;
    font-size: 18px;
    margin: 20px auto 35px;
}

.normal-sec2 .right {
    padding: 60px;
    width: 516px;
    background: #444444;
}

.normal-sec2 .right h3 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.normal-sec2 .right p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
}

.normal-sec2 .right p b {
    color: #E60012;
    display: inline-block;
    vertical-align: middle;
}

.normal-sec2 .div-input {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    width: 400px;
    padding: 0 20px;
    margin-bottom: 20px;
    position: relative;
}

.normal-sec2 .div-input input {
    height: 60px;
    line-height: 60px;
    padding-left: 10px;
    width: 80%;
}

.normal-sec2 .sub {
    background: #E60012;
    color: #fff;
    font-size: 22px;
    display: block;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    width: 100%;
}

.normal-sec2 select {
    width: 95%;
}

.normal-sec2 .div-input b {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 30px;
    border-top: 5px solid #000;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: 30px;
}

.normal-sec2 option {
    padding-top: 50px;
}

.normal-sec2 .right .div-input ul {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #000;
    z-index: 333;
    display: none;
}

.normal-sec2 .right .div-input li {
    color: #fff;
    padding-left: 10px;
    line-height: 40px;
    z-index: 33;
}

.title-form h3 {
    display: inline-block;
    width: 330px;
    height: 46px;
    font-size: 30px;
    line-height: 42px;
    border: 2px solid;
    border-top-left-radius: 23px;
    border-bottom-right-radius: 23px;
    color: #ea5804;
    overflow: hidden;
    text-align: center;
}

.title-form h3 p {
    display: block;
    float: left;
    width: 160px;
    background-color: #ea5804;
    color: white;
    text-transform: uppercase;
}

@media(min-width:1201px) {
    .xiaoguo-biaodan0 {
        margin-top: 2rem;
    }
    .xiaoguotu-img {
        margin: 0 auto;
    }
    .xiaoguo-biaoti {
        margin: 0;
        width: 320px;
        height: 26px;
        font-size: 26px;
        font-weight: 500;
        color: #000000;
        line-height: 26px;
    }
    .xiaoguo-biankuang {}
    .xiaoguo-biaodan {
        display: flex;
        justify-content: start;
        align-items: start;
        position: relative;
        width: 750px;
    }
    .xiaoguo-xingming {
        height: 50px;
        width: 210px;
        margin-right: 10px;
        margin-top: 15px;
        padding: 0 30px 0 20px;
    }
    .xiaoguo-phone {
        height: 50px;
        width: 290px;
        margin-right: 10px;
        margin-top: 15px;
        padding: 0 50px 0 20px;
    }
    .xiaoguo-mianji {
        height: 50px;
        width: 230px;
        margin-top: 15px;
        padding: 0 50px 0 20px;
    }
    .xiaoguo-biaodanxia {
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
    }
    .xiaoguo-anniu1 {
        width: 750px;
        line-height: 50px;
        text-align: center;
        height: 50px;
        margin-top: 15px;
    }
    .xiaoguo-anniu2 {
        width: 750px;
        line-height: 50px;
        text-align: center;
        background: linear-gradient(90deg, #ea5804, #ea8e04);
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        height: 50px;
    }
}

.anniu2 {
    width: 400px;
}

#animat {
    margin: 20px auto 0;
    position: relative;
    animation: mymove 1.5s infinite;
    -webkit-animation: mymove 1.5s infinite;
    /*Safari and Chrome*/
    animation-direction: alternate;
    /*轮流反向播放动画。*/
    animation-timing-function: ease-in-out;
    /*动画的速度曲线*/
    /* Safari 和 Chrome */
    -webkit-animation: mymove 1.5s infinite;
    -webkit-animation-direction: alternate;
    /*轮流反向播放动画。*/
    -webkit-animation-timing-function: ease-in-out;
    /*动画的速度曲线*/
}

@keyframes mymove {
    0% {
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

@-webkit-keyframes mymove
/*Safari and Chrome*/

{
    0% {
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        transform: scale(1.1);
        /*放大1.1倍*/
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

.form-far {
    width: 100%;
    position: relative;
    height: 0;
    margin-bottom: 60px;
}

.form-far2 {
    width: 100%;
    position: relative;
    height: 0;
    margin-bottom: 60px;
}

.form-far3 {
    width: 100%;
    position: fixed;
    height: 0;
    margin-bottom: 60px;
    bottom: 50px;
    z-index: 10;
    opacity: 0;
}

.form-far3.active {
    opacity: 1;
}

.form-son {
    top: -70px;
    height: 140px;
    bottom: auto;
    padding-top: 26px;
    padding-bottom: 25px;
    background: no-repeat url(/bocstatic/web/img/biaodan-bg.jpg) center / contain;
    width: 1400px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    padding: 45px 0 45px 68px;
}

.form-son2 {
    height: 140px;
    bottom: auto;
    padding-top: 26px;
    padding-bottom: 25px;
    background: no-repeat url(/bocstatic/web/img/villa/pc/PC_02.jpg) top center / 100% auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.form-son3 {
    height: 140px;
    bottom: auto;
    padding-top: 26px;
    padding-bottom: 25px;
    background: #000000e8;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.biaodan-dianhua1 {
    float: right;
    position: relative;
    right: 3rem;
}

.biaodan-dianhua2 {
    color: white;
    font-size: 16px;
    text-align: right;
    right: 3px;
    position: relative;
    font-style: italic;
}

.biaodan-dianhua3 {
    color: #b97e27;
    font-size: 24px;
    position: relative;
    top: -10px;
    font-weight: bold;
    float: left;
    font-style: italic;
}

.biaodan-dianhua4 {
    color: #5c2214;
    font-size: 14px;
    position: relative;
    top: 20px;
    left: 20px;
    font-weight: bold;
}

.biaodan-dianhua5 {
    color: #ff9950;
    font-size: 16px;
    position: absolute;
    top: -20px;
    left: 180px;
    font-weight: 500;
}

@media(max-width:1400px) {
    .biaodan-dianhua1 {
        float: right;
        position: relative;
        right: 6rem;
    }
}

@media(max-width:1300px) {
    .biaodan-dianhua1 {
        float: right;
        position: relative;
        right: 10rem;
    }
}

@media(max-width:1200px) {
    .biaodan-dianhua1 {
        float: right;
        position: relative;
        right: 13rem;
    }
    .normal-sec2 .v1200 {
        width: 900px;
    }
}

@media(max-width:1124px) {
    .biaodan-dianhua1 {
        display: none;
    }
}

@media(max-width:1000px) {
    .normal-sec2 .v1200 {
        width: 808px;
    }
}

.tixi {
    background-image: url(https://www.jt111.com/bocstatic/web/img/homeb.jpg);
    height: 190px;
}

.sx-jianju {
    padding-top: 20px;
    padding-bottom: 55px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px
}

.tixi .row div:nth-child(1) {
    animation-delay: 0.1s
}

.tixi .system figure {
    margin: 0 auto;
    transition: All 0.2s ease-in-out;
    -webkit-transition: All 0.2s ease-in-out
}

@media (min-width:768px) {
    .tixi .system figure {
        padding: 10px 0;
    }
}

@media (max-width:767px) {
    .tixi .system figure {
        margin-bottom: 10px
    }
    .normal-sec2 {
        display: none;
    }
}

.tixi .system figure:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.1)
}

.tixi .system figure span {
    font-size: 38px;
    position: relative;
    top: -8px;
}

.tixi .system figure h3 {
    font-size: 14px;
    color: #ccc;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block
}

.tixi .system figure p {
    color: #999;
    margin: 0
}

.tixi .system figure p.ico {
    height: 72px;
    width: 72px;
    margin: 0 auto;
    margin-bottom: 5px;
    border-radius: 50%;
    color: #fff;
    padding-top: 18px;
    transition: All 0.2s ease-in-out;
    -webkit-transition: All 0.2s ease-in-out
}

.tixi .system figure:hover p.ico {
    background-color: #e45503
}

.tixi .system figure:hover span {
    font-size: 36px;
    color: #fff
}

.tixi .system figure {
    transition: All 0.2s ease-in-out;
    -webkit-transition: All 0.2s ease-in-out
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@media (min-width:1451px) {
    .container {
        width: 1400px;
    }
}

@media (max-width:1450px) {
    .container {
        width: 1170px;
    }
}

@media (max-width:1200px) {
    .container {
        width: 970px;
    }
}

@media (max-width:992px) {
    .container {
        width: 750px;
    }
}

.col-lg-2 {
    width: 16.66666667%
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

#zixun {
    padding: 2rem 5rem 3rem;
    margin: 0;
    background: #f0f0f0;
}

@media (max-width:1100px) {
    #zixun {
        padding: 2rem 1rem 3rem;
        margin: 0;
        background: #f0f0f0;
    }
}

.index-sec4 {
    background: url(/bocstatic/web/img/biaodan-bg2.jpg) no-repeat top center;
    background-size: cover;
    height: 205px;
    width: 100%;
    padding: 0 85px;
}

.index-sec4 .sec4-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 205px;
}

.index-sec4 h3 {
    font-size: 22px;
    color: #fff;
    padding-bottom: 20px;
}

.index-sec4 .div2 {
    background: #ea5804;
    height: 60px;
    width: 200px;
    padding: 10px;
}

.index-sec4 .div2 a {
    background: #1d2974;
    display: block;
    height: 40px;
    width: 100%;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 22px;
    font-family: arial;
    line-height: 40px;
    transition: all 0.9s;
    z-index: 3;
    position: relative;
    color: #d0d0d0;
    overflow: hidden;
}

.index-sec4 .div2 a:before,
.index-sec4 .div2 a:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background: #d7a449;
    border-radius: 50%;
    z-index: -1;
}

.index-sec4 .div2 a:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.index-sec4 .div2 a:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.index-sec4 .div2 a:hover:before {
    -webkit-animation: criss-cross-left .8s both;
    animation: criss-cross-left .8s both
}

.index-sec4 .div2 a:hover:after {
    -webkit-animation: criss-cross-right .8s both;
    animation: criss-cross-right .8s both
}

.index-sec4 .div2 a:hover {
    color: #fff;
}

@media (min-width:1100px) {
    .index-sec4 .sec4-cont {
        padding: 0 6rem;
    }
}

@media (max-width:767px) {
    .index-sec4 .sec4-cont {
        padding: 0 2rem;
    }
}

.about2 {
    background-color: #000;
    background-image: url(/bocstatic/web/img/jianjie-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
}

.about2 .home-title {
    margin-bottom: 30px
}

.about2 p {
    color: #999;
    font-size: 18px;
}

.about2 p.hg-4 {
    color: #ccc;
    font-size: 16px;
}

.about2 .shuju {
    margin: 30px 0
}

.about2 .shuju figure {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.50)
}

.about2 .shuju figure:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    background-color: #c96;
    border: 2px solid #c96
}

.about2 .shuju figure h3 {
    font-size: 20px;
    margin: 30px 0 0 0;
    color: #fff
}

.about2 .shuju figure:hover h3,
.about2 .shuju figure:hover p {
    color: #fff
}

@media (max-width:767px) {
    .about2 .shuju {
        margin: 30px 0 0 0
    }
    .about2 .shuju figure {
        margin-bottom: 20px
    }
}

@media (min-width:768px) {
    .col-lg-3 {
        width: 25%
    }
}

@media (max-width:767px) {
    .col-xs-6 {
        width: 50%;
    }
}

.container2 {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:769px) {
    .container2 {
        width: 70%;
        height: 16rem;
    }
}

@media (min-width:1023px) {
    .container2 {
        width: 70%;
        height: 20rem;
    }
}

@media (min-width:1099px) {
    .container2 {
        width: 70%;
        height: 18rem;
    }
}

@media (min-width:1439px) {
    .container2 {
        height: 15rem;
        width: 70%;
    }
}

@media (min-width:1680px) {
    .container2 {
        height: 13rem;
        width: 70%;
    }
}

a.btn-center,
a.btn-center-white {
    text-align: center;
    font-size: 16px;
    padding: 4px 50px 2px 50px;
    margin: 50px 10px 0 10px;
    color: #c96;
    border: 1px solid #c96;
    display: inline-block
}

a.btn-center-white {
    background-color: #c96;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.50)
}

a.btn-center:hover,
a.btn-center-white:hover,
a.btn-center.hover {
    background-color: #c96;
    border: 1px solid #c96;
    color: #fff;
    text-decoration: none
}

a.btn-center-white:hover {
    border: 1px solid #fff
}

@media (max-width:767px) {
    a.btn-center {
        margin: 15px 10px 0 10px;
        padding: 4px 20px 2px 20px
    }
}

.dan {
    height: 40px;
    width: 200px;
    margin-right: 1px;
    margin-top: 15px;
    padding: 0 30px 0 20px;
}

.dan-1 {
    height: 40px;
    width: 150px;
    margin-right: 1px;
    margin-top: 15px;
    padding: 0 30px 0 20px;
}

.dan-2 {
    height: 40px;
    width: 200px;
    margin-right: 1px;
    margin-top: 15px;
    padding: 0 20px;
}

.dan-3 {
    height: 40px;
    width: 130px;
    margin-top: 15px;
    padding: 0 20px;
}

.dan-4 {
    width: 150px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    margin-top: 15px;
}

.dan-5 {
    height: 40px;
    width: 150px;
    margin-top: 15px;
    padding: 0 30px 0 20px;
    border-right: 1px solid #4e4e4e;
}

@media (max-width:1000px) {
    .dan-1 {
        height: 40px;
        width: 130px;
        margin-right: 1px;
        padding: 0 10px 0 20px;
        margin-top: 0;
    }
    .dan-2 {
        height: 40px;
        width: 150px;
        margin-right: 1px;
        padding: 0 20px;
        margin-top: 0;
    }
    .dan-3 {
        height: 40px;
        width: 130px;
        padding: 0 20px;
        margin-top: 0;
    }
    .dan-4 {
        width: 150px;
        line-height: 40px;
        text-align: center;
        height: 40px;
        margin-top: 0;
    }
    .biaodan-dianhua4 {
        color: #5c2214;
        font-size: 14px;
        position: relative;
        top: 20px;
        left: 20px;
        font-weight: bold;
        margin-top: -15px;
    }
}

.index-sec3 {
    position: relative;
    overflow: auto;
}

.index-sec3 .title h3 {
    color: #000;
}

.index-sec3 ul {
    display: flex;
    display: -ms-flexbox;
    display: -moz-flex;
    justify-content: space-between;
    padding-top: 50px;
    width: 1400px;
    margin: 0 auto;
}

.index-sec3 ul li {
    width: 19%;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
    z-index: 3;
    height: 250px;
    background: #1d2974;
}

.index-sec3 li h3 {
    font-size: 25px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-sec3 li h4 {
    font-size: 12px;
    color: #bbad94;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "arial narrow";
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 10px;
}

.index-sec3 li p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 32px;
}

.index-sec3 li .div1 {
    height: 60px;
    overflow: hidden;
    line-height: 60px;
    float: right;
    color: #1d2974;
}

.index-sec3 li .div1 strong,
.index-sec3 li .div1 b {
    display: block;
    line-height: 60px;
    height: 60px;
    font-size: 60px;
    transition: all 0.6s;
}

.index-sec3 li b {
    color: #ffffff;
}

.index-sec3 li:hover b {
    margin-top: 0px;
}

.index-sec3 li:hover strong {
    margin-top: -60px;
}

.index-sec3 li .cir {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition: all 0.6s;
    z-index: -1;
}

.index-sec3 li:hover .cir {
    transform: scale(1);
    background: #d7a449;
    opacity: 0.3;
}

.index-sec3 li:hover h3 {
    color: white;
}

.index-sec3 li:hover h4 {
    color: white;
}

.index-sec3 li:hover p {
    color: white;
}

@media(max-width:1500px) {
    .index-sec3 ul {
        width: 1200px;
    }
}

@media(max-width:1400px) {
    .index-sec3 ul {
        width: 1100px;
    }
}

@media(max-width:1300px) {
    .index-sec3 ul {
        width: 1000px;
    }
    .index-sec3 ul li {
        padding: 20px 15px;
    }
}

@media(max-width:1200px) {
    .index-sec3 ul {
        width: 900px;
    }
    .index-sec3 ul li {
        padding: 20px 10px;
    }
}

@media(max-width:1100px) {
    .index-sec3 ul {
        width: 850px;
    }
    .index-sec3 ul li {
        padding: 20px 5px;
    }
}

@media(max-width:767px) {
    .index-sec3 ul {
        width: 900px;
        padding: 0 10px;
        margin-top: 1rem;
    }
    .index-sec3 ul li {
        width: 49%;
        height: 185px;
        margin-bottom: 10px;
        text-align: center;
        margin-right: 10px;
    }
    .index-sec3 li .div1 {
        display: none;
    }
    .index-sec3 li p {
        color: #333;
        font-size: 12px;
    }
    .index-sec3 li h3 {
        font-size: 21px;
    }
}

.guanbi {
    margin-top: -38px;
}

.xianshi {
    position: relative;
    top: 73px;
    z-index: 9;
    display: none;
}
.alertc {
    display: none;
}

.alertbg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background-color: rgb(0, 0, 0);
    opacity: 0.3;
    top: 0;
    left: 0;
}

.alertcon {
    width: 728px;
    height: auto;
    position: fixed;
    z-index: 19891015;
    top: 20%;
    left: 50%;
    margin-left: -364px;
    background: url(../images/alert_top_bg.png) no-repeat 50% top;
    background-size: 728px auto;
}

.alertclose {
    position: absolute;
    z-index: 19891019;
    top: 32px;
    right: 39px;
}

.al_t {
    height: 115px;
    padding: 20px 0 0 40px;
}

.al_t .tit {
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    line-height: 32px;
    margin-bottom: 4px;
}

.al_t .info {
    color: rgba(225, 225, 225, 0.5);
    font-size: 14px;
    line-height: 22px;
}

.al_c {
    background: url(../images/alert_bg.png) no-repeat right bottom #fff;
    border-radius: 0 0 18px 18px;
    padding: 30px 70px;
}

.al_c .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.al_c .list .listl {}

.al_c .list .listl a {
    display: block;
    width: 50%;
    float: left;
}

.al_c .list .listl a:nth-of-type(1) {
    height: 56px;
    line-height: 56px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background: url() no-repeat 90% 50% #f3f3f3;
    padding-left: 25px;
    color: rgba(38, 38, 38, 0.5);
    font-size: 14px;
}

.al_c .list .listl a:nth-of-type(1).on {
    background: url(../images/al_c_a_on.png) no-repeat 90% 50% #e5e5e5;
    color: #1d1d1d;
    font-weight: bolder;
}

.al_c .list .listl a:nth-of-type(2) {
    height: 56px;
    line-height: 56px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    background: url() no-repeat 90% 50% #f3f3f3;
    padding-left: 25px;
    color: rgba(38, 38, 38, 0.5);
    font-size: 14px;
}

.al_c .list .listl a:nth-of-type(2).on {
    background: url(../images/al_c_a_on.png) no-repeat 90% 50% #e5e5e5;
    color: #1d1d1d;
    font-weight: bolder;
}

.al_text {
    width: 100%;
    height: 56px;
    line-height: 56px;
    color: #333;
    font-size: 14px;
    background: #f3f3f3;
    border: 0;
    padding-left: 20px;
    border-radius: 12px;
}

.al_c .list .listr {
    position: relative;
    z-index: 99;
}

.al_c .list .listr span {
    position: absolute;
    z-index: 100;
    font-size: 15px;
    color: #080808;
    top: 16px;
    right: 18px;
    font-weight: bolder;
}

.al_c .lista {
    margin-bottom: 20px;
    text-align: center;
}

.al_sub {
    width: 246px;
    height: 56px;
    line-height: 56px;
    background: url(../images/contact_sub.png) no-repeat 58px 50% #e50120;
    text-indent: 92px;
    text-align: left;
    font-size: 14px;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 10px 0 rgba(229, 1, 32, 0.35);
    cursor: pointer;
}

.al_sub:hover {
    background: url(../images/contact_sub.png) no-repeat 58px 50% #b80820;
}

.al_c .listb {
    color: #bababa;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
}
/*å‚è§‚å·¥åœ° å¼¹å‡ºæ¡†*/

.alertcon_b {
    width: 538px;
    height: auto;
    position: fixed;
    z-index: 19891015;
    top: 20%;
    left: 50%;
    margin-left: -269px;
    background: url(../images/alert_top_bg2.png) no-repeat 50% top;
}

.alb_t {
    width: 277px;
    height: 56px;
    margin: 20px auto 20px auto;
    position: relative;
    z-index: 99;
}

.alb_t .alb_t_text {
    width: 100%;
    height: 56px;
    line-height: 56px;
    color: #333;
    font-size: 14px;
    background: #f3f3f3;
    border: 0;
    padding-left: 20px;
    border-radius: 12px;
}

.alb_t span {
    display: block;
    width: 75px;
    height: 49px;
    background: #71c9ad;
    text-align: center;
    position: absolute;
    z-index: 100;
    top: 4px;
    right: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 16px;
    border-radius: 12px;
    padding-top: 8px;
}

.alb_c {
    width: 277px;
    margin: 0 auto 15px auto;
}

.alb_c .al_c_sub {
    width: 277px;
    height: 56px;
    line-height: 56px;
    background: url(../images/contact_sub.png) no-repeat 74px 50% #e50120;
    text-indent: 107px;
    text-align: left;
    font-size: 14px;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 10px 0 rgba(229, 1, 32, 0.35);
    cursor: pointer;
}

.alb_c .al_c_sub:hover {
    background: url(../images/contact_sub.png) no-repeat 74px 50% #b80820;
}
/*å…è´¹é‡æˆ¿ å¼¹å‡ºæ¡†*/

.al_d {
    width: 600px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 20px;
}

.al_d .al_dt {
    font-size: 18px;
    color: #484848;
    line-height: 32px;
}

.al_d .al_dt span {
    color: #c4c4c4;
}

.al_d .al_dc {
    padding-top: 30px;
}

.al_d .al_dc ul li {
    width: 110px;
    height: auto;
    float: left;
    margin: 0 12px 12px 0;
}

.al_d .al_dc ul li:nth-of-type(5n) {
    margin-right: 0;
}

.al_d .al_dc ul li a {
    display: block;
    position: relative;
    z-index: 99;
}

.al_d .al_dc ul li a .img {}

.al_d .al_dc ul li a .img img {
    display: block;
    border-radius: 12px;
    width: 100%;
    height: auto;
    border: 2px #fff solid;
}

.al_d .al_dc ul li a .tit {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 28px;
    line-height: 28px;
    left: 0;
    bottom: 5px;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    background: url(../images/al_dc_icon.png) no-repeat 93% 50%;
}

.al_d .al_dc ul li.on a .img img {
    border: 2px #e50120 solid;
}

.al_d .al_dc ul li.on a .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
}

.al_d .al_dc ul li:hover a .img img {
    border: 2px #e50120 solid;
}

.al_d .al_dc ul li:hover a .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
}

.alc_t {
    position: relative;
    z-index: 99;
    width: 277px;
    margin: 0 auto;
}

.alc_t span {
    position: absolute;
    z-index: 100;
    font-size: 15px;
    color: #080808;
    top: 16px;
    right: 18px;
    font-weight: bolder;
}

.alc_t .alb_t_text {
    width: 100%;
    height: 56px;
    line-height: 56px;
    color: #333;
    font-size: 14px;
    background: #f3f3f3;
    border: 0;
    padding-left: 20px;
    border-radius: 12px;
}
/*å…è´¹è®¾è®¡ å¼¹å‡ºæ¡†*/

.ald_t {
    position: relative;
    z-index: 99;
    width: 327px;
    margin: 20px auto;
}

.ald_t span {
    position: absolute;
    z-index: 100;
    font-size: 15px;
    color: #080808;
    top: 16px;
    right: 18px;
    font-weight: bolder;
}

.ald_t .alb_t_text {
    width: 100%;
    height: 56px;
    line-height: 56px;
    color: #333;
    font-size: 14px;
    background: #f3f3f3;
    border: 0;
    padding-left: 20px;
    border-radius: 12px;
}

.ald_t span {
    display: block;
    width: 75px;
    height: 49px;
    background: #71c9ad;
    text-align: center;
    position: absolute;
    z-index: 100;
    top: 4px;
    right: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 16px;
    border-radius: 12px;
    padding-top: 8px;
}

.ald_c {
    width: 327px;
    margin: 0 auto 15px auto;
}

.ald_c .al_c_sub {
    width: 327px;
    height: 56px;
    line-height: 56px;
    background: url(../images/contact_sub.png) no-repeat 90px 50% #e50120;
    text-indent: 122px;
    text-align: left;
    font-size: 14px;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 10px 0 rgba(229, 1, 32, 0.35);
    cursor: pointer;
}

.ald_c .al_c_sub:hover {
    background: url(../images/contact_sub.png) no-repeat 90px 50% #b80820;
}
/*å®¢æˆ·æŠ¥ä¿®*/

.alertc_z select {
    width: 100%;
    height: 56px;
    line-height: 56px;
    background: #f3f3f3;
    color: #333;
    border: 0;
    padding: 0 20px;
    border-radius: 12px;
}

.alertc_z textarea {
    width: 100%;
    height: 150px;
    background: #f3f3f3;
    color: #333;
    border: 0;
    padding: 20px;
    border-radius: 12px;
    resize: none;
}
/*æ™ºèƒ½æŠ¥ä»· å¼¹å‡ºæ¡†*/

.al_e {
    width: 600px;
    height: auto;
    margin: 0 auto;
}

.al_e .al_et {
    font-size: 18px;
    color: #484848;
    line-height: 32px;
    display: flex;
    align-items: center;
}

.al_e .al_et p {
    color: #c4c4c4;
    margin-right: 10px;
    padding: 0 10px;
    background: #888888;
    border-radius: 23px;
    color: #bfbfbf;
    height: 23px;
    line-height: 23px;
}

.al_e .al_et p span {
    color: #fff;
}

.al_e .al_ec {
    padding-top: 30px;
}

.al_e .al_ec ul li {
    width: 186px;
    height: auto;
    float: left;
    margin: 0 20px 20px 0;
}

.al_e .al_ec ul li:nth-of-type(3n) {
    margin-right: 0;
}

.al_e .al_ec ul li a {
    display: block;
    position: relative;
    z-index: 99;
}

.al_e .al_ec ul li a .img {}

.al_e .al_ec ul li a .img img {
    display: block;
    border-radius: 12px;
    width: 100%;
    height: auto;
    border: 2px #fff solid;
}

.al_e .al_ec ul li a .tit {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 28px;
    line-height: 28px;
    left: 0;
    bottom: 5px;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    background: url(../images/al_dc_icon.png) no-repeat 93% 50%;
}

.al_e .al_ec ul li a.on .img img {
    border: 2px #e50120 solid;
}

.al_e .al_ec ul li a.on .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
}

.al_e .al_ec ul li.on a .img img {
    border: 2px #e50120 solid;
}

.al_e .al_ec ul li.on a .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
}

.al_e .al_ec ul li a:hover .img img {
    border: 2px #e50120 solid;
}

.al_e .al_ec ul li a:hover .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
}

.al_e .al_ec_2 {
    padding-top: 20px;
    margin-bottom: 30px;
}

.al_e .al_ec_2 ul li {
    width: 110px;
    height: 44px;
    line-height: 44px;
    float: left;
    margin: 0 12px 12px 0;
}

.al_e .al_ec_2 ul li:nth-of-type(5n) {
    margin-right: 0;
}

.al_e .al_ec_2 ul li a {
    display: block;
    border-radius: 12px;
    padding-left: 12px;
    font-size: 13px;
    color: #595959;
    background: url(../images/al_dc_icon.png) no-repeat 93% 50% #f2f2f2;
    border: 2px #fff solid;
}
/*.al_e .al_ec_2 ul li a:hover{background:url(../images/al_dc_icon_on.png) no-repeat 93% 50% #f2f2f2;border:2px #e50120 solid;}
.al_e .al_ec_2 ul li a.on{background:url(../images/al_dc_icon_on.png) no-repeat 93% 50% #f2f2f2;border:2px #e50120 solid;}*/

.al_e .al_ec_2 ul li.on a {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50% #f2f2f2;
    border: 2px #e50120 solid;
}

.al_e .al_ec_2 ul li:hover a {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50% #f2f2f2;
    border: 2px #e50120 solid;
}

.al_e .al_ec_3 {
    padding-top: 20px;
    padding-bottom: 40px;
}

.al_e .al_ec_3 ul li {
    width: 110px;
    height: 128px;
    float: left;
    margin: 0 12px 12px 0;
}

.al_e .al_ec_3 ul li:nth-of-type(5n) {
    margin-right: 0;
}

.al_e .al_ec_3 ul li a {
    display: block;
    position: relative;
    z-index: 99;
    background: #f2f2f2;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    border: 2px #f2f2f2 solid;
}

.al_e .al_ec_3 ul li a .img {
    padding: 5px 0;
}

.al_e .al_ec_3 ul li a .img img {
    display: block;
    width: 100px;
    height: 75px;
    margin: 0 auto;
    border-radius: 12px;
}

.al_e .al_ec_3 ul li a .tit {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 28px;
    line-height: 28px;
    left: 0;
    bottom: 5px;
    padding: 0 10px;
    font-size: 13px;
    color: #595959;
    background: url(../images/al_dc_icon.png) no-repeat 93% 50%;
}

.al_e .al_ec_3 ul li a.on {
    border: 2px #e50120 solid;
}

.al_e .al_ec_3 ul li a.on .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
    font-weight: bolder;
}

.al_e .al_ec_3 ul li.on a {
    border: 2px #e50120 solid;
}

.al_e .al_ec_3 ul li.on a .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
    font-weight: bolder;
}

.al_e .al_ec_3 ul li a:hover {
    border: 2px #e50120 solid;
}

.al_e .al_ec_3 ul li a:hover .tit {
    background: url(../images/al_dc_icon_on.png) no-repeat 93% 50%;
    font-weight: bolder;
}

.al_ec_4 {}

.al_ec_4 img {
    display: block;
}
