@charset "utf-8";
@import url(language.css);

:root {
    --color: #257dff;
    --fontcolor: #696969;
    --fontbold3: 300;
    --fontbold4: 400;
    --fontbold5: 500;
    --fontbold6: 600;
    --fontbold7: 700
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
form,
object,
iframe,
blockquote,
pre,
a,
abbr,
address,
code,
img,
fieldset,
form,
label,
figure {
    margin: 0px;
    padding: 0px
}

body,
html,
input,
button,
textarea {
    color: var(--fontcolor);
    font: 14px/1.8 Arial, Tahoma, simsun, Verdana, Helvetica, sans-serif
}

html,
body {
    -moz-text-size-adjust: none
}

html,
body {
    width: 100%;
    position: relative
}

html {
    overflow-x: hidden
}

body {
    padding-top: 70px !important
}

h2 {
    font-size: 20px
}

h3 {
    font-size: 16px
}

h4,
h5 {
    font-size: 14px
}

img {
    border: medium none;
    vertical-align: middle
}

li {
    list-style: outside none none
}

i,
em {
    font-style: normal
}

a {
    color: rgb(105, 105, 105);
    text-decoration: none
}

a:focus {
    outline: medium none
}

a:hover {
    color: rgb(12, 127, 233);
    text-decoration: none
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer
}

input[type="button"],
input[type="reset"],
input[type="submit"],
select,
button,
textarea {
    border-radius: 0px;
    outline: 0px none
}

input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    border: medium none;
    padding: 0px
}

input[type="text"] {
    border-radius: 0px;
    outline: 0px none
}

:-moz-placeholder {
    color: rgb(153, 153, 153)
}

*::-moz-placeholder {
    color: rgb(153, 153, 153)
}

.head-layout {
    max-width: 1200px;
    margin: 0px auto;
    position: relative
}

#xyz {
    right: 0px
}

.clearfix {
    clear: both
}

.clearfix::after,
.head-layout::after,
.floor-layout::after,
.layout::after,
.head-layout::after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden
}

.fadeIn {
    animation-name: fadeIn
}

.fadeInLeft {
    animation-name: fadeInLeft
}

.fadeInRight {
    animation-name: fadeInRight
}

.fadeInUp {
    animation-name: fadeInUp
}

.header {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 0px;
    background-color: var(--color);
    z-index: 9999;
    transition: all 0.4s ease 0s;
    min-width: 1100px
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    cursor: pointer;
    position: relative;
    z-index: 10001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* 移动端导航菜单 */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.mobile-nav-content {
    position: relative;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #EEEEEE;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--fontcolor);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.mobile-active {
    color: var(--color);
    background-color: #F5F5F5;
}

.mobile-nav-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #999;
}

.mobile-nav-item.active .mobile-nav-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #F9F9F9;
}

.mobile-nav-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--fontcolor);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #EEEEEE;
}

.mobile-submenu-link:hover {
    color: var(--color);
    background-color: #F0F0F0;
}

/* PC端导航显示，移动端隐藏 */
.pc-nav {
    display: block;
}

.head-nav.pc-nav {
    display: block;
}

/* 移动端响应式样式 */
@media screen and (max-width: 1024px) {
    .header {
        min-width: auto;
    }

    /* 隐藏PC端导航 */
    .pc-nav,
    .head-nav.pc-nav,
    .header .head-nav,
    .header .head-nav.pc-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* 显示移动端菜单按钮 */
    .mobile-menu-toggle {
        display: block !important;
    }

    .header .logo {
        padding: 15px 0px;
    }

    .header .logo img {
        height: 40px;
    }
}

.header .logo {
    display: inline;
    float: left;
    padding: 10px 0px
}

.header .logo a {
    display: block
}

.header .logo img {
    height: 50px
}

.head-nav {
    display: inline;
    float: right;
    line-height: 70px;
    position: relative
}

.head-nav,
.head-nav a {
    color: rgb(255, 255, 255)
}

.head-nav li {
    float: left;
    font-size: 16px;
    margin-left: 3px;
    position: relative
}

.head-nav li a {
    display: inline-block;
    padding: 0px 15px;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease 0s
}

.head-nav li a:hover {
    text-decoration: none;
    opacity: 1
}

.head-nav li a::before {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 50%;
    top: 0px;
    opacity: 0;
    transition: all 0.3s ease 0s
}

.head-nav li a.inmenu_1 {
    color: #05285b
}

.head-nav li.current a::before,
.head-nav li.active a::before {
    width: 100%;
    left: 0px;
    opacity: 1
}

.head-nav li:last-child a {
    padding-right: 0px
}

.submenu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0px;
    width: 200%;
    background-color: rgba(0, 0, 0, .8)
}

.dropdown:hover .submenu {
    display: block
}

.submenu li {
    width: 100%;
    height: auto;
    line-height: 1.4
}

.submenu li a {
    display: block;
    padding: 8px 5%;
    font-size: 12px;
    color: #FFF;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden
}

.footer {
    width: 100%;
    margin-top: 20px;
    background-color: #333333;
    overflow: hidden
}

.bottom {
    width: 1200px;
    margin: 0px auto;
    padding: 50px 0 40px;
    overflow: hidden
}

.bottom .btit {
    font-size: 22px;
    color: #FFF;
    margin-bottom: 20px
}

.bottom ul li {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 150%;
    margin-bottom: 5px
}

.bottom ul li span {
    display: inline-block
}

