body, h1, h2, h3, h4, h5, h6 {
    font-family:"Roboto", Arial, "Microsoft YaHei", sans-serif;
}
header {
    /*height: 95px;*/
    background: #fff;
    border-bottom: 2px solid #0078d7;
    box-sizing: border-box;
    z-index: 999;
    /*-webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, .15);
	-moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, .15);
	-ms-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, .15);
	box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, .15);*/
}
.uk-button-primary {
    background: #0078d7;
}
.header-top {
    overflow: visible;
}
.top-icon {
    float: right;
    padding: 5px 0 0 0;
}
.top-icon a {
    color: #666;
    padding: 0 15px;
    border-left: 1px solid #ccc;
}
.top-icon a i {
    padding-right: 5px;
}
.top-icon a:first-child {
    border-left: none;
}
.top-icon a:hover {
    text-decoration: none;
    color: #0078d7;
}
.uk-navbar {
    background: #fff;
    padding: 0;
    border: none;
}
.uk-navbar-nav>li>a {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    height: 70px;
    line-height: 69px;
}
.uk-navbar-nav>li>a:first-child {
    padding-left: 0;
}
.uk-navbar-nav>li.uk-active>a {
    background-color: #fff;
    color: #005596;
    border-color: transparent;
}
.uk-navbar-nav>li.uk-open>a, .uk-navbar-nav>li:hover>a, .uk-navbar-nav>li>a:focus {
    background-color: #fff;
    color: #005596;
    border-color: transparent;
}
.uk-navbar-nav>li>a>i {
    padding-left: 5px;
}
.uk-navbar-brand {
    float: left;
    height: 100%;
}
a.uk-navbar-brand:focus {
    background: transparent;
}
.uk-navbar-brand img {
    height: 60px;
    width: auto;
}
#nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
ul.nav {
    display: inline-flex;
    flex: 1;
    margin:0;
    list-style: none;
}
li.nav-item {
    flex: 1;
}
li.nav-item>a {
    display: block;
    text-align: center;
    line-height: 100px;
    font-size: 16px;
    position: relative;
    color: #666;
    font-weight:bold;
}
li.nav-item>a::before {
    display: none;
    content:'';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #0078d7;
    position: absolute;
}
li.nav-item:hover>a, li.nav-item.active>a {
    color: #0078d7;
    text-decoration: none;
}
@media (max-width: 959px) {
    #nav {
        justify-content:space-between;
    }
    li.nav-item>a {
        line-height: 60px
    }
}
@media (min-width: 960px) {
    li.nav-item:hover>a::before, li.nav-item.active>a::before {
        display: block;
    }
}
/* 二级菜单 */
 .subMenu {
    display: none;
    position: absolute;
    /*top: 100px;*/
    left: 0;
    width: 100%;
    height: auto;
    background-color: #0078d7;
    opacity: 0.9;
    z-index: 997;
}
/*.subMenu>ul{display: flex;flex-wrap: wrap;flex-direction: row;justify-content: center;align-items: center;}*/
 .subMenu ul {
    list-style:none
}
.subMenu h3, .subMenu h3 a, .subMenu ul>li>a {
    color: #fff;
}
.subMenu h3 {
    font-weight: bold;
    padding:20px 50px;
}
.subMenu ul>li>a {
    padding:0 18px;
    line-height: 50px;
}
.subMenu ul>li>a:hover {
    text-decoration: none;
}
.uk-slidenav-position {
    position: relative;
    z-index: 998;
}
/*.uk-nav-offcanvas li i {
	margin-right: 5px;
}*/

/* Offcanvas基础样式 */

/*.uk-offcanvas-bar {
  background-color: #333;
}

.uk-offcanvas-bar-flip {
  right: 0;
  left: auto;
}
*/

