@font-face {
    font-family: 'Impact-Regular';
    src: url('../fonts/impact-webfont.ttf');
}

@font-face {
    font-family: 'SourceHanSansSC';
    src: url('../fonts/SourceHanSansSC-Normal.otf');
}

html {
    font-family: sans-serif;
    /* 1*/
    -ms-text-size-adjust: 100%;
    /* 2*/
    -webkit-text-size-adjust: 100%;
    /* 2*/
}

body {
    margin: 0;
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1*/
    vertical-align: baseline;
    /* 2*/
    max-width: 100%;
}

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

[hidden],
template {
    display: none;
}

a {
    color: #333;
    background: transparent;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s;
}

a:active,
a:hover {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: #263F4B;
}

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

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

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

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border: 0;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

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

figure {
    margin: 1em 40px;
}

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

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    font-size: 13px;
    font-weight: normal;
    color: #000;
    color: inherit;
    /* 1*/
    font: inherit;
    /* 2*/
    margin: 0;
    /* 3*/
    background-color: transparent;
    outline: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
/* 1*/

input[type="reset"],
input[type="submit"] {
    /*-webkit-appearance: button;*/
    cursor: pointer;
    /* 3*/
    -webkit-appearance: none;
}

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

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

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1*/
    padding: 0;
    /* 2*/
    vertical-align: middle;
}

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

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

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

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

legend {
    border: 0;
    /* 1*/
    padding: 0;
    /* 2*/
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

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

:-moz-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

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

.searchbanner .search .search-key::-webkit-input-placeholder {
    color: #fff;
}

.searchbanner .search .search-key:-moz-placeholder {
    color: #fff;
}

.searchbanner .search .search-key::-moz-placeholder {
    color: #fff;
}

.searchbanner .search .search-key:-ms-input-placeholder {
    color: #fff;
}

/* 文字选中样式 */

::-moz-selection {
    color: #fff;
    background-color: #263F4B;
}

::selection {
    color: #fff;
    background-color: #263F4B;
}

.scroll-animate.animated {
    visibility: hidden;
}

.wrapper {
    overflow: hidden;
}

/*animate补充动画*/

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(10px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}

@keyframes fadeInDownSmall {
    from {
        opacity: 0;
        transform: translate3d(0%, -10px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDownSmall {
    animation-name: fadeInDownSmall;
}

@keyframes fadeOutDownSmall {
    from {
        opacity: 1;
        transform: none;
    }
    to {
        opacity: 0;
        transform: translate3d(0%, 10px, 0);
    }
}

.fadeOutDownSmall {
    animation-name: fadeOutDownSmall;
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translate3d(0%, 10px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpSmall {
    animation-name: fadeInUpSmall;
}

.swiper-container {
    position: relative;
    overflow: hidden;
}

.headbotm .menu .sub-menu a,
.column-nav>ul>li>a,
.pagination a,
.prodcolmws .tabs,
.newslistinr .item .info .word {
    color: #666;
}

/* -------------------------------
Globals
----------------------------------*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    word-break: break-word;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    position: relative;
    cursor: auto;
    color: #333;
    font-family: 'SourceHanSansSC', 'PingFang SC', 'Microsoft Yahei', 'Helvetica', 'Noto Sans S Chinese', 'Open Sans', 'SimSun';
    font-size: 14px;
    line-height: 1.6;
    background-color: #fff;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

td {
    padding: 0.5em;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

input,
select,
button {
    border: none;
}

ul,
ol {
    padding-left: 24px;
}

/*p {
	margin: 0;
}*/

@keyframes opacityn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-webkit-keyframes opacityn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes JUMP {
    0% {
        bottom: 75px;
    }
    50% {
        bottom: 95px;
    }
    80% {
        bottom: 85px;
    }
    100% {
        bottom: 75px;
    }
}

@-webkit-keyframes JUMP {
    0% {
        bottom: 75px;
    }
    50% {
        bottom: 95px;
    }
    80% {
        bottom: 85px;
    }
    100% {
        bottom: 75px;
    }
}

@-webkit-keyframes MOVE {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes MOVE {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes loading {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loading {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes proAni {
    0% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes o-upfade-top {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes historyyrIconAni {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes radiusRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes radiusRotate2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes circlett {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes circleL {
    0%,
    50% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes circleR {
    0% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes circleL {
    0%,
    50% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes circleR {
    0% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes shangsheng {
    0% {
        bottom: 0
    }
    50% {
        bottom: 3px
    }
    100% {
        bottom: 0
    }
}

@-webkit-keyframes shangsheng {
    0% {
        bottom: 0
    }
    50% {
        bottom: 3px
    }
    100% {
        bottom: 0
    }
}

@keyframes ringscale1 {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes xuanzzk1 {
    0% {
        width: 44.7vw;
        height: 44.7vw;
    }
    100% {
        width: 63.6vw;
        height: 63.6vw;
    }
}

@keyframes xuanzzk2 {
    0% {
        width: 30.6vw;
        height: 30.6vw;
    }
    100% {
        width: 44.7vw;
        height: 44.7vw;
    }
}

@keyframes xuanzzk3 {
    0% {
        width: 30.6vw;
        height: 30.6vw;
    }
    100% {
        width: 63.6vw;
        height: 63.6vw;
    }
}

.opacity-n {
    -webkit-animation: opacityn 0.3s linear;
    animation: opacityn 0.3s linear;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    opacity: 1;
}

#loading .loading-main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    border-radius: 50%;
    border: 0px solid #003365;
    border-left-width: 1px;
    border-bottom-width: 2px;
    border-right-width: 3px;
    -webkit-animation: loading 2s linear infinite;
    -webkit-animation: loading 2s linear infinite;
    -o-animation: loading 2s linear infinite;
    animation: loading 2s linear infinite;
}

#loading .loading-main>div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
}

/* ---------------------------------
* public
------------------------------------*/

.bgcoverwpt {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.thumb-scale {
    overflow: hidden;
}

.thumb-scale img {
    display: block;
    width: 100%;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.gallery:hover .thumb-scale img,
a:hover .thumb-scale img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.banner_bg {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
}

.allcontentwrapper {
    display: block;
    position: relative;
}

.allcontentwrapper p {
    margin: 0;
}

.allcontentwrapper>p:first-child {
    margin-top: 0;
}

.allcontentwrapper>p:last-child {
    margin-bottom: 0;
}

.allcontentwrapper .tcenter {
    text-align: center;
}

.allcontentwrapper .ques {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    background-color: rgba(186, 186, 186, 0.4);
    border-radius: 50%;
}

.has-tables table {
    width: 100%;
}

.allcontentwrapper table thead {
    text-align: center;
}

.allcontentwrapper table th,
.allcontentwrapper table td {
    vertical-align: middle;
    padding: 8px;
    word-break: break-all;
    border: 1px solid #CFCFCF;
}

.allcontentwrapper table th {
    font-weight: normal;
}

.allcontentwrapper table td a {
    color: #263F4B;
}

.allcontentwrapper table td a:hover {
    text-decoration: underline;
}

.sitebanner {
    position: relative;
    z-index: 2;
}

.sitebanner .gallery {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sitebanner .gallery img {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
}

.btnmore {
    position: relative;
    text-align: center;
    font-size: 14px;
    color: #fff;
    z-index: 10;
    overflow: hidden;
}

.btnmore .link {
    display: inline-block;
    min-width: 104px;
    height: 35px;
    line-height: 35px;
    position: relative;
    z-index: 10;
    color: #fff;
    background-color: #263F4B;
    cursor: pointer;
    transition: all 0.5s;
}

.btnmore .w {
    display: block;
    position: relative;
    z-index: 30;
    padding: 0 14px;
    color: #fff;
}

.btnmorebox .btnmore .w {
    font-size: 0;
}

.btnmorebox .btnmore .w::before {
    content: '展开更多';
    font-size: 14px;
}

.btnmorebox .btnmore .w::after {
    content: '';
    display: inline-block;
    position: relative;
    top: 2px;
    width: 16px;
    height: 15px;
    margin-left: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/mhead_i1.png);
}

.btnmorebox.actives {
    display: none;
}

.btnmore .link::after,
.btnmore .link::before {
    content: "";
    display: block;
    position: absolute;
    width: 64%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 22;
    transition: all 0.5s;
}

.btnmore .link::after {
    bottom: 0;
    right: 0;
    background-image: url('../images/morebg1.png');
    transition: all 0.5s;
}

.btnmore .link::before {
    /* bottom: -100%; */
    bottom: 0;
    left: -100%;
    background-image: url('../images/morebg2.png');
}

.btnmore .link:hover::after {
    right: -100%;
}

.btnmore .link:hover::before {
    left: 0;
}

.btnmorewidthauto {
    display: inline-block;
    width: auto;
    min-width: 104px;
}

.btnmorewidthauto .link {
    padding: 0 8px;
}

.mmenulayBg {
    opacity: 0;
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    transition-delay: 0.4s;
    display: block;
    background: #263F4B;
    background-size: cover;
}

.mmenulayBg.on {
    opacity: 0.9;
    transform: translateX(0%);
    transition-delay: 0.2s;
}

.mmenuClose {
    background: url(../images/mclose.png) no-repeat center center;
    height: 26px;
    width: 26px;
    position: fixed;
    left: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 950;
    background-size: 22px 22px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    display: block;
}

.mmenuClose.on {
    opacity: 1;
    transform: rotate(360deg);
}

.hasScrollbar {
    overflow: auto;
}

.hasScrollbar::-webkit-scrollbar-track-piece {
    width: 4px;
    background-color: #eee
}

.hasScrollbar::-webkit-scrollbar {
    width: 4px;
    background-color: #d8d8d8
}

.hasScrollbar::-webkit-scrollbar-thumb {
    width: 4px;
    background-color: #d8d8d8
}

.hasScrollbar::-webkit-scrollbar-thumb:hover {
    width: 4px;
    background-color: #d8d8d8
}

.listsWrap {
    display: flex;
    flex-wrap: wrap;
}

.listsWrapGrid {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(1, 1fr);
    /* justify-items: center; */
    align-items: stretch;
}

.listsWrap .item,
.listsWrap .item .link,
.listsWrapGrid .item,
.listsWrapGrid .item .link {
    position: relative;
}

.listsWrap .item .link,
.listsWrapGrid .item .link {
    display: block;
}

.returnicon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/i_return.png);
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    min-width: 22px;
    height: 22px;
    padding: 0 2px;
    line-height: 22px;
    text-align: center;
    border: 1px solid transparent;
}

.pagination a:hover,
.pagination .active {
    color: #263F4B;
}

.pagination .active {
    border-color: #263F4B;
}

.pagination-gray a {
    padding: 0 10px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: none
}

.pagination-gray a:hover,
.pagination-gray .active {
    color: #333;
}

.pagination-gray .active {
    background-color: #EFEFEF;
}

.bggarycolor {
    background-color: #FAFAFA;
}

.listsWrap3r .item .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.listsWrap3r .item:nth-child(1) {
    margin-top: 0;
}

.disflexbetween {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.btn-top {
    width: 54px;
    text-align: center;
    height: 54px;
    border-radius: 5px;
    line-height: 54px;
    background: #ff0000 url(../images/arrowup.png) no-repeat center center;
    position: fixed;
    bottom: 30px;
    right: 70px;
    z-index: 882;
    cursor: pointer;
    display: none;
}

@media (min-width: 961px) {
    .pagination {
        margin-top: 60px;
    }
    .pagination a {
        margin-right: 8px;
    }
    .pagination a:last-child {
        margin-right: 0;
    }
    .listsWrap3r .item {
        width: 30%;
        margin-right: 5%;
        margin-top: 5%;
    }
    .listsWrap3r .item:nth-child(2),
    .listsWrap3r .item:nth-child(3) {
        margin-top: 0;
    }
    .listsWrap3r .item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (max-width: 960px) {
    .listsWrap3r .item {
        width: 48%;
        margin-right: 4%;
        margin-top: 4%;
    }
    .listsWrap3r .item:nth-child(2) {
        margin-top: 0;
    }
    .listsWrap3r .item:nth-child(2n) {
        margin-right: 0;
    }
    .btn-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        background-size: 20px;
    }
}

@media (max-width: 640px) {
    .has-tables {
        position: relative;
        overflow: auto;
    }
    .has-tables table {
        min-width: 640px;
    }
    .allcontentwrapper .has-tables::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background-color: rgba(0, 0, 0, .1);
        -webkit-filter: blur(9px);
        filter: blur(9px);
    }
}

.siteheader ul,
.sitefooter ul,
.networkpro .item ul {
    padding-left: 0;
    margin: 0;
}

.siteheader ul li,
.sitefooter ul li,
.networkpro .item ul li {
    list-style: none;
}

.isHidden {
    overflow: hidden;
}

.content-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 132;
    background-color: rgba(0, 0, 0, .5);
}

#content-3d {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    z-index: 136;
    max-width: 80%;
    /*width: 80%;*/
    text-align: center;
    /* background-color: rgba(0,0,0,.5); */
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#content-3d img {
    max-height: 80vh;
}

#content-3d .closebtn {
    position: absolute;
    z-index: 110;
    cursor: pointer;
    width: 40px;
    height: 40px;
    top: 0;
    right: -40px;
    font-size: 0;
}

#content-3d .closebtn:after,
#content-3d .closebtn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#content-3d .closebtn:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 0;
    width: 24px;
    margin-top: -1px;
    margin-left: -12px;
}

#content-3d .closebtn:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 24px;
    width: 0;
    margin-left: -1px;
    margin-top: -12px;
}

.contentdfix {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10003;
    background: rgba(5, 5, 5, 0.66);
}

.contentdfix .closer {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url(../images/close.png);
}

.contentdfix .boxwr {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 800px;
    width: 86%;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.contentdfix .boxwr .bgytitle {
    margin-bottom: 12px;
    font-size: 16px;
}

.contentdfix .boxwr .content {
    max-height: 86vh;
    padding: 20px;
}

@media (min-width: 961px) {
    .contentdfix .boxwr .content {
        padding: 40px;
    }
    .contentdfix .boxwr .bgytitle {
        margin-bottom: 20px;
        font-size: 18px;
    }
}

/* ---------------------------------
* lightbox
------------------------------------*/

.lightboxOverlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(opacity=80);
    opacity: .8;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    line-height: 0;
}

.lightbox .lb-image {
    display: block;
    max-height: 684px;
    max-width: 684px;
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    position: relative;
    background-color: #fff;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-loader {
    display: none !important;
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    /*background: url(../images/loading.gif) no-repeat*/
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container>.nav {
    left: 0
}

.lb-nav a {
    outline: none;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-prev,
.lb-next {
    display: block !important;
    position: absolute;
    width: 32px;
    height: 45px;
    top: 50%;
    margin-top: -22px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    background-size: 32px;
    cursor: pointer;
}

.lb-nav a.lb-prev {
    left: 0;
    /*background-image: url(../images/prev.png);*/
}

.lb-nav a.lb-next {
    right: 0;
    /*background-image: url(../images/next.png);*/
}

.lb-dataContainer {
    margin: 0 auto;
    *zoom: 1;
    width: 100%;
    background-color: #fff;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-data .lb-caption {
    padding: 10px 16px;
    text-align: center;
}

.lb-data .lb-caption2 {
    line-height: 24px;
    font-size: 14px;
    color: #666;
}

.lb-data .lb-number {
    display: none !important;
}

.lb-data .lb-close {
    position: fixed;
    z-index: 110;
    cursor: pointer;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    font-size: 0;
    border-radius: 50%;
    border: 2px solid #707070;
}

.lb-data .lb-close:before,
.lb-data .lb-close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lb-data .lb-close:before {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    height: 0;
    width: 24px;
    margin-top: -1px;
    margin-left: -12px;
}

.lb-data .lb-close:after {
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
    height: 24px;
    width: 0;
    margin-left: -1px;
    margin-top: -12px;
}

.lb-data .lb-close,
.lb-data .lb-close:before,
.lb-data .lb-close:after {
    border-color: #fff;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: alpha(opacity=100);
    opacity: 1
}

@media (min-width: 961px) {
    .lb-data .lb-caption2 {
        font-size: 16px;
    }
    .lb-data .lb-close {
        top: 50px;
        right: 50px;
        width: 50px;
        height: 50px;
    }
    .lb-nav a.lb-prev {
        left: -60px;
    }
    .lb-nav a.lb-next {
        right: -60px;
    }
}

#mapContainer {
    position: relative;
    width: 100%;
    height: 240px;
}

#mapContainer img,
#mapContainer canvas {
    max-width: none;
}

#mapContainer .MicrosoftMap .Infobox .infobox-info {
    padding-top: 0;
}

#mapContainer .icon {
    cursor: pointer;
    /*background-image: url(../images/marker.png);*/
    background-repeat: no-repeat;
    background-position: -11px -55px;
}

#mapContainer .icon-cir {
    height: 31px;
    width: 28px;
}

#mapContainer .myinfowindow h5 {
    margin: 0;
    font-size: 14px;
}

#mapContainer .myinfowindow .inftrs,
#mapContainer .contactlist .item {
    font-size: 12px;
}

#mapContainer .contactlist .item .pic {
    display: none;
}

#mapContainer .contactlist .item .info {
    padding: 0;
}

.hideallt {
    display: none !important;
}

/* -------------------------------
container
----------------------------------*/

.container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

@media (min-width: 961px) {
    .container {
        /* max-width: 1700px;
		width: 80%; */
        margin-left: 110px;
        margin-right: 110px;
    }
}

@media (max-width: 960px) {
    .container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.hamburger {
    display: block;
    position: absolute;
    top: 22px;
    right: 0;
    z-index: 20;
    line-height: 0;
    width: 30px;
    height: 24px;
}

.hamburger:after,
.hamburger:before {
    content: '';
    display: block;
    height: 2px;
    border-radius: 2px;
}

.hamburger span {
    display: block;
    height: 2px;
    margin: 5px 0;
}

.hamburger:after,
.hamburger:before,
.hamburger span {
    position: relative;
    width: 100%;
    background: #263F4B;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.hamburger.active {
    top: 28px;
    width: 24px;
}

.hamburger.active span {
    display: none;
}

.hamburger.active:before {
    top: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#siteName {
    display: none;
}

.aligncenter {
    text-align: center;
}

/*slick.css*/

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

/* header */

.siteheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    transition: all .3s;
    background-color: rgba(255, 255, 255, .7);
}

.siteheader .menu,
.siteheader .container,
.siteheader .iright {
    display: flex;
    justify-content: space-between;
}

.siteheader .logo a,
.siteheader .sitelogo a {
    display: block;
}

.siteheader .sitelogo {
    display: flex;
    align-items: center;
}

.siteheader .logo {
    position: absolute;
    opacity: 0;
}

.siteheader .logo_white {
    display: none;
}

.siteheader .logo_white,
.siteheader .logo_blue {
    height: 52px;
}

.siteheader #searchfrm,
.siteheader .menu .sub-menu {
    top: 90%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.siteheader .lang {
    position: relative;
    margin-right: 20px;
    white-space: nowrap;
}

.siteheader .lang::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background-color: #EBEBEB;
}

.siteheader .search {
    position: relative;
}

.siteheader .ilink,
.siteheader .search .search-icon {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.siteheader .search .search-icon .icobg {
    width: 31px;
    height: 31px;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/isearch1.png);
    transition: all .2s;
}

.siteheader .search #searchfrm {
    position: absolute;
    right: 0;
    z-index: 5;
    width: 328px;
    padding: 16px 30px;
}

.siteheader #searchfrm .search-items {
    position: relative;
}

.siteheader #searchfrm .search-key {
    width: 100%;
    padding: 0 14px;
    padding-right: 54px;
    height: 40px;
    border: 1px solid rgba(38, 63, 75, 0.76);
    background-color: #F4FCFF;
}

.siteheader #searchfrm .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 4;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/isearch.png);
}

.search .words {
    margin-top: 8px;
}

.search .words .w {
    margin-right: 30px;
    color: #666;
    cursor: pointer;
}

.search .words .w:last-child {
    margin-right: 0;
}

.search .words .active {
    color: #263F4B;
}

.siteheader .menu .sub-menu .left a {
    display: block;
    line-height: 26px;
}

.sitefooter {
    position: relative;
    z-index: 5;
    background-color: #363636;
}

.sitefooter,
.sitefooter a {
    color: #FAFAFA;
}

.sitefooter .menu .sub-menu a {
    color: #F2F2F2;
}

.sitefooter .menu .sub-menu,
.sitefooter .info,
.sitefooter .techr {
    font-size: 12px;
}

.sitefooter .menu {
    display: flex;
}

.sitefooter .menu li {
    position: relative;
}

.sitefooter .menu .sub-menu,
.sitefooter .menu .sub-menu .menu-item {
    padding-top: 8px;
}

.sitefooter .menu .sub-menu .menu-item:first-child {
    padding-top: 0;
}

.sitefooter .weixin a {
    display: inline-block;
    max-width: 190px;
}

.sitefooter .info {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 24px;
    background-color: #23252A;
}

@media (min-width: 961px) {
    .homepage .siteheader {
        background-color: rgba(102, 102, 102, .5);
    }
    .homepage .siteheader .menu>.menu-item>a,
    .homepage .siteheader .lang a {
        color: #fff;
    }
    .homepage .siteheader .logo_white {
        display: block;
    }
    .homepage .siteheader .logo_blue {
        display: none;
    }
    .homepage .siteheader .search .search-icon .icobg {
        background-image: url(../images/isearch1ww.png);
    }
    /* addshadow */
    .siteheader.addshadow {
        box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    }
    .siteheader .menu .sub-menu {
        position: absolute;
        left: 50%;
        min-width: 100%;
        padding: 10px 0;
        z-index: 2;
        transform: translateX(-50%);
    }
    .siteheader .menu .sub-menu,
    .siteheader .search #searchfrm {
        box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    }
    .siteheader .search:hover #searchfrm,
    .siteheader .menu .menu-item:hover .sub-menu {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
        top: 100%;
    }
    .siteheader .search:hover .search-icon .icobg {
        background-image: url(../images/iclosess.png);
    }
    .hamburger {
        display: none;
    }
    .siteheader .menu>.menu-item {
        margin: 0 22px;
    }
    .siteheader .menu>.menu-item>a,
    .siteheader .lang {
        display: block;
        line-height: 88px;
        white-space: nowrap;
    }
    .siteheader .lang {
        margin-left: 26px;
    }
    .siteheader .search {
        margin-right: 40px;
    }
    .siteheader .ilink {
        min-width: 25px;
    }
    .siteheader .menu .sub-menu,
    .siteheader .menu .sub-menu .listsr,
    .eventsinwrt .historyCbox .listsr {
        display: flex;
        justify-content: space-between;
    }
    .siteheader .menu .sub-menu {
        padding: 36px;
        padding-left: 40px;
        padding-right: 140px;
    }
    .siteheader .menu .sub-menu .left {
        width: 215px;
        flex: 0 0 215px;
    }
    .eventsinwrt .historyCbox .boxr2,
    .siteheader .menu .sub-menu .lboxst,
    .siteheader .menu .sub-menu .isforsevents .boxr2 {
        flex: 1;
    }
    .eventsinwrt .historyCbox .boxr2,
    .siteheader .menu .sub-menu .isforsevents .boxr2 {
        padding-left: 8%;
    }
    .siteheader .menu .sub-menu .lboxst {
        padding-left: 11.2%;
    }
    .siteheader .menu .twolist-about .lboxst {
        padding-left: 14%;
    }
    .siteheader .menu .sub-menu .isfors {
        display: none;
    }
    .siteheader .menu .sub-menu .isfors:first-child {
        display: block;
    }
    .siteheader .menu .sub-menu .left .two {
        border-bottom: 1px solid #D1D1D1;
    }
    .siteheader .menu .sub-menu .left a {
        padding: 16px 0;
        background-position: right center;
        background-repeat: no-repeat;
        background-image: url(../images/icrg.png);
    }
    .siteheader .menu .sub-menu .left .active a,
    .siteheader .menu .sub-menu .left a:hover {
        color: #263F4B;
        background-image: url(../images/icrb.png);
    }
    .siteheader .menu .sub-menu .center {
        width: 63%;
    }
    .siteheader .menu .sub-menu .right {
        width: 30.5%;
    }
    .eventsinwrt .historyCbox .boxr1,
    .siteheader .menu .sub-menu .isforsevents .boxr1 {
        position: relative;
        display: flex;
        padding-right: 8%;
    }
    .eventsinwrt .historyCbox .boxr1 {
        align-items: center;
    }
    .eventsinwrt .historyCbox .boxr1 {
        padding-left: 4%;
    }
    .eventsinwrt .historyCbox .boxr1,
    .eventsinwrt .historyCbox .boxr2 {
        padding-top: 3.8%;
        padding-bottom: 3.8%;
    }
    .siteheader .menu .sub-menu .center .contenti {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .siteheader .menu .sub-menu .isforsevents .boxr1::after,
    .eventsinwrt .historyCbox .boxr1::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
        width: 1px;
        background-color: #D1D1D1;
    }
    .siteheader .menu .sub-menu .isforsevents .listsr {
        margin-bottom: 20px;
    }
    .siteheader .menu .sub-menu .listspro .item {
        width: 23%;
        margin-right: 2%;
        margin-top: 30px;
        text-align: center;
    }
    .siteheader .menu .sub-menu .listspro .item:nth-child(5n) {
        margin-right: 0;
    }
    .siteheader .menu .sub-menu .listspro .item .thumb-scale {
        border-radius: 30px;
    }
    .siteheader .menu .sub-menu .listspro .item .title {
        margin-top: 16px;
    }
    .sitefooter .footertop {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .sitefooter .footertop .menu {
        display: flex;
        justify-content: space-between;
    }
    .sitefooter .copyr,
    .sitefooter .techr {
        display: inline;
    }
    .sitefooter .copyr {
        margin-right: 36px;
    }
    .sitefooter .weixin img {
        max-width: 164px;
        width: 100%;
    }
}

@media (min-width: 1601px) {
    .eventsinwrt .historyCbox .boxr2 {
        padding-left: 4%;
    }
}

@media (max-width: 1600px) and (min-width: 1201px) {}

@media (max-width: 1600px) and (min-width: 961px) {
    .siteheader .search #searchfrm {
        width: 300px;
    }
    .siteheader .menu>.menu-item {
        margin: 0 14px;
    }
    .siteheader .lang {
        margin-left: 10px;
    }
    .siteheader .search {
        margin-right: 30px;
    }
    .siteheader .menu .sub-menu {
        padding-right: 60px;
    }
    .siteheader .sitelogo img {
        height: 40px;
    }
}