.bottom ul li a {
    display: block;
    color: #ccc
}

.bottom ul li a:hover {
    color: #FFF
}

.bt_contact {
    float: left;
    width: 360px;
    margin-right: 20px
}

.bt_nav {
    float: left;
    width: 292px;
    margin-right: 20px
}

.bt_cate {
    float: left;
    width: 292px;
    margin-right: 20px
}

.erweima {
    float: right;
    width: 192px
}

.erweima img {
    width: 100%
}

.copyright {
    width: 100%;
    height: 50px;
    /* background-color: #222; */
    font-size: 14px;
    color: #FFF;
    text-align: center;
    line-height: 50px;
    overflow: hidden
}

.inbanner {
    width: 100%;
    overflow: hidden
}

.inbanner img {
    display: block;
    width: 100%;
    min-width: 1200px;
    margin: 0px auto
}

.container {
    width: 1200px;
    margin: 0px auto
}

.container:before {
    display: table;
    content: " "
}

.seat {
    padding: 10px 0px 10px 34px;
    background: url(../images/location.png) no-repeat 0 center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    overflow: hidden
}

.seat a {
    font-size: 14px;
    color: #333333;
    margin: 0px 4px
}

.seat a:hover {
    color: var(--color)
}

.category {
    float: left;
    width: 294px;
    margin-bottom: 20px
}

.catetit {
    width: 100%;
    height: 46px;
    font-size: 20px;
    color: #FFF;
    text-align: center;
    line-height: 46px;
    background-color: var(--color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-transform: capitalize
}

.category ul.sf-menu {
    width: 100%;
    background-color: #333333;
    margin-bottom: 20px
}

.category ul.sf-menu li {
    padding: 8px 11%;
    background: url(../images/add.png) no-repeat 12px 19px;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #444
}

.category ul.sf-menu li a {
    display: block;
    color: #FFF;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer
}

.category ul.sub-menu {
    display: none;
    width: 100%;
    padding-bottom: 10px
}

.category ul.sub-menu li {
    padding: 8px 5%;
    background: url(../images/minus.png) no-repeat 0 11px;
    font-size: 12px;
    line-height: 1.4;
    border-bottom: none
}

.category ul.sub-menu li a {
    display: block;
    color: #CCCCCC;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer
}

.category ul.sub-menu li a:hover {
    text-decoration: underline
}

.category ul.sf-menu li:hover ul.sub-menu {
    display: block
}

.search {
    width: 290px;
    height: 40px;
    border: 2px solid var(--color);
    border-radius: 5px;
    margin-top: 40px
}

.search-txt {
    float: left;
    width: 71%;
    height: 38px;
    line-height: 38px;
    text-indent: 1em;
    color: #999;
    border: none;
    outline: none
}

.search-click {
    float: right;
    width: 28%;
    height: 40px;
    font-size: 16px;
    background-color: var(--color);
    color: #FFF;
    border-radius: 3px;
    border: none;
    outline: none;
    cursor: pointer
}

.pages {
    clear: both;
    text-align: center;
    font-size: 12px;
    padding: 15px 0px 20px 0px;
    color: #b2b2b2;
    margin: 40px 0px
}

.pages a,
.pages span {
    display: inline-block;
    margin: 1px 5px;
    min-width: 10px;
    height: 30px;
    padding: 0px 10px;
    line-height: 30px
}

.pages a:link,
.pages a:visited {
    color: #666666;
    background: #FFF
}

.pages a:hover,
.pages a:active,
.pages span.ctxt {
    color: #FFF;
    background: var(--color);
    color: #FFF;
    text-decoration: none
}

.floor-inner {
    height: 100%;
    vertical-align: bottom
}

.floor-layout {
    width: 1100px;
    margin: 0px auto;
    padding: 98px 0px 50px;
    position: relative
}

.floor-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0px 0 0.5em;
    line-height: 130%
}

.intxt {
    line-height: 2.2em;
    text-align: center;
    margin: 0px auto 5em
}

a {
    transition: color 0.3s ease-in-out 0s
}

#banner {
    clear: both;
    background: #FFF;
    width: 100%;
    min-width: 1200px;
    margin: 0px auto
}

.slider_img {
    display: block;
    text-align: center;
    height: 100%
}

.slider_img img {
    margin: 0px auto;
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: middle
}

.wmuSlider {
    height: 100% !important;
    position: relative;
    overflow: hidden
}

.bbdd {
    z-index: 2;
    position: absolute;
    bottom: 2%;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: center
}

.bbdd li {
    margin: 0px 8px 20px 0px;
    list-style-type: none;
    display: inline-block
}

.bbdd a {
    display: inline-block;
    text-indent: -9999px;
    width: 112px;
    height: 3px;
    background-color: var(--color);
    overflow: hidden
}

.bbdd a.wmuActive {
    background-color: #FFF
}

.wmuSliderPrev,
.wmuSliderNext {
    width: 70px;
    height: 70px;
    line-height: 99em;
    overflow: hidden;
    margin: -35px 0px 0px;
    display: block;
    background: url(../images/lr.png) no-repeat;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .3s ease;
    border-radius: 35px
}

.wmuSliderNext {
    background-position: -48px 0px;
    right: 120px
}

.wmuSliderPrev {
    left: 120px
}

.wmuSlider:hover .wmuSliderNext {
    opacity: 0.8;
    filter: alpha(opacity=25)
}

.wmuSlider:hover .wmuSliderPrev {
    opacity: 0.8;
    filter: alpha(opacity=25)
}

.wmuSlider:hover .wmuSliderNext:hover,
.wmuSlider:hover .wmuSliderPrev:hover {
    opacity: 1;
    filter: alpha(opacity=50)
}

.bannerinner {
    width: 100%;
    height: 286px;
    overflow: hidden
}

.index-about {
    width: 100%;
    overflow: hidden
}

.index-about ul {
    overflow: hidden
}

.index-about ul li {
    float: left;
    width: 248px;
    margin-right: 36px;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #333333
}

.index-about ul li:nth-child(4n) {
    margin-right: 0px
}

.index-about ul li a {
    display: block;
    width: 246px;
    height: 246px;
    border: 3px solid #cfcfcf;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden
}

.index-about ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    border-radius: 50%
}

.index-case {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5
}

.index-case ul {
    overflow: hidden
}

.index-case ul li {
    float: left;
    width: 33.3333%
}

.index-case ul li a {
    display: block;
    margin: 10px;
    height: 280px;
    position: relative;
    overflow: hidden
}

.index-case ul li a img {
    max-width: 100%;
    max-height: 280px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto
}

.index-case ul li a span {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: rgb(255, 255, 255);
    font-size: 14px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 9;
    transition: all 0.4s ease-in-out 0s
}

.index-case ul li a:hover>span {
    height: 60%;
    padding: 40% 0px 0px;
    font-size: 18px
}

.index-show {
    width: 100%;
    overflow: hidden
}

.demo {
    width: 1100px;
    height: 550px;
    font-size: 14px;
    position: relative
}

.demo a.control {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -78px;
    width: 76px;
    height: 112px;
    cursor: pointer;
    z-index: 2;
    background: url(../images/buttons.png) no-repeat
}

.demo a.prev {
    left: 0px;
    background-position: 0 0
}

.demo a.next {
    right: 0px;
    background-position: -76px 0px
}

.demo a.prev:hover {
    background-position: 0 -112px
}

.demo a.next:hover {
    background-position: -76px -112px
}

.slider {
    display: none
}

.desc {
    line-height: 1em
}

.index-partner {
    width: 100%;
    background-color: #1c5f97;
    padding-bottom: 60px;
    overflow: hidden
}

.index-partner h2,
.index-partner p {
    color: #FFF
}

.partner-list {
    width: 100%;
    position: relative
}

.partner-list ul {
    padding: 0px
}

.partner-list li {
    width: 33.3333%;
    float: left
}

.partner-list li .partner-item {
    display: block;
    position: relative;
    background-color: rgb(255, 255, 255);
    transition: all 0.3s ease 0s;
    outline-offset: 0px;
    outline: 1px solid transparent;
    overflow: hidden;
    margin: 6px
}

.partner-list li .partner-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out 0s
}

.partner-list li:hover .partner-item {
    outline-color: rgb(77, 174, 230);
    outline-offset: 5px
}

.partner-list li:hover .partner-item img {
    transform: scale(1.1)
}

.index-news {
    width: 100%;
    padding: 0px 0px 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%)
}

.news-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin: 0 auto 50px;
    max-width: 600px;
    line-height: 1.6
}

.floor-news-list {
    width: 100%;
    margin-top: 40px
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px
}

.news-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.news-item:hover .news-image {
    transform: scale(1.1)
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease
}

.news-item:hover .news-overlay {
    opacity: 1
}

.news-content {
    padding: 24px
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
    transition: color 0.3s ease
}

.news-item:hover .news-title {
    color: var(--color, #257dff)
}

.news-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0
}

.news-date {
    font-size: 13px;
    color: #999
}

.news-readmore {
    font-size: 13px;
    color: var(--color, #257dff);
    font-weight: 500;
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.3s ease
}

.news-item:hover .news-readmore {
    opacity: 1;
    transform: translateX(3px)
}

.news-list-simple {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06)
}

.news-list-simple ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.news-list-simple li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e8e8e8
}

.news-list-simple li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.news-list-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    padding: 8px 0
}

.news-list-link:hover {
    color: var(--color, #257dff);
    padding-left: 8px
}

.news-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color, #257dff);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.3s ease
}

.news-list-link:hover .news-dot {
    opacity: 1;
    transform: scale(1.3)
}

.news-list-title {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px
}

.news-list-date {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
    font-family: Arial
}

.floor-news-more {
    text-align: center;
    margin-top: 50px
}

.news-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: var(--color, #257dff);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 125, 255, 0.3);
    letter-spacing: 0.5px
}

.news-more-btn:hover {
    background: #1a6ae6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 125, 255, 0.4);
    color: #fff
}

.news-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-style: normal
}

.news-more-btn:hover .news-arrow {
    transform: translateX(5px)
}

@media(max-width:1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media(max-width:768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .news-image-wrapper {
        height: 200px
    }

    .news-content {
        padding: 20px
    }

    .news-list-simple {
        padding: 20px
    }
}

.index-contact {
    width: 100%;
    height: 800px;
    background-color: yellow;
    overflow: hidden
}

.floor-foot {
    background: rgb(29, 43, 58) url('../images/floor_foot_bg.jpg') repeat-x scroll center bottom;
    text-align: center;
    position: relative
}

.floor-foot,
.floor-foot a {
    color: rgb(255, 255, 255)
}

.floor-foot .floor-hd {
    padding: 0px 0px 30px
}

.floor-foot .floor-hd,
.floor-foot .floor-hd .floor-title,
.floor-foot .floor-hd .floor-title a {
    color: rgb(255, 255, 255)
}

.floor-foot .floor-hd .floor-title {
    font-size: 24px
}

.floor-foot .foot-contact-info {
    font-size: 20px;
    line-height: 2.4em;
    padding: 40px 0px 0px
}

.floor-foot .foot-contact-btn {
    padding-top: 30px
}

.floor-foot .foot-qrcode {
    margin: 60px 0px 0px;
    padding: 0px 0px 30px
}

.floor-foot .foot-qrcode dt {
    display: block
}

.floor-foot .foot-qrcode dt {
    margin: 0px auto;
    border: 3px solid rgb(0, 73, 120);
    border-radius: 4px;
    width: 170px;
    box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.2)
}

.floor-foot .foot-qrcode dt img {
    width: 100%;
    border-radius: 4px;
    display: block
}

.floor-foot .foot-qrcode dd {
    display: block;
    font-size: 14px;
    padding: 8px 0px 0px
}

.floor-foot {
    overflow: hidden
}

.floor-foot::before {
    background: rgba(255, 255, 255, 0.4) none repeat scroll 0% 0%;
    content: "";
    height: 150%;
    left: -30%;
    position: absolute;
    top: -15%;
    transform: rotate(45deg);
    width: 80px;
    z-index: 2;
    animation: 3s linear 0s normal forwards infinite running lightLine
}


#fp-nav {
    display: inline;
    position: fixed;
    left: 50px;
    top: 30%;
    z-index: 1001
}

#fp-nav li {
    padding: 11px 0px;
    position: relative
}

#fp-nav li a {
    display: block;
    width: 14px;
    height: 14px;
    background-image: url('../images/page_nav_dots.png');
    background-repeat: no-repeat;
    background-position: 0px -36px
}

#fp-nav li a.floor-active,
#fp-nav li.floor-active a {
    background-position: 0px 0px
}

#fp-nav li a.floor-active+.fp-tooltip,
#fp-nav li.floor-active a+.fp-tooltip {
    opacity: 0.9;
    transform: translateX(0px)
}

#fp-nav li .fp-tooltip {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
    line-height: 20px;
    color: rgb(221, 221, 221);
    white-space: nowrap;
    transform: translateX(-8px);
    transition: all 0.3s ease-in-out 0s;
    opacity: 0
}

#fp-nav li .fp-tooltip::before {
    content: "...";
    font-weight: bold;
    padding: 0px 4px 0px 0px;
    font-size: 14px;
    vertical-align: middle;
    position: relative;
    top: -5px;
    letter-spacing: 1px
}

#fp-nav li:hover .fp-tooltip {
    opacity: 0.6;
    transform: translateX(0px)
}

#fp-nav li:first-child::before {
    content: "";
    display: none
}

.about {
    float: right;
    width: 878px;
    margin-bottom: 20px;
    overflow: hidden
}

.about h2 {
    font-size: 28px;
    color: var(--color);
    padding-bottom: 15px
}

.about p {
    width: 100%;
    font-size: 14px;
    color: #333333;
    line-height: 180%;
    table-layout: fixed;
    word-wrap: break-word;
    word-break: normal;
    text-align: justify;
    text-justify: inter-ideograph
}



.container:after {
    content: '';
    display: block;
    visibility: hidden;
    height: 0px;
    clear: both
}

.news_main {
    float: right;
    width: 878px;
    margin-bottom: 20px;
    overflow: hidden
}

.newscontent {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden
}

.newscontent h1 {
    line-height: 1.4;
    width: 100%;
    margin: 0px auto;
    font-size: 28px;
    padding-bottom: 15px;
    color: #333333;
    border-bottom: 2px solid var(--color)
}

.newscontent .ncdate {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #666666;
    padding: 20px 0px
}

.newscontent p {
    width: 100%;
    font-size: 15px;
    color: #333333;
    line-height: 180%
}

.flip {
    width: 100%;
    color: #333333;
    font-size: 16px;
    margin: 20px 0px;
    zoom: 1
}

.flip a {
    color: var(--color);
    text-decoration: underline;
    padding-bottom: 4px;
    margin-left: 8px
}

.flip a:hover {
    text-decoration: none
}

.flip .prev {
    margin-bottom: 10px
}

.relatednews {
    width: 100%;
    overflow: hidden
}

.relatednews h2 {
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
    margin: 20px 0px 10px
}

.relatednews ul {
    overflow: hidden
}

.relatednews ul li {
    width: 48%;
    height: 32px;
    border-bottom: 1px dashed #EEE
}

.relatednews ul li:nth-child(odd) {
    float: left
}

.relatednews ul li:nth-child(even) {
    float: right
}

.relatednews ul li a {
    display: block;
    font-size: 14px;
    color: #666666;
    line-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.relatednews ul li a:hover {
    color: var(--color)
}

.proCateTags {
    clear: both;
    padding: 0px 10px 8px 10px;
    margin: 0px 10px;
    border: 1px solid #EEE;
    border-radius: 5px
}

.proCateTagsh3 {
    font-size: 14px;
    line-height: 32px;
    margin: 0px;
    padding: 0px
}

.keywords {
    margin: 12px auto
}

.keywords a {
    margin-right: 10px;
    color: #2e66b5;
    line-height: 1.8;
    text-decoration: underline;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis
}

.keywords a:hover {
    text-decoration: none
}

.plist {
    float: left
}

.product_main {
    float: right;
    width: 878px;
    margin-bottom: 20px;
    overflow: hidden
}

.product_main h1 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px
}

.proIntro {
    clear: both;
    margin: 10px auto 30px;
    padding: 0px;
    line-height: 1.6;
    color: #999
}

.pro_lb0 {
    width: 100%;
    overflow: hidden
}

.pro_lb0 ul {
    width: 100%;
    overflow: hidden
}

.pro_lb0 ul li {
    width: 96%;
    padding: 10px 2%;
    border-bottom: 1px solid #EEE;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden
}

.pro_lb0 ul li .proimg {
    float: left;
    width: 26.5%
}

.pro_lb0 ul li .proimg a {
    display: block;
    padding: 10px 0px
}

.pro_lb0 ul li .proimg a img {
    width: 100%
}

.pro_lb0 ul li dl {
    float: right;
    width: 71%;
    padding-top: 15px;
    overflow: hidden
}

.pro_lb0 ul li dl dt {
    font-size: 16px;
    color: #333333;
    line-height: 150%;
    margin-bottom: 10px;
    overflow: hidden
}

.pro_lb0 ul li dl dt a {
    display: block;
    color: #333333
}

.pro_lb0 ul li dl dt a:hover {
    color: var(--color)
}

.pro_lb0 ul li dl dd {
    font-size: 12px;
    color: #999;
    line-height: 150%;
    margin-bottom: 10px;
    overflow: hidden
}

.pro_lb1 {
    width: 100%;
    overflow: hidden
}

.pro_lb1 ul {
    width: 100%;
    overflow: hidden
}

.pro_lb1 ul li {
    float: left;
    width: 31.2%;
    margin-right: 2.4%;
    padding: 10px 0px;
    margin-bottom: 20px;
    border: 2px solid var(--color);
    border-radius: 3px
}

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

.pro_lb1 dl {
    width: 90%;
    margin: 0px auto;
    font-size: 12px;
    line-height: 150%;
    overflow: hidden
}

.pro_lb1 dt {
    padding-bottom: 15px
}

.pro_lb1 dt a {
    display: block;
    width: 100%;
    height: 260px;
    position: relative;
    margin: 0px auto
}

.pro_lb1 dt a img {
    max-width: 100%;
    max-height: 260px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto
}

.pro_lb1 dd {
    height: 48px;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 10px;
    overflow: hidden
}

.pro_lb1 dd a {
    display: block;
    color: #0f0f0f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.pro_lb1 dd a:hover {
    color: var(--color)
}

.pro_more {
    display: block;
    width: 160px;
    height: 36px;
    font-size: 18px;
    color: #FFF;
    line-height: 36px;
    text-align: center;
    margin-top: 30px
}

.mmo {
    background-color: var(--color);
    vertical-align: middle;
    display: inline-block;
    position: relative;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0);
    transform: translateZ(0px);
    transition-property: color;
    transition-duration: 0.5s;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-property: color;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden
}

.mmo::before {
    background-color: #192634;
    transform-origin: 0% 50%;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    z-index: -1;
    content: "";
    transform: scaleX(0);
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-property: transform;
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: 0 50%
}

.mmo:hover {
    color: white;
    text-decoration: underline
}

.mmo:hover::before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transform: scaleX(1)
}

.pro-body {
    border: 1px solid #EEE;
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 5px
}

.table {
    border-collapse: collapse
}

.table td,
.table th {
    border: 1px solid #cdcdcd;
    padding: 5px
}

.table p {
    padding: 0px;
    margin: 0px
}

.pshare {
    float: left;
    padding: 8px 0px 0px 0px
}

.pshareli {
    float: left;
    width: 48%;
    height: 28px;
    line-height: 28px
}

.pshare li img {
    vertical-align: middle;
    margin-right: 12px
}

.jsshare {
    text-align: center;
    padding-top: 8px
}

.jsshare span.stxt {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    padding: 0px 8px 0px 0px;
    position: relative
}

.jsshare a,
.jsshare a img {
    width: 35px;
    vertical-align: middle
}

.addthis_sharing_toolbox {
    display: inline-block
}

span.at-icon-wrapper,
.at-icon-wrapper svg {
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important
}

.procont_main {
    float: right;
    width: 878px;
    margin-bottom: 20px
}

.productshow {
    width: 100%
}

.pcon_l {
    float: left;
    width: 380px
}

.pcon_r {
    float: right;
    width: 478px
}

.pcon_r h1 {
    font-size: 28px;
    font-weight: var(--fontbold6);
    color: #333333;
    line-height: 1.4;
    padding-top: 15px;
    border-top: 1px solid #E4E2E2;
    margin-bottom: 20px
}

.pcon_r p {
    font-size: 14px;
    color: #666666;
    line-height: 180%
}

.pconmore {
    width: 200px;
    height: 47px;
    font-size: 18px;
    line-height: 47px;
    text-align: center;
    display: block;
    color: #FFF;
    margin-top: 43px
}

.mmv {
    background-color: var(--color);
    vertical-align: middle;
    display: inline-block;
    position: relative;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0);
    transform: translateZ(0px);
    transition-property: color;
    transition-duration: 0.5s;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-property: color;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden
}

.mmv::before {
    background-color: #192634;
    transform-origin: 0% 50%;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    z-index: -1;
    content: "";
    transform: scaleX(0);
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-property: transform;
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: 0 50%
}

.mmv:hover {
    color: white;
    text-decoration: underline
}

.mmv:hover::before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transform: scaleX(1)
}

.proinfo {
    width: 100%;
    padding-top: 40px;
    overflow: hidden
}

.proinfo h3 {
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    margin-bottom: 20px;
    background: #f3efec;
    color: #333333;
    font-size: 18px
}

.proinfo,
.proinfo p {
    font-size: 15px;
    color: #666666;
    line-height: 180%
}

.productsTags {
    margin-top: 20px
}

.rollPro1 {
    width: 100%;
    margin: 10px auto;
    overflow: hidden
}

.rollPro1 li {
    width: 30%;
    float: left;
    margin-right: 5%;
    text-align: center
}

.rollPro1 li:nth-of-type(3) {
    margin-right: 0%
}

.rollPro1 li:nth-of-type(6) {
    margin-right: 0%
}

.rollPro1 li:nth-of-type(9) {
    margin-right: 0%
}

.rollPro1 li:nth-of-type(12) {
    margin-right: 0%
}

.rollPro1 li .pbox {
    border: 1px solid #EEE;
    padding: 4px;
    height: 150px
}

.rollPro1 li .pbox img {
    max-width: 100%;
    max-height: 150px
}

.rollPro1 li p {
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    margin: 10px auto
}

.pdown1 #A_DownLoadProduct {
    display: inline-block;
    clear: both;
    height: 32px;
    margin: 16px 0px 0px 0px;
    line-height: 32px;
    background: url(../images/down1_2.webp) right top no-repeat;
    padding-right: 50px
}

.pdown1 #A_DownLoadProduct span {
    display: inline-block;
    height: 32px;
    background: url(../images/down1_1.webp)no-repeat;
    padding: 0px 0 0 16px
}

.pdown2 #A_DownLoadProduct,
.pdown3 #A_DownLoadProduct,
.pdown4 #A_DownLoadProduct {
    display: inline-block;
    clear: both;
    height: 45px;
    margin: 16px 0px 0px 0px;
    line-height: 45px;
    padding-right: 45px
}

.pdown2 #A_DownLoadProduct span,
.pdown3 #A_DownLoadProduct span,
.pdown4 #A_DownLoadProduct span {
    display: inline-block;
    height: 45px;
    background: url(../images/down2_1.webp)no-repeat;
    padding: 0px 12px 0 16px
}

.pdown2 #A_DownLoadProduct {
    background: url(../images/down2_2.webp) right top no-repeat
}

.pdown3 #A_DownLoadProduct {
    background: url(../images/down2_3.webp) right top no-repeat
}

.pdown4 #A_DownLoadProduct {
    background: url(../images/down2_4.webp) right top no-repeat
}

.head-nav:not(.pc-nav) {
    display: flex;
    justify-content: space-between
}

#xyz * {
    box-sizing: border-box
}

#xyz {
    position: relative;
    z-index: 99999;
    width: 120px;
    height: 27px;
    line-height: 27px;
    margin-left: 20px;
    top: 20px
}

.xyz12 {
    width: 100%;
    background: #448df9;
    position: absolute
}

.xyz12 li {
    margin-left: 0px;
    width: 100%;
    position: relative;
    height: 100%;
    padding: 0px 8px;
    z-index: 1;
    text-align: left
}

.xyz12 li a {
    color: #FFF;
    font-size: 12px;
    padding: 0px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.xyz12 li.selected {
    border-top: 0px
}

.xyz12 li.selected a {
    color: #8550d9
}

.xyz12 span {
    position: absolute;
    right: 6px;
    top: 0px;
    background: url(../images/amore.png) center no-repeat;
    display: block;
    width: 27px;
    height: 27px;
    cursor: pointer;
    z-index: 100
}

.xyz12 span.dp {
    background: url(../images/amore1.png) center no-repeat
}

.xyz12 li img {
    vertical-align: middle;
    margin: -2px 7px 0px 0px
}

.xyz12 li:hover {
    background: #F2F2F2
}

.xyz12 li:hover a {
    color: #333333
}

.foot-navlist li {
    display: inline-block;
    line-height: 46px
}

.foot-navlist li a {
    font-size: 18px;
    display: inline-block;
    padding: 0px 15px
}

.foot-navlist {
    padding-bottom: 10px;
    border-bottom: 1px solid #CCC;
    margin-bottom: 20px
}

.floor-foot {
    background-size: cover
}

.proinfo a,
.proinfo p,
.proinfo td,
.proinfo {
    color: #333333
}

.ptit {
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    margin-bottom: 20px;
    background: #f3efec;
    color: #333333;
    font-size: 18px
}

.news li.flex {
    background: #f7f7f7;
    transition: all .3s;
    margin-bottom: 42px;
    display: flex;
    height: auto
}

.news li.flex .news-img {
    padding: 2.33% 1.33%;
    display: block;
    width: 16.667%
}

.news li.flex .news-img img {
    width: 100%;
    object-fit: contain;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.news li.flex .news-text {
    margin-left: 3.5%;
    width: 80%
}

.news li.flex .new-title {
    font-size: 1.25rem;
    color: #373737;
    display: block;
    font-weight: var(--fontbold6);
    padding-bottom: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%
}

.news li.flex .news-intro {
    line-height: 1.6;
    font-size: .9375rem;
    color: #909093
}

.news li.flex .news-date {
    margin-left: auto;
    padding-right: 4%;
    flex: 0 0 auto;
    display: none
}

.news li.flex .news-date .m-d {
    font-size: 1.75rem;
    color: #909093;
    white-space: nowrap
}

.news li.flex .news-date .y {
    font-size: .875rem;
    color: #909093;
    padding-bottom: 10px;
    white-space: nowrap
}

.news li.flex .news-detail {
    border-radius: 50%;
    height: 36px;
    width: 36px;
    box-sizing: border-box;
    border: 1px solid #cacaca;
    display: block;
    line-height: 36px;
    text-align: center
}

.news ul li.flex:hover {
    box-shadow: 5px 5px 15px #e5e5e5
}

.news ul li.flex:hover .news-img {
    background: #034d7e
}

.news ul li.flex:hover .new-title {
    color: #034d7e
}

.news ul li.flex:hover .news-detail {
    border-color: #034d7e;
    background: #034d7e
}

#tags:after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
    height: 0px
}

#tags li {
    margin-bottom: 10px;
    float: left
}