/* 导航项样式 */
 .uk-nav-offcanvas > li > a {
    color: #fff;
    font-size: 16px;
    padding: 15px 20px;
}
.uk-nav-offcanvas > li.uk-active > a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
/* 子菜单样式 */
 .uk-nav-offcanvas .uk-nav-sub {
    background-color: rgba(0, 0, 0, 0.3);
}
.uk-nav-offcanvas .uk-nav-sub > li > a {
    color: #ddd;
    font-size: 15px;
    padding: 12px 20px 12px 40px;
}
.uk-nav-offcanvas .uk-nav-sub > li > a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}
/* 二级子菜单 */
 .uk-nav-offcanvas .uk-nav-sub ul {
    background-color: rgba(0, 0, 0, 0.2);
}
.uk-nav-offcanvas .uk-nav-sub ul li a {
    color: #ccc;
    font-size: 14px;
    padding: 10px 20px 10px 60px;
}
/* 子菜单标题 */
 .uk-nav-offcanvas .uk-nav-sub a strong {
    color: #fff;
    font-weight: 600;
}
/* 图标样式 */
 .uk-nav-offcanvas .uk-icon {
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
    text-align: center;
}
/* 关闭按钮 */
 .uk-offcanvas-close {
    color: #fff;
    opacity: 0.8;
    top: 10px;
    right: 10px;
}
.uk-offcanvas-close:hover {
    opacity: 1;
}
/* 登录/登出链接特殊样式 */
 .uk-nav-offcanvas > li.uk-nav-divider + li > a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
}
.uk-nav-offcanvas > li.uk-nav-divider + li > a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.uk-flex-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.uk-section {
    padding: 70px 0;
    background: #fff;
    width: 100%;
    overflow: hidden;
}
.uk-section-default {
    background: #eceef6;
}
.uk-section .uk-h1 {
    text-transform: uppercase;
    font-weight: 666;
}
.uk-text-lead {
    padding-top: 5px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #666;
}
/* Banner容器样式 */
 .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/* 图片样式 */
 .banner picture, .banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* 文字覆盖层样式 */
 .quote-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}
/* 内容容器样式 */

/*.quote-text .uk-container {
        position: relative;
        z-index: 2;
        padding: 40px 20px;
    }*/

/* 标题样式 */
 .quote-text h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
/* 段落样式 */
 .quote-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* 响应式调整 */
 @media (max-width: 767px) {
    .quote-text {
        padding: 20px 15px;
    }
    /* .quote-text .uk-container {
            padding: 30px 15px;
        }*/
    .quote-text h3 {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .quote-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .quote-text .uk-button {
        width: 100%;
        max-width: 250px;
        margin: 5px auto;
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 959px) {
    .quote-text h3 {
        font-size: 36px;
    }
    .quote-text p {
        font-size: 17px;
    }
}
@media (min-width: 960px) {
    .quote-text h3 {
        font-size: 42px;
    }
    .quote-text p {
        font-size: 18px;
    }
    .quote-text .uk-button {
        padding: 15px 40px;
    }
}
/* Slider */
 .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.slideBox ul, .slideBox ul li {
    list-style: none;
}
.slideBox .hd {
    height: 10px;
    z-index: 1;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 1;
}
.slideBox .hd ul {
    text-align: center;
    padding-top: 5px;
}
.slideBox .hd ul li {
    cursor: pointer;
    float: left;
    margin-right: 5px;
    width: 30px;
    height: 10px;
    line-height: 14px;
    text-align: center;
    background: #ccc;
}
.product-slider .slideBox {
    border-radius: 5px;
    overflow: hidden;
}
.product-slider .slideBox .hd ul {
    padding-top: 0;
}
.product-slider .slideBox .hd ul li {
    width: 10px;
    border-radius: 50%;
}
.slideBox .hd ul .on {
    background: #0078d7;
    color: #fff;
}
.slideBox .bd {
    position: relative;
    z-index: 0;
}
.slideBox .bd li img {
    width: 100%;
    vertical-align: top;
    background: url(../images/loading.svg) center center no-repeat;
}
/* Switch */
 .switch {
    width: 100%px;
}
.switch .uk-tab li {
    font-size: 16px;
}
/* .switch .uk-tab>li>span {
	display: block;
	padding: 8px 12px 8px 12px;
	border: 1px solid transparent;
	border-bottom-width: 0;
	color: #1e3876;
	text-decoration: none;
	border-radius: 4px 4px 0 0;
	text-shadow: 0 1px 0 #fff;
	cursor: pointer;
} */
 .switch .uk-tab>li.on>a {
    border-color: #0078d7;
    border-bottom-color: #0078d7;
    background: #0078d7;
    color: #fff;
    text-shadow: none;
}
.switch .bd {
    border: none;
}
.switch .bd .uk-grid {
    margin-top: 20px;
}
.switch .bd .p-img {
    width: 100%;
}
.p-img {
    transition: all .5s;
}
.p-img:hover {
    transform: translateY(-15px);
}
.uk-thumbnail {
    transition: all .5s;
}
.switch .bd .p-img img {
    width: 100%;
    height: auto;
    background: url(../images/loading.svg) center center no-repeat;
}
.switch .bd h3>a {
    color: #444;
}
.p-img+h3 a {
    color: #444;
}
.uk-section.service img {
    width: 100%;
    height: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: url(../images/loading.svg) center center no-repeat #ccc;
}
.service a:hover, .industry a:hover, .page-solution a:hover, .page-service a:hover {
    text-decoration: none;
}
.uk-panel-box {
    transition: all .5s;
}
.service .uk-panel-box:hover, .industry .uk-panel-box:hover, .page-service .uk-panel-box:hover, .page-solution .uk-panel-box:hover, .page-color-wide-format .uk-panel-box:hover {
    -webkit-box-shadow: 0 0 10px #888;
    -moz-box-shadow: 0 0 10px #888;
    -ms-box-shadow: 0 0 10px #888;
    box-shadow: 0 0 10px #888;
    transform: translateY(-15px);
}
.uk-section.about {
    padding: 70px 0;
}
/* .uk-contrast .uk-h1 {
	color: #fff;
} */
 .uk-contrast .uk-text-lead {
    color: #ddd;
}
.uk-contrast p {
    color: #eee;
    font-size: 16px;
}
.uk-contrast .uk-grid .num {
    /* color: #fff; */
    font-size: 47px;
    line-height: 50px;
    font-weight: bold;
}
.uk-contrast .uk-grid .title {
    color: #ddd;
    font-size: 16px;
}
/* .industry-item {
	position: relative;
	background: #eceef6;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.industry-item>a {
	display: block;
	width: 100%;
	height: 100%;
}

.industry-item h3 {
	padding-top: 20px;
	margin-left: 20px;
}

.industry-item .industry-icon {
	position: absolute;
	width: 152px;
	height: 160px;
	bottom: -15px;
	right: -15px;
}

.industry-item .industry-icon>img {
	width: 100%;
	height: auto;
	transform: translate(-260px);
	filter: drop-shadow(260px 0 0 #0078d7);

} */
 .uk-section.quote {
    padding: 58px 0;
    background-repeat: no-repeat;
    background-position: center center;
}
.uk-section.quote p {
    width: 300px;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
footer {
    background: #20232c;
}
footer img.footer-brand {
    height: 100px;
    width: auto;
}
footer ul.follow-us {
    padding-left: 0;
}
footer ul.follow-us li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
footer dt {
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}
footer dt:after, .product-content h2:after {
    content:"";
    position: absolute;
    width: 54px;
    height: 3px;
    background: #0078d7;
    top: 120%;
    display: block;
    left: 0;
}
footer dd, footer dd a, footer h4 {
    color: #ddd;
    margin-bottom: 15px;
}
footer dd i {
    color: #0078d7;
    padding-right: 10px;
    font-size: 16px;
}
.copyright {
    border-top: 1px solid #44464e;
    padding: 20px 0;
}
.copyright p, .copyright p a, .f-link, .f-link a {
    color: #ccc;
}
.f-link a {
    padding-right: 10px;
}
.banner-inner {
    background: #20232c;
}
.page-solution h1.uk-h1.uk-margin-large-top:first-child {
    margin-top: 0 !important;
}
.page-solution .uk-panel-box, .industry .uk-panel-box, .page-color-wide-format .uk-panel-box {
    border-color: #0078d7;
    background: #0078d7;
}
.page-solution .uk-panel .uk-panel-teaser a, .industry .uk-panel .uk-panel-teaser a {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100px;
}
.page-solution .uk-panel h3 a, .industry .uk-panel h3 a, .page-color-wide-format .uk-panel h3 {
    color: #fff;
}
.about-cert img {
    width: auto;
    height: 50px;
}
.uk-panel-teaser img {
    background: url(../images/loading.svg) center center no-repeat;
}
.p-img img {
    width: 100%;
    min-height: 100px;
}
/* page-product-detail */
 .product-slide {
    position: relative;
    float: left;
    padding: 4px;
    overflow: hidden;
}
.product-slide .bigImg {
    position: relative;
}
.product-slide ul, .product-slide ul li {
    list-style: none;
}
.product-slide .bigImg li img {
    vertical-align: middle;
    width: 600px;
    height: 600px;
    background: url(../images/loading.svg) center center no-repeat;
}
.product-slide .smallScroll {
    height: 47px;
    margin-bottom: 6px;
}
.product-slide .sPrev, .product-slide .sNext {
    float: left;
    display: block;
    margin-top: 40px;
    text-align: center;
    width: 30px;
    height: 20px;
    font-size: 40px;
}
.product-slide .smallImg {
    float: left;
    margin: 0 6px;
    display: inline;
    width: 540px;
    overflow: hidden;
}
.product-slide .smallImg ul {
    height: 100px;
    width: 9999px;
    margin-left: 0;
    padding-left: 0;
    overflow: hidden;
}
.product-slide .smallImg li {
    float: left;
    padding: 0 10px 0 0;
    width: 100px;
    cursor: pointer;
    display: inline;
}
.product-slide .smallImg img {
    border: 1px solid #dcdddd;
    width: 100px;
    height: 100px;
}
.product-slide .smallImg .on img {
    border-color: #1e50a2;
}
.product-info {
    float: left;
}
.product-info ul {
    list-style: none;
    padding: 0;
    position: relative;
}
.product-info ul li {
    padding: 10px 0 10px 25px;
}
.product-info ul li:before {
    position: absolute;
    content:"\f219";
    font-family: FontAwesome;
    left: 0;
    color: goldenrod;
}
.product-info-item {
    margin-bottom: 15px;
    font-size: 14px;
}
.product-info span {
    display: inline-block;
}
.product-info-item-name {
    font-weight: bold;
    width: 30%;
}
.product-info .certificate {
    margin-top: 20px;
}
.product-info .certificate img {
    height: auto;
}
.product-info .certificate .hp-loogal {
    width: 33%;
}
.product-info .certificate .ce-fc {
    width: 33%;
}
.product-basic, .product-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
}
.product-content h2 {
    position: relative;
}
.product-content .product-des {
    padding: 15px 0;
    line-height: 2;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    margin-top: 20px;
    padding-bottom: 56.25%;
}
.video-container .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-contact {
    /* width: 100%; */
    padding: 40px 0;
    text-align: center;
    /* background: #fff;
	border-radius: 5px; */
}
.uk-panel i {
    margin-right: 5px;
}
/* page-article-list */
 .article-list a {
    display: block;
}
.article-list a:hover {
    text-decoration: none;
}
.article-list a .uk-panel-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}
.article-list a p {
    color: #444;
    text-align: justify;
}
.article-list a .uk-panel-meta {
    color: #999;
}
.page-story img {
    width: 400px;
    max-weight: 100%;
    height: auto;
}
.page-login .uk-panel-box {
    padding: 15px 15px 15px 25px;
}
.distributor-category {
    position: relative;
}
.distributor-category img {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
}
.distributor-category .user {
    text-align: center;
    margin: 65px 0 50px 0;
}
.distributor-category .uk-list-line>li:nth-child(n+2) {
    margin-top: 10px;
    padding-top: 10px;
}
.distributor-category li a {
    color: #444;
    font-size: 16px;
}
.distributor-category li:hover a, .distributor-category li.active a {
    color: #0078d7;
}
.download-list .uk-panel-title a, .download-list .uk-panel-title a i {
    color: #333;
}
.download-list li a {
    color: #444;
}
.download-list .uk-panel-title a:hover, .download-list li a:hover {
    color: #0078d7;
}
/* page-acrticle-detail */
 .uk-article {
    line-height: 1.8;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}
.uk-article-title {
    font-size: 24px;
    line-height: 1.5
}
.uk-article h1, .uk-article h2, .uk-article h3, .uk-article h4 {
    font-weight: bold;
}
/* page-color-wide-format */
 .bili {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding-top: 56.25%;
}
.bilibili {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.page-color-wide-format .uk-section .bili {
    margin-top: 0;
}
.text-wrap {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
}
.page-color-wide-format .text-wrap .uk-list-space {
    margin: 0 15px;
    padding-top: 15px;
}
.page-color-wide-format .text-wrap .certificate {
    margin: 15px 30px;
}
.page-color-wide-format .text-wrap .uk-button-primary {
    margin-left: 30px;
}
/* UDI */
 .page-udi .bili, .page-udi-management .bili {
    margin-top: 0;
}
.text-wrap {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
}
.text-wrap p {
    padding: 15px 15px 0 15px;
    text-align: justify;
    line-height: 1.8;
}
.button-wrap {
    margin: 15px;
}
.page-udi .about p {
    font-weight: bold;
}
.page-udi .about, .udi-why, .page-casecoding .section-feature, .page-casecoding .section-news, .page-casecoding .section-data {
    background: #0078d7;
    background: -moz-linear-gradient(top, #0078d7 0%, #005596 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0078d7), color-stop(100%, #005596));
    background: -webkit-linear-gradient(top, #0078d7 0%, #005596 100%);
    background: -o-linear-gradient(top, #0078d7 0%, #005596 100%);
    background: -ms-linear-gradient(top, #0078d7 0%, #005596 100%);
    background: linear-gradient(to bottom, #0078d7 0%, #005596 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078d7', endColorstr='#005596', GradientType=0);
}
:root .page-udi .about {
    filter: none;
}
.page-udi .solution-table {
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    transition: all .6s;
}
.page-udi .st-recommend {
    position: absolute;
    top: -14px;
    right: 4px;
    padding: 6px 12px;
    max-width: 60%;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    background-color: #FA0606;
    border-radius: 16px 0 16px 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 9;
}
.page-udi .st-header {
    color: #fff;
    position: relative;
    padding: 32px 0;
    border-radius: 8px 8px 0 0;
}
.page-udi .st-item-1 .st-header {
    background-color: #58C0DB;
    background-image: -webkit-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -o-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -moz-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: linear-gradient(90deg, #58C0DB 0%, #0C83B8 100%);
}
.page-udi .st-item-2 .st-header {
    background-color: #0039E3;
    background-image: -webkit-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -o-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -moz-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: linear-gradient(90deg, #0039E3 0%, #3B17CA 100%);
}
.page-udi .st-item-3 .st-header {
    background-color: #FFAE00;
    background-image: -webkit-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -o-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -moz-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: linear-gradient(90deg, #FFAE00 0%, #F5A623 100%);
}
.page-udi .st-header:after {
    content:"";
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='270' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M82.607 24c14.801.208 31.844-2.238 51.129-7.337 17.373-3.697 29.669-17.284 61.344-2.377.34.447 24.173-30.515 74.92-1.991v24.893c-90.696.224-152.444.224-185.242 0L82.608 24z' opacity='.395'/%3E%3Cpath d='M149.48 26.903c-15.698 2.48-34.05-2.461-55.056-14.826-31.509-18.547-50.199-2.188-60.606.839-10.408 3.027-19.871 7.618-33.813-.618v22.197c2.526 2.444 10.957 4.546 25.294 6.309L149.48 26.903z' opacity='.395'/%3E%3Cpath d='M.005 24c4.762 3.177 8.957 4.47 12.583 3.881 5.44-.885 16.71-5.123 31.375-7.752 9.703-1.74 20.092-1.997 27.052-.4 40.288 9.245 66.73 11.831 106.51-1.993C217.307 3.91 251.533 10.13 270 24v24H.005V24z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 50px;
    background-position: left 1px;
}
.page-udi .st-header .uk-h2 {
    color: #fff;
    padding: 0 0 15px 12%;
}
.page-udi .st-header .uk-h2 i {
    padding-right: 10px;
    color: #fff;
    opacity: .8;
}
.page-udi .st-content {
    padding: 24px 12%;
    line-height: 1.47;
}
.page-udi .st-content h5, .page-udi .st-content .uk-h5 {
    font-weight: bold;
    color: #666;
}
.page-udi .st-content ul {
    padding-left: 0;
    font-size: 14px;
}
.page-udi .st-content li {
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    height: 20px;
    line-height: 20px;
    list-style: none;
}
.page-udi .st-content li:after {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: .3;
    content:"";
}
.page-udi .st-item-1 .st-content li:after {
    background-color: #58C0DB;
    background-image: -webkit-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -o-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -moz-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: linear-gradient(90deg, #58C0DB 0%, #0C83B8 100%);
}
.page-udi .st-item-2 .st-content li:after {
    background-color: #0039E3;
    background-image: -webkit-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -o-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -moz-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: linear-gradient(90deg, #0039E3 0%, #3B17CA 100%);
}
.page-udi .st-item-3 .st-content li:after {
    background-color: #FFAE00;
    background-image: -webkit-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -o-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -moz-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: linear-gradient(90deg, #FFAE00 0%, #F5A623 100%);
}
.page-udi .st-content li.wrong:after {
    background: #FFCCCC;
    opacity: .6;
}
.page-udi .st-content li span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.page-udi .st-item-1 .st-content li .uk-icon-check {
    color: #58C0DB;
}
.page-udi .st-item-2 .st-content li .uk-icon-check {
    color: #0039E3;
}
.page-udi .st-item-3 .st-content li .uk-icon-check {
    color: #FFAE00;
}
.page-udi .st-content li .uk-icon-times {
    color: #FF6666;
}
.page-udi .st-box {
    text-align: center;
    padding-bottom: 30px
}
.page-udi .st-box .uk-button {
    border: 0;
    transition: all .6s;
}
.page-udi .st-item-1 .st-box .uk-button {
    background-color: rgba(88, 192, 219, .2);
    color: #58C0DB;
}
.page-udi .st-item-2 .st-box .uk-button {
    background-color: #0039E3;
    background-image: -webkit-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -o-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: -moz-linear-gradient(0, #0039E3 0%, #3B17CA 100%);
    background-image: linear-gradient(90deg, #0039E3 0%, #3B17CA 100%);
    color: #fff;
}
.page-udi .st-item-3 .st-box .uk-button {
    background-color: rgba(225, 174, 0, 0.2);
    color: #FFAE00;
}
.page-udi .solution-table:hover {
}
.page-udi .solution-table.st-item-1:hover {
    box-shadow: 0 10px 20px 0 rgba(88, 192, 219, 0.15);
}
.page-udi .solution-table.st-item-2 {
    box-shadow: 0 10px 20px 0 rgba(0, 57, 227, 0.15);
}
.page-udi .solution-table.st-item-3:hover {
    box-shadow: 0 10px 20px 0 rgba(255, 174, 0, 0.15);
}
.page-udi .solution-table.st-item-1:hover .uk-button {
    background-color: #58C0DB;
    background-image: -webkit-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -o-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: -moz-linear-gradient(0, #58C0DB 0%, #0C83B8 100%);
    background-image: linear-gradient(90deg, #58C0DB 0%, #0C83B8 100%);
    color: #fff;
}
.page-udi .solution-table.st-item-3:hover .uk-button {
    background-color: #FFAE00;
    background-image: -webkit-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -o-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: -moz-linear-gradient(0, #FFAE00 0%, #F5A623 100%);
    background-image: linear-gradient(90deg, #FFAE00 0%, #F5A623 100%);
    color: #fff;
}
.page-udi .icon, .page-udi-management .icon {
    width: 80px;
    height: 80px;
    background: #fff;
    margin: 10px auto;
    border-radius: 50%;
}
.page-udi .icon span, .page-udi-management .icon span {
    color: #0078d7;
    font-size: 28px;
    line-height: 80px;
}
.section-snapshot {
    width: 100%;
    box-sizing: border-box;
}
.section-device {
    background: #f8f8f8;
}
.section-snapshot img, .section-device img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.section-device h3>a {
    font-weight: 600;
}
.section-device p {
    color: #666;
}
.section-zaiti img {
    height: 100px;
    width: auto;
}
.section-zaiti p {
    font-size: 16px
}
.page-udi .uk-description-list-horizontal dt {
    font-size: 16px;
    white-space: pre-wrap
}
.page-casecoding .section-list h2 {
    font-weight: bold;
}
.page-casecoding .section-list h3 {
    font-weight: bold;
    color: #07d;
}
.page-casecoding .section-list p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: clamp(20px, 2vw, 30px);
    /* text-align: justify; */
}
.page-casecoding .section-feature ul {
    column-count: 2;
    text-align: left;
}
.page-casecoding .section-feature ul li {
    color: #fff;
    display: inline-block;
    font-size: clamp(16px, 2vw, 21px);
    line-height: clamp(22px, 3vw, 33px);
    margin-bottom: 25px;
    /* padding-left: 70px; */
    width: 100%;
}
.page-casecoding .section-feature i {
    padding-right: 10px;
}
.page-casecoding .section-news .news-list, .page-casecoding .section-video .video-list, .section-data table {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}
.page-casecoding .section-news .news-list, .page-casecoding .section-data table {
    background: rgba(0, 0, 0, .2);
}
.page-casecoding .section-video .video-list {
    background: #fff;
}
.page-casecoding .section-video .video-list-content, .page-casecoding .section-news .news-list-content {
    margin: 20px;
}
.page-casecoding .uk-table thead th {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
}
.page-casecoding .uk-table-hover tbody tr:hover {
    background: rgba(0, 0, 0, .5);
}
@media (max-width: 767px) {
    header {
        height: 60px;
    }
    header .uk-container {
        padding: 0;
    }
    .uk-navbar-brand {
        padding-top: 10px;
    }
    .uk-navbar-brand img {
        height: 40px;
    }
    .uk-navbar {
        padding-top: 10px;
    }
    .page-casecoding .section-feature ul {
        column-count: 1;
    }
    .uk-section.quote {
        padding: 37px 0;
        background-position: 45% center;
    }
    footer {
        text-align: center;
    }
}
@media (min-width: 768px) and (max-width: 1219px) {
    .uk-navbar-brand, .uk-navbar-toggle {
        padding: 10px 0;
    }
    .uk-navbar-brand img {
        height: 50px;
        width: auto;
    }
    .uk-section.quote {
        background-position: 35% center;
    }
}
@media (min-width: 768px) and (max-width: 959px) {
    .uk-navbar {
        margin-top: 30px;
    }
}
@media (max-width:600px) {
    .uk-section .uk-h1 {
        font-size: 28px;
    }
    .uk-h2 {
        font-size: 20px;
    }
    .uk-text-lead {
        font-size: 16px;
    }
    .uk-tab {
        display: -webkit-box;
        overflow-x: auto;
        /*适应苹果*/
        -webkit-overflow-scrolling: touch;
    }
    /*隐藏掉滚动条*/
    .uk-tab::-webkit-scrollbar {
        display: none;
    }
    .uk-tab-center .uk-tab {
        float: left;
        right: 0;
    }
    .uk-tab-center .uk-tab>li {
        right: 0;
    }
    .uk-tab>li>a {
        padding: 8px 5px;
    }
}
@media (max-width: 480px) {
    .section-zaiti img {
        height: 70px;
    }
    .section-zaiti p {
        font-size: 14px
    }
}
@media (max-width: 1219px) {
    .page-color-wide-format .text-wrap .certificate img {
        width: 50%;
        height: auto;
    }
}