@charset "UTF-8";
@import url("../font/bahnschrift/bahnschrift.css");
@import url("https://fonts.font.im/css?family=Trirong:400,500");
@media (prefers-reduced-motion: no-preference) { :root { scroll-behavior: unset; } }
body { --theme-red:#d7132e; --theme-blue:#077dcf; --theme-color:#0061ac; color: #666666; }

.m-scroll::-webkit-scrollbar { /*滚动条整体样式*/ width: 5px; /*高宽分别对应横竖滚动条的尺寸*/ height: 0px; }

.m-scroll::-webkit-scrollbar-thumb { /*滚动条里面小方块*/ border-radius: 5px; box-shadow: inset 0 0 2.5px rgba(0, 0, 0, 0.1); background: var(--theme-red); }

.m-scroll::-webkit-scrollbar-track { /*滚动条里面轨道*/ box-shadow: inset 0 0 2.5px rgba(0, 0, 0, 0.1); border-radius: 5px; background: #ededed; }

/*滚动条样式*/
/*@media screen and (-webkit-min-device-pixel-ratio:0) { ::-webkit-scrollbar { width: 5px; height: 8px; } ::-webkit-scrollbar-track:enabled { background-color: #999999; } ::-webkit-scrollbar-thumb:vertical { background-color: #694c3a; border-radius: 30px;} ::-webkit-scrollbar-thumb:horizontal { background-color: #694c3a; border-radius: 30px;}
}*/
@-webkit-keyframes loader10m { 0% { background-color: rgba(255, 255, 255, 0.2); }
  25% { background-color: rgba(255, 255, 255, 0.2); }
  50% { background-color: white; }
  75% { background-color: rgba(255, 255, 255, 0.2); }
  100% { background-color: rgba(255, 255, 255, 0.2); } }
@keyframes loader10m { 0% { background-color: rgba(255, 255, 255, 0.2); }
  25% { background-color: rgba(255, 255, 255, 0.2); }
  50% { background-color: white; }
  75% { background-color: rgba(255, 255, 255, 0.2); }
  100% { background-color: rgba(255, 255, 255, 0.2); } }
.loader10:before { content: ""; position: absolute; top: 0px; left: -25px; height: 12px; width: 12px; border-radius: 12px; -webkit-animation: loader10g 3s ease-in-out infinite; animation: loader10g 3s ease-in-out infinite; }

a:hover { color: #694c3a; }

.iconfont { font-size: initial; }

.nobg { background: none !important; backdrop-filter: unset !important; }

.bg1 { background-color: #f5f6f8 !important; }

/*自定义分页样式*/
.w-page { margin-bottom: 20px; }
.w-page li.active span { z-index: 3; color: #fff; background-color: var(--theme-red); }
.w-page li.disabled { cursor: no-drop; }
.w-page li.disabled span { color: #6c757d; pointer-events: none; background-color: #eeeeee; }

.pagination { display: -ms-flexbox; display: flex; padding-left: 0; list-style: none; }

.w-page li a, .w-page li span { position: relative; display: block; padding: .5rem .75rem; line-height: 1.25; color: #666; background-color: #e2e2e2; margin: 2px; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.w-page li a:hover, .w-page li span:hover { background-color: #cdcdcd; color: #fff; }

.wrapper { background: #fcfcfc; }

.de-page-mian .page-inner { padding: 1.5rem 0; display: flex; align-items: center; justify-content: center; }
.de-page-mian .page-inner a { position: relative; display: block; padding: .5rem .75rem; line-height: 1.25; color: #666; background-color: #e2e2e2; margin: 2px; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.de-page-mian .page-inner a:hover, .de-page-mian .page-inner a.active { background-color: var(--theme-blue); color: #fff; }
.de-page-mian .page-inner a.prev::after { content: '<'; font-family: "宋体",SimSun; color: CurrentColor; font-weight: bold; }
.de-page-mian .page-inner a.next::after { content: '>'; font-family: "宋体",SimSun; color: CurrentColor; font-weight: bold; }
.de-page-mian .page-inner span, .de-page-mian .page-inner input, .de-page-mian .page-inner a.page-btn { display: none; }

.menu-icon { width: 80px; height: 80px; background-color: var(--theme-color); color: #ffffff; position: relative; cursor: pointer; }
.menu-icon span { position: absolute; width: 40%; height: 2px; color: #FFFFFF; background-color: CurrentColor; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; margin: auto; left: 0; right: 0; top: 0; bottom: 0; }
.menu-icon span::before, .menu-icon span::after { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; position: absolute; content: ''; display: block; width: 100%; height: 2px; background-color: CurrentColor; }
.menu-icon span::before { top: 600%; }
.menu-icon span::after { bottom: 600%; }
.menu-icon.open span { background-color: unset; }
.menu-icon.open span::before { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); top: 0; }
.menu-icon.open span::after { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); bottom: 0; }
@media (max-width: 575.98px) { .menu-icon { position: absolute; right: 0; width: 56px; height: 56px; }
  .menu-icon span::before { top: 500%; }
  .menu-icon span::after { bottom: 500%; } }

.mobile-nav { z-index: 9; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; position: fixed; background-color: #333; width: 100%; height: 100%; top: 0; left: 0; -webkit-transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); -o-transform: translateY(100%); transform: translateY(100%); }
.mobile-nav .nav-wrap { padding: 2.2rem 2rem; }
.mobile-nav dl { margin-bottom: 0; }
.mobile-nav dl.active dt::before { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); }
.mobile-nav dl.active dt::after { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); }
.mobile-nav dt { border-bottom: 1px dashed #4e4e4e; position: relative; padding: .3rem .5rem; }
.mobile-nav dt a { line-height: 2; display: block; width: 80%; margin-right: 2rem; font-weight: normal; }
.mobile-nav dt.has-child::after { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
.mobile-nav dd { display: none; padding-left: 1rem; }
.mobile-nav dd ul { margin-bottom: 0; line-height: 2; margin-top: 5px; list-style: inside circle; color: #fff; }
.mobile-nav dd ul a { font-size: 14px; }
.mobile-nav a { color: #f8f8f8; }

.mobile-nav dt.has-child::before, .mobile-nav dt.has-child::after { content: ''; position: absolute; width: 1rem; height: 0; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; border-bottom: 1px solid #d3d3d3; right: .5rem; margin: auto; top: 0; bottom: 0; }

.open-menu .mobile-nav { -webkit-transform: translate(0); -moz-transform: translate(0); -ms-transform: translate(0); -o-transform: translate(0); transform: translate(0); }

/*@media (min-width: 1680px) { .container{ max-width: 1400px; }
}*/
.ratio-pro { --bs-aspect-ratio: calc(47 / 70 * 100%); --mdb-aspect-ratio: var(--bs-aspect-ratio); }

.ratio-news { --bs-aspect-ratio: calc(29 / 43 * 100%); --mdb-aspect-ratio: var(--bs-aspect-ratio); }

.masonry-grid { width: 100%; columns: 3; column-gap: 20px; }
.masonry-grid .item { -moz-page-break-inside: avoid; -webkit-column-break-inside: avoid; break-inside: avoid; }

.cl-effect-1 a::before, .cl-effect-1 a::after { display: inline-block; opacity: 0; -webkit-transition: -webkit-transform 0.3s, opacity 0.2s; -moz-transition: -moz-transform 0.3s, opacity 0.2s; transition: transform 0.3s, opacity 0.2s; }

.cl-effect-1 a::before { margin-right: 20px; content: '['; -webkit-transform: translateX(20px); -moz-transform: translateX(20px); transform: translateX(20px); }

.cl-effect-1 a::after { margin-left: 20px; content: ']'; -webkit-transform: translateX(-20px); -moz-transform: translateX(-20px); transform: translateX(-20px); }

.cl-effect-1 a:hover::before, .cl-effect-1 a:hover::after, .cl-effect-1 a:focus::before, .cl-effect-1 a:focus::after { opacity: 1; -webkit-transform: translateX(0px); -moz-transform: translateX(0px); transform: translateX(0px); }

.mask { top: 0; display: none; position: fixed; height: 100vh; width: 100vw; background-color: rgba(0, 0, 0, 0.4); z-index: 0; }

.header { position: relative; z-index: 2; }
.header .header-top { position: relative; color: #efefef; font-size: 14px; background: var(--theme-color); width: 100%; }
.header .header-top a { color: #efefef; }
.header .header-top a:hover { color: #FFFFFF; }
.header .header-top .link-oa:hover { color: #ff0; }
.header .header-top .link-oa:hover svg path { fill: #ff0; }
.header .header-mid { position: relative; background: #eeeeee; }
@media (max-width: 575.98px) { .header .header-mid .logo img { height: 48px; } }
.header .header-mid .nav li { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.header .header-mid .nav li > a { display: block; color: #515151; font-weight: bold; font-size: 18px; text-align: center; transition: 0.3s all 0s linear; }
@media (min-width: 1200px) { .header .header-mid .nav li > a { padding: 0 10px; } }
@media (min-width: 1400px) { .header .header-mid .nav li > a { padding: 0 24px; } }
.header .header-mid .nav li .child-item { display: none; position: absolute; top: 99px; z-index: 22; width: 100%; background: rgba(255, 255, 255, 0.3); left: 0; right: 0; margin: auto; }
.header .header-mid .nav li .child-item a { color: #FFFFFF; text-align: center; }
.header .header-mid .nav li .child-item a span.en { font-size: 14px; text-transform: uppercase; }
.header .header-mid .nav li .child-item a:hover { color: #ff0; }
.header .header-mid .nav li.on, .header .header-mid .nav li:hover { background-color: #035cac; }
.header .header-mid .nav li.on > a, .header .header-mid .nav li:hover > a { color: #FFFFFF; }

.banner-swiper { z-index: 1; }
@media (max-width: 992px) { .banner-swiper .swiper-slide { position: relative; overflow: hidden; }
  .banner-swiper .swiper-slide img { width: 160%; max-width: initial; transform: translateX(-20%); }
  .banner-swiper .swiper-slide.swiper-slide-active { z-index: 2; } }

.location-box { background: #fff; border-bottom: 1px solid #ebebeb; width: 100%; }
.location-box .page-crumbs .crumbs-icon svg { width: 20px; height: 20px; display: block; }
.location-box .page-crumbs .crumbs-icon svg path { fill: #999999; }
.location-box .page-crumbs .crumbs-info { margin-left: 5px; color: #666666; }
.location-box .page-crumbs .crumbs-info a { color: #666666; }
.location-box .page-crumbs .crumbs-info a:hover { color: var(--theme-blue); }
.location-box .page-crumbs .crumbs-info .icon-next { position: relative; width: 20px; height: 20px; margin: 0 8px; }
.location-box .page-crumbs .crumbs-info .icon-next::before, .location-box .page-crumbs .crumbs-info .icon-next::after { content: ''; position: absolute; width: 8px; height: 1px; background-color: #666666; margin: auto; top: 0; bottom: 0; left: 0; right: 0; -webkit-transform-origin: right; -moz-transform-origin: right; -ms-transform-origin: right; -o-transform-origin: right; transform-origin: right; }
.location-box .page-crumbs .crumbs-info .icon-next::before { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); }
.location-box .page-crumbs .crumbs-info .icon-next::after { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); }
.location-box .page-crumbs .crumbs-info i.icon { display: inline-block; width: 22px; height: 22px; background-color: #666666; border-radius: 50%; position: relative; margin: 0 10px; }
.location-box .page-crumbs .crumbs-info i.icon svg { width: 16px; height: 16px; position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; }
.location-box .page-crumbs .crumbs-info i.icon svg path { fill: #ffffff; }
.location-box .location-right { font-size: 14px; }
@media (max-width: 992px) { .location-box .location-right { line-height: 2; border-top: 1px solid #EEEEEE; } }
.location-box .location-right a { display: inline-block; }
.location-box .location-right a:hover { color: var(--theme-blue); }

footer.footer { background-color: var(--theme-color); position: relative; z-index: 2; }
footer.footer .footer-top .footer-logo { margin-bottom: 10px; }
footer.footer .footer-top .footer-nav2 dl dt { margin-bottom: 1.5rem; }
@media (max-width: 575.98px) { footer.footer .footer-top .footer-nav2 dl dt { margin-bottom: .5rem; } }
footer.footer .footer-top .footer-nav2 dl dt a { color: #ffffff; display: block; }
footer.footer .footer-top .footer-nav2 dl dd { position: relative; }
footer.footer .footer-top .footer-nav2 dl dd a { z-index: 2; color: #a8a8a9; display: inline-block; font-size: 14px; position: relative; }
footer.footer .footer-top .footer-nav2 dl dd a::after { content: ''; border-bottom: 2px solid rgba(214, 214, 214, 0.3); position: absolute; width: 100%; bottom: 3px; left: 0; -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -ms-transform: scaleX(0); -o-transform: scaleX(0); transform: scaleX(0); -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; -webkit-transform-origin: right center; -moz-transform-origin: right center; -ms-transform-origin: right center; -o-transform-origin: right center; transform-origin: right center; }
footer.footer .footer-top .footer-nav2 dl dd:hover a { color: #bbbbbb; }
footer.footer .footer-top .footer-nav2 dl dd:hover a::after { -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left center; -moz-transform-origin: left center; -ms-transform-origin: left center; -o-transform-origin: left center; transform-origin: left center; }
footer.footer .footer-top .footer-nav2 dl dd.qrcode { width: 110px; text-align: center; }
footer.footer .footer-top .footer-nav { border-top: 1px solid #3381bd; border-bottom: 1px solid #3381bd; text-align: center; padding: .875rem 0; }
footer.footer .footer-top .footer-nav a { display: inline-block; color: #749bc7; font-size: 16px; padding: 0 17px; }
footer.footer .footer-top .footer-nav a:hover { color: #FFFFFF; }
footer.footer .footer-top .footer-contact { text-align: center; color: #FFFFFF; font-size: 14px; line-height: 2; padding: 15px 0; }
footer.footer .footer-top .footer-contact span { display: inline-block; }
footer.footer .footer-top .footer-contact .contact-qrcode .qrcode-item .qrcode-img { width: 90px; height: 90px; }
footer.footer .footer-top .footer-contact .contact-qrcode .contact-telnum { text-align: left; margin-left: 15px; background: #055ca1; border: 1px solid #1a71b4; padding: 18px 60px 17px 20px; color: #fff; font-size: 14px; line-height: 26px; height: 90px; }
footer.footer .footer-top .footer-contact .contact-qrcode .contact-telnum .tel-num { font-weight: bold; font-size: 24px; font-family: arial; }
footer.footer .copyright { font-size: 14px; background: #3c3f49; width: 100%; text-align: center; color: #fff; }
footer.footer .copyright a { color: #FFFFFF; }
footer.footer .copyright a:hover { color: #999999; }
footer.footer .copyright .footer-tel:hover { color: #999999; }

div.footer { position: relative; z-index: 2; background-color: #fff; border-top: 1px solid #dfdfdf; }
div.footer .copyright { color: #999999; font-size: 14px; line-height: 1.8; }
div.footer .footer-tel span { display: inline-block; vertical-align: middle; font-size: 24px; color: #282828; font-weight: 100; display: inline-block; vertical-align: middle; margin-left: 10px; }
div.footer .footer-qrcode .qrcode .qrcode-img { width: 75px; height: 75px; border: 1px solid #eaeaea; }
div.footer .footer-qrcode .qrcode p { padding-top: 5px; font-size: 14px; color: #999999; }

/*首页*/
.index-top { background-color: #006cd1; color: #FFFFFF; }
.index-top .index-hotpro li { flex: 1; }
.index-top .index-hotpro li .item-wrap { position: relative; font-size: 14px; overflow: hidden; }
.index-top .index-hotpro li .item-wrap .item-img { -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; -webkit-transform: translateY(-100%); -moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); transform: translateY(-100%); -webkit-transform-origin: top center; -moz-transform-origin: top center; -ms-transform-origin: top center; -o-transform-origin: top center; transform-origin: top center; overflow: visible; }
.index-top .index-hotpro li .item-wrap .item-img img { display: block; width: 100%; }
.index-top .index-hotpro li .item-wrap .item-overlay { position: absolute; width: 100%; height: 100%; left: 0; top: 0; color: #FFFFFF; }
@media (max-width: 992px) { .index-top .index-hotpro li .item-wrap .item-overlay img { display: none; } }
.index-top .index-hotpro li .item-wrap:hover .item-img { -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); }
.index-top .index-search strong { margin-right: 1rem; font-weight: bold; font-size: 20px; }
.index-top .index-search .form-wrap { flex: 1; }
.index-top .index-search .form-wrap label { color: #8f8f8f; font-size: 14px; border-right: 1px solid #8f8f8f; padding: 0 15px; }
.index-top .index-search .form-wrap .input-txt { border: none; padding: 5px 20px; display: block; flex: 1; }
.index-top .index-search .form-wrap .input-txt:focus { outline: none; }
.index-top .index-search .form-wrap .submit-btn { background-color: #424242; color: #e3e3e3; font-size: 14px; padding: 1.514% 6%; }
.index-top .index-quick-nav .nav-item { flex: 1; font-size: 14px; -webkit-transition: all .5s; -moz-transition: all .5s; -ms-transition: all .5s; -o-transition: all .5s; transition: all .5s; }
.index-top .index-quick-nav .nav-item .item-icon { width: 32px; height: 32px; overflow: hidden; margin: 7px 10px 7px 15px; }
.index-top .index-quick-nav .nav-item .item-icon img { display: block; }
.index-top .index-quick-nav .nav-item:hover { background-color: #424242; color: #FFFFFF; }
.index-top .index-quick-nav .nav-item:hover .box-img { transition: 0.3s all 0s linear; margin-top: -32px; }

.bottom-quick-nav { padding: 1rem 0; }
.bottom-quick-nav .nav-item .item-img { width: 102px; height: 102px; display: block; overflow: hidden; margin: 0 auto; }
@media (max-width: 992px) { .bottom-quick-nav .nav-item .item-img { width: 90px; height: 90px; } }
.bottom-quick-nav .nav-item .item-img img { width: 100%; height: 100%; display: block; }
.bottom-quick-nav .nav-item .item-name { color: #838383; font-size: 24px; font-weight: bold; }
.bottom-quick-nav .nav-item .item-desc { color: #575757; }
.bottom-quick-nav .nav-item:hover .item-img .box-img { position: relative; transition: 0.3s all 0s linear; display: block; margin-top: -100%; }
.bottom-quick-nav .nav-item:hover .item-name { transition: 0.3s all 0s linear; color: var(--mdb-red); }

.fav-link-box { height: 56px; background: #f2f2f2; }
.fav-link-box .label { width: 140px; color: #FFFFFF; font-weight: bold; line-height: 56px; text-align: center; background: #077dcf; font-size: 18px; }
.fav-link-box .box-con a { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.fav-link-box .box-con a:hover { color: var(--theme-blue); }

.index-bottom-nav { background: #f6f6f6; padding: 30px 0; }
.index-bottom-nav dl { text-align: center; }
.index-bottom-nav dl dt { color: #333333; font-size: 18px; font-weight: normal; line-height: 2.2; }
.index-bottom-nav dl dd { margin-bottom: 0; }
.index-bottom-nav dl dd a { line-height: 2; font-size: 14px; color: #999999; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.index-bottom-nav dl dd:hover a { color: #333333; }
.index-bottom-nav dl:hover dt a { color: var(--theme-blue); }

/**/
.index-products .sec-head { color: #282828; }
.index-products .sec-head .head-title { font-size: 32px; }
.index-products .sec-head .head-desc { font-size: 20px; font-weight: 100; }
.index-products .product-lists { border-top: 1px dashed #282828; }

.product-lists .item .item-wrap .item-caption { padding: 2%; text-align: center; }
.product-lists .item .item-wrap .item-title { text-align: center; color: #282828; }
.product-lists .item .item-wrap .item-title .en-title { font-weight: 100; }
.product-lists .item .item-wrap .item-title .cn-title { font-size: 28px; }
.product-lists .item .item-wrap .item-more { display: inline-block; align-self: center; padding: 2.2% 6%; background-color: #282828; color: #ffffff; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; line-height: 1; font-size: 14px; }
.product-lists .item .item-wrap .item-more svg { fill: #ffffff; }
.product-lists .item .item-wrap .item-more:hover { background-color: #694c3a; }

.goods-list .good-item { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.goods-list .good-item .item-info .item-title { font-size: 18px; color: var(--theme-color); line-height: 2; }
.goods-list .good-item .item-info .item-param .param-item { font-size: 14px; }
.goods-list .good-item .item-info .item-param .param-item .label { color: #333333; }
.goods-list .good-item .item-info .item-param .param-item .value { color: #999999; }
.goods-list .good-item:hover { -webkit-box-shadow: 10px 10px 10px 0px #e1e1e1; -moz-box-shadow: 10px 10px 10px 0px #e1e1e1; box-shadow: 10px 10px 10px 0px #e1e1e1; }

.in-box .box-head .head-name { color: #333333; font-size: 36px; }
@media (max-width: 1199.98px) { .in-box .box-head .head-name { font-size: 32px; } }
@media (max-width: 575.98px) { .in-box .box-head .head-name { font-size: 22px; } }

.index-contact-box { border: 1px solid #f2f2f2; padding: 0; text-align: center; }
.index-contact-box .item:nth-child(1) { border-bottom: 1px solid #f2f2f2; }

.news-swiper .item .item-img { overflow: hidden; }
.news-swiper .item .item-img img { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.news-swiper .item .item-title { -webkit-transition: color .3s; -moz-transition: color .3s; -ms-transition: color .3s; -o-transition: color .3s; transition: color .3s; color: #000; font-weight: bold; font-size: 16px; line-height: 2; }
.news-swiper .item .item-desc { color: #585858; font-size: 14px; line-height: 26px; }
.news-swiper .item:hover .item-img img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); }
.news-swiper .item:hover .item-title { color: var(--theme-color); }
.news-swiper .item:hover .item-desc { color: #555555; }

.news-mormal-list .news-item { padding: 1.3% 0; }
.news-mormal-list .news-item .news-title { -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; position: relative; flex: 0 0 calc(100% - 100px); }
.news-mormal-list .news-item .news-title::before { content: ''; width: 3px; height: 3px; background-color: CurrentColor; border-radius: 50%; margin-right: 5px; display: inline-block; vertical-align: middle; }
.news-mormal-list .news-item .news-time { color: #999999; font-size: 14px; }
.news-mormal-list .news-item:hover { background-color: #f7f7f7; }
.news-mormal-list .news-item:hover .news-title { color: var(--theme-color); -webkit-transform: translateX(5px); -moz-transform: translateX(5px); -ms-transform: translateX(5px); -o-transform: translateX(5px); transform: translateX(5px); }

.news-list .item .item-wrap .item-img { overflow: hidden; border-radius: 3px; }
.news-list .item .item-wrap .item-img img { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.news-list .item .item-wrap .item-img:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); }
.news-list .item .item-wrap .item-caption .item-time { color: #8a8a8a; font-size: 14px; }
.news-list .item .item-wrap .item-caption .item-title { line-height: 2; font-size: 24px; }
.news-list .item .item-wrap .item-caption .item-desc { font-size: 14px; color: #999999; line-height: 2; }
.news-list .item .item-wrap .item-caption .item-more span.en-title { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; color: #333333; position: relative; }
.news-list .item .item-wrap .item-caption .item-more span.en-title::after { content: ''; display: block; width: 100%; height: 2px; background-color: rgba(0, 0, 0, 0.2); position: absolute; left: 0; bottom: 30%; z-index: 0; -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -ms-transform: scaleX(0); -o-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: left; -moz-transform-origin: left; -ms-transform-origin: left; -o-transform-origin: left; transform-origin: left; }
.news-list .item .item-wrap:hover .item-caption .item-more span.en-title { letter-spacing: 1px; }
.news-list .item .item-wrap:hover .item-caption .item-more span.en-title::after { -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); }

.index-about::before { content: ''; height: 8px; display: block; width: 100%; background: #f2f2f2; }
.index-about .about-head .about-title { color: #6e6e6e; font-size: 36px; }
.index-about .about-head .about-brief { color: #d5d5d5; font-size: 24px; font-weight: bold; padding-left: 30px; }
@media (max-width: 575.98px) { .index-about .about-head .about-brief { font-size: 16px; color: #999999; } }
@media (max-width: 1199.98px) { .index-about .about-head .about-brief { font-size: 22px; } }
.index-about .about-content { line-height: 30px; }

.indexSwitchNav .switchLeft { height: 100%; }
.indexSwitchNav .switchLeft li { flex: 1; }
.indexSwitchNav .switchLeft li .item-info { width: 100%; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; background-color: #f; color: #FFFFFF; }
.indexSwitchNav .switchLeft li .item-info p { line-height: 2; font-size: 14px; }
.indexSwitchNav .switchLeft li .item-info .line { width: 35px; height: 3px; background: #fff; margin: 5px auto 0; }
.indexSwitchNav .switchLeft li .con { display: none; width: 0; -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -ms-transform: scaleX(0); -o-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: left center; -moz-transform-origin: left center; -ms-transform-origin: left center; -o-transform-origin: left center; transform-origin: left center; overflow: hidden; }
.indexSwitchNav .switchLeft li .con img { width: 0; }
.indexSwitchNav .switchLeft li:nth-child(1) .item-info { background: #cdcdcd; }
.indexSwitchNav .switchLeft li:nth-child(2) .item-info { background: #a5a5a5; }
.indexSwitchNav .switchLeft li:nth-child(3) .item-info { background: #919191; }
.indexSwitchNav .switchLeft li:nth-child(4) .item-info { background: #777777; }
@media (min-width: 1400px) { .indexSwitchNav .switchLeft li { flex: 0 auto; }
  .indexSwitchNav .switchLeft li .item-info { width: 130px; }
  .indexSwitchNav .switchLeft li .con { display: block; }
  .indexSwitchNav .switchLeft li.hover { flex: 1; }
  .indexSwitchNav .switchLeft li.hover .item-info { background-color: var(--theme-color); }
  .indexSwitchNav .switchLeft li.hover .con { -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); width: auto; }
  .indexSwitchNav .switchLeft li.hover .con img { width: 110%; } }

.switchHistory .info { max-width: 70%; font-size: 14px; }
@media (max-width: 575.98px) { .switchHistory .info { max-width: 60%; } }
.switchHistory .icon-zone .icon { width: 45px; height: 45px; margin: 0 auto; }
.switchHistory .icon-zone .icon img { max-width: 100%; }
.switchHistory .icon-zone p { font-size: 14px; color: #FFFFFF; line-height: 2; text-align: center; }
.switchHistory .icon-zone .line { width: 35px; height: 3px; background: #fff; margin: 5px auto 0; }

.pro-txt-list .list-box .label { font-size: 24px; color: #565656; font-weight: bold; }
.pro-txt-list .list-box .con a { font-size: 14px; color: #666666; -webkit-transition: color .3s; -moz-transition: color .3s; -ms-transition: color .3s; -o-transition: color .3s; transition: color .3s; }
.pro-txt-list .list-box .con a:hover { color: var(--theme-blue); }

.goods-page .pro-category-list .pro-cate-item { overflow: hidden; }
.goods-page .pro-category-list .pro-cate-item .item-info { padding-right: 20%; }
.goods-page .pro-category-list .pro-cate-item .item-info .name { color: #333333; font-size: 48px; position: relative; }
.goods-page .pro-category-list .pro-cate-item .item-info .name::after { color: var(--theme-blue); position: absolute; top: 0; left: 0; content: attr(title); display: block; width: 100%; height: 55%; overflow: hidden; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.goods-page .pro-category-list .pro-cate-item .item-info .brief { color: #585858; font-size: 18px; }
.goods-page .pro-category-list .pro-cate-item .item-info .desc { color: #a3a3a3; line-height: 2; font-size: 14px; }
.goods-page .pro-category-list .pro-cate-item .item-info .tel { font-size: 14px; color: var(--mdb-red); }
.goods-page .pro-category-list .pro-cate-item .item-info .more { color: #000; margin-top: 10px; background: url("../Image/cpmore.jpg") no-repeat right center; padding-right: 45px; height: 38px; line-height: 38px; float: left; transition: all 0.3s linear 0s; font-size: 14px; }
.goods-page .pro-category-list .pro-cate-item .flex-row-reverse .item-info { padding-left: 20%; padding-right: 0; align-items: end; text-align: right; }
.goods-page .pro-category-list .pro-cate-item .flex-row-reverse .item-img img { position: absolute; right: 0; }
.goods-page .pro-category-list .pro-cate-item:hover .item-info:hover .name::after { height: 100%; }
.goods-page .pro-category-list .pro-cate-item:hover .item-info:hover .more { background-position: 130px center; background-color: #d80000; padding: 0 20px; }
.goods-page .pro-category-list .pro-cate-item:hover .item-info:hover .more a { color: #FFFFFF; }
.goods-page .pro-category-list .pro-cate-item:hover .item-img img { /*-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);*/ }
.goods-page .category-nav .item-wrap { padding: 8% 6%; }
.goods-page .category-nav .item-wrap .item-name { font-size: 32px; line-height: 1; color: #ffffff; }
@media (max-width: 575.95px) { .goods-page .category-nav .item-wrap .item-name { font-size: 22px; } }
.goods-page .category-nav .item-wrap .item-en-name { color: #ffffff; opacity: .5; font-size: 18px; text-transform: uppercase; }
.goods-page .category-nav .item-wrap .item-more { color: #ffffff; border-bottom: 1px solid #ffffff; display: inline-block; text-transform: uppercase; }
.goods-page .product-list .item .item-wrap .item-caption { padding: 2%; padding-bottom: 8%; text-align: center; }
.goods-page .product-list .item .item-wrap .item-title { text-align: center; color: #282828; }
.goods-page .product-list .item .item-wrap .item-title .cn-title { font-size: 28px; }
.goods-page .product-list .item .item-wrap .item-desc { color: #666666; }
.goods-page .product-list .item .item-wrap .item-more { display: inline-block; align-self: center; padding: 2% 6%; background-color: #282828; color: #ffffff; }
.goods-page .product-list .item .item-wrap .item-more svg { fill: #ffffff; }
.goods-page .goods-top .goods-summary .goods-title { color: #006cd1; text-align: left; font-weight: bold; font-size: 36px; }
.goods-page .goods-top .goods-summary .goods-keywords, .goods-page .goods-top .goods-summary .goods-tags { color: var(--theme-color); line-height: 2; }
.goods-page .goods-top .goods-summary .goods-category a { display: inline-block; border: 1px solid #EEEEEE; padding: .6rem 3.2rem; background-color: #fefefe; border-radius: 5px; }
.goods-page .goods-top .goods-summary .goods-category a:first-child { margin-right: 1rem; }
.goods-page .goods-top .goods-summary .goods-contact .qrcode-img { width: 120px; height: 120px; }
.goods-page .goods-top .goods-summary .goods-contact .qrcode-img img { max-width: 100%; max-height: 100%; }
.goods-page .goods-top .goods-summary .goods-contact .qrcode-inf p:nth-child(1) { font-size: 18px; color: #333333; line-height: 42px; }
@media (min-width: 1200px) { .goods-page .goods-top .goods-summary .goods-contact .qrcode-inf p:nth-child(2) { width: 70%; } }
.goods-page .goods-bottom img { max-width: 100%; }
.goods-page .detail-box .box-head .head-name { color: #333; font-size: 18px; line-height: 2; font-weight: bold; }

.product-list-2 .item .item-wrap { text-align: center; -webkit-transition: all .5s; -moz-transition: all .5s; -ms-transition: all .5s; -o-transition: all .5s; transition: all .5s; }
.product-list-2 .item .item-wrap .item-img { padding: 5%; padding-bottom: 0; }
.product-list-2 .item .item-wrap .item-title { -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; line-height: 46px; }
.product-list-2 .item:hover .item-wrap { -webkit-transform: scale(1.02); -moz-transform: scale(1.02); -ms-transform: scale(1.02); -o-transform: scale(1.02); transform: scale(1.02); -webkit-box-shadow: 8px 8px 20px #e6e6e6; -moz-box-shadow: 8px 8px 20px #e6e6e6; box-shadow: 8px 8px 20px #e6e6e6; }
.product-list-2 .item:hover .item-wrap .item-title { /*background-color: var(--theme-blue);
color: #FFFFFF;*/ color: var(--theme-color); }

.section .sec-head { text-align: center; }
.section .sec-head .head-title { color: #727272; font-size: 48px; }
.section .sec-head .head-en { line-height: 1; color: #ebebeb; font-family: arial; font-size: 60px; text-transform: uppercase; }
.section .sec-head .head-desc { color: #dadada; font-size: 14px; }
@media (max-width: 575.98px) { .section .sec-head .head-title { font-size: 36px; }
  .section .sec-head .head-en { font-size: 30px; } }

.news-page, .-page { background: #fcfcfc; }
.news-page .news-masonry-list .item .item-wrap, .-page .news-masonry-list .item .item-wrap { overflow: hidden; background: #fff; border-bottom: 3px solid #e0e9f1; padding: 20px; line-height: 30px; -webkit-transition: all .2s linear 0s; -moz-transition: all .2s linear 0s; -ms-transition: all .2s linear 0s; -o-transition: all .2s linear 0s; transition: all .2s linear 0s; }
.news-page .news-masonry-list .item .item-wrap .item-img, .-page .news-masonry-list .item .item-wrap .item-img { margin-bottom: 10px; overflow: hidden; }
.news-page .news-masonry-list .item .item-wrap .item-img img.img, .-page .news-masonry-list .item .item-wrap .item-img img.img { -webkit-transition: all 1s linear 0s; -moz-transition: all 1s linear 0s; -ms-transition: all 1s linear 0s; -o-transition: all 1s linear 0s; transition: all 1s linear 0s; }
.news-page .news-masonry-list .item .item-wrap .item-title, .-page .news-masonry-list .item .item-wrap .item-title { font-size: 16px; color: #333333; }
.news-page .news-masonry-list .item .item-wrap .item-desc, .-page .news-masonry-list .item .item-wrap .item-desc { color: #ccc; line-height: 30px; padding: 10px 0; font-size: 14px; }
.news-page .news-masonry-list .item .item-wrap .item-time, .-page .news-masonry-list .item .item-wrap .item-time { font-size: 16px; padding-left: 10px; color: #a3a3a3; float: left; margin-top: 5px; }
.news-page .news-masonry-list .item .item-wrap:hover, .-page .news-masonry-list .item .item-wrap:hover { background-color: #035cac; }
.news-page .news-masonry-list .item .item-wrap:hover .item-title, .-page .news-masonry-list .item .item-wrap:hover .item-title { color: #ff0; }
.news-page .news-masonry-list .item .item-wrap:hover .item-img .img, .-page .news-masonry-list .item .item-wrap:hover .item-img .img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.news-page .news-list-2 .news-item:nth-child(1), .-page .news-list-2 .news-item:nth-child(1) { padding-top: 0 !important; }
.news-page .news-list-2 .news-item .item-info .item-time, .-page .news-list-2 .news-item .item-info .item-time { font-size: 16px; color: #666666; }
.news-page .news-list-2 .news-item .item-info .item-title, .-page .news-list-2 .news-item .item-info .item-title { font-size: 24px; color: #333333; }
@media (max-width: 992px) { .news-page .news-list-2 .news-item .item-info .item-title, .-page .news-list-2 .news-item .item-info .item-title { font-size: 20px; } }
.news-page .news-list-2 .news-item .item-info .item-desc, .-page .news-list-2 .news-item .item-info .item-desc { color: #666666; line-height: 2; }
.news-page .news-list-2 .news-item .item-info .item-more a, .-page .news-list-2 .news-item .item-info .item-more a { display: inline-block; position: relative; color: #5f6061; }
.news-page .news-list-2 .news-item .item-info .item-more a:hover, .-page .news-list-2 .news-item .item-info .item-more a:hover { color: #333333; }
.news-page .news-list-2 .news-item .item-info .item-more a::after, .-page .news-list-2 .news-item .item-info .item-more a::after { content: ''; display: block; width: 100%; height: 1px; background-color: #909192; }
.news-page .news-detail-container .news-title, .-page .news-detail-container .news-title { color: #333333; line-height: 2; font-size: 24px; }
.news-page .news-detail-container .news-meta, .-page .news-detail-container .news-meta { font-size: 14px; color: #999999; }
.news-page .news-detail-container .detail-content, .-page .news-detail-container .detail-content { line-height: 2.2; color: #666666; font-size: 14px; border-bottom: 1px solid #eeeeee; }
.news-page .news-detail-container .detail-content img, .-page .news-detail-container .detail-content img { max-width: 100%; display: block; margin: 10px auto; }
.news-page .news-detail-container .prev-next .page-a, .-page .news-detail-container .prev-next .page-a { font-size: 14px; line-height: 2; }
@media (min-width: 992px) { .news-page .news-detail-container .prev-next .page-a, .-page .news-detail-container .prev-next .page-a { flex: 0 auto; max-width: 50%; } }

/*----about start----*/
@media (min-width: 1400px) { .container-narrow { max-width: 1200px; } }

/*----about end----*/
.image-list .item .item-wrap { position: relative; }
.image-list .item .item-wrap .item-img { overflow: hidden; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.image-list .item .item-wrap .item-img img { -webkit-transition: transform .3s; -moz-transition: transform .3s; -ms-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; }
.image-list .item .item-wrap .item-title { background-color: rgba(0, 88, 170, 0.17); position: absolute; left: 0; bottom: 0; color: #FFFFFF; right: 0; }
.image-list .item:hover .item-wrap .item-img { -webkit-box-shadow: 5px 5px 0px #b5b5b5, 10px 10px 0px #d8d8d8; -moz-box-shadow: 5px 5px 0px #b5b5b5, 10px 10px 0px #d8d8d8; box-shadow: 5px 5px 0px #b5b5b5, 10px 10px 0px #d8d8d8; }
.image-list .item:hover .item-wrap .item-img img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.02); }

/*contact page*/
.contact-way .item .item-icon { width: 72px; height: 72px; display: block; overflow: hidden; margin: 0 auto; }
.contact-way .item .item-icon img { width: 100%; height: 100%; display: block; }
.contact-way .item .item-con { line-height: 2; font-size: 14px; }
.contact-way .item:hover .box-img { position: relative; transition: 0.3s all 0s linear; display: block; margin-top: -100%; }

.message-box .submit { background-color: #e71e14; display: inline-block; color: #fff; padding: .7rem 3.5rem; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.message-box .submit:hover { -webkit-box-shadow: 5px 5px 0px #b9130a; -moz-box-shadow: 5px 5px 0px #b9130a; box-shadow: 5px 5px 0px #b9130a; }

.mapcontainer { height: 50vh; }

.profile-param .item .item-num { color: #fc7d1a; font-size: 72px; font-weight: bold; }
.profile-param .item .item-num span { font-size: 14px; color: #999999; }
.profile-param .item:not(:last-child) { border-right: 1px solid #EEEEEE; }

.detail-content img, .section-con img { max-width: 100%; }

.history-content h3 { background-color: #f3f3f3; margin: 1.2rem 0; }
.history-content h3 > strong { display: inline-block; padding: .5rem 2rem; background-color: var(--theme-blue); color: #FFFFFF; font-size: 24px; }
.history-content h3 ~ p { margin-bottom: .5rem; }
.history-content h3 ~ p > strong { display: inline-block; padding: 0 .5rem; color: var(--theme-blue); }

/*job*/
.info-link { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; position: relative; cursor: pointer; background-color: #ececec; color: #666666; padding: .7% 6% .7% 2%; position: relative; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; font-size: 14px; }
@media (max-width: 575.98px) { .info-link { padding-right: 10%; padding-top: 1%; padding-bottom: 1%; } }
.info-link i { display: block; width: 0; position: absolute; height: 1px; top: 9px; right: 25%; margin: auto; bottom: 0; color: #333333; z-index: 3; background-color: CurrentColor; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.info-link i::before, .info-link i::after { content: ''; display: block; width: 10px; height: 1px; background-color: CurrentColor; position: absolute; margin: auto; }
.info-link i::before { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); -webkit-transform-origin: right; -moz-transform-origin: right; -ms-transform-origin: right; -o-transform-origin: right; transform-origin: right; }
.info-link i::after { -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); -webkit-transform-origin: right; -moz-transform-origin: right; -ms-transform-origin: right; -o-transform-origin: right; transform-origin: right; }
.info-link:hover { color: #FFFFFF; background-color: var(--theme-blue); }
.info-link:hover i { color: #FFFFFF; }

.joblist-box .job-item { background-color: #ffffff; }
.joblist-box .job-item .item-wrap .item-left { flex: 0 auto; width: 30%; height: 100%; }
@media (min-width: 1440px) { .joblist-box .job-item .item-wrap .item-left { width: 20%; } }
.joblist-box .job-item .item-wrap .item-left .item-name { font-size: 18px; text-align: center; }
.joblist-box .job-item .item-wrap .item-info { flex: 1; position: relative; border-left: 2px solid #f5f6fa; }
@media (max-width: 757.98px) { .joblist-box .job-item .item-wrap .item-info { border-top: 2px solid #f5f6fa; border-left: none; } }
.joblist-box .job-item .item-wrap .item-info .info-detail { font-size: 14px; flex: 1; }
.joblist-box .job-item .item-wrap .item-info .info-detail p { flex: 1; color: #666666; line-height: 2; }
.joblist-box .job-item .item-wrap .item-info .info-detail p span { color: #333333; }
@media (max-width: 575.98px) { .joblist-box .job-item .item-wrap .item-info .info-detail p { font-size: 14px; } }
.joblist-box .job-item .item-content { border-top: 2px solid #f5f6fa; padding: 4%; line-height: 2; font-size: 14px; color: #666666; display: none; }
.joblist-box .job-item .item-content strong { font-size: 16px; font-weight: normal; line-height: 32px; margin: 5px 0; display: block; color: #333333; }
.joblist-box .job-item .item-content .seek-btn { display: block; margin: 30px auto 0; width: 130px; height: 40px; background-color: #ececec; color: #333333; text-align: center; line-height: 40px; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; }
.joblist-box .job-item .item-content .seek-btn:hover { color: #FFFFFF; background-color: #e23833; }
.joblist-box .job-item.active .item-info .info-link, .joblist-box .job-item:hover .item-info .info-link { color: #FFFFFF; background-color: var(--theme-blue); }
.joblist-box .job-item.active .item-info .info-link i, .joblist-box .job-item:hover .item-info .info-link i { color: #FFFFFF; }
.joblist-box .job-item.active .item-info .info-link i { bottom: 15px; }
.joblist-box .job-item.active .item-info .info-link i::before { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); }
.joblist-box .job-item.active .item-info .info-link i::after { -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); }