#tags li a {
    text-decoration: none;
    display: block;
    line-height: 40px;
    padding: 0px 18px;
    margin-right: 8px;
    background: #efefef;
    color: #222;
    font-size: 18px
}

ul#tags li.selectTag a {
    color: #FFF;
    background: var(--color)
}

.tagContent {
    display: none;
    width: 100%;
    color: #333333;
    padding-top: 10px;
    font-size: 14px;
    line-height: 28px
}

#tagContent div.selectTag {
    display: block
}

h4.cate-h4,
h4.pro-h4 {
    clear: both;
    font-weight: bold
}

ul.cate-ulli,
ul.pro-ulli {
    clear: both;
    padding: 10px 0px 10px 20px
}

ul.cate-ulli li,
ul.pro-ulli li {
    list-style-type: disc;
    line-height: 1.7
}

ol.cate-ulli,
ol.pro-ulli {
    clear: both;
    padding: 10px 0px 10px 30px
}

ol.cate-ulli li,
ol.pro-ulli li {
    list-style-type: decimal;
    line-height: 1.7
}

.prohome-content {
    clear: both;
    margin: 20px auto;
    padding: 0px;
    line-height: 1.6;
    box-sizing: border-box;
    max-width: 1350px
}

.prolist-content {
    clear: both;
    margin: 0px auto;
    padding: 0px;
    line-height: 1.6;
    box-sizing: border-box
}

.prolist-content .kche-wrap-width {
    padding-left: 0px !important;
    padding-right: 0px !important
}

.prolist-bottom {
    clear: both;
    margin: 20px auto;
    padding: 0px;
    line-height: 1.6;
    box-sizing: border-box;
    max-width: 1350px
}

.prolist-bottom a {
    text-decoration: underline
}

.prolist-bottom a:hover {
    color: var(--color)
}

.ck-widget-toc {
    display: table;
    border: 1px solid #A2A9B1;
    background-color: #F8F9FA;
    padding: 10px 20px 10px 10px;
    font-size: 95%;
    margin: 15px 0px;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc ol {
    padding: 0px 0px 0px 30px;
    counter-reset: item
}

.ck-widget-toc ol li {
    display: block;
    position: relative;
    list-style: none
}

.ck-widget-toc ol li:before {
    content: counters(item, ".");
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 10px
}

.ck-widget-toc-title {
    text-align: left;
    font-weight: var(--fontbold7);
    margin: 0px 0px 5px 0px;
    padding: 0px 0px 0px 5px
}

.ck-widget-pt {
    padding-top: 100px;
    margin-top: -100px
}

.ck-widget-toc1 {
    display: table;
    border: 1px solid #A2A9B1;
    background-color: #F8F9FA;
    padding: 10px 20px 10px 10px;
    font-size: 95%;
    margin: 15px 0px;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc1 ol {
    padding: 0px 0px 0px 30px;
    counter-reset: item
}

.ck-widget-toc1 ol li {
    display: block;
    position: relative;
    list-style: none
}

.ck-widget-toc1 ol li:before {
    content: counters(item, ".");
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 10px
}

article.blogcontent {
    clear: both;
    margin: 0px auto 40px;
    padding: 0px
}

article.blogcontent h2 {
    margin: 20px 0px 0px 0px;
    font-size: 24px;
    line-height: 1.3
}

article.blogcontent h3 {
    margin: 20px 0px 0px 0px;
    font-size: 22px;
    line-height: 1.3
}

article.blogcontent h4 {
    margin: 20px 0px 0px 0px;
    font-size: 20px;
    line-height: 1.3
}

article.blogcontent h5 {
    margin: 20px 0px 0px 0px;
    font-size: 18px;
    line-height: 1.3
}

article.blogcontent img {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    max-width: 49%;
    margin-right: 1%;
    border: solid 1px #EEEEEE;
    vertical-align: top
}

article.blogcontent p {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    line-height: 1.6
}

article.blogcontent p a {
    color: var(--color)
}

article.blogcontent p a:hover {
    text-decoration: underline
}

article.blogcontent ul {
    margin: 0px;
    padding: 5px 0px 0px 20px
}

article.blogcontent ul li {
    margin: 0px 0px 5px 0px;
    list-style-type: disc
}

.sidebar-item * {
    box-sizing: border-box
}

.sidebar-item {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 40px;
    position: relative
}

.sidebar-item.sidebar-search {
    background: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 20px 15px
}

.email-subscription {
    display: flex;
    flex-direction: column;
    width: 100%
}

.email-subscription input {
    font-size: 13px;
    width: 100%;
    outline: 0;
    border: 1px solid #CCCCCC;
    height: 40px;
    border-radius: 0;
    padding: 0 10px;
    transition: all .1s linear
}

.email-subscription button {
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    height: 40px;
    background: var(--color);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .1s linear
}

.company-intro {
    border: none
}

.company-intro p {
    padding: 10px 0 0;
    font-size: 14px
}

.sidebar-item .sidebar-list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

.sidebar-item .sidebar-list .item:hover .img img {
    transform: scale(1.02)
}

.sidebar-item .sidebar-list .item:hover .info .title {
    color: var(--color)
}

.sidebar-item .sidebar-list .item .img {
    width: 100px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    overflow: hidden
}

.sidebar-item .sidebar-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .1s linear
}

.sidebar-item .sidebar-list .item .info {
    flex: 1;
    padding-left: 15px
}

.sidebar-item .sidebar-list .item .info .title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    transition: all .1s linear
}

.sidebar-item .sidebar-list .item .info .more {
    margin-top: 8px;
    text-transform: capitalize;
    color: var(--color);
    font-size: 14px;
    padding: 0;
    border: none;
    line-height: 1.4
}

.blogflex {
    display: flex;
    align-items: flex-start;
    padding: 20px 15px;
    border: none;
    background: #f7f7f7
}

.blogflex .blogflex-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #EEEEEE;
    overflow: hidden
}

.blogflex .blogflex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blogflex .blogflex-info {
    flex: 1;
    padding-left: 10px
}

.blogflex .blogflex-info .blogflex-name {
    color: #333333;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700
}

.blogflex .blogflex-info .blogflex-content {
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 30;
    overflow: hidden
}

.search {
    display: flex
}

.lang {
    z-index: 99999;
    text-align: left;
    position: relative;
    margin-left: 10px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.lang-icon {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    font-size: var(--fontsize16, 16px);
    user-select: none;
    white-space: nowrap
}

.lang-icon span {
    position: relative;
    padding-right: 18px;
    color: var(--headercolor, #fff);
    margin-left: 8px;
    font-size: var(--fontsize14, 14px);
    opacity: 0.7;
}

.lang-icon span::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--headercolor, #fff);
    transform: rotate(50deg)
}

.lang-icon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--headercolor, #fff);
    transform: rotate(-50deg)
}

.lang-drop {
    position: absolute;
    top: calc(100% + 26px);
    right: 50%;
    transform: translateX(50%);
    background: #FFFFFF;
    border: 1px solid #EBEEF5;
    border-radius: 4px;
    box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, .1);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, top .3s
}

.lang-drop.lang-flex {
    transform: translateX(20%)
}

.lang-drop.active {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 7px)
}

.lang-arrow {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-top: 1px solid #EBEEF5;
    border-left: 1px solid #EBEEF5;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: -6px;
    left: 50%
}

.lang-drop.lang-flex .lang-arrow {
    left: 80%
}

.lang-wrap {
    list-style: none;
    width: 140px;
    padding: 8px 0px;
    box-sizing: border-box
}

.lang-flex .lang-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 8px
}

.lang-wrap li {
    width: 100%;
    box-sizing: border-box;
    transition: background-color .3s;
    margin: 0;
}

.lang-flex .lang-wrap li {
    width: 33.3333%
}

.lang-wrap li.lang-active,
.lang-wrap li:hover {
    background-color: #EEEEEE
}

.lang-wrap li a {
    display: block;
    color: var(--fontcolor, #333);
    font-size: var(--fontsize12, 12px);
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box;
}

.lang-wrap li img {
    display: inline-block;
    width: 24px;
    height: 16px;
    vertical-align: -.25em;
    margin-right: 4px
}

@media(max-width:1024px) {
    .lang {
        transition: all .2s linear
    }

    .lang-icon img {
        width: 32px;
        height: auto;
    }

    .lang-icon span {
        display: none
    }

    .lang-drop {
        display: none
    }

    .lang-drop.active {
        display: block;
        top: calc(100% + 12px)
    }
}

.share-btn-list {
    margin-top: 10px;
}

/* advantages (floor-5) */
.index-advantages {
    width: 100%;
    padding: 20px 0 60px;
    position: relative;
    background: url('../images/server-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed
}

.index-advantages::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* keep content above the overlay */
.index-advantages .floor-layout {
    color: #fff !important;
    z-index: 1;
    position: relative
}

.adv-list {
    width: 100%;
    margin-top: 36px
}

.adv-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.adv-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease
}

.adv-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12)
}

.adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--color, #257dff) 0%, #5aa3ff 100%);
    margin-bottom: 16px
}

.adv-icon i {
    font-size: 28px
}

.adv-title {
    font-size: 18px;
    color: #222;
    font-weight: 700;
    margin: 6px 0 8px
}

.adv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8
}

@media(max-width:1200px) {
    .adv-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .adv-grid {
        grid-template-columns: 1fr
    }

    .adv-item {
        padding: 22px
    }

    .adv-icon {
        width: 56px;
        height: 56px
    }

    .adv-icon i {
        font-size: 24px
    }
}