@media (max-width: 1250px) and (min-width: 961px) {
    .siteheader .menu>.menu-item {
        margin: 0 10px;
    }
    .siteheader .sitelogo {
        width: 20%;
    }
    .siteheader .menu>.menu-item>a,
    .siteheader .lang {
        line-height: 60px;
    }
    .siteheader .menu .twolist-about .lboxst,
    .siteheader .menu .sub-menu .lboxst {
        padding-left: 50px;
    }
}

@media (max-width: 960px) {
    .siteheader {
        background-color: rgba(255, 255, 255, .9);
        box-shadow: 0 1px 3px 2px rgb(0 0 0 / 6%);
    }
    .headerHeight,
    .siteheader .container {
        height: 60px;
    }
    .mmenummenu {
        position: fixed;
        height: 100%;
        left: 70px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 950;
        overflow-y: auto;
        color: #fff;
        font-size: 14px;
        box-shadow: -2px 0px 4px 3px rgb(0 0 0 / 6%);
        padding: 25px;
        transition: all 0.5s ease-in-out;
        opacity: 0;
        transform: translateX(100%);
        transition-delay: 0.2s;
        display: block;
        background: #263F4B;
        /* rgb(92,171,211) */
        background-size: cover;
    }
    .mmenummenu.on {
        opacity: 1;
        transform: translateX(0%);
        transition-delay: 0.4s;
    }
    .siteheader .iright .menu {
        flex-wrap: wrap;
    }
    .siteheader .iright .menu>.menu-item {
        position: relative;
        width: 100%;
    }
    .siteheader .iright .menu>.menu-item>a {
        display: block;
        position: relative;
        z-index: 2;
    }
    .mmenummenu .mtoggle {
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 5;
        height: 41px;
        width: 41px;
        background: url(../images/mhead_i1.png) no-repeat center center;
        cursor: pointer;
    }
    .siteheader .menu .sub-menu {
        position: relative;
        visibility: visible;
        top: auto;
        left: auto;
        transform: none;
        opacity: 1;
        background-color: transparent;
        overflow: hidden;
    }
    .siteheader .menu .sub-menu .lboxst {
        display: none !important;
    }
    .siteheader .iright .menu>.menu-item>a,
    .siteheader .menu .sub-menu .left a {
        padding: 0;
        line-height: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .siteheader .menu .sub-menu .left a {
        padding-left: 25px;
    }
    .siteheader .menu .sub-menu .left .two {
        transition: all 0.5s ease-in-out;
        height: 0;
        overflow: hidden;
    }
    .mmenummenu .menu-item.ifsw .mtoggle {
        background-image: url(../images/reduce.jpg);
    }
    .siteheader .menu .menu-item.ifsw .sub-menu .left .two {
        height: 41px;
    }
    .siteheader .sitelogo img {
        height: 26px;
    }
    .siteheader .lang {
        line-height: 60px;
    }
    .siteheader .iright {
        margin-right: 40px;
    }
    .siteheader .search {
        margin-right: 10px;
    }
    .siteheader .ilink img {
        height: 30px;
        border-radius: 50%;
        border: 1px solid #EBEBEB;
    }
    .siteheader .search .search-icon .icobg {
        width: 20px;
        height: 20px;
        background-size: contain;
    }
    .siteheader .search.active #searchfrm {
        visibility: visible;
        opacity: 1;
        filter: alpha(opacity=100);
        top: 60px;
    }
    .siteheader .search.active .search-icon .icobg {
        background-image: url(../images/iclosess.png);
    }
    .siteheader .search #searchfrm {
        position: fixed;
        top: 50px;
        width: 100%;
        padding: 15px;
        box-shadow: 0 8px 10px rgb(0 0 0 / 10%);
        border-top: 1px solid rgba(0, 0, 0, .1);
    }
    .sitefooter .footertop {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .sitefooter .footertop .menu .menu-item {
        display: none;
    }
    .sitefooter .footertop .menu .weixin {
        display: block;
        width: 100%;
        text-align: center;
    }
    .sitefooter .weixin img {
        width: 100px;
    }
}

.intbanner,
.intbanner .gallery {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.intbanner .gallery img {
    width: 100%;
    object-fit: cover;
}

.intbanner .gallery .bg {}

.intbanner .gallery .bg2 {
    position: absolute;
    left: 0;
    top: 88px;
    width: 32.6%;
}

@media (max-width: 1250px) and (min-width: 961px) {
    .intbanner .gallery .bg2 {
        top: 60px;
    }
}

.banner-btn3 {
    font-size: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all .2s;
}

.banner-btn3 {
    position: absolute;
    top: 50%;
    z-index: 4;
    cursor: pointer;
}

.banner-btn3 {
    width: 9px;
    height: 15px;
    transform: translate(0, -50%);
}

.banner-btn3.prev.swiper-button-disabled {
    background-image: url(../images/col_prev.png);
}

.banner-btn3.next.swiper-button-disabled {
    background-image: url(../images/col_next.png);
}

.banner-btn3.prev {
    background-image: url(../images/col_prev_r.png);
}

.banner-btn3.next {
    background-image: url(../images/col_next_r.png);
}

.banner-btn3.prev {
    left: 0;
}

.banner-btn3.next {
    right: 0;
}

.banner-btnyear {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 40%;
    z-index: 5;
    margin-top: -20px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/btn6.png);
    background-size: contain;
    cursor: pointer;
}

.banner-btnyear.prev {
    left: 0;
}

.banner-btnyear.next {
    right: 0;
    transform: rotateY(180deg);
}

.banner-btnyear.prev:hover,
.banner-btnyear.next:hover {
    background-image: url(../images/btn6r.png);
}

.hmc4MMbox .hbanpage {
    margin-top: 16px;
    bottom: auto;
    text-align: center;
}

.hmc4MMbox .hbanpage .swiper-pagination-bullet {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    height: 6px;
    width: 6px;
    margin: 0px 6px;
    border-radius: 50%;
    background: #D6D6D6;
    opacity: 1;
}

.hmc4MMbox .hbanpage .swiper-pagination-bullet-active {
    background: #263F4B;
}

.listeventsin .its {
    position: relative;
    margin-top: 14px;
    padding-left: 22px;
    line-height: 24px;
}

.listeventsin .its:first-child {
    margin-top: 0;
}

.listeventsin .its::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #263F4B;
}

.gallery-hovers {
    position: relative;
    display: flex;
    align-items: center;
}

/* .gallery-hovers img {
	vertical-align: middle;
} */

.gallery-hovers .unit,
.gallery-hovers .hover {
    display: inline-flex;
    align-items: center;
}

.gallery-hovers .unit {
    position: relative;
    z-index: 3;
    transition: 0.2s;
}

.gallery-hovers .hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    opacity: 0;
    transition: 0.2s;
}

.colwrapt .cloumntw .active .unit,
.link:hover .gallery-hovers .unit {
    opacity: 0;
}

.colwrapt .cloumntw .active .hover,
.link:hover .gallery-hovers .hover {
    opacity: 1;
}

.hnewstimeswpt .item .time::before,
.search_tabresx .tab::before,
.colwrapt .cloumntw .itmr .link::before,
.pgtmenu .pgtlayer:before {
    content: "";
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all 0.5s ease-in-out;
    width: 0%;
}

.hnewstimeswpt .item .time::before {
    bottom: auto;
    top: 6px;
}

.colwrapt {
    position: relative;
}

.colwrapt a:hover {
    color: #263F4B;
}

.colwrapt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.colwrapt::after {
    background-color: #D3D3D3;
}

.colwrapt .cloumntw {
    position: relative;
}

.colwrapt .cloumntw .itmr {
    position: relative;
}

.colwrapt .position>img,
.colwrapt .cloumntw .itmr .gallery {
    margin-right: 5px;
    font-size: 0;
}

.colwrapt .cloumntw .itmr .gallery {
    width: 24px;
}

.colwrapt .position>img {
    margin-left: 5px;
}

.colwrapt .position a {
    display: inline-block;
}

.colwrapt .cloumntw .itmr .link {
    display: flex;
    position: relative;
    cursor: pointer;
}

.search_tabresx .tab:hover,
.search_tabresx .tab.active,
.colwrapt .cloumntw .active .link,
.colwrapt .cloumntw .itmr .link:hover {
    color: #263F4B;
}

.search_tabresx .tab.active {
    font-weight: bold;
}

.hnewstimeswpt .item:hover .time::before,
.search_tabresx .tab:hover::before,
.search_tabresx .tab.active::before,
.colwrapt .cloumntw .active .itmr .link::before,
.colwrapt .cloumntw .itmr .link:hover::before {
    left: 0;
    width: 100%;
}

.colwrapt .cloumntw .swiper-slide {
    width: auto;
}

.colwrapt .position img {
    vertical-align: middle;
}

.colwrapt .cloumntw .swiper-container .lisrwpy {
    float: left;
    list-style: none;
}

.colwrapt .cloumntw .roll__list {
    position: absolute;
    width: 99999px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.colwrapthasjt .cloumntw .swiper-slide {
    min-width: 100px;
}

.banner-page .swiper-pagination-bullet-active {
    background-color: #263F4B;
}

@media (min-width: 961px) {
    .intbanner .phone-img {
        display: none;
    }
    .paddingtop78 {
        padding-top: 58px;
    }
    .paddingtop140 {
        padding-top: 100px;
    }
    .paddingbottom120 {
        padding-bottom: 90px;
    }
    .infotrboxshadow {
        padding: 50px;
        box-shadow: 0px 0px 15px 0px rgba(165, 165, 165, 0.25);
    }
    .listeventsin .its {
        margin-top: 12px;
    }
    .colwrapt .container {
        display: flex;
        justify-content: space-between;
    }
    .hnewstimeswpt .item:hover .time::before,
    .search_tabresx .tab:hover::before,
    .search_tabresx .tab.active::before {
        height: 1px;
        background-color: #263F4B;
    }
    .colwrapt .cloumntw .itmr .link::before {
        height: 2px;
        background-color: #263F4B;
    }
    .search_tabresx .tab:hover::before,
    .search_tabresx .tab.active::before,
    .colwrapt .cloumntw .active .itmr::after {
        background-color: #263F4B;
    }
    .colwrapt .cloumntw {
        display: flex;
    }
    .colwrapthasjt .cloumntw {
        padding: 0 30px;
        width: 790px;
    }
    .colwrapt {
        /*line-height: 82px;*/
        font-size: 16px;
    }
    .colwrapt .cloumntw .itmr .link,
    .colwrapt .position {
        padding-top: 26px;
        padding-bottom: 26px;
    }
    .colwrapt .cloumntw .itmr,
    .colwrapt .cloumntw .itmr .link {
        height: 100%;
    }
    .colwrapt .cloumntw .itmr .gallery-hovers .hover,
    .colwrapt .cloumntw .itmr .gallery {
        display: block;
        bottom: auto
    }
    .colwrapt .cloumntw .swiper-slide {
        margin-right: 50px;
        text-align: center;
    }
    .colwrapt .cloumntw .itmr {
        display: inline-block;
    }
    .colwrapt .cloumntw .active .link {
        font-weight: bold;
    }
    .colwrapt .leftr {
        position: absolute;
        top: -36px;
        left: 0;
        line-height: 26px;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
    }
    .colwrapt .leftr::after {
        content: '';
        display: block;
        width: 6px;
        height: 15px;
        margin-top: 3px;
        background-color: #263F4B;
    }
    .colwrapt .position {
        font-size: 14px;
    }
}

@media (min-width: 1601px) {
    .paddingtop78 {
        padding-top: 78px;
    }
    .paddingtop140 {
        padding-top: 140px;
    }
    .paddingbottom120 {
        padding-bottom: 120px;
    }
    .listeventsin .its {
        margin-top: 24px;
    }
    .banner-btnyear {
        width: 60px;
        height: 60px;
        margin-top: -30px;
    }
    .colwrapt .position>img,
    .colwrapt .cloumntw .itmr .gallery {
        margin-right: 15px;
    }
    .colwrapt .position>img {
        margin-left: 15px;
    }
    .colwrapt .cloumntw .itmr .gallery {
        width: 34px;
    }
}

@media (max-width: 960px) {
    .intbanner .gallery img {
        height: 70vw;
    }
    .intbanner .pc-img {
        display: none;
    }
    .intbanner .phone-img img {
        height: auto;
        padding-top: 60px;
    }
    .colwrapt {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .colwrapt .leftr {
        display: none;
        text-align: center;
        font-size: 20px;
    }
    .colwrapt .cloumntw .itmr {
        display: inline-block;
        margin-top: 14px;
        margin-right: 14px;
    }
    .colwrapthasjt .cloumntw .itmr {
        margin: 0;
    }
    .colwrapthasjt .cloumntw .swiper-container {
        padding: 0 10px;
    }
    .colwrapthasjt .cloumntw .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .colwrapt .cloumntw .itmr .gallery {
        display: none;
    }
    .colwrapt .cloumntw .itmr .link {
        padding: 2px 8px;
    }
    .colwrapt .cloumntw .active .link,
    .colwrapt .cloumntw .itmr .link:hover {
        color: #fff;
        background-color: #263F4B;
    }
    .colwrapt .cloumntw .swiper-container {
        width: 100%;
        margin-bottom: 20px;
        /* margin: 0 30px; */
        height: 50px;
    }
    .colwrapt .position {
        line-height: 28px;
    }
    .colwrapt .position a img {
        height: 20px;
    }
    .colwrapt .position>img {
        height: 10px;
    }
    .banner-page {
        margin-top: 20px;
        height: 12px;
        text-align: center;
    }
    .banner-btnyear {
        display: none;
    }
}

.tabwtrpbor,
.alltitleboxtr {
    text-align: center;
}

.tabwtrpbor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.tabwtrpbor .btnmore {
    margin: 0 10px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #294350;
}

.tabwtrpbor .btnmore .link {
    width: 100%;
    background-color: #fff;
}

.tabwtrpbor .btnmore .link .w {
    color: #666;
}

.tabwtrpbor .btnmore .link::after,
.tabwtrpbor .btnmore .link::before {
    background-image: none;
}

.tabwtrpbor .btnmore.active .link,
.tabwtrpbor .btnmore:hover .link {
    background-color: #263F4B;
}

.tabwtrpbor .btnmore.active .link .w,
.tabwtrpbor .btnmore:hover .link .w {
    color: #fff;
}

.tabwtrpbor .btnmore.active .link::before,
.tabwtrpbor .btnmore:hover .link::before {
    background-image: url(../images/morebg2.png);
}

.tabwtrpbor .btnmore.active .link::after,
.tabwtrpbor .btnmore:hover .link::after {
    background-image: url(../images/morebg1.png);
}

.glassNumber {
    display: flex;
    justify-content: space-between;
}

.glassNumber .glassnumItem {
    display: flex;
    position: relative;
    cursor: default;
}

.glassNumber .glassnBr_x1 {
    position: relative;
}

.glassNumber .glassnbr {
    display: flex;
    position: relative;
}

.glassNumber .glassnBr_x2 {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    display: none;
}

.glassNumber .glassnumItem {
    white-space: nowrap;
}

.glassNumber .textEfs {
    background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(103, 121, 129, 1)), to(rgba(0, 78, 162, 1)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glassNumber .glassnBr_x2 .hmx2ns1,
.glassNumber .glassnBr_x2 .hmx2ns2,
.glassNumber .glassnBr_x2 .hmx2ns3 {
    background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(103, 121, 129, 1)), to(rgba(0, 78, 162, 1)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 15px 15px rgba(0, 88, 80, 0.15)
}

.glassNumber .glassnumItem:hover .glassnBr_x2 {
    opacity: 1;
}

.profileinwrt .rigcontent .allcontentwrapper {
    margin-top: 14px;
}

.eventsinwrt .swiper-container1 .historyitem {
    display: none;
}

.eventsinwrt .swiper-container1 .historyitem.active {
    display: block;
}

.eventsinwrt .thumb-wrapper {
    position: relative;
}

.eventsinwrt .thumb-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    z-index: -1;
    height: 10px;
    background-image: linear-gradient(90deg, rgba(38, 63, 75, 0), rgba(38, 63, 75, 0.4), rgba(38, 63, 75, 1), rgba(38, 63, 75, 0.4), rgba(38, 63, 75, 0));
    height: 10px;
}

.eventsinwrt .thumb-wrapper .historyyrIcon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.eventsinwrt .thumb-wrapper .historyyrBtn .historyyr {
    display: block;
    position: relative;
    top: 30px;
    text-align: center;
}

.eventsinwrt .thumb-wrapper .historyyrIcon:after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -12px;
    height: 24px;
    width: 24px;
    background-image: url(../images/history_i.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease-in-out;
}

.eventsinwrt .thumb-wrapper .historyyrIcon i {
    background: url(../images/ipnow.png) no-repeat center center;
    background-size: contain;
    height: 50px;
    width: 50px;
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -25px;
    opacity: 0
}

.eventsinwrt .historyCbox .boxr1 {
    opacity: 0;
    animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.eventsinwrt .historyCbox .boxr2 {
    opacity: 0;
    animation: o-upfade-top 0.7s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.eventsinwrt .historyCbox .boxr1 .btnmore {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.eventsinwrt .historyyrBtn {
    display: inline-block;
    width: 10%;
    cursor: pointer;
}

.eventsinwrt .thumb-wrapper #swiper-container2 {
    height: 100px;
}

.eventsinwrt .thumb-wrapper .historyyrBtn.active .historyyrIcon:after {
    background-image: url(../images/history_on.png);
}

.eventsinwrt .thumb-wrapper .historyyrBtn.active .historyyrIcon i {
    animation: historyyrIconAni 2s linear infinite;
    opacity: 1
}

.eventsinwrt .thumb-wrapper .historyyrBtn.active .historyyr {
    opacity: 0;
}

@media (min-width: 961px) {
    .profileinwrt .disflexbetween {
        position: relative;
        overflow: hidden;
        min-height: 27vw;
    }
    .profileinwrt .gallery {
        width: 47%;
    }
    .profileinwrt .rigcontent {
        /*width: 43.5%;*/
        width: 48%;
        position: absolute;
        right: 0;
        overflow: auto;
        height: 100%;
        padding-right: 10px;
    }
    .profileinwrt .rigcontent .allcontentwrapper {
        margin-top: 26px;
    }
    .glassNumber {
        padding-top: 9%;
    }
    .glassNumber .glassnumItem {
        min-width: 210px;
    }
    .eventsinwrt .historyCbox .boxr1 .btnmore {
        margin-top: 20px;
    }
    .eventsinwrt .historyCbox {
        padding: 0 100px;
    }
    .eventsinwrt .banner-page {
        display: none;
    }
    .tabwtrpbor {
        margin-top: 20px;
    }
    .tabwtrpbor .btnmore {
        min-width: 168px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 60px;
    }
}

@media (min-width: 1601px) {
    .glassNumber .glassnumItem {
        min-width: 320px;
    }
    .glassNumber .alltitle32 {
        margin-top: 10px;
    }
    .eventsinwrt .thumb-wrapper .historyyrIcon i {
        width: 58px;
        height: 58px;
        margin-left: -29px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .glassNumber .glassnumItem .pic {
        width: 80px;
        flex: 0 0 80px;
    }
}

@media (max-width: 960px) {
    .profileinwrt .rigcontent {
        margin-top: 20px;
    }
    .glassNumber {
        flex-wrap: wrap;
    }
    .glassNumber .glassnumItem {
        width: 100%;
        margin-top: 20px;
    }
    .glassNumber .glassnumItem .pic {
        width: 60px;
    }
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2,
    .glassNumber .hmx2ns3 {
        line-height: 30px;
    }
    .eventsinwrt .historyyears {
        display: none;
    }
    .eventsinwrt .gallery-top,
    .eventsinwrt .historyCbox .boxr2 {
        margin-top: 30px;
    }
    .eventsinwrt .historyCbox .boxr1 {
        text-align: center;
    }
}

.eventslistinr {
    position: relative;
}

.eventslistinr .item {
    display: flex;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.eventslistinr .item:first-child {
    margin-top: 0;
}

.eventslistinr .item::before,
.eventslistinr::after {
    left: 65px;
}

.eventslistinr .item::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: 2;
    width: 4px;
    height: 27px;
    margin-left: -1px;
    background: #263F4B;
}

.eventslistinr::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 1px;
    background-color: #D9D9D9;
}

.eventslistinr .item .year {
    width: 65px;
    flex: 0 0 65px;
}

.eventslistinr .item .content {
    flex: 1;
    padding-left: 20px;
    position: relative;
}

.eventslistinr .item .content .allcontentwrapper {
    padding-bottom: 20px;
    border-bottom: 1px dashed #86959D;
}

@media (min-width: 961px) {
    .eventslistinr {
        width: 89%;
        margin: auto;
    }
    .eventslistinr .item {
        margin-top: 60px;
    }
    .eventslistinr .item .year {
        width: 170px;
        flex: 0 0 170px;
    }
    .eventslistinr .item::before,
    .eventslistinr::after {
        left: 170px;
    }
    .eventslistinr .item .content {
        padding-left: 28px;
    }
    .eventslistinr .item .content .allcontentwrapper {
        padding-bottom: 4.5%;
    }
}

@media (max-width: 960px) {
    .eventslistinr .item::before {
        width: 2px;
        height: 20px;
        margin-left: 0;
    }
}

.moreicon {
    position: relative;
    white-space: nowrap;
    font-size: 0;
    transition: all .4s;
    background-image: url(../images/i_more.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.moreicon2 {
    position: relative;
    white-space: nowrap;
    font-size: 0;
    border: 1px solid #263F4B;
    overflow: hidden;
}

.moreicon2::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -12px;
    width: 24px;
    height: 18px;
    background-image: url(../images/i_more2_03.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.moreicon2::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #263F4B;
    transition: all 0.5s;
}

.topnewq .link:hover .moreicon2::before,
.moreicon2:hover::before {
    background-image: url(../images/i_more2_on.png);
}

.topnewq .link:hover .moreicon2::after,
.moreicon2:hover::after {
    left: 0;
    width: 100%;
    opacity: 1;
    background: #263F4B;
}

.newslistinr .item {
    width: 100%;
}

.newslistinr .item:first-child {
    margin-top: 0;
}

.newslistinr .item .link {
    transition: all .2s;
}

.newslistinr .item .conter {
    position: relative;
    overflow: hidden;
}

.topnewq .info,
.newslistinr .item .info {
    overflow: hidden;
}

.topnewq .info .time,
.newslistinr .item .info .time {
    line-height: 24px;
    color: #666;
}

.topnewq {
    margin-bottom: 30px;
    background-color: #FAFAFA;
}

.decontrol {
    position: relative;
}

.decontrol .item {
    margin-top: 10px;
}

.decontrol .item:first-child {
    margin-top: 0;
}

.decontrol .ireturn {
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/return_back.png);
    transition: all .3s;
}

.decontrol .ireturn .returnicon2 {
    position: relative;
    display: block;
    width: 95px;
    height: 95px;
    padding-top: 50px;
    text-align: center;
    color: #fff;
}

.deinfo {
    margin-top: 14px;
    text-align: center;
}

.decontent {
    margin-top: 36px;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-bottom: 50px;
    border-top: 1px dashed #BABABA;
    border-bottom: 1px dashed #BABABA;
}

@media (min-width: 961px) {
    .topnewq {
        margin-bottom: 54px;
    }
    .moreicon {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    .moreicon2 {
        width: 59px;
        height: 30px;
    }
    .decontrol .ireturn:hover {
        bottom: -25px;
        box-shadow: 0 10px 30px rgb(38 63 75 / 30%);
    }
    .newslistinr .item .link {
        padding: 35px;
        padding-right: 50px;
        border-bottom: 1px solid #C8C8C8;
    }
    .topnewq .conter,
    .newslistinr .item .conter {
        display: flex;
        justify-content: space-between;
    }
    .topnewq .conter {
        flex-direction: row-reverse;
    }
    .topnewq .info {
        padding-top: 2%;
        padding-bottom: 20px;
        padding-left: 46px;
        padding-right: 8%;
    }
    .topnewq .info .moretr {
        margin-top: 30px;
    }
    .newslistinr .item .info {
        padding-left: 60px;
        padding-right: 7.4%;
    }
    .newslistinr .item .pic {
        width: 293px;
        min-width: 293px;
    }
    .topnewq .pic {
        width: 39.5%;
    }
    .topnewq .info {
        width: 60%;
    }
    .topnewq .info .time,
    .newslistinr .item .info .time {
        margin-top: 6px;
        margin-bottom: 6px;
        line-height: 28px;
    }
    .topnewq .info,
    .newslistinr .item .info {
        flex: 1;
    }
    .newslistinr .item .moretr {
        display: flex;
        align-items: center;
    }
    .newslistinr .item .link .moreicon {
        right: 0;
    }
    .newslistinr .item .link:hover {
        box-shadow: 0px 0px 14px 0px rgba(172, 172, 172, 0.25);
        border-color: transparent;
    }
    .newslistinr .item .link:hover .moreicon {
        right: 5px;
        background-image: url(../images/i_more_blue.png);
    }
    .decontrol {
        padding-right: 120px;
    }
    .decontrol .ireturn {
        position: absolute;
        right: 0;
        bottom: -30px;
    }
    .deinfo {
        margin-top: 30px;
    }
    .deinfo .read {
        margin-left: 20px;
    }
}

@media (max-width: 960px) {
    .moreicon2 {
        width: 44px;
        height: 22px;
    }
    .moreicon2::before {
        background-size: 16px;
    }
    .topnewq .info {
        padding: 14px;
        padding-bottom: 20px;
    }
    .topnewq .info .moretr {
        margin-top: 10px;
    }
    .newslistinr .item {
        margin-top: 20px;
    }
    .newslistinr .item .conter {
        display: flex;
        justify-content: space-between;
    }
    .newslistinr .item .pic {
        width: 100px;
        flex: 0 0 100px;
    }
    .newslistinr .item .moretr {
        display: none;
    }
    .newslistinr .item .info {
        flex: 1;
        padding-left: 10px;
    }
    .newslistinr .item .info .word {
        height: 24px;
        line-height: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .deinfo .read {
        margin-left: 12px;
    }
    .decontrol .ireturn .returnicon2 {
        margin: 0 auto;
        margin-top: 20px;
    }
    .decontent {
        margin-top: 14px;
        padding-top: 20px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.pagemenus {
    position: relative;
    z-index: 9;
}

.pgtmenu .pgtBtn {
    cursor: pointer;
}

.pgtmenu .pgtlayer p,
.pgtmenu .pgtdbox p {
    margin: 0;
}

.pgtmenu .pgtlayer p {
    margin-top: 6px;
}

.pgtmenu .pgticon i {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.pgtmenu .pgticon i:nth-child(1) {
    background-image: url(../images/pgtrnd1.png);
    animation: radiusRotate 3s linear infinite;
}

.pgtmenu .pgticon i:nth-child(2) {
    background-image: url(../images/pgtrnd2.png);
    animation: radiusRotate2 3s linear infinite;
}

.pgtmenu .pgticon i:nth-child(3) {
    background-image: url(../images/pgtrnd3.png);
    animation: radiusRotate 5s linear infinite;
}

@media (min-width: 961px) {
    .pagemenus {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .pgtmenu {
        display: flex;
        /* justify-content: space-between; */
    }
    .pgtmenu .pgtdbox span,
    .pgtmenu .pgticon img {
        width: 62px;
        height: 62px;
    }
    .pgtmenu .pgtdbox span {
        position: absolute;
        top: 50%;
        right: 1.67vw;
        margin-top: -25px;
    }
    .pgtmenu .pgticon img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .pgtmenu .pgtdbox {
        padding: 33px 0px 0px 1.97vw;
        position: relative;
        height: 120px;
        color: #fff;
        background: rgba(0, 0, 0, 0.4);
        transition: all 0.5s ease-in-out;
    }
    .pgtmenu .pgticon {
        width: 145px;
        height: 145px;
        display: inline-block;
        position: relative;
        margin-bottom: 30px;
    }
    .pgtmenu .pgtlayer {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0;
        text-align: center;
        transition: all 0.5s ease-in-out;
        border-radius: 10px 10px 0px 0px;
        background: rgba(65, 96, 109, .8);
        overflow: hidden;
    }
    .pgtmenu .pgtlayer strong,
    .pgtmenu .pgtdbox strong {
        font-weight: 400;
        line-height: 34px;
        display: block;
        letter-spacing: 2px;
    }
    .pgtmenu .pgtBtn {
        display: block;
        position: relative;
        width: 25%;
        margin-right: 2px;
        box-shadow: 0px 0px 7px 0px rgba(142, 142, 142, 0.25);
    }
    .pgtmenu .pgtBtn:last-child {
        margin-right: 0;
    }
    .pgtmenu .pgtlayer:before {
        height: 8px;
        background: #0e88ce;
    }
    .pgtmenu .pgtBtn.on .pgtlayer:before,
    .pgtmenu .pgtBtn:hover .pgtlayer:before {
        width: 100%;
        left: 0;
    }
    .pgtmenu .pgtBtn.on .pgtdbox,
    .pgtmenu .pgtBtn:hover .pgtdbox {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    .pgtmenu .pgtBtn.on .pgtlayer,
    .pgtmenu .pgtBtn:hover .pgtlayer {
        height: 320px;
        padding: 30px 12px 0px 12px;
        color: #fff;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .pgtmenu .pgtmenu {
        height: 95px;
    }
    .pgtmenu .pgtdbox {
        padding: 20px 0px 0px 14px;
        height: 90px;
    }
    .pgtmenu .pgtdbox span,
    .pgtmenu .pgticon img {
        width: 40px;
        height: 40px;
    }
    .pgtmenu .pgtdbox span {
        right: 15px;
        margin-top: -20px;
    }
    .pgtmenu .pgtlayer:before {
        height: 4px;
    }
    .pgtmenu .pgtBtn.on .pgtlayer,
    .pgtmenu .pgtBtn:hover .pgtlayer {
        height: 220px;
        padding: 18px 10px 0px 10px;
    }
    .pgtmenu .pgticon {
        width: 110px;
        height: 110px;
        margin-bottom: 5px;
        transform: scale(0.7);
    }
    .pgtmenu .pgticon i:nth-child(1) {
        background-size: 100%;
    }
    .pgtmenu .pgticon i:nth-child(2) {
        background-size: 85%;
    }
    .pgtmenu .pgticon i:nth-child(3) {
        background-size: 70%;
    }
    .pgtmenu .pgtlayer p {
        transform: scale(0.95);
    }
}

@media (max-width: 960px) {
    .pagemenus {
        margin-bottom: 10px;
    }
    .pgtmenu {
        display: flex;
        flex-wrap: wrap;
        height: auto;
    }
    .pgtmenu .pgtlayer p,
    .pgtmenu .pgtdbox p,
    .pgtmenu .pgticon i {
        display: none;
    }
    .pgtmenu .pgticon img,
    .pgtmenu .pgticon,
    .pgtmenu .pgtdbox span {
        width: 20px;
        height: 20px;
    }
    .pgtmenu .pgticon,
    .pgtmenu .pgtdbox span {
        position: absolute;
        left: 10px;
        top: 50%;
        margin-top: -10px;
    }
    .pgtmenu .pgtBtn {
        display: flex;
        align-items: center;
        position: relative;
        width: 48%;
        margin-right: 4%;
        margin-top: 10px;
        padding: 10px;
        /*white-space: nowrap;*/
        border: 1px solid #f2f2f2;
        overflow: hidden;
        /* box-shadow: 0px 0px 7px 0px rgb(142 142 142 / 25%); */
    }
    .pgtmenu .pgtBtn:nth-child(2n) {
        margin-right: 0;
    }
    .pgtmenu .pgtBtn strong {
        font-weight: normal;
    }
    .pgtmenu .pgtdbox {
        padding-left: 30px;
    }
    .pgtmenu .pgtlayer {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0;
        padding-left: 40px;
        color: #fff;
        transition: all 0.5s ease-in-out;
        background: #41606D;
        overflow: hidden;
    }
    /* .pgtmenu .pgtBtn:hover .pgtlayer, */
    .pgtmenu .pgtBtn.on .pgtlayer {
        display: flex;
        align-items: center;
        /* padding-top: 10px; */
        height: 100%;
    }
    /*.pgtmenu .pgtBtn.on,
	.pgtmenu .pgtBtn:hover {
		color: #fff;
		background: #41606D;
	}*/
}

.informationlistinr .item {
    width: 100%;
    border-bottom: 1px dashed #D0D0D0;
}

.informationlistinr .item:first-child .link {
    padding-top: 0;
}

.informationlistinr .item .word {
    height: 28px;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.informationlistinr .item .word,
.informationlistinr .item .time {
    transition: all .2s;
}

@media (min-width: 961px) {
    .informationlistinr .item .link {
        padding: 20px;
    }
    .informationlistinr .item .word {
        margin-top: 8px;
    }
}

@media (min-width: 1601px) {
    .informationlistinr .item .link {
        padding: 30px 45px;
    }
}

@media (max-width: 960px) {
    .informationlistinr .item .link {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

.announcelistinr .item {
    position: relative;
    width: 100%;
    border-bottom: 1px dashed #D0D0D0;
}

.announcelistinr .item:first-child {
    margin-top: 0;
}

.announcelistinr .item .date,
.announcelistinr .item .down {
    text-align: center;
}

.announcelistinr .item .pic,
.announcelistinr .item .down .dt {
    transition: all 0.2s;
}

.announcelistinr .item .pic {
    width: 63px;
    height: 56px;
    margin: auto;
    font-size: 0;
    background-position: center;
    background-size: contain;
    background-image: url(../images/idown.png);
    background-repeat: no-repeat;
}

.announcelistinr .item .word {
    width: 100%;
}

.announcelistinr .item .down .dt {
    display: block;
}

@media (min-width: 961px) {
    .announcelistinr .item {
        margin-top: 24px;
        padding-bottom: 16px;
    }
    .announcelistinr .item .link {
        display: flex;
        justify-content: space-between;
        padding-right: 40px;
    }
    .announcelistinr .item .dcenter {
        display: flex;
        align-items: center;
    }
    .announcelistinr .item .text {
        flex: 1;
        padding-left: 26px;
        padding-right: 26px;
    }
    .announcelistinr .item .text .title {
        margin-top: 0;
    }
    .announcelistinr .item .date {
        padding-right: 28px;
        white-space: nowrap;
    }
    .announcelistinr .item .date {
        border-right: 1px solid #D9D9D9;
    }
    .announcelistinr .item .down {
        right: 0;
    }
    .announcelistinr .item .down .dt .w,
    .announcelistinr .item .date .t {
        display: none;
    }
}

@media (max-width: 960px) {
    .announcelistinr .item .date .time,
    .announcelistinr .item .pic {
        display: none;
    }
    .announcelistinr .item {
        padding: 10px 0;
    }
    .announcelistinr .item .date {
        text-align: left;
    }
    .announcelistinr .item .text {
        margin-top: 5px;
    }
    .announcelistinr .item .down {
        text-align: right;
        border: none;
    }
    .announcelistinr .item .pic {
        width: 25px;
        height: 22px;
    }
    .announcelistinr .item .down .dt {
        display: inline-block;
        padding: 6px 10px;
        color: #fff;
        background-color: #263F4B;
    }
}

.governancewrt {
    position: relative;
}

.governancewrt .item .title {
    position: relative;
    background-repeat: no-repeat;
    background-position: left top 2px;
}

.titlewptrline {
    position: relative;
    padding-left: 14px;
}

.titlewptrline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #38535F;
}

.investorbgwone .onetitle #date {
    margin-left: 12px;
    vertical-align: middle;
}

.investorlistin {
    position: relative;
    text-align: center;
}

.investorlistin .its {
    position: relative;
    width: 50%;
}

.investorlistin .its::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 1px;
    background-color: #556F7A;
}

.investorlistin .its:nth-child(1),
.investorlistin .its:nth-child(2) {
    margin-top: 0;
}

.hinvestor .hgroup .percentage,
.investorlistin .itemzong .percentage {
    position: relative;
    /* bottom: 0; */
    padding-right: 30px;
    background-size: 20px;
    background-repeat: no-repeat;
    /* animation: shangsheng 1s infinite; */
}

.investorlistin .listinfo.up .percentage {
    background-image: url(../images/promotion_up.png);
    background-position: right bottom 5px;
}

.investorlistin .listinfo.down .percentage {
    background-image: url(../images/promotion_down.png);
    background-position: right bottom 10px;
}

.hinvestor .hgroup .up .percentage {
    background-image: url(../images/promotion_up2.png);
    background-position: right bottom 5px;
}

.hinvestor .hgroup .down .percentage {
    background-image: url(../images/promotion_down2.png);
    background-position: right bottom 10px;
}

.investorhyzoushi {
    margin-top: 30px;
}

.investorhyzoushi .allcontentwrapper {
    margin-top: 20px;
}

@media (min-width: 961px) {
    .titlewptrline::before {
        width: 4px;
        height: 24px;
    }
    .governancewrt {
        padding: 70px 9% 45px;
        background-image: url(../images/governancebg.png);
    }
    .governancelistinr .item {
        min-width: 200px;
        width: 40%;
        margin-right: 20%;
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px dashed #fff;
    }
    .governancelistinr .item:nth-child(2n) {
        margin-right: 0;
    }
    .governancelistinr .item:nth-child(1),
    .governancelistinr .item:nth-child(2) {
        padding-top: 0;
    }
    .governancewrt .item .title {
        padding-left: 32px;
        background-size: 24px;
        line-height: 24px !important;
        color: #fff;
        background-image: url(../images/imlimg.png);
    }
    .investorbgwone {
        padding: 36px 5% 6%;
        padding-left: 0;
        background-color: #304C58;
    }
    .investorbgwone,
    .investorbgwone .alltitle24 {
        color: #fff;
    }
    .investorbgwone .onetitle {
        padding-left: 3%;
    }
    .investorbgwone .investorlistin {
        margin-top: 4.6%;
    }
    .investorlistin .itemzong {
        min-width: 300px;
        width: 26%;
        padding-left: 2%;
    }
    .investorlistin .itemright {
        flex: 1;
    }
    .investorlistin .itemzong .listinfo {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .investorlistin .its {
        width: 20%;
        padding-top: 8px;
        padding-bottom: 10px;
        margin-top: 46px;
    }
    .investorlistin .its:nth-child(3),
    .investorlistin .its:nth-child(4),
    .investorlistin .its:nth-child(5) {
        margin-top: 0;
    }
    .hinvestor .its .list-tit,
    .investorlistin .its .percentage {
        margin-top: 6px;
    }
    .investorlistin .its:nth-child(5n)::after {
        width: 0;
    }
    .investorhyzoushi {
        margin-top: 70px;
    }
    .informationlistinr .item .link:hover .title,
    .governancelistinr .item .link:hover .title,
    .announcelistinr .item .link:hover .title {
        font-weight: bold;
    }
}

@media (min-width: 1601px) {
    .governancelistinr .item {
        width: 36%;
        margin-right: 28%;
        padding: 40px 0;
    }
    .investorlistin .itemzong .listinfo {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .investorlistin .itemzong .percentage {
        padding-right: 40px;
        background-size: 32px;
    }
    .governancewrt .item .title {
        padding-left: 42px;
        line-height: 34px !important;
        background-size: 34px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .announcelistinr .item .text .title {
        margin-bottom: 6px;
    }
    .announcelistinr .item .pic {
        width: 45px;
        height: 40px;
    }
}

@media (max-width: 960px) {
    .titlewptrline::before {
        width: 4px;
        height: 18px;
        margin-top: -8px;
    }
    .governancelistinr .item {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px dashed #D0D0D0;
    }
    .governancewrt .item .title {
        padding-left: 26px;
        background-size: 18px;
        background-image: url(../images/imlimg2.png);
    }
    .investorlistin .itemright,
    .investorlistin .itemzong {
        width: 100%;
        padding: 10px 0;
    }
    .investorlistin .its::after {
        width: 0;
    }
    .investorlistin .its {
        margin-top: 20px;
    }
    .hinvestor .its .list-tit,
    .investorlistin .its .percentage {
        margin-top: 2px;
    }
}

.productlistrin .item {
    margin-top: 20px;
}

.productlistrin .item:nth-of-type(1) {
    margin-top: 0;
}

.careerlistin .item,
.productlistrin .item .link {
    transition: all .4s ease;
    box-shadow: 0px 4px 7px 0px rgba(219, 219, 219, 0.25);
}

.productlistrin .item .info {
    padding: 10px;
}

@media (min-width: 961px) {
    .productlistrin .item {
        margin-top: 3%;
        width: 31.5%;
        margin-right: 2.75%;
    }
    .productlistrin .item .info {
        padding: 18px 30px;
    }
    .productlistrin .item:nth-of-type(2),
    .productlistrin .item:nth-of-type(3) {
        margin-top: 0;
    }
    .productlistrin .item:nth-child(3n) {
        margin-right: 0;
    }
    .productlistrin .item .link:hover {
        color: #fff;
        background-color: #0e88ce;
    }
    .careerlistin .item:hover,
    .productlistrin .item .link:hover,
    .hproductworld .productlist .item .link:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 960px) {}

.productdetailcharacteristics {
    margin-top: 20px;
}

.productdetailinfot .gallery img {
    display: block;
    width: 100%;
}

.productdetailinfot .contentr .xinxifr {
    margin-top: 14px;
}

.productdetailintroduction .contentr .xinxifr {
    padding-top: 14px;
    border-top: 1px solid #D1D1D1;
}

.productdetailinfot .contentr .xinxifr:first-child {
    margin-top: 0;
}

.productdetailinfot .contentr .allcontentwrapper {
    margin-top: 10px;
}

.productdetaillistinr {
    margin-top: 20px;
}

.productdetaillistinr .itefors {
    margin-top: 20px;
    border: 1px solid #BCBCBC;
}

.productdetaillistinr .itefors:first-child {
    margin-top: 0;
}

.productdetaillistinr .itefors .toptit {
    display: flex;
    justify-content: space-between;
    padding-left: 14px;
}

.productdetaillistinr .itefors .btnclick {
    position: relative;
    font-size: 0;
    text-align: center;
    cursor: pointer;
}

.productdetaillistinr .itefors .btnclick::after {
    content: '+';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #C5C5C5;
    transition: all .3s;
}

.productdetaillistinr .itefors .bottomcontent {
    position: relative;
    display: none;
    padding: 14px;
    border-top: 1px solid #BCBCBC;
}

.productdetaillistinr .itefors.active {
    background-color: #F0F2F2;
}

.productdetaillistinr .itefors.active .btnclick::after {
    content: '-';
    background-color: #263F4B;
}

.certificatespro .banner-page,
.casepro .banner-page {
    display: none;
}

.networkpro,
.casepro,
.certificatespro {
    display: flex;
    flex-wrap: wrap;
}

.certificatespro .item {
    text-align: center;
}

.certificatespro .item a {
    display: block;
}

.certificatespro .item .namet {
    margin-top: 14px;
}

.certificatespro-container {
    width: 100%;
}

.networkpro .item,
.casepro .item {
    background-color: #fff;
    box-shadow: 0px 4px 9px 0px rgba(117, 117, 117, 0.25);
}

.casepro .item .info {
    padding: 10px 14px;
}

.casepro .item .info .desc {
    margin-top: 6px;
}

.casepro .casepro-container {
    padding: 10px;
}

.networkpro .item {
    box-shadow: 0px 4px 9px 0px rgba(117, 117, 117, 0.25);
}

.networkpro .item:nth-child(1) {
    margin-top: 0;
}

.networkpro .item ul {
    display: flex;
    flex-wrap: wrap;
}

.networkpro .item ul li {
    line-height: 24px;
}

.networkpro .item ul li:nth-child(1) {
    margin-top: 0;
}

@media (min-width: 961px) {
    .productdetailinfot {
        display: flex;
        justify-content: space-between;
    }
    .productdetailcharacteristics {
        flex-direction: row-reverse;
        margin-top: 7%;
    }
    .productdetailinfot .gallery {
        width: 45%;
    }
    .productdetailinfot .contentr {
        display: flex;
        align-items: center;
        width: 51%;
    }
    .productdetailinfot .contentr .xinxifr {
        margin-top: 30px;
    }
    .productdetailintroduction .contentr .xinxifr {
        padding-top: 30px;
    }
    .productdetailinfot .contentr .allcontentwrapper:first-child {
        margin-top: 0;
    }
    .productdetaillistinr {
        margin-top: 9%;
    }
    .productdetaillistinr .itefors .toptit {
        padding-left: 30px;
    }
    .productdetaillistinr .itefors .bottomcontent {
        padding: 26px 30px 36px;
    }
    .productdetaillistinr .itefors .btnclick:hover::after {
        background-color: #263F4B;
    }
    .networkpro .item {
        margin-top: 35px;
        width: 46%;
        margin-right: 8%;
    }
    .networkpro .item:nth-child(2) {
        margin-top: 0;
    }
    .networkpro .item:nth-child(2n) {
        margin-right: 0;
    }
    .networkpro .item ul {
        padding: 22px;
        justify-content: space-between;
    }
    .networkpro .item ul li {
        width: 48%;
        margin-top: 26px;
    }
    .networkpro .item ul li:nth-child(2) {
        margin-top: 0;
    }
}

@media (min-width: 1601px) {
    .productdetaillistinr .itefors {
        margin-top: 35px;
    }
    .productdetaillistinr .itefors .toptit {
        height: 70px;
        line-height: 70px;
    }
    .productdetaillistinr .itefors .btnclick {
        width: 70px;
    }
    .productdetaillistinr .itefors .banner-btnyear.prev {
        left: 20px;
    }
    .productdetaillistinr .itefors .banner-btnyear.next {
        right: 20px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .productdetaillistinr .itefors {
        margin-top: 25px;
    }
    .productdetaillistinr .itefors .toptit {
        height: 50px;
        line-height: 50px;
    }
    .productdetaillistinr .itefors .btnclick {
        width: 50px;
    }
    .productdetaillistinr .itefors .banner-btnyear.prev {
        left: 10px;
    }
    .productdetaillistinr .itefors .banner-btnyear.next {
        right: 10px;
    }
    .networkpro .item ul li {
        margin-top: 16px;
        white-space: nowrap;
    }
}

@media (max-width: 1201px) and (min-width: 961px) {}

@media (max-width: 960px) {
    .productdetaillistinr .itefors .toptit {
        height: 40px;
        line-height: 40px;
    }
    .productdetaillistinr .itefors .btnclick {
        width: 40px;
    }
    .productdetaillistinr .itefors .banner-btnyear {
        display: block;
    }
    .productdetaillistinr .itefors .banner-btnyear.prev {
        left: 6px;
    }
    .productdetaillistinr .itefors .banner-btnyear.next {
        right: 6px;
    }
    .networkpro .item,
    .networkpro .item ul li {
        width: 100%;
    }
    .networkpro .item {
        margin-top: 20px;
        padding: 14px;
    }
    .networkpro .item ul li {
        margin-top: 6px;
    }
}

.careerinwrt .top-block .itfr {
    margin-top: 20px;
}

.careerinwrt .top-block .itfr:first-child {
    margin-top: 0;
}

.careerinwrt .top-block .inner-tit img,
.careerlistin .item .inner-tit img {
    margin-right: 5px;
}

.careerinwrt .top-block .itfr .para a {
    text-decoration: underline;
}

.careerzhaopin,
.careerlistin {
    margin-top: 20px;
}

.careerlistin .item {
    box-shadow: 0px 4px 14px 0px rgba(206, 206, 206, 0.25);
}

.careerlistin .item .info {
    padding: 14px;
    padding-bottom: 20px;
}

.careerlistin .item .info .para {
    margin-top: 12px;
}

.careerzhaopin .item {
    display: none;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(158, 158, 158, 0.21);
}

.careerzhaopin .item .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 0;
    background-repeat: no-repeat;
    background-image: url(../images/tub.png);
    background-size: contain;
    background-position: center;
}

.careerzhaopin .item .mor {
    display: inline-block;
    position: relative;
    margin-top: 10px;
}

.careerzhaopin .item,
.careerzhaopin .item .icon,
.careerzhaopin .item .mor:after {
    transition: all .3s ease;
}

.careerzhaopin .item .mor:after {
    content: '';
    width: 6px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/icrg.png);
}

.careerinwrt .btnmore {
    margin: auto;
}

.careerzhaopin .item .popups {
    display: none !important;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

::-webkit-scrollbar-button:vertical {
    display: none
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #263F4B;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #263F4B;
}

::-webkit-scrollbar-thumb:vertical:active {
    background-color: #263F4B;
}

.campus-pop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.campus-pop .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.campus-pop .main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    font-size: 0;
}

.campus-pop .cell {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.campus-pop .cell-box:before {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.campus-pop .container {
    padding: 20px;
    background-color: #fff;
}

.campus-pop .close {
    width: 31px;
    height: 31px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/iclosess.png");
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.campus-pop .top-block {
    padding-bottom: 14px;
    border-bottom: 1px dashed #D1D1D1;
}

.campus-pop .top-block .infor {
    display: flex;
    justify-content: space-between;
}

.campus-pop .bot-block {
    margin-top: 14px;
}

.campus-pop .bot-block .scroll {
    max-height: 36vh;
    overflow: auto;
    padding-right: 2vw;
}

.campus-pop .bot-block .btnmore {
    margin: auto;
}

.campus-pop .top-block .infor .line {
    display: inline-block;
    width: 1px;
    height: 16px;
    margin: 0 10px;
    margin-top: 5px;
    background-color: #D1D1D1;
}

@media (min-width: 961px) {
    .careerinwrt .top-block .itfr {
        display: flex;
        margin-top: 35px;
    }
    .careerinwrt .top-block .inner-tit {
        width: 220px;
        flex: 0 0 220px;
    }
    .careerinwrt .top-block .para {
        line-height: 32px;
    }
    .careerlistin .item .inner-tit img,
    .careerinwrt .top-block .inner-tit img {
        vertical-align: text-bottom;
    }
    .careerlistin .item .inner-tit img {
        margin-right: 6px;
    }
    .careerinwrt .top-block .inner-tit img {
        margin-right: 10px;
    }
    .careerlistin {
        grid-gap: 50px;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 4%;
    }
    .careerzhaopin {
        margin-top: 3%;
        grid-gap: 30px;
        grid-template-columns: repeat(4, 1fr);
    }
    .careerzhaopin .item {
        padding: 2.3vw;
        padding-left: 26px;
    }
    .careerzhaopin .item .mor {
        margin-top: 20px;
    }
    .careerzhaopin .item .icon {
        right: 10%;
        width: 50px;
        height: 50px;
    }
    .careerzhaopin .item:hover {
        background-color: #263F4B;
    }
    .careerzhaopin .item:hover .icon {
        opacity: 0;
    }
    .careerzhaopin .item:hover .mor:after {
        background-image: url(../images/icrw.png);
    }
    .campus-pop .container {
        padding: 3.125vw;
    }
    .campus-pop .top-block {
        padding-bottom: 30px;
    }
    .campus-pop .bot-block {
        margin-top: 35px;
    }
    .campus-pop .top-block .infor {
        margin-top: 20px;
    }
    .campus-pop .bot-block .btnmore {
        margin-top: 5vh;
    }
}

@media (max-width: 960px) {
    .careerinwrt .top-block .inner-tit img {
        height: 22px;
    }
    .campus-pop .close {
        top: 15px;
        right: 15px;
    }
    .campus-pop .top-block .infor .line {
        height: 10px;
    }
    .campus-pop .top-block .infor {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .careerinwrt .top-block .itfr .para {
        margin-top: 10px;
    }
    .careerinwrt .btnmorebox,
    .campus-pop .bot-block .btnmore {
        margin-top: 20px;
    }
    .careerzhaopin .item {
        width: 100%;
        padding: 20px;
    }
    .careerzhaopin .item .icon {
        right: 0;
    }
    #career {
        padding-bottom: 30px;
    }
    #campus {
        padding-top: 40px;
    }
}

.wrapperboxftr,
.dsNone {
    display: none;
}

.wrapperboxftr.on {
    display: block;
}

.hmPubt {
    text-align: center
}

.hmPubt strong {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 56px;
    display: block;
}

.hmPubt p {
    font-size: 20px;
    color: #9fa0a0;
    line-height: 32px;
    margin-top: 12px;
    letter-spacing: 2px;
}

.hmc4AniImg {
    filter: hue-rotate(20deg) saturate(40%);
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
}

.hmc4AniBox {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hmc4box {
    height: 670px;
    position: relative;
}

.hmc4proBtn {
    display: block;
    height: 32px;
    width: 32px;
    position: absolute;
    text-align: center;
    animation: proAni 3s ease-in-out infinite;
    cursor: pointer;
}

.hmc4proBtn1,
.hmc4proBtn3,
.hmc4proBtn5 {
    animation-delay: 1.5s
}

.hmc4proBtn p {
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 52px;
    margin-top: -13px;
    transform: translateX(-50%)
}

.hmc4proBtn i {
    background: url(../images/hmc4line.png) no-repeat;
    height: 122px;
    width: 2px;
    margin-left: -1px;
    position: absolute;
    left: 50%;
    top: 75px;
    animation: proiAni 1.5s ease-in-out infinite;
}

/* .hmc4proBtn1 i,
.hmc4proBtn3 i,
.hmc4proBtn5 i,
.hmc4proBtn7 i {
	background: url(../images/hmc4line2.png) no-repeat center top;
} */

.hmc4ricon {
    background: url(../images/hmc4icon.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.hmc4proBtn1 {
    left: 7%;
    top: 42%;
}

.hmc4proBtn2 {
    left: 17.5%;
    top: 13%;
}

.hmc4proBtn3 {
    left: 26%;
    top: 23%;
}

.hmc4proBtn4 {
    left: 70%;
    top: 23%;
}

.hmc4proBtn5 {
    left: 84%;
    top: 50%;
}

.hmc4proBtn6 {
    left: 88%;
    top: 3%;
}

.hmc4proBtn7 {
    left: 5%;
    top: 4%;
}

.hmc4proBtn8 {
    left: 11%;
    top: -16px;
}

.hmc4proBtn9 {
    left: 65%;
    top: 35px;
}

.hmc4proBtn10 {
    left: 77%;
    top: 35px;
}

.hmc4proBtn11 {
    left: 32%;
    top: 35px;
}

.hmc4proBtn12 {
    left: 74%;
    top: 55%;
}

.hmc4proBtn13 {
    left: 13%;
    top: 62%;
}

.hmc4proBtn14 {
    left: 22%;
    top: 62%;
}

.hmc4proBtn15 {
    right: 3%;
    top: 34%;
}

.hmc4proBtn16 {
    right: 7%;
    top: 77%;
}

.hmc4MMbox_item {
    position: relative;
}

.hmc4ProImg>img {
    object-fit: cover;
    width: 100%;
}

.hmc4ProImg {
    display: block;
    /* height: 294px; */
    /* width: 444px; */
    margin: 0 auto;
    position: relative;
    z-index: 8;
    overflow: hidden;
    cursor: pointer;
}

.clickpics .tipsr {
    margin-top: 5px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.hmc4MMbox_item .icontent,
.hmc4ProImg .icontent {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: all .3s;
}

.hmc4ProImg .icontent .info {
    max-width: 200px;
}

.hmc4MMbox_item .icontent,
.hmc4ProImg:hover .icontent {
    opacity: 1;
}

.hmc4ProImg.active .icontent {
    opacity: 1;
}

.hmc4Protxt {
    position: absolute;
    left: 0;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.hmc4m {
    text-align: center;
    height: 48px;
    width: 180px;
    background: #005850;
    font-size: 16px;
    line-height: 48px;
    color: #FFF;
    display: inline-block;
    border-radius: 1.8em;
}

.hmc4m:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
}

@media (min-width: 1501px) {
    .hmc4ProImg .icontent,
    .hmc4ProImg>img {
        height: 265px;
    }
}

@media (max-width: 1500px) and (min-width: 961px) {
    .hmc4ProImg .icontent,
    .hmc4ProImg>img {
        height: 205px;
    }
}

@media (min-width: 961px) {
    .hmc4boxProBox {
        /* height: 298px; */
        height: 16vw;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 5
    }
    .hmc4boxProBox.on {
        opacity: 1;
        visibility: visible;
        z-index: 6;
    }
    .hmc4AniBox {
        top: 240px;
    }
    .hmc4AniImg {
        width: 28%;
    }
    .hmc4MMbox {
        display: none;
    }
    .hmc4ProImg {
        top: 5vw;
        width: 27%;
        max-width: 444px;
    }
    .hmc4Protxt {
        bottom: 5%;
    }
    .caseinwrtr .container {
        height: calc(240px + 23.4vw);
    }
    .colwrapthasjt .cloumntw .swiper-container {
        width: 100%;
    }
}

.colwrapthasjt .cloumntw .swiper-button-lock {
    display: block;
}

@media (min-width: 1601px) {
    .hmc4ProImg {
        top: 24px;
    }
}

@media (max-width: 1799px) and (min-width: 1601px) {
    /* .hmc4ProImg {
		margin-bottom: 16vw;
	} */
}

@media (max-width: 1600px) and (min-width: 961px) {
    /* .hmc4ProImg {
		margin-bottom: 15vw;
	} */
}

@media (max-width: 1600px) and (min-width: 1380px) {}

@media (max-width: 1379px) and (min-width: 961px) {
    /* .hmc4ProImg {
		margin-bottom: 14vw;
	} */
    .hmc4ProImg {
        top: 7vw;
    }
    .colwrapthasjt .cloumntw {
        width: 660px;
    }
}

@media (max-width: 1200px) and (min-width: 961px) {
    .hmc4proBtn1,
    .hmc4proBtn3 {
        top: 50%;
    }
    .hmc4ProImg {
        top: 13vw;
    }
    .colwrapthasjt {
        line-height: 46px;
    }
    .colwrapthasjt .cloumntw {
        width: 100%;
        margin-bottom: 10px;
    }
    .colwrapthasjt .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 960px) {
    .dsPcPad {
        display: none;
    }
    .hmc4boxProBox {
        display: none;
        height: auto;
    }
    .hmc4boxProBox.on {
        display: block;
    }
    .hmc4a.on {
        font-size: 24px;
    }
    .hmc4a {
        font-size: 18px;
    }
    .hmc4Tag {
        margin-top: 40px;
    }
    .hmc4proBtn {
        display: none;
    }
    .hmc4MMbox {
        display: block;
        position: relative;
        z-index: 3;
    }
    .hmc4proImg {
        width: 240px;
        height: 159px;
        position: relative;
        margin: 0 auto;
        margin-bottom: 70px;
        overflow: hidden;
    }
    .clickpics .tipsr {
        display: none;
    }
    .clickpics .icontent,
    .clickpics img {
        height: 159px;
    }
    .hmc4proImg img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .hmc4AniImg {
        top: 0;
    }
    .hmc4Mtxts {
        text-align: center;
    }
    .hmc4AniBox {
        top: 120px;
    }
}

.contactltr .contactfor {
    display: none;
}

.contactlistin .item {
    margin-top: 20px;
}

.contactlistin .item .it {
    margin-top: 10px;
}

@media (min-width: 961px) {
    .contactltr {
        padding: 0 9%;
    }
    .contactlistin .item {
        width: 40%;
        margin-top: 6%;
    }
    .contactlistin .item:nth-child(2n+1) {
        width: 60%;
    }
    .contactlistin .item .it {
        margin-top: 18px;
    }
    .contactlistin .item img {
        margin-right: 18px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .contactlistin .item {
        margin-top: 10%;
    }
}

@media (max-width: 960px) {
    .contactlistin .item img {
        height: 20px;
        margin-right: 8px;
    }
}

.searchbanner .search {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.searchbanner .search .search-key {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    padding-right: 54px;
    color: #fff;
    background: rgba(255, 255, 255, 0.31);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.searchbanner .search .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 4;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/isearchw.png);
    background-color: rgba(38, 63, 75, 0.67);
}

.search_tla .btr,
.search_tl {
    display: flex;
    justify-content: space-between;
}

.search_tlb .btr,
.search_tla .btr {
    margin-top: 16px;
}

.search_tla .searchipt {
    display: block;
    width: 100%;
    padding: 0 14px;
    border: 1px solid #000000;
}

.search_tla .searchipt,
.search_tla .searchbtn {
    height: 45px;
}

.search_tla .searchbtn {
    display: inline-block;
    width: 112px;
    flex: 0 0 112px;
    margin-left: 10px;
    line-height: 45px;
    text-align: center;
    background: #263F4B;
    cursor: pointer;
}

.search_tla .searchbtn img {
    vertical-align: middle;
    margin-right: 5px;
}

.search_tlb ul {
    padding: 0;
    margin: 0;
}

.search_tlb ul li {
    display: inline-block;
    position: relative;
    list-style: none;
}

.search1_bg .idelete {
    display: inline-block;
}

.search1_bg .idelete,
.search1_bg .bijiao,
.search_tlb ul li {
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    background-image: url(../images/i_xuanze.png);
}

.search1_bg .idelete,
.search1_bg .bijiao,
.search1_bg .cktp,
.search_tlb ul li {
    padding-left: 24px;
    cursor: pointer;
}

.search1_bg .bijiao.bijiaoremove,
.search_tlb ul li.active {
    background-image: url(../images/i_xuanze2.png);
}

.search1_bg .idelete {
    background-position: left top 1px;
    background-image: url(../images/idelete.png);
}

.search_tlb ul li .search_tla .btr,
.search_tlb .btr {
    display: flex;
}

.search1_xz {
    width: 100%;
    padding-top: 10px;
}

.search1_xza {
    width: 100%;
    margin-top: 20px;
}

.search1_xza .search1_tit {
    margin: 0;
    margin-bottom: 14px;
    font-weight: bold;
}

.search1_xzb {
    width: 100%;
    padding: 0 10px;
    margin: 6px 0;
}

.search1_xzb1 {
    width: 100%;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    position: relative;
}

.search1_xzb2 {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background: #f2f7fb;
    border-radius: 20px;
}

.search1_xzb2 span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/tiao_bg.png) center repeat-x;
}

.search1_btn1 {
    width: 20px;
    height: 20px;
    border: 1px solid #adcfe8;
    background: #d8ebf9;
    position: absolute;
    top: -3px;
    left: 0px;
    margin-left: -10px;
    cursor: pointer;
}

.search1_btn2 {
    width: 20px;
    height: 20px;
    border: 1px solid #adcfe8;
    background: #d8ebf9;
    position: absolute;
    top: -3px;
    right: 0px;
    margin-right: -10px;
    cursor: pointer;
}

.search_con1 {
    background-color: rgba(68, 109, 168, 0.06);
}

.search1_bg {
    width: 100%;
}

.search1_bg table {
    width: 100%;
    border: 1px solid #333;
}

.search1_bg table th,
.search1_bg table tr td {
    padding: 5px;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}

.search1_bg table tbody tr {
    background: #fff;
}

.search1_bg table tr td a {
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    padding: 0 10px;
}

.whitenowrap {
    white-space: nowrap;
}

.bijiao_on {
    color: #999 !important;
}

.search_showimg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.search_showimgBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    -webkit-opacity: 0.8;
}

.search_showimg_con {
    width: 80%;
    max-width: 795px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    padding-bottom: 60px;
    text-align: center;
    transform: translate(0, -50%);
}

.search_showimg_con .img {
    width: auto;
    max-height: 70vh;
}

.search_showimg_con span {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.search_showimg_con span img {
    width: 40px;
}

.search1_xz .btnmore {
    margin-top: 28px;
}

.search_tabresx {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #CFCFCF;
}

.search_tabresx .tab {
    position: relative;
    margin-left: 14px;
    line-height: 30px;
    cursor: pointer;
}

.search_tabresx .tab:first-child {
    margin-left: 0;
}

.search_con1 {
    position: relative;
    padding: 20px;
    margin-top: 30px;
}

.search_tr {
    position: relative;
}

.search1_bg {
    min-width: 900px;
}

.searchcontentboxtr {
    margin-top: 30px;
    overflow: hidden;
}

.searchcontentboxtr .listrtfor {
    overflow-x: scroll;
}

.search1_bg .bijiao {
    display: inline-block;
}

.search1_bg .titleclick {
    cursor: pointer;
}

.searchshowdetail .dt {
    white-space: nowrap;
}

.searchshowdetail .btntl {
    display: flex;
    margin-top: 20px;
}

.searchshowdetail .its,
.searchshowdetail .it {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #D1D1D1;
}

.searchshowdetail .litr {
    display: flex;
    justify-content: space-between;
}

.searchshowdetail .btntl #returnbtn .link {
    background-color: #bbb;
}

.searchshowdetail .btntl #returnbtn .link::after {
    background-image: url(../images/morebg3.png);
}

.searchshowdetail .btntl #returnbtn .link::before {
    background-image: url(../images/morebg4.png);
}

.searchshowdetail .litr {
    margin-top: 6px;
}

.searchshowdetail .shuju {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #263F4B;
}

.searchshowdetail .infor .tit {
    margin-top: 10px;
}

@media (min-width: 961px) {
    .searchbanner .search {
        width: 46%;
        margin-top: 45px;
    }
    .searchbanner .search .search-key {
        padding-right: 98px;
        height: 45px;
    }
    .searchbanner .search .search-submit {
        width: 98px;
        height: 45px;
    }
    .searchbanner .search .words {
        margin-top: 24px;
    }
    .search1_xza {
        margin-top: 4%;
    }
    .search_tl {
        flex-direction: row-reverse;
    }
    .search_tlb .btr {
        margin-top: 24px;
    }
    .search_tla {
        width: 38%;
    }
    .search_tlb ul li {
        margin-right: 3vw;
    }
    .search_tlb_two {
        margin-left: 5vw;
    }
    .search_con1 {
        padding: 55px 25px;
    }
    .search_tr .search_print {
        position: absolute;
        right: 0;
        bottom: 14px;
    }
    .search_tabresx {
        padding-right: 150px;
    }
    .search_tabresx .tab {
        margin-left: 70px;
        line-height: 60px;
    }
    .search_con1 {
        margin-top: 80px;
    }
    .searchcontentboxtr {
        margin-top: 55px;
    }
    .searchshowdetail {
        flex-direction: row-reverse;
    }
    .searchshowdetail .btntl,
    .searchshowdetail .infor .let,
    .searchshowdetail .infor .rit {
        width: 42.5%;
    }
    .searchshowdetail .btntl {
        margin-top: 45px;
        justify-content: space-between;
    }
    .searchshowdetail .btntl .btnmore {
        width: 126px;
    }
    .searchshowdetail .leftr {
        width: 56%;
    }
    .searchshowdetail .rightr {
        width: 33.5%;
    }
    .searchshowdetail,
    .searchshowdetail .infor,
    .searchshowdetail .it {
        display: flex;
        justify-content: space-between;
    }
    .searchshowdetail .it {
        display: flex;
    }
}

@media (max-width: 960px) {
    .search_tl,
    .search_tlb .btr {
        flex-wrap: wrap;
    }
    .search_tla,
    .search_tlb,
    .search_tlb .search_tlb_one {
        width: 100%;
    }
    .search_tlb .search_tlb_two {
        margin-top: 10px;
    }
    .search_tlb {
        margin-top: 34px;
    }
    .search_tlb ul li {
        margin-right: 18px;
    }
    .search_tr .search_print {
        margin-top: 10px;
    }
    .searchshowdetail .btntl .btnmore {
        margin-right: 20px;
    }
    .searchshowdetail .btntl .btnmore:last-child {
        margin-right: 0;
    }
    .searchshowdetail .leftr {
        margin-top: 20px;
    }
}

.searchcolorlist,
.search_tlc_fixed .colorfotr {
    display: flex;
    flex-wrap: wrap;
}

.searchcolorlist .searchitem {
    position: relative;
    width: 130px;
    text-align: center;
    cursor: pointer;
}

.searchcolorlist .searchitem .search_tlc_zi .clickchange {
    cursor: pointer;
}

.search_tlc_fixed .colorfotr .clrtp,
.searchcolorlist .searchitem .search_tlc_list_img,
.searchcolorlist .searchitem .search_tlc_list_img img,
.search_tlc_list .search_tlc_list_img .pic {
    width: 100%;
    border-radius: 50%;
}

.searchcolorlist .searchitem .search_tlc_list_img {
    background-color: transparent;
    /*#505A69*/
}

.searchcolorlist .searchitem .search_tlc_list {
    width: 100%;
    padding: 10px;
    border: 1px solid #f1f1f1;
    background: url(../images/color_bg.png) center no-repeat;
    background-size: cover;
}

.searchcolorlist .searchitem .search_tlc_zi {
    margin-top: 14px;
}

.search_tlc_fixed {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
}

.dialogion {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: rgba(190, 190, 190, 0.92);
}

.search_tlc_fixed .boxt {
    max-width: 1430px;
    width: 80%;
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%);
    margin: auto;
    z-index: 101;
    overflow: hidden;
}

.search_tlc_fixed .search_tlc_tit {
    display: flex;
    justify-content: space-between;
    color: #fff;
    background-color: #263F4B;
}

.search_tlc_fixed .closer {
    display: block;
    width: 60px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/icloser.png);
    cursor: pointer;
}

.search_tlc_fixed .searchst_content {
    max-height: 74vh;
    overflow: auto;
}

.search_tlc_fixed .colorfotr .clrtp {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (min-width: 961px) {
    .search_noData {
        padding: 0 30px
    }
    .searchcolorlist .searchitem {
        margin-right: 40px;
    }
    .searchcolorlist .searchitem:last-child {
        margin-right: 0;
    }
    .search_tlc_fixed .search_tlc_tit {
        padding-left: 34px;
        height: 60px;
        line-height: 60px;
    }
    .search_tlc_fixed .closer {
        width: 100px;
        background-size: 26px;
    }
    .search_tlc_fixed .colorfotr .clrtp {
        width: 9vw;
        height: 9vw;
        margin-right: 2.5vw;
        margin-top: 2.5vw;
    }
    .search_tlc_fixed .colorfotr .clrtp:nth-child(6n) {
        margin-right: 0;
    }
}

@media (min-width: 1601px) {
    .search_tlc_fixed .searchst_content {
        padding: 70px;
        padding-top: 0;
    }
    /* .search_tlc_fixed .colorfotr .clrtp {
		width: 155px;
		height: 155px;
		margin-right: 60px;
		margin-top: 60px;
	} */
}

@media (max-width: 1600px) and (min-width: 961px) {
    .search_tlc_fixed .searchst_content {
        padding: 50px;
        padding-top: 0;
    }
    /* .search_tlc_fixed .colorfotr .clrtp {
		width: 130px;
		height: 130px;
		margin-right: 40px;
		margin-top: 30px;
	} */
}

@media (max-width: 960px) {
    .search_tlc_fixed .search_tlc_tit {
        padding-left: 20px;
        height: 40px;
        line-height: 40px;
    }
    .search_tlc_fixed .closer {
        background-size: 18px;
    }
    .search_tlc_fixed .searchst_content {
        padding: 20px;
        padding-top: 0;
    }
    .search_tlc_fixed .colorfotr .clrtp {
        width: 72px;
        height: 72px;
        margin-right: 10px;
        margin-top: 14px;
    }
}

.ssss {
    display: flex;
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 5;
    margin-right: 8px;
}

.sss,
.ssss .sss:after {
    height: 2px;
}

.sss {
    display: inline-block;
    position: relative;
    width: 34px;
    margin: 0 4px;
    cursor: pointer;
}

.ssss .sss:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.sss .circle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    bottom: 0;
    z-index: 3;
    /*transform: skew(-50deg);*/
    background-color: #0036BF;
}

.sss.sss-active .circle {
    -webkit-animation: circlett 10000ms linear both;
    animation: circlett 10000ms linear both;
}

/*.sss .circle i {
	position: relative;
	float: left;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.sss .circle i::before {
	content: '';
	position: absolute;
	width: 200%;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid #fff;
	border-radius: 100%;
	box-sizing: border-box;
	clip: rect(0, 20px, 20px, 10px);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.sss .circle i:first-child::before {
	left: 0;
	right: auto;
	clip: rect(0px, 10px, 20px, 0px);
}
.sss.sss-active::before {
	background: #ff5a2b;
}
.sss.sss-active .circle i::before {
	-webkit-animation: circleR 6000ms linear both;
	animation: circleR 6000ms linear both;
}
.sss.sss-active .circle i:first-child::before {
	-webkit-animation-name: circleL;
	animation-name: circleL;
}*/

.homebanner {
    position: relative;
}

.homebannerSWiper .homeban-page {
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
}

.homebanner a {
    display: block;
}

.homebanner .gallery video,
.homebanner .gallery img {
    width: 100%;
    object-fit: cover;
}

.bannerA {
    z-index: 5;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
    text-align: center;
}

.bannerA .dwii {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.bannerA .bannerB .clearfix {
    display: flex;
    align-items: baseline;
}

.bannerA .bannerB .cli {
    margin: 0 2px;
}

.bannerA .bannerB {
    display: none;
    color: #c6c6c6;
}

.bannerA .bannerB .all {
    color: #c6c6c6;
}

.bannerA .bannerB {
    display: block;
}

@media (min-width: 961px) {
    /* .homebanner {
		position: fixed;
		top: 0px;
		left: 0;
		z-index: 1;
		overflow: hidden;
		width: 100%;
	} */
    .homebanner .gallery video,
    .homebanner .gallery img {
        height: 100vh;
    }
}

@media (max-width: 960px) {
    .bannerA {
        bottom: 10px;
    }
    .sss,
    .ssss .sss:after {
        height: 3px;
    }
    .homebanner .swiper-slide,
    .homebanner .gallery video,
    .homebanner .gallery img {
        height: 51.5vw;
    }
}

.hinvestor,
.hnews,
.habout,
.hcase,
.hproductworld {
    position: relative;
    z-index: 6;
}

.hproductworld {
    background: rgba(116, 158, 170, 0.08);
}

.hproductworld .productlist {
    font-size: 0;
}

.hproductworld .productlist .item {
    display: inline-block;
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
}

.hproductworld .productlist .item:nth-of-type(1) {
    margin-top: 0;
}

.hproductworld .productlist .item:nth-of-type(2n) {
    margin-right: 0;
}

.hproductworld .productlist .item .link,
.hproductworld .productlist .item .pic {
    position: relative;
    display: block;
    z-index: 2;
}

.hproductworld .productlist .item .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 10px;
}

.hproductworld .main_pros {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    /* overflow: hidden; */
    box-sizing: content-box;
    /* visibility: inherit; */
    /* box-shadow: 0 0 30px rgb(0 0 0 / 0%); */
}

.htoptie {
    position: relative;
}

.htoptie .en {
    position: relative;
    font-family: 'Impact-Regular';
}

.htoptie .cn {
    position: relative;
    z-index: 5;
}

@media (min-width: 961px) {
    .htoptie .cn {
        margin-top: -20px;
    }
    .hproductworld .productlist {
        margin-top: 30px;
    }
    .hproductworld .productlist .item:nth-of-type(2) {
        margin-top: 0;
    }
    .hproductworld .productlist .item .info {
        padding: 20px;
    }
    /* .hproductworld .productlist .item:nth-of-type(1) {
		-webkit-transition: top 0.7s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-moz-transition: top 0.7s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-ms-transition: top 0.7s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-o-transition: top 0.7s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		transition: top 0.7s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
	}

	.hproductworld .productlist .item:nth-of-type(2) {
		-webkit-transition: top 1.2s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-moz-transition: top 1.2s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-ms-transition: top 1.2s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-o-transition: top 1.2s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		transition: top 1.2s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
	}

	.hproductworld .productlist .item:nth-of-type(3) {
		-webkit-transition: top 1s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-moz-transition: top 1s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-ms-transition: top 1s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-o-transition: top 1s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		transition: top 1s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
	}

	.hproductworld .productlist .item:nth-of-type(4) {
		-webkit-transition: top 1.3s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-moz-transition: top 1.3s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-ms-transition: top 1.3s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		-o-transition: top 1.3s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
		transition: top 1.3s ease-in-out, margin .4s ease-in-out, padding .4s ease-in-out, box-shadow .3s ease-in-out !important;
	} */
}

@media (max-width: 960px) {
    .hproductworld .productlist .item,
    .homebanner {
        height: auto !important;
    }
    .hproductworld {
        margin-top: 0 !important;
    }
    .hproductworld .productlist .item,
    .hproductworld .htoptie {
        top: auto !important;
    }
    .hproductworld .productlist .item:nth-child(2) {
        margin-top: 0;
    }
}

.hcase {
    background-color: #749EAA;
    overflow: hidden;
}

.hcase .leftr {
    position: relative;
    background-color: #263F4B;
}

.hcase .rightr {
    position: relative;
}

.hcase .stabr {
    position: absolute;
    bottom: 2.8vw;
    left: 20%;
    z-index: 3;
}

.hcase .stabr .itfotr {
    display: block;
    width: auto;
}

.hcase .stabr .itfotr.on {
    display: none;
}

.hcase .stabr .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F5F6;
    cursor: pointer;
}

.hcase .stabr .gallery img {
    object-fit: cover;
}

.hcase .btnmore .link {
    background-color: #43974E;
}

.hcase .centerinfo .itrf,
.caselisthome .casecloumvx {
    display: none;
}

.caselisthome .linkr {
    position: absolute;
    z-index: 8;
    padding-top: 20px;
    font-size: 12px;
}

.caselisthome .linkr .pic,
.caselisthome .linkr .img img {
    position: relative;
    width: 10px;
    height: 10px;
    margin: auto;
}

.caselisthome .linkr .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.caselisthome .linkr .old,
.caselisthome .linkr.active .now {
    opacity: 1;
}

.caselisthome .linkr.active .old,
.caselisthome .linkr .now {
    opacity: 0;
}

.caselisthome .gallery .picrts,
.caselisthome .xuanzhuan i,
.caselisthome .xuanzhuan em {
    position: absolute;
    left: 50%;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid transparent;
}

.caselisthome .gallery .picrts,
.caselisthome .xuanzhuan i {
    transform: translate(-50%, -50%);
}

.caselisthome .xuanzhuan i,
.caselisthome .xuanzhuan em {
    border-radius: 50%;
}

.caselisthome .gallery .picrts {
    z-index: 6;
    opacity: 0;
    transition: all 0.5s;
}

.caselisthome .gallery .picrts img {
    padding: 10px;
    object-fit: cover;
    /*border-radius: 20px;*/
    border-radius: 50%;
}

.casecloumvx .gallery .picrts.active {
    opacity: 1;
}

.caselisthome .gallery .picrts img {
    width: 32vw;
    height: 32vw;
}

/* wai */

.caselisthome .xuanzhuan em:nth-of-type(1),
.caselisthome .xuanzhuan i:nth-of-type(1) {
    width: 52.6vw;
    height: 52.6vw;
    margin-top: -26.3vw;
    margin-left: -26.3vw;
    /* animation: radiusRotate 3s linear infinite; */
}

.caselisthome .xuanzhuan em:nth-of-type(2),
.caselisthome .xuanzhuan i:nth-of-type(2) {
    width: 43.6vw;
    height: 43.6vw;
    margin-top: -21.8vw;
    margin-left: -21.8vw;
    /* animation: radiusRotate2 3s linear infinite; */
}

.caselisthome .xuanzhuan em:nth-of-type(3),
.caselisthome .xuanzhuan i:nth-of-type(3) {
    width: 33vw;
    height: 33vw;
}

/* li */

.caselisthome .xuanzhuan em:nth-of-type(3),
.caselisthome .xuanzhuan i:nth-of-type(3) {
    margin-top: -16.5vw;
    margin-left: -16.5vw;
    /* animation: radiusRotate 5s linear infinite; */
}

/* .caselisthome .xuanzhuan i:nth-of-type(1) {
    background-color: rgba(99, 131, 144, 0.18);
}
.caselisthome .xuanzhuan i:nth-of-type(2) {
	background-color: rgba(151, 184, 198, 0.12);
}
.caselisthome .xuanzhuan i:nth-of-type(3) {
	background-color: rgba(41, 72, 85, 0.20);
} */

.caselisthome .xuanzhuan em:nth-of-type(1) {
    /* border-color: rgba(181, 181, 181, 0.47); */
    background-image: url(../images/tu_1.png);
    animation: radiusRotate 8s linear infinite;
}

.caselisthome .xuanzhuan em:nth-of-type(2) {
    /* border-color: rgba(181, 181, 181, 0.47); */
    background-image: url(../images/tu_2.png);
    animation: radiusRotate 8s linear infinite;
    /*animation: xuanzzk2 2s linear infinite;*/
}

.caselisthome .xuanzhuan em:nth-of-type(3) {
    /* border-color: rgba(185, 208, 219, 0.49); */
    background-image: url(../images/tu_3.png);
    background-size: 99%;
}

.caselisthome .xuanzhuan em {
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* animation: xuanzzk3 2s linear infinite; */
}

.caselisthome .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.caselisthome .ring11 {
    width: 63.6vw;
    height: 63.6vw;
}

.caselisthome .ring22 {
    width: 20px;
    height: 20px;
}

.caselisthome .ring span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: rgba(38, 63, 75, 1);
    opacity: 0;
}

/* .caselisthome .xuanzhuan em:nth-of-type(2), */

.caselisthome .ring span:nth-of-type(2) {
    animation-delay: .7s;
}

/* .caselisthome .xuanzhuan em:nth-of-type(3), */

.caselisthome .ring span:nth-of-type(3) {
    animation-delay: 1.4s;
}

/*.caselisthome .ring11 span {
	-webkit-animation: ringscale1 3s linear infinite;
	-moz-animation: ringscale1 3s linear infinite;
	-ms-animation: ringscale1 3s linear infinite;
	animation: ringscale1 3s linear infinite;
}*/

.caselisthome .ring22 span {
    -webkit-animation: ringscale1 1.5s linear infinite;
    -moz-animation: ringscale1 1.5s linear infinite;
    -ms-animation: ringscale1 1.5s linear infinite;
    animation: ringscale1 1.5s linear infinite;
}

.caselisthome .xuanzhuan em {
    /*animation: ringscale1 1.5s linear infinite;*/
}

/*.caselisthome .ring11::after {
	content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	width: 30.6vw;
    height: 30.6vw;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}*/

.caselisthome .ring22::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.caselisthome .ring22 span {
    background-color: rgba(255, 255, 255, .8);
}

.caselisthome .listrlik .active .ring22 span {
    background-color: rgba(38, 63, 75, .8);
}

.caselisthome .listrlik .active .ring22::after {
    background-color: rgba(38, 63, 75, 1);
}

@media (min-width: 961px) {
    .hcase {
        display: flex;
        justify-content: space-between;
        height: 49.5vw;
    }
    .hcase .htoptie {
        padding-left: 64px;
    }
    .hcase .leftr {
        width: 340px;
        flex: 0 0 340px;
        padding-top: 2vw;
    }
    .hcase .rightr {
        flex: 1;
    }
    .hcase .centerinfo {
        width: 130px;
        margin: auto;
        margin-top: 8vw;
    }
    .hcase .stabr .info {
        width: 375px;
        padding-right: 26px;
    }
    .hcase .stabr .gallery img {
        height: 100px;
        width: 134px;
    }
    .hcase .centerinfo .contr {
        margin-top: 26px;
    }
    .caselisthome .linkr .tit {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        top: 0;
        white-space: nowrap;
    }
    .hcase .btnmore {
        margin-top: 2vw;
    }
    .caselisthome,
    .caselisthome .casecloumvx {
        height: 100%;
    }
    .caselisthome .gallery .picrts img {
        width: 28vw;
        height: 28vw;
    }
    /* wai */
    .caselisthome .xuanzhuan em:nth-of-type(1),
    .caselisthome .xuanzhuan i:nth-of-type(1) {
        width: 44.6vw;
        height: 44.6vw;
        margin-top: -22.3vw;
        margin-left: -22.3vw;
    }
    .caselisthome .xuanzhuan em:nth-of-type(2),
    .caselisthome .xuanzhuan i:nth-of-type(2) {
        width: 35.6vw;
        height: 35.6vw;
        margin-top: -17.8vw;
        margin-left: -17.8vw;
    }
    .caselisthome .xuanzhuan em:nth-of-type(3),
    .caselisthome .xuanzhuan i:nth-of-type(3) {
        width: 29vw;
        height: 29vw;
    }
    /* li */
    .caselisthome .xuanzhuan em:nth-of-type(3),
    .caselisthome .xuanzhuan i:nth-of-type(3) {
        margin-top: -14.5vw;
        margin-left: -14.5vw;
    }
    .caselisthome .linkr .pic,
    .caselisthome .linkr .img img {
        width: 20px;
        height: 20px;
    }
    .caselisthome .linkr {
        padding-top: 42px;
    }
    .caselisthome .linkr2 {
        left: 74.7%;
        top: 20.6%;
    }
    .caselisthome .linkr3 {
        left: 77%;
        top: 68%;
    }
    .caselisthome .linkr4 {
        left: 48%;
        top: 11.6%;
    }
    .caselisthome .linkr1 {
        left: 26%;
        top: 17.2%;
    }
    .caselisthome .linkr5 {
        left: 20.4%;
        top: 64.3%;
    }
}

@media (min-width: 1601px) {}

@media (max-width: 1600px) and (min-width: 961px) {}

@media (max-width: 960px) {
    .hcase .leftr,
    .hcase .rightr {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hcase .leftr {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .hcase .rightr {
        padding-top: 20px;
        padding-bottom: 60vw;
    }
    .hcase .stabr .info {
        padding-right: 6px;
    }
    .hcase .btnmore,
    .hcase .centerinfo .contr {
        margin-top: 14px;
    }
    .hcase .centerinfo {
        margin-top: 30px;
    }
    .hcase .stabr {
        bottom: 20px;
    }
    .hcase .stabr .itfotr {
        padding: 0;
        margin: 0;
        border: none;
        width: 150px;
    }
    .hcase .stabr .itfotr .gallery {
        width: 50px;
        flex: 0 0 50px;
    }
    .hcase .stabr .itfotr .jt img {
        height: 16px;
        vertical-align: middle;
    }
    .caselisthome .linkr {
        padding: 0;
    }
    /* .caselisthome .linkr {
		position: relative;
		display: inline-block;
		padding: 0;
		margin-right: 14px;
		margin-top: 10px;
	} */
    .caselisthome .linkr .pic {
        display: none;
    }
    .caselisthome .linkr2 {
        left: 77.7%;
        top: 29.6%;
    }
    .caselisthome .linkr3 {
        left: 72%;
        top: 68%;
    }
    .caselisthome .linkr4 {
        left: 44%;
        top: 4.6%;
    }
    .caselisthome .linkr1 {
        left: 12%;
        top: 17.2%;
    }
    .caselisthome .linkr5 {
        left: 7.4%;
        top: 57.3%;
    }
    /*.caselisthome .gallery .picrts img {
		border-radius: 8px;
	}*/
}

.habout {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
}

.habout .alltitle40 {
    text-align: center;
}

.habout .allcontentwrapper {
    text-align: justify;
    text-indent: 2em;
}

.habout .btnmore {
    margin: auto;
}

@media (min-width: 961px) {
    .habout {
        padding: 6.4vw 0;
    }
    .habout .habout_b {
        max-width: 1130px;
        width: 60%;
        margin: auto;
    }
    .habout .allcontentwrapper {
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 960px) {
    .habout .allcontentwrapper {
        margin-top: 14px;
        margin-bottom: 20px;
    }
}

.hnews,
.hnewstimeswpt .item .info {
    background-color: #EFF3F4;
}

.hnewstimeswpt {
    position: relative;
}

.hnewstimeswpt .item {
    display: block;
    position: relative;
}

.hnewstimeswpt .item .btnmore .link {
    background-color: #C5C5C5;
}

.hnewstimeswpt .item:hover .btnmore .link {
    background-color: #263F4B;
}

.hnewstimeswpt .item:hover .btnmore .link::before {
    left: 0;
}

.hnewstimeswpt .item:hover .btnmore .link::after {
    right: -100%;
}

.hnewstimeswpt .item .gallery {
    position: relative;
    z-index: 2;
}

.hnewstimeswpt .item .gallery img {
    width: 100%;
    object-fit: cover;
    /*opacity: 0;
	filter: alpha(opacity=0);*/
}

.hnewstimeswpt .item {
    background-image: none!important;
}

/*.hnewstimeswpt .item .imore {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}*/

.hnewstimeswpt .swiper-hnews {
    padding: 8px;
    padding-bottom: 14px;
    padding-top: 0;
}

.hnewstimeswpt .item,
.hnewstimeswpt .item .time::after,
.hnewstimeswpt .item .gallery,
.hnewstimeswpt .item .info {
    transition: all .3s;
}

.hnewstimeswpt .item .title,
.hnewstimeswpt .item .desc {
    line-height: 24px;
}

.hnewstimeswpt .item .info {
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 14px 0px rgb(172 172 172 / 25%);
}

.hnewstimeswpt .item .desc {
    margin-top: 10px;
    margin-bottom: 20px;
    /*min-height: 48px;*/
}

.hnewstimeswpt .item .time {
    position: relative;
    padding-top: 16px;
    margin-bottom: 14px;
    text-align: center;
}

.hnewstimeswpt::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 100%;
    border-top: 1px dashed #7D7D7D;
}

.hnewstimeswpt .item .time::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #B5B5B5;
    background-color: #fff;
}

@media (min-width: 768px) {
    .hnewstimeswpt .item {
        width: 90%;
        margin: auto;
    }
}

@media (min-width: 961px) {
    .hproductworld,
    .hnews,
    .hinvestor {
        padding-top: 3.8vw;
        padding-bottom: 6.4vw;
    }
    .hnewstimeswpt {
        margin-top: 5%;
    }
    .hnewstimeswpt .item .info {
        padding: 24px 16px;
    }
    .hnewstimeswpt .item .desc {
        margin-top: 20px;
    }
    .hnewstimeswpt .item .time {
        margin-bottom: 55px;
    }
    .hnewstimeswpt .item:hover .time::after {
        border-color: #263F4B;
        background-color: #263F4B;
    }
    .hnewstimeswpt .item:hover .info {
        box-shadow: 0px 0px 14px 0px rgb(172 172 172 / 25%);
    }
    /*.hnewstimeswpt .item:hover .info {
		color: #fff;
		background-color: rgba(38, 63, 75, .7);
	}*/
    /* .hnewstimeswpt .item:hover .gallery {
		opacity: 0;
	} */
    /*.hnewstimeswpt .item:hover .desc {
		color: rgba(255, 255, 255, .7);
	}*/
}

@media (max-width: 960px) {
    .hnewstimeswpt {
        margin-top: 20px;
    }
    .hnewstimeswpt .item .info {
        padding-top: 10px;
    }
}

.hinvestor {
    background-color: #FAFAFA;
}

.hinvestor .hinbox {
    display: flex;
    justify-content: space-between;
}

.hinvestor .leftr {
    display: flex;
    text-align: center;
}

.hinvestor .leftr .link {
    display: block;
}

.hinvestor .leftr .link .title {
    margin-top: 10px;
}

.hinvestor .relations-h2 .w {
    position: relative;
    padding-bottom: 6px;
}

.hinvestor .relations-h2 .w:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #538EA3;
}

.hinvestor .hgroup,
.hinvestor .it-list {
    display: flex;
}

.hinvestor .hgroup {
    justify-content: space-between;
}

.hinvestor .it-list .its {
    position: relative;
    text-align: center;
}

@media (min-width: 961px) {
    .hinvestor .leftr {
        width: 32%;
        justify-content: space-between;
        margin-top: 50px;
    }
    .hinvestor .rightr {
        width: 53%;
    }
    .hinvestor .it-list {
        justify-content: space-between;
    }
    .hinvestor .it-list {
        margin-top: 40px;
    }
    /* .hinvestor .it-list .its {
		width: 25%;
	} */
}

@media (min-width: 1201px) {
    .hinvestor .it-list .its::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 1px;
        background-color: #476574;
    }
    .hinvestor .it-list .its:nth-child(3):after {
        right: -65%;
    }
    .hinvestor .it-list .its:last-child::after {
        width: 0;
    }
}

@media (max-width: 960px) {
    .hinvestor .hinbox,
    .hinvestor .it-list,
    .hinvestor .leftr {
        flex-wrap: wrap;
    }
    .htoptie .cn {
        margin-top: -14px;
    }
    .habout,
    .hnews,
    .hinvestor {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .habout {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hproductworld {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .hinvestor .leftr,
    .hinvestor .rightr,
    .hproductworld .productlist {
        margin-top: 30px;
    }
    .hinvestor .leftr,
    .hinvestor .rightr {
        width: 100%;
    }
    .hinvestor .it-list {
        padding-top: 10px;
    }
    .hinvestor .it-list .its {
        width: 50%;
        margin-top: 20px;
    }
    .hinvestor .leftr {
        justify-content: space-between;
    }
    .hinvestor .leftr .link .pic img {
        width: 70%;
    }
}

/* .hinvestor .leftr,
.hinvestor .it-list,
.hnews .swiper-slide,
.hcase .centerinfo,
.habout .alltitle40,
.habout .allcontentwrapper,
.habout .btnmore {
	position: relative;
	top: 60px;
	opacity: 0;
} */

/* .hcase .stabr {
	left: 10%;
	opacity: 0;
} */

.titlezong {
    text-align: center;
}

.topnewq .info .word {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.hnewstimeswpt .item .title,
.hnewstimeswpt .item .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* .hproductworld .htoptie .en {
	color: rgba(255, 255, 255, .5);
} */

.caselisthome .linkr,
.hcase .centerinfo .tit,
/* .hproductworld .htoptie .cn, */

.productlist .item .info,
.search_tla .searchbtn {
    color: #fff;
}

.search_tl .tit,
.certificatespro .item .namet,
/* .productdetailintroduction .contentr .allcontentwrapper, */

.topnewq .info .title {
    color: #000;
}

.campus-pop .top-block .infor,
.campus-pop .bot-block .icontent {
    color: #888;
}

.color-blue2 {
    color: #677981;
}

.hcase .centerinfo .contr {
    color: rgba(195, 203, 207, 0.65);
}

.hcase .htoptie .en {
    color: rgba(193, 193, 193, 0.1);
}

.hcase .htoptie .cn {
    color: rgba(185, 185, 185, 0.47);
}

.htoptie .en {
    color: #E1E1E1;
}

.hinvestor .leftr .link,
.hnewstimeswpt .item .desc,
.habout .allcontentwrapper,
.hcase .stabr .info,
.hcase .stabr .word,
.htoptie .cn,
.search_tabresx,
.search_tlb .btr,
.search1_xzc,
.alltitleboxtr .alltitle32,
.careerlistin .item .para,
.careerinwrt .top-block .itfr .para,
.careerinwrt .top-block .itfr .para a,
.productdetailinfot .contentr,
.informationlistinr .item .word,
.informationlistinr .item .time,
.deinfo,
.glassNumber .alltitle32,
.glassNumber .hmx2ns3,
.siteheader .menu>.menu-item>a,
.profileinwrt .rigcontent .allcontentwrapper {
    color: #666;
}

.hinvestor .relations-h2 .w,
.topnewq .info .word {
    color: #333;
}

.searchcolorlist .searchitem .search_tlc_zi .clickchange {
    color: #B9B9B9;
}

.caselisthome .linkr.active,
.searchcolorlist .searchitem .search_tlc_zi .tit,
.searchshowdetail .rightr .shuju,
.search1_bg .titleclick:hover,
.search1_bg .bijiao:hover,
.search1_bg .idelete:hover,
.search_tlb ul li.active,
.titlezong,
.careerlistin .item .inner-tit,
.networkpro .item,
.networkpro .item a,
.productdetaillistinr .itefors .titles,
.announcelistinr .item,
.informationlistinr .item .link:hover .word,
.informationlistinr .item .link:hover .time,
.color-blue,
.eventsinwrt .historyCbox .boxr1,
.glassNumber .hmx2ns1,
.glassNumber .hmx2ns2,
.alltitle24,
.siteheader .menu .sub-menu a:hover,
.siteheader .menu .sub-menu .isforsevents .boxr1 .years,
.siteheader .menu .sub-menu .left .active a,
.topnewq .link:hover .title {
    color: #263F4B;
}

.hinvestor .relations-h2,
.investorbgwone .alltitle24 .w,
.its .percentage {
    color: #538EA3;
}

.hinvestor .hgroup .rmb.up,
.itsred .percentage {
    color: #FF3535;
}

.hinvestor .hgroup .rmb.down,
.itsgreen .percentage {
    color: #009944;
}

@media (min-width: 961px) {
    .hinvestor .leftr .link .pic img {
        min-width: 75px;
    }
    .hnewstimeswpt .item .gallery img {
        height: 17vw;
    }
    .siteheader a:hover,
    .siteheader .menu>.menu-item:hover>a,
    .siteheader .menu>.menu-item.active>a {
        color: #0e88ce;
    }
    .habout .allcontentwrapper,
    .hcase .centerinfo .contr,
    .campus-pop .bot-block .icontent,
    .careerlistin .item .info .para,
    .productdetailinfot .contentr .allcontentwrapper,
    .topnewq .info .word,
    .newslistinr .item .info .word,
    .profileinwrt .rigcontent .allcontentwrapper,
    .eventslistinr .item .content .allcontentwrapper {
        line-height: 2;
    }
    .newslistinr .item .info .word {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
    .careerzhaopin .item:hover,
    .careerzhaopin .item:hover .title {
        color: #fff;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .topnewq .info .word {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 960px) {
    .hnewstimeswpt .item .gallery img {
        height: 55vw;
    }
    .hproductworld .htoptie .en {
        color: #E1E1E1;
    }
    .hproductworld .htoptie .cn {
        color: #666;
    }
}

.alltitle24 {
    line-height: 32px;
    font-size: 24px;
}

.detitle {
    line-height: 24px;
    font-size: 18px;
    text-align: center;
}

.search_tabresx,
.search_tl .tit {
    font-size: 16px;
}

.listeventsin .its {
    font-size: 14px;
}

@media (min-width: 961px) {
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2,
    .glassNumber .hmx2ns3 {
        line-height: 40px;
    }
    .investorlistin .itemzong .percentage {
        font-size: 36px;
    }
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2 {
        font-size: 30px;
    }
    .hinvestor .hgroup .rmb {
        font-size: 26px;
    }
    .hproductworld .productlist .item .info,
    .glassNumber .hmx2ns3 {
        font-size: 24px;
    }
    .glassNumber .alltitle32 {
        line-height: 22px;
        font-size: 18px;
    }
    .caselisthome .linkr,
    .careerlistin .item .inner-tit,
    .announcelistinr .item .date .day {
        font-size: 20px;
    }
    .search_tlc_list .search_tlc_tit .lt,
    .its .percentage,
    .topnewq .info .title,
    .newslistinr .item .info .title,
    .eventsinwrt .thumb-wrapper .historyyrBtn .historyyr {
        font-size: 18px;
    }
    .hnewstimeswpt .item .time,
    .hnewstimeswpt .item .info,
    .search1_xza .search1_tit,
    .searchbanner .search .words,
    .contactlistin .item,
    .campus-pop .bot-block .icontent,
    .campus-pop .top-block .infor,
    .careerinwrt .top-block .para,
    .productdetaillistinr .itefors .titles,
    .productdetailinfot .contentr,
    .siteheader .menu>.menu-item>a,
    .siteheader .lang>a {
        font-size: 16px;
    }
    .sitefooter .menu>.menu-item>a,
    .hinvestor .leftr .link .title {
        font-size: 15px;
    }
    .investorbgwone .onetitle #date,
    .eventslistinr .item .content {
        font-size: 14px;
    }
    .sitefooter .menu>.menu-item>a,
    .sitefooter .menu .sub-menu a:hover,
    .hinvestor .leftr .link:hover .title {
        font-weight: bold;
    }
}

@media (min-width: 1601px) {
    .alltitle40 {
        line-height: 50px;
        font-size: 40px;
    }
    .alltitle36 {
        line-height: 46px;
        font-size: 36px;
    }
    .alltitle32 {
        line-height: 40px;
        font-size: 32px;
    }
    .eventslistinr .item .alltitle32 {
        font-size: 30px;
    }
    .siteheader .menu .sub-menu .isforsevents .boxr1 .years {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 60px;
        font-size: 50px;
    }
    .investorlistin .itemzong .percentage {
        line-height: 60px;
        font-size: 48px;
    }
    .pgtmenu .pgtlayer strong,
    .pgtmenu .pgtdbox strong {
        font-size: 18px;
    }
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2,
    .glassNumber .hmx2ns3 {
        line-height: 50px;
    }
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2 {
        font-size: 44px;
    }
    .productdetaillistinr .itefors .btnclick::after,
    .its .percentage,
    .glassNumber .hmx2ns3 {
        font-size: 34px;
    }
    .investorbgwone .onetitle,
    .glassNumber .alltitle32 {
        line-height: 30px;
        font-size: 24px;
    }
    .eventsinwrt .thumb-wrapper .historyyrBtn .historyyr {
        font-size: 24px;
    }
    .siteheader .menu .sub-menu .left .two,
    .networkpro .item,
    .governancewrt .item .title,
    .siteheader .menu>.menu-item>a,
    .siteheader .lang>a {
        font-size: 18px;
    }
    .informationlistinr .item .title,
    .announcelistinr .item .title,
    .investorlistin .its .listit,
    .topnewq .info .title,
    .newslistinr .item .info .title {
        font-size: 20px;
    }
    .eventsinwrt .historyCbox .boxr1 .years {
        line-height: 80px;
        font-size: 60px;
    }
    .eventsinwrt .historyCbox .boxr2 .listeventsin .its,
    .hinvestor .its .list-tit,
    .eventslistinr .item .content,
    .productlistrin .item .info .title {
        font-size: 18px;
    }
    /* .topnewq .info .time, .newslistinr .item .info .time, */
    .searchshowdetail,
    .hmc4proBtn p,
    .listeventsin .its {
        font-size: 16px;
    }
    .siteheader .menu .sub-menu .listeventsin .its,
    .pgtmenu .pgtlayer p,
    .pgtmenu .pgtdbox p {
        font-size: 14px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .alltitle40 {
        line-height: 40px;
        font-size: 30px;
    }
    .eventsinwrt .historyCbox .boxr1 .years {
        line-height: 80px;
        font-size: 60px;
    }
    .siteheader .menu .sub-menu .isforsevents .boxr1 .years {
        line-height: 50px;
        font-size: 40px;
    }
    .alltitle36 {
        line-height: 36px;
        font-size: 28px;
    }
    .alltitle32 {
        line-height: 30px;
        font-size: 24px;
    }
    .productdetaillistinr .itefors .btnclick::after {
        font-size: 24px;
    }
    .governancewrt .item .title,
    .informationlistinr .item .title,
    .announcelistinr .item .title,
    .pgtmenu .pgtlayer strong,
    .pgtmenu .pgtdbox strong {
        line-height: 22px;
        font-size: 16px;
    }
}

@media (max-width: 1201px) and (min-width: 961px) {}

@media (max-width: 960px) {
    .placealltr {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    /* .siteheader .menu>.menu-item:hover>a, */
    .siteheader .menu>.menu-item>a,
    .siteheader .menu .sub-menu .left a {
        color: rgba(255, 255, 255, .7);
    }
    /* .siteheader a:hover, */
    /* .siteheader .menu>.menu-item:hover>a, */
    .siteheader .menu>.menu-item.active>a,
    /* .siteheader .menu .sub-menu a:hover, */
    .siteheader .menu .sub-menu .left .active a {
        color: #fff;
    }
    .siteheader .iright .menu>.menu-item>a {
        font-size: 15px;
        font-weight: bold;
    }
    .alltitle40 {
        line-height: 24px;
        font-size: 20px;
    }
    .eventsinwrt .historyCbox .boxr1 .years,
    .alltitle36 {
        line-height: 30px;
        font-size: 24px;
    }
    .careerinwrt .top-block .inner-tit,
    .productdetailinfot .contentr .titleall .alltitle24,
    .investorbgwone .onetitle,
    .its .percentage,
    .alltitle32 {
        line-height: 24px;
        font-size: 18px;
    }
    .investorlistin .itemzong .percentage,
    .glassNumber .hmx2ns1,
    .glassNumber .hmx2ns2 {
        font-size: 30px;
    }
    .eventslistinr .item .alltitle32,
    .hinvestor .relations-h2,
    .careerzhaopin .item .title,
    .careerlistin .item .inner-tit,
    .productdetailinfot .contentr .xinxifr .alltitle24 {
        line-height: 24px;
        font-size: 16px;
    }
    .hinvestor .hgroup .rmb,
    .campus-pop .top-block .title,
    .productdetaillistinr .itefors .btnclick::after {
        font-size: 20px;
    }
    .hcase .stabr .word,
    .hproductworld .productlist .item .info,
    .campus-pop .bot-block .icontent,
    .investorlistin .itemzong .alltitle24,
    .glassNumber .glassnumItem .alltitle32 {
        font-size: 14px;
    }
    .campus-pop .top-block .infor,
    .casepro .item .info .desc,
    .certificatespro .item .namet,
    .investorbgwone .onetitle #date,
    .investorlistin .itemzong .infos,
    .investorlistin .its .listit,
    .informationlistinr .item .word,
    .informationlistinr .item .time,
    .deinfo,
    .topnewq .info .word,
    .topnewq .info .time,
    .newslistinr .item .info .word,
    .newslistinr .item .info .time {
        font-size: 12px;
    }
}

@media (max-width: 1901px) and (min-width: 1601px) {
    .pgtmenu .pgtdbox>p {
        font-size: 12px;
    }
}

@media (max-width: 1600px) and (min-width: 961px) {
    .pgtmenu .pgtdbox>p {
        font-size: 12px;
        padding-right: 60px;
    }
}

.diymsg {
    padding: 300px 0;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
}

#searchlist ul.pagination li {
    border-bottom: dashed 1px #ddd;
    padding: 20px 0;
}

#searchlist ul.pagination li p {
    font-size: 12px;
    color: #999;
    line-height: 20px;
    padding-top: 10px;
}

/*分页*/

.diypage {
    text-align: center;
    padding: 5px;
    padding: 50px 0;
}

.diypage ul.pagination {
    width: auto!important;
}

.diypage ul.pagination li {
    display: inline
}

.diypage ul.pagination li a {
    display: inline-block;
    background-color: #F9F9F9;
    border: 0 none;
    border-radius: 6px;
    font-size: 14px;
    margin-left: 5px;
    text-decoration: none;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    border: 1px solid #F9F9F9;
    padding: 0 8px;
    color: #0e88ce
}

.diypage ul.pagination li a:hover {
    background-color: #0e88ce;
    color: #FFF
}

.diypage ul.pagination li a:active {
    background-color: #0e88ce;
    color: #FFF
}

.diypage ul.pagination li.active a {
    background-color: #0e88ce;
    border: 0 none;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    border: 1px solid #0e88ce;
}

.diypage ul.pagination li.disabled a {
    border: #eee 1px solid;
    margin: 2px;
    color: #ddd
}

/*分页*/