html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;outline:none;list-style:none;font-style:normal;}
img,a img{
    vertical-align: bottom;
}
table{border-collapse:collapse;border:none;}
input,select,textarea,button{font-size:12px;font-family:'思源黑体 CN','Microsoft YaHei';}
body {
    word-break: break-all;
    font-size: 12px;
    color: #333;
    font-family: '思源黑体 CN', 'Microsoft YaHei';
    padding-top: 140px;
    
    /* 核心居中代码 */
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
a:link{text-decoration:none;color:#333;}
a:visited{text-decoration:none;color:#333;}
a:hover{text-decoration:none;color:#0010ae;}
a:active{text-decoration:none;color:#0010ae;}


 /* ------------------------------------------- */
        /* 独立组件样式开始：不涉及 BODY 和 :root */
        /* ------------------------------------------- */

        /* 使用一个局部作用域的容器来定义局部 CSS 变量（如果需要的话），或者直接硬编码值 */
        .tab-component-wrapper {
            /* 在这里定义局部变量，只影响这个 wrapper 内的元素 */
            --primary-color: #007bff; 
            --card-bg: #ffffff;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;

            /* 字体设置也仅限于此容器内，继承宿主页面字体或设置默认 */
            font-family: 'Roboto', Arial, sans-serif;
            color: var(--text-color, #333);
            width: 100%;
            max-width: 1200px;
            margin: 10px auto; /* 组件居中显示 */
            /* 背景色现在由内部的卡片和内容框提供，wrapper 不设背景 */
        }

        /* 标题/按钮区域容器 */
        .tab-module__header {
            display: flex;
            gap: 15px;
            margin-bottom: -1px;
            justify-content: center;
        }

        /* 单个 Tab 按钮/卡片样式 */
        .tab-module__button {
            flex: 1;
            padding: 15px 20px;
            text-align: center;
            background-color: var(--card-bg, #ffffff);
            border-radius: 8px 8px 0 0;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid #eee;
            border-bottom: none;
            position: relative;
            z-index: 1;
        }

        .tab-module__button:hover,
        .tab-module__button--active {
            background-color: var(--primary-color, #007bff);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--hover-shadow);
            z-index: 2;
        }
        
        .tab-module__button h3 {
            margin: 0;
            font-size: 1rem;
            transition: color 0.3s ease; 
        }

        .tab-module__button:hover h3,
        .tab-module__button--active h3 {
            color: white;
        }

        /* 内容区域容器 */
        .tab-module__content-wrapper {
            padding: 30px;
            border-radius: 0 0 10px 10px;
            background-color: var(--card-bg, #ffffff);
            box-shadow: var(--shadow);
            min-height: 150px;
            border: 1px solid #eee;
        }

        /* 单个内容面板 */
        .tab-module__pane {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        /* 激活状态显示 */
        .tab-module__pane--active {
            display: block;
        }

        /* CSS 关键帧动画实现淡入效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
              /* ------------------------------------------- */
        /* HLWZX 业务展示组件 - 轻灰版 (2025) */
        /* ------------------------------------------- */

        .hlwzx-component-wrapper {
            --hlwzx-primary: #2563eb; 
            --hlwzx-bg-light: #f4f7f9; /* 轻灰色背景 */
            --hlwzx-bg-card: #ffffff;  /* 白色卡片背景 */
            --hlwzx-text-title: #1e293b;
            --hlwzx-text-desc: #64748b;
            --hlwzx-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            max-width: 1200px;
            margin: 40px auto;
            padding: 40px; /* 增加内边距使灰色背景露出来 */
            background-color: var(--hlwzx-bg-light);
            border-radius: 30px; /* 整体容器圆角 */
        }

        /* 顶部导航容器 */
        .hlwzx-header {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 35px;
        }

        /* Tab 按钮样式 */
        .hlwzx-tab-btn {
            padding: 12px 28px;
            border-radius: 50px; /* 胶囊形状 */
            cursor: pointer;
            transition: var(--hlwzx-transition);
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(4px); /* 磨砂玻璃效果 */
        }


        .hlwzx-tab-btn h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 1000;
            color: var(--hlwzx-text-desc);
        }

        /* 悬停与激活状态 */
        .hlwzx-tab-btn:hover {
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	
        }

        .hlwzx-tab-btn.hlwzx-active {
            background-color: var(--hlwzx-primary);
            border-color: var(--hlwzx-primary);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
        }

        .hlwzx-tab-btn.hlwzx-active h3 {
            color: #ffffff;
            font-weight: 600;
        }

        /* 白色卡片承载区 */
        .hlwzx-content-box {
            background: var(--hlwzx-bg-card);
            border-radius: 24px;
            /* 更有层次感的阴影 */
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 
                        0 8px 10px -6px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            min-height: 420px;
        }

        .hlwzx-pane {
            display: none;
            padding: 60px;
            animation: hlwzxSlideIn 0.5s ease-out forwards;
        }

        .hlwzx-pane.hlwzx-active {
            display: block;
        }

        /* Flex 布局 */
        .hlwzx-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hlwzx-text-side {
            flex: 1.2;
        }

        .hlwzx-text-side h2 {
            font-size: 32px;
            color: var(--hlwzx-text-title);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hlwzx-text-side p {
            font-size: 17px;
            color: var(--hlwzx-text-desc);
            line-height: 1.8;
            margin: 0;
        }

        /* 图片区域 */
        .hlwzx-image-side {
            flex: 1;
        }

        .hlwzx-image-side img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: var(--hlwzx-transition);
        }

        /* 动效：划入时图片轻微上浮 */
        .hlwzx-pane:hover .hlwzx-image-side img {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
        }

        @keyframes hlwzxSlideIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .hlwzx-component-wrapper { padding: 20px; }
            .hlwzx-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
            .hlwzx-pane { padding: 40px 20px; }
            .hlwzx-tab-btn { padding: 10px 20px; }
        }

.txtL {text-align:left !important;}
.txtC {text-align:center !important;}
.txtR {text-align:right !important;}
.nowrap {white-space:nowrap !important;}
.format .txtC,
.format .txtL,
.format .txtR {text-indent:0 !important;}
.L {float:left !important;}
.R {float:right !important;}
.left {float:left !important;}
.right {float:right !important;}
.cl {clear:left;}
.cr {clear:right;}

.dis {display:block !important;}
.hide {display:none !important;}
.undis {display:none !important;}

.whitebg {background-color:#fff !important;}
.w1200 {width:1200px;margin:0 auto;}
.clearfixa:after {clear:both;content:'';display:block;height:0;visibility:hidden;}
.txtEll {overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}

.mb5 {margin-bottom:5px !important;}
.mb15 {margin-bottom:15px !important;}
.mb10 {margin-bottom:10px !important;}
.mb20 {margin-bottom:20px !important;}
.mb25 {margin-bottom:25px !important;}
.mb35 {margin-bottom:35px !important;}
.mb55 {margin-bottom:55px !important;}
.mb65 {margin-bottom:65px !important;}
.mb75 {margin-bottom:75px !important;}

.mr30 {margin-right:30px !important;}
.mr25 {margin-right:25px !important;}
.mr20 {margin-right:20px !important;}
.mr10 {margin-right:10px !important;}

.fs12 {font-size:12px !important;}
.fs14 {font-size:14px !important;}
.fs16 {font-size:16px !important;}
.fs26 {font-size:26px !important;}
.fs28 {font-size:28px !important;}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {color:#bdbdbd;opacity:1;font-size:14px;}
input:-moz-placeholder,
textarea:-moz-placeholder {color:#bdbdbd;opacity:1;font-size:14px;}
input::-moz-placeholder,
textarea::-moz-placeholder {color:#bdbdbd;opacity:1;font-size:14px;}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {color:#bdbdbd;opacity:1;font-size:14px;}

@font-face {
  font-family:'fontello';
  src:url('../font/fontello.eot');
  src:url('../font/fontello.eot') format('embedded-opentype'),
  url('../font/fontello.woff2') format('woff2'),
  url('../font/fontello.woff') format('woff'),
  url('../font/fontello.ttf') format('truetype'),
  url('../font/fontello.svg') format('svg');
  font-weight:normal;font-style:normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family:"fontello";
  font-style:normal;
  font-weight:normal;
  speak:none;
  display:inline-block;
  text-decoration:inherit;
  width:1em;
  margin-right:.2em;
  text-align:center;
  font-variant:normal;
  text-transform:none;
  line-height:1em;
  margin-left:.2em;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.icon-user:before{content:'\e800';}
.icon-lock-1:before{content:'\e801';}
.icon-basket-1:before{content:'\e802';}
.icon-heart:before{content:'\e803';}
.icon-share:before{content:'\e804';}
.icon-arrows-cw:before{content:'\e805';}
.icon-up-circle:before{content:'\e806';}
.icon-thumbs-up:before{content:'\e807';}
.icon-left-open-big:before{content:'\e808';}
.icon-right-open-big:before{content:'\e809';}
.icon-videocam:before{content:'\e80a';}
.icon-mail:before{content:'\e80b';}
.icon-mail-1:before{content:'\e80c';}
.icon-phone:before{content:'\e80d';}
.icon-link:before{content:'\e80e';}
.icon-mobile:before{content:'\e80f';}
.icon-search:before{content:'\e810';}
.icon-address:before{content:'\e811';}
.icon-clock:before{content:'\e812';}
.icon-eye:before{content:'\e813';}
.icon-search-1:before{content:'\e814';}
.icon-down-open-big:before{content:'\e815';}
.icon-phone-circled:before{content:'\e816';}
.icon-up-open-big:before{content:'\e817';}
.icon-cancel-circled-outline:before{content:'\e818';}
.icon-cancel-circled:before{content:'\e819';}
.icon-doc:before{content:'\e81a';}
.icon-ok-circled:before{content:'\e81b';}
.icon-ok-circled2:before{content:'\e81c';}
.icon-minus:before{content:'\e81d';}
.icon-plus:before{content:'\e81e';}
.icon-picture:before{content:'\e81f';}
.icon-thumbs-down:before{content:'\e820';}
.icon-thumbs-up-1:before{content:'\e821';}
.icon-thumbs-down-1:before{content:'\e822';}
.icon-link-1:before{content:'\e823';}
.icon-attach:before{content:'\e824';}
.icon-user-add:before{content:'\e825';}
.icon-trash-empty:before{content:'\e826';}
.icon-basket:before{content:'\e827';}
.icon-doc-text:before{content:'\e828';}
.icon-cog:before{content:'\e829';}
.icon-zoom-in:before{content:'\e82a';}
.icon-zoom-out:before{content:'\e82b';}
.icon-zoom-in-1:before{content:'\e82c';}
.icon-zoom-out-1:before{content:'\e82d';}
.icon-down-open-mini:before{content:'\e82e';}
.icon-left-open-mini:before{content:'\e82f';}
.icon-right-open-mini:before{content:'\e830';}
.icon-up-open-mini:before{content:'\e831';}
.icon-home:before{content:'\e832';}
.icon-login:before{content:'\e833';}
.icon-logout:before{content:'\e834';}
.icon-shop-1:before{content:'\e835';}
.icon-key:before{content:'\e836';}
.icon-info-circled:before{content:'\e837';}
.icon-info-circled-1:before{content:'\e838';}
.icon-star:before{content:'\e839';}
.icon-star-empty:before{content:'\e83a';}
.icon-edit:before{content:'\e83b';}
.icon-info:before{content:'\e83c';}
.icon-plus-1:before{content:'\e83d';}
.icon-ok:before{content:'\e83e';}
.icon-home-outline:before{content:'\e83f';}
.icon-truck:before{content:'\e840';}
.icon-calculator:before{content:'\e841';}
.icon-truck-1:before{content:'\e842';}
.icon-plus-circled:before{content:'\e843';}
.icon-location:before{content:'\e844';}
.icon-doc-text-1:before{content:'\e845';}
.icon-doc-text-inv:before{content:'\e846';}
.icon-key-1:before{content:'\e847';}
.icon-keyboard-1:before{content:'\e848';}
.icon-key-2:before{content:'\e849';}
.icon-coffee:before{content:'\e84a';}
.icon-spin3:before{content:'\e84b';}
.icon-download-alt:before{content:'\e84c';}
.icon-down-circle:before{content:'\e84d';}
.icon-left-circle:before{content:'\e84e';}
.icon-right-circle:before{content:'\e84f';}
.icon-up-circle-1:before{content:'\e850';}
.icon-up-circled2:before{content:'\e851';}
.icon-plus-2:before{content:'\e852';}
.icon-down-small:before{content:'\e853';}
.icon-left-small:before{content:'\e854';}
.icon-right-small:before{content:'\e855';}
.icon-up-small:before{content:'\e856';}
.icon-left:before{content:'\e857';}
.icon-right:before{content:'\e858';}
.icon-up:before{content:'\e859';}
.icon-down:before{content:'\e85a';}
.icon-link-2:before{content:'\e85b';}
.icon-print:before{content:'\e85c';}
.icon-minus-circle:before{content:'\e85d';}
.icon-plus-circle:before{content:'\e85e';}
.icon-menu-1:before{content:'\e85f';}
.icon-cw:before{content:'\e860';}
.icon-cancel:before{content:'\e861';}
.icon-cancel-1:before{content:'\e862';}
.icon-up-1:before{content:'\e863';}
.icon-up-dir:before{content:'\e864';}
.icon-up-bold:before{content:'\e865';}
.icon-up-dir-1:before{content:'\e866';}
.icon-down-1:before{content:'\e867';}
.icon-down-dir:before{content:'\e868';}
.icon-down-bold:before{content:'\e869';}
.icon-down-dir-1:before{content:'\e86a';}
.icon-heart-empty:before{content:'\e86b';}
.icon-ok-circle:before{content:'\e86c';}
.icon-gift:before{content:'\e86d';}
.icon-gift-1:before{content:'\e86e';}
.icon-tag:before{content:'\e86f';}
.icon-tag-1:before{content:'\e870';}
.icon-down-dir-2:before{content:'\e871';}
.icon-up-dir-2:before{content:'\e872';}
.icon-right-dir:before{content:'\e873';}
.icon-credit-card:before{content:'\e874';}
.icon-chat:before{content:'\e875';}
.icon-left-dir:before{content:'\e876';}
.icon-left-dir-1:before{content:'\e877';}
.icon-left-dir-2:before{content:'\e878';}
.icon-quote-left:before{content:'\e879';}
.icon-left-bold:before{content:'\e87a';}
.icon-quote-right-1:before{content:'\e87b';}
.icon-down-open:before{content:'\f004';}
.icon-up-open:before{content:'\f005';}
.icon-right-open:before{content:'\f006';}
.icon-left-open:before{content:'\f007';}
.icon-download:before{content:'\f02e';}
.icon-upload:before{content:'\f02f';}
.icon-location-2:before{content:'\f031';}
.icon-info-circled-2:before{content:'\f085';}
.icon-info-circled-alt:before{content:'\f086';}
.icon-link-ext:before{content:'\f08e';}
.icon-check-empty:before{content:'\f096';}
.icon-bookmark-empty:before{content:'\f097';}
.icon-phone-squared:before{content:'\f098';}
.icon-menu:before{content:'\f0c9';}
.icon-mail-alt:before{content:'\f0e0';}
.icon-coffee-1:before{content:'\f0f4';}
.icon-doc-text-2:before{content:'\f0f6';}
.icon-plus-squared:before{content:'\f0fe';}
.icon-angle-double-left:before{content:'\f100';}
.icon-angle-double-right:before{content:'\f101';}
.icon-angle-double-up:before{content:'\f102';}
.icon-angle-double-down:before{content:'\f103';}
.icon-quote-left-1:before{content:'\f10d';}
.icon-quote-right:before{content:'\f10e';}
.icon-smile:before{content:'\f118';}
.icon-keyboard:before{content:'\f11c';}
.icon-code:before{content:'\f121';}
.icon-play-circled-1:before{content:'\f144';}
.icon-minus-squared:before{content:'\f146';}
.icon-minus-squared-alt:before{content:'\f147';}
.icon-ok-squared:before{content:'\f14a';}
.icon-dollar:before{content:'\f155';}
.icon-yen:before{content:'\f157';}
.icon-plus-squared-alt:before{content:'\f196';}
.icon-bank:before{content:'\f19c';}
.icon-fax:before{content:'\f1ac';}
.icon-cube:before{content:'\f1b2';}
.icon-file-pdf:before{content:'\f1c1';}
.icon-file-code:before{content:'\f1c9';}
.icon-tencent-weibo:before{content:'\f1d5';}
.icon-qq:before{content:'\f1d6';}
.icon-wechat:before{content:'\f1d7';}
.icon-circle-thin:before{content:'\f1db';}
.icon-newspaper-1:before{content:'\f1ea';}
.icon-calc:before{content:'\f1ec';}
.icon-hourglass-o:before{content:'\f250';}
.icon-hourglass-1:before{content:'\f251';}
.icon-hourglass-2:before{content:'\f252';}
.icon-hourglass-3:before{content:'\f253';}
.icon-hourglass:before{content:'\f254';}
.icon-commenting:before{content:'\f27a';}
.icon-commenting-o:before{content:'\f27b';}
.icon-user-o:before{content:'\f2c0';}
.icon-sina-weibo:before{content:'\f33f';}
.icon-paypal:before{content:'\f342';}
.icon-newspaper:before{content:'\f4f0';}
.icon-search-2:before{content:'\f50d';}

.topOuter {position:fixed;top:0;right:0;left:0;z-index:6;line-height:40px;color:#fff;background-color:#0010ae;}
.topInner {width:1200px;margin:0 auto;font-size:12px;}
.topInner h1 {display:inline;font-weight:normal;font-size:12px;}
.topInner span {padding-left:30px;font-weight:bold;font-size:18px;background:url(../image/icon_tel.png) no-repeat left center;background-size:23px 20px;}
.topInner .siderNav {padding-left:15px;}

.topmenu {padding-top:10px;}
.topmenu li {position:relative;line-height:20px;}
.topmenu strong {position:relative;z-index:20;display:block;line-height:inherit;padding:0 15px;font-weight:normal;}
.topmenu strong:before {content:'';width:20px;height:20px;font-size:0;line-height:0;display:inline-block;margin-right:5px;background-position:left center;background-repeat:no-repeat;background-size:30px 20px;vertical-align:middle;border-radius:50%;background-image:url(../image/icon_ch.png);}
.topmenu strong:after {font-family:'fontello';content:'\e815';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:auto;margin-left:6px;text-align:center;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.topmenu .jq_hidebox {display:none;position:absolute;left:0;right:0;top:20px;padding:10px 15px;border:1px solid #dfdfdf;box-shadow:0 1px 2px #ccc;background-color:#fff;z-index:10;margin:-1px -1px 0 -1px;}
.topmenu .jq_hidebox a {display:block;line-height:inherit;margin-bottom:5px;}
.topmenu .jq_hidebox a:last-child {margin-bottom:0;}
.topmenu .jq_hidebox a:before {content:'';width:20px;height:20px;font-size:0;line-height:0;display:inline-block;margin-right:5px;background-position:left center;background-repeat:no-repeat;background-size:30px 20px;vertical-align:middle;border-radius:50%;background-image:url(../image/icon_ch.png);}
.topmenu .jq_hidebox a:nth-child(1):before {background-image:url(../image/icon_uk.png);background-position:center center;}
.topmenu li.hover strong {border:1px solid #dfdfdf;border-bottom:none;background-color:#fff;color:#333;margin:-1px -1px 0 -1px;}

.headerOuter {position:fixed;top:40px;right:0;left:0;z-index:5;border-bottom:1px solid #ddd;background-color:#fff;}
.header {width:1200px;height:100px;margin:0 auto;}
.header .logo {height:48px;padding:26px 0;}
.header .biaoyu {height:39px;margin:30px 0 27px 13px;padding-left:16px;color:#666;border-left:1px solid #f3f3f3;}
.header .biaoyu h1 {line-height:23px;font-size:18px;font-weight:normal;}
.header .biaoyu p {line-height:16px;font-size:18px;}
.header .biaoyu h1, .header .biaoyu p {display: inline;}
.header .biaoyu p:first-child {line-height:23px;font-size:18px;}
.header .biaoyu p:last-child {line-height:16px;font-size:14px;}
.header .nav {padding-top:38px;}
.header .nav .list {float:left;line-height:24px;font-size:16px;}
.header .nav .list > a {display:block;padding:5px 23px 15px;border-bottom:2px solid transparent;}
.header .nav .list > a:hover,
.header .nav .list.on > a {color:#0010ae;border-color:#0010ae;}
.header .sub {display:none;position:absolute;z-index:9;left:0;right:0;top:84px;background-color:rgba(0,0,0,.9);}
.header .sub li {display:inline-block;padding:15px 0;}
.header .sub a {display:inline-block;padding:5px 15px;font-size:14px;color:#b7b7b7;}
.header .sub a:hover {color:#fff;background-color:#272727;}

.fourOuter {
    position: relative;
    height: 360px;
    background: linear-gradient(60deg, rgb(43 15 153) 0%, rgb(43 15 153) 100%);

}
.fourInner {position:relative;z-index:2;width:1200px;margin:0 auto;}
.waves {position:absolute;z-index:1;left:0;bottom:0;width:100%;height:85px;}
.parallax > use {animation:move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;}
.parallax > use:nth-child(1) {animation-delay:-2s;animation-duration:7s;}
.parallax > use:nth-child(2) {animation-delay:-3s;animation-duration:10s;}
.parallax > use:nth-child(3) {animation-delay:-4s;animation-duration:13s;}
.parallax > use:nth-child(4) {animation-delay:-5s;animation-duration:20s;}
@keyframes move-forever {0% {transform:translate3d(-90px,0,0);}100% {transform:translate3d(85px,0,0);}}
.fourInner .tit {height:75px;padding:15px 0;text-align:center;color:#fff;}
.fourInner .tit h2 {font-size:32px;font-weight:normal;}
.fourInner .tit p {font-size:20px;}
.fourInner li {float:left;width:285px;margin-right:20px;}
.fourInner a {display:block;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.fourInner li:last-child {margin-right:0;}
.fourInner li p {padding:10px;text-align:center;font-size:16px;color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.fourInner a:hover {box-shadow:0 0 18px rgba(0,0,0,0.55);}
.fourInner a:hover p {color:#333;background-color:#fff;}
.fourOuter.sub {height:445px;}
.fourOuter.sub .tit {height:120px;padding:30px 0 15px;}
.fourOuter.sub i {display:block;font-style:normal;font-weight:normal;font-size:16px;color:#91c5e9;}
.fourOuter.sub .tit h2 {display:inline-block;line-height:48px;}
.fourOuter.sub .ld {position:absolute;left:-4em;width:3.5em;height:1px;background-color:#fff;top:50%;}
.fourOuter.sub .rd {position:absolute;right:-4em;width:3.5em;height:1px;background-color:#fff;top:50%;}

.ysOuter {padding-top:55px;}
.ysInner {position:relative;z-index:2;width:1200px;height:300px;margin:0 auto;}
.ysInner .left {width:550px;padding:0 20px;}
.ysInner .left p {font-size:16px;line-height:26px;color:#666;text-indent:2em;}
.ysInner .tit {height:90px;text-align:center;position:relative;}
.ysInner .tit h3 {position:absolute;left:0;right:0;top:15px;z-index:2;
  font-weight:bold;font-size:30px;color:#0010ae;}
.ysInner .tit h3 strong {font-weight:600;display:inline-block;padding:0 10px;background-color:#fff;}
.ysInner .tit span {display:inline-block;line-height:90px;font-weight:bold;font-size:60px;color:rgba(0,174,243,.2);}
.ysInner li {float:left;position:relative;margin:4px 0 0 20px;width:132px;height:292px;border-radius:12px;box-shadow:0 0 4px rgba(0,16,174,0.9);display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center;}
.ysInner li i {display:block;width:70px;height:70px;font-size:0;line-height:0;overflow:hidden;background-image:url(../image/ys.png);background-repeat:no-repeat;background-size:140px 360px;}
.ysInner li:nth-child(1) i {background-position:0 0;}
.ysInner li:nth-child(2) i {background-position:0 -70px;}

.ysInner li:nth-child(3) i {background-position:0 -140px;}
.ysInner li:nth-child(4) i {background-position:0 -210px;}
.ysInner u {display:block;text-align:center;text-decoration:none;font-size:19px;font-weight:normal;color:#0010ae;}
.ysInner dl {position:absolute;left:0;top:292px;right:0;bottom:0;z-index:2;border-radius:12px;background:linear-gradient(#4753c4,#0010ae);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.ysInner em {position:relative;display:block;width:44px;height:44px;margin:12px auto;font-size:0;line-height:0;background-image:url(../image/ysnews.png);background-repeat:no-repeat;}
.ysInner li:nth-child(1) em {background-position:0 0;}
.ysInner li:nth-child(2) em {background-position:0 -44px;}
.ysInner li:nth-child(3) em {background-position:0 -88px;}
.ysInner li:nth-child(4) em {background-position:0 -132px;}
.ysInner li:nth-child(2) {text-align:center;}
.ysInner li:nth-child(2) dl p {margin-bottom:5px;}
.ysInner li:nth-child(3) dl p {margin-bottom:5px;}
.ysInner b {display:none;}
.ysInner dl p {padding:0 10px;font-size:14px;line-height:18px;color:#fff;}
.ysInner li:hover dl {top:0;}

.cpysOuter {height:1112px;background:url(../image/cpys.jpg) no-repeat top center;}
.cpysInner {width:1200px;height:1112px;margin:0 auto;position:relative;}
.cpysInner h4 {text-align:center;font-size:46px;color:#0010ae;}
.cpysInner h4 i {position:relative;display:inline-block;top:5px;margin-right:10px;font-weight:normal;font-size:100px;color:#ffa364;}
.cpysInner ul li {position:absolute;line-height:20px;font-size:16px;color:#666;}
.cpysInner ul li:nth-child(1) {width:388px;text-align:right;left:0;top:242px;}
.cpysInner ul li:nth-child(2) {width:352px;text-align:right;left:0;top:317px;}
.cpysInner ul li:nth-child(3) {width:352px;text-align:right;left:0;top:397px;line-height:40px;}
.cpysInner ul li:nth-child(4) {width:388px;text-align:right;left:0;top:468px;line-height:40px;}
.cpysInner ul li:nth-child(5) {width:388px;text-align:left;right:0;top:242px;}
.cpysInner ul li:nth-child(6) {width:352px;text-align:left;right:0;top:317px;line-height:40px;}
.cpysInner ul li:nth-child(7) {width:352px;text-align:left;right:0;top:397px;}
.cpysInner ul li:nth-child(8) {width:388px;text-align:left;right:0;top:468px;}



.cpysOuter.index {height:auto;background-image:none;padding-bottom:40px;}
.cpysOuter.index .cpysInner {height:auto;}
.cpysInner h5 {margin-bottom:50px;text-align:center;font-size:30px;line-height:30px;color:#0010ae;}
.cpysInner p {margin-bottom:28px;text-align:center;font-size:20px;line-height:20px;color:#666;}
.cpysInner ol li {float:left;margin:0 15px;border-bottom:2px solid transparent;}
.cpysInner .photo {width:174px;height:175px; }
.cpysInner .photo  img{ max-width:100%;}
.cpysInner ol li:nth-child(2) .photo {background-position:-1231px 0;}
.cpysInner ol li:nth-child(3) .photo {background-position:-616px 0;}
.cpysInner ol li:nth-child(4) .photo {background-position:-1026px 0;}
.cpysInner ol li:nth-child(5) .photo {background-position:-1639px 0;}
.cpysInner ol li:nth-child(6) .photo {background-position:-410px 0;}
.cpysInner ol li:nth-child(7) .photo {background-position:-821px 0;}
.cpysInner ol li:nth-child(8) .photo {background-position:-1435px 0;}
.cpysInner ol li:nth-child(9) .photo {background-position:-205px 0;}
.cpysInner ol li:nth-child(10) .photo {background-position:-1842px 0;}
.cpysInner ol b {display:block;font-weight:normal;text-align:center;line-height:37px;font-size:16px;color:#888;}
.cpysInner ol li:last-child {margin-right:0;}
.cpysInner ol li:hover {color:#0010ae;border-bottom-color:#0010ae;}
.cpysOuter.yunzhuanxian {height:1000px;}




.scroll-cpys {position:relative;width:1284px;margin-left:-42px;}
.scroll-cpys .hd {}
.scroll-cpys .hd .prev,
.scroll-cpys .hd .next {position:absolute;z-index:2;left:0;top:50%;margin-top:-38px;display:block;width:28px;height:76px;overflow:hidden;cursor:pointer;background:url(../image/pic-slide-arrow.png) no-repeat;}
.scroll-cpys .hd .next {background-position:-33px 0px;left:auto;right:0;}
.scroll-cpys .hd .prev:hover {background-position:0px -81px;}
.scroll-cpys .hd .next:hover {background-position:-33px -81px;}
.scroll-cpys .bd {padding-left:30px;}
.scroll-cpys .bd ol {overflow:hidden;zoom:1;}




.hyOuter {height:599px;background:#f0f2f7 url(../image/hybg.jpg) no-repeat center 147px;}
.hyInner {width:1200px;margin:0 auto;text-align:center;}
.hyInner .tit {position:relative;display:inline-block;height:115px;padding-top:32px;text-align:center;}
.hyInner h2 {display:inline-block;font-size:36px;font-weight:bold;color:#0010ae;line-height:48px;}
.hyInner p {font-size:24px;color:#666;}
.hyInner li {position:relative;float:left;width:298px;height:304px;}
.hyInner li:nth-child(1) {margin-right:3px;}
.hyInner li:nth-child(2) {margin-right:2px;}
.hyInner li:nth-child(3) {margin-right:3px;}
.hyInner b {display:block;text-align:center;margin-top:225px;font-size:32px;color:#fff;}
.hyInner dl {position:absolute;left:-32px;top:-35px;right:-32px;bottom:-35px;color:#fff;background-color:#0fa1db;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;opacity:0;transform:scale(.8,.8);}
.hyInner dt {position:relative;margin:45px 0 35px;font-size:30px;font-weight:bold;text-align:center;}
.hyInner dt:after {content:'';position:absolute;width:1em;height:1px;background-color:#fff;left:50%;bottom:0;margin-left:-.5em;}
.hyInner dd p {padding:0 45px;font-size:18px;color:inherit;text-align:justify;text-justify:distribute;}
.hyInner dd.lnk {position:absolute;left:124px;top:288px;}
.hyInner dd.lnk a {display:block;width:117px;height:36px;border:1px solid #fff;color:#fff;font-size:16px;line-height:36px;text-align:center;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.hyInner dd.lnk a:hover {background-color:#fff;color:#0fa1db;}
.hyInner li:hover dl {opacity:1;transform:scale(1,1);}
.hyInner .but {display:block;margin:43px auto 0;width:390px;height:66px;line-height:66px;text-align:center;font-size:26px;border-radius:33px;background-color:#0010ae;color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.hyInner .but:hover {background-color:rgba(0,174,243,.8);}
.hyOuter.jiejue {background-color:transparent;}







.hyOuterIndex {
    height: 450px;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #f0f2f7;
}
.hyInnerIndex {width:1200px;margin:0 auto;text-align:center;}
.hyInnerIndex .tit {position:relative;display:inline-block;height:80px;padding-top:55px;text-align:center;}
.hyInnerIndex h6 {display:inline-block;font-weight:bold;font-size:30px;line-height:30px;margin-bottom:10px;color:#0010ae;}
.hyInnerIndex p {font-size:20px;line-height:20px;color:#666;}

.hyInnerIndex ul {background:url(../image/hyOuterIndex.png) no-repeat;}
.hyInnerIndex li {position:relative;float:left;width:300px;height:280px;}
.hyInnerIndex b {display:block;text-align:center;/* margin-top:100px; */font-size:24px;font-weight:normal;color:#fff;}
.hyInnerIndex dl {position:absolute;left:-20px;right:-20px;top:-11px;bottom:-11px;color:#fff;background-color:#0010ae;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;opacity:0;transform:scale(.8,.8);display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;align-items:center;}
.hyInnerIndex dt {position:relative;margin-bottom:5px;font-size:20px;font-weight:normal;text-align:center;}
.hyInnerIndex dd p {padding:0 35px;font-size:14px;color:inherit;text-align:justify;text-justify:distribute;margin-bottom:10px;}
.hyInnerIndex dd.lnk {}
.hyInnerIndex dd.lnk a {display:block;width:110px;height:30px;border:1px solid #fff;color:#fff;font-size:14px;line-height:30px;text-align:center;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.hyInnerIndex dd.lnk a:hover {background-color:#fff;color:#0fa1db;}
.hyInnerIndex li:hover dl {opacity:1;transform:scale(1,1);}
.hyInnerIndex .but {display:block;margin:20px auto 0;width:380px;height:56px;line-height:56px;text-align:center;font-size:24px;border-radius:33px;background-color:#0010ae;color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.hyInnerIndex .but:hover {background-color:rgba(0,174,243,.8);}


.scrollOuter {padding:40px 0;}
.scrollOuter .tit {text-align:center;}
.scrollOuter .tit strong {display:inline-block;font-weight:bold;font-size:30px;line-height:30px;margin-bottom:10px;color:#0010ae;}
.scrollOuter .tit p {font-size:20px;line-height:20px;margin-bottom:40px;color:#666;}

.scroll-left {position:relative;width:1260px;margin:0 auto;}
.scroll-left .hd {}
.scroll-left .hd .prev,
.scroll-left .hd .next {position:absolute;z-index:2;left:0;top:50%;margin-top:-38px;display:block;width:28px;height:76px;overflow:hidden;cursor:pointer;background:url(../image/pic-slide-arrow.png) no-repeat;}
.scroll-left .hd .next {background-position:-33px 0px;left:auto;right:0;}
.scroll-left .hd .prev:hover {background-position:0px -81px;}
.scroll-left .hd .next:hover {background-position:-33px -81px;}
.scroll-left .bd {padding-left:40px;}
.scroll-left .bd ul {overflow:hidden;zoom:1;}
.scroll-left .bd li {float:left;width:200px;margin:0 8px;padding:9px;text-align:center;font-size:14px;overflow:hidden;background-color:#fff;border:1px solid #ddd;}
.scroll-left .bd li:hover {border-color:#0010ae;}
.scroll-left .bd p {font-size:18px;color:#888;}
.scroll-left .photo {position:relative;display:block;width:200px;height:98px;margin:0 auto;overflow:hidden;}
.scroll-left .photo span {display:table-cell;vertical-align:middle;text-align:center;width:200px;height:98px;overflow:hidden;}
.scroll-left .photo span img {vertical-align:bottom;max-width:200px;max-height:98px;}

.abOuter {height:529px;padding-top:130px;background:url(../image/aboutbg.jpg) no-repeat bottom center;}
.abInner {width:1200px;margin:0 auto;position:relative;}
.abInner .tit {width:449px;height:72px;border:1px solid #0010ae;color:#0010ae;margin:0 auto 55px;position:relative;text-align:center;}
.abInner .tit strong {display:inline-block;font-size:36px;line-height:46px;margin-top:-.5em;padding:0 15px;background-color:#fff;}
.abInner .tit i {display:block;font-style:normal;font-size:24px;}
.abInner dl {padding-left:545px;padding-right:45px;text-align:justify;text-justify:distribute;}
.abInner dt {font-size:30px;font-weight:bold;margin-bottom:15px;}
.abInner dd {font-size:18px;line-height:27px;color:#666;}
.abInner .but {position:absolute;left:545px;top:438px;display:block;width:174px;height:40px;line-height:40px;text-align:center;font-size:20px;border-radius:20px;background-color:#0010ae;color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.abInner .but:hover {background-color:rgba(0,174,243,.8);}

.scrollOuter2 .tit {width:449px;height:72px;border:1px solid #0010ae;color:#0010ae;margin:55px auto;position:relative;text-align:center;}
.scrollOuter2 .tit strong {display:inline-block;font-size:36px;line-height:46px;margin-top:-.5em;padding:0 15px;background-color:#fff;}
.scrollOuter2 .tit i {display:block;font-style:normal;font-size:24px;}

.scroll-left2 {position:relative;width:1308px;margin:0 auto;padding-bottom:80px;}
.scroll-left2 .hd {}
.scroll-left2 .hd .prev,
.scroll-left2 .hd .next {position:absolute;z-index:2;left:0;top:50%;margin-top:-38px;display:block;width:28px;height:76px;overflow:hidden;cursor:pointer;background:url(../image/pic-slide-arrow.png) no-repeat;}
.scroll-left2 .hd .next {background-position:-33px 0px;left:auto;right:0;}
.scroll-left2 .hd .prev:hover {background-position:0px -81px;}
.scroll-left2 .hd .next:hover {background-position:-33px -81px;}
.scroll-left2 .bd {padding-left:30px;}
.scroll-left2 .bd ul {overflow:hidden;zoom:1;}
.scroll-left2 .bd li {float:left;width:264px;margin:0 24px;text-align:center;}
.scroll-left2 .photo {position:relative;display:block;width:264px;height:382px;margin:0 auto;overflow:hidden;}
.scroll-left2 .photo span {display:table-cell;vertical-align:middle;text-align:center;width:264px;height:382px;overflow:hidden;}
.scroll-left2 .photo span img {vertical-align:bottom;max-width:264px;max-height:382px;}

.iNews {width:1200px;height:325px;margin:0 auto 20px;}
.iNews .slideTxtBox {float:left;width:710px;}
.iNews .hd {padding-bottom:20px;}
.iNews .hd ul {border-bottom:1px solid #c1c1c1;}
.iNews .hd li {float:left;}
.iNews .hd li a {float:left;position:relative;display:block;padding:10px 25px;font-size:20px;color:#3c3c3c;}
.iNews .hd li h5 {font-size:inherit;color:inherit;}
.iNews .hd li.on a {color:#0010ae;}
.iNews .hd li.on a:before {content:'';position:absolute;left:0;bottom:-1px;width:100%;height:2px;font-size:0;line-height:0;background-color:#0010ae;}

.iNews .bd ul li {float:right;width:380px;margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid #e4e4e4;}
.iNews .bd ul li a {position:relative;display:block;height:54px;padding-left:64px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.iNews .bd ul li a:before {content:'NEW';position:absolute;left:0;top:0;bottom:0;width:52px;height:52px;line-height:52px;text-align:center;font-size:16px;border:1px solid #0010ae;color:#0010ae;box-shadow:inset 0px 0px 0px 1px #afe6fb;border-radius:2px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}

.iNews .bd ul li a:hover:before {color:#fff;background-color:#0010ae;box-shadow:none;}
.iNews .bd ul li:last-child {margin-bottom:0;padding-bottom:0;border-bottom:none;}
.iNews .bd ul li:first-child {position:relative;float:left;width:305px;height:236px;margin:0;padding:0;border:none;}
.iNews .bd ul li:first-child a {position:static;padding-left:0;height:inherit;}
.iNews .bd ul li:first-child a:before {display:none;}
.iNews .bd ul li:first-child a:hover b {color:#0010ae;}
.iNews .bd ul li:first-child a:hover p {color:#fff;}
.iNews .photo {background-repeat:no-repeat;background-position:center center;background-size:cover;width:305px;height:236px;overflow:hidden;}
.iNews .photo img {display:none;}
.iNews .bd .desc {position:absolute;bottom:0;left:0;right:0;padding:8px 12px;background-color:rgba(0,0,0,.6);}
.iNews .bd .desc b {color:#fff;}
.iNews .bd .desc p {color:#ababab;}
.iNews .bd b {display:block;font-weight:normal;font-size:16px;line-height:27px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.iNews .bd p {font-size:14px;line-height:27px;color:#888;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}



.wd {float:right;width:438px;height:323px;}
.wd .wdtit {margin-bottom:20px;border-bottom:1px solid #aaa;}
.wd .wdtit a {float:left;display:block;font-weight:normal;position:relative;padding:10px 25px;font-size:20px;color:#0010ae;}
.wd .wdtit a:before {content:'';position:absolute;left:0;bottom:-1px;width:100%;height:2px;font-size:0;line-height:0;background-color:#0010ae;}
.wd ul {height:236px;}
.wd li {margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid #e4e4e4;}
.wd li:last-child {margin-bottom:0;padding-bottom:0;border-bottom:none;}

.wd b {position:relative;display:block;padding-left:35px;font-size:16px;line-height:27px;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.wd p {position:relative;padding-left:35px;font-size:14px;line-height:27px;color:#888;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.wd b:before {content:'Q';position:absolute;left:0;top:2px;width:22px;height:20px;text-align:center;line-height:20px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wd p:before {content:'A';position:absolute;left:0;top:2px;width:22px;height:20px;text-align:center;line-height:20px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wd li a:hover b:before,
.wd li a:hover p:before {background-color:#0010ae;color:#fff;}

.jianjie {width:1148px;margin:0 auto 20px;padding:25px;border:1px solid #0010ae;font-size:16px;color:#666;}
.jianjie h4 {color:#0010ae;}
.jianjie.sub {background-color:#f5f5f5;border-color:#f5f5f5;}

.fOuter {background-color:#353535;color:#fff;}
.fInner {width:800px;height:324px;margin:0 auto;padding-left:400px;background:url(../image/fbg.jpg) no-repeat left center;}
.fInner dl {float:left;width:120px;min-height:223px;margin-bottom:20px;padding:0 75px;text-align:center;}
.fInner dl:nth-child(1) {border-right:1px dashed #7f7f7f;}
.fInner dl:nth-child(2) {width:130px;padding:0 60px;border-right:1px dashed #7f7f7f;}
.fInner dt {font-size:20px;padding-top:40px;margin-bottom:15px;}
.fInner dd a {display:block;font-size:14px;line-height:34px;color:inherit;}
.fInner ul {float:right;width:800px;padding-top:20px;border-top:1px dashed #7f7f7f;}
.fInner ul li {float:left;}
.fInner ul li:before {margin-left:0;}
.fInner ul li:nth-child(1) {position:relative;width:233px;font-size:14px;padding-left:33px;text-align:left;}
.fInner ul li:nth-child(1):before {position:absolute;left:0;top:7px;font-size:28px;}
.fInner ul li:nth-child(2) {width:268px;text-align:center;font-size:25px;}
.fInner ul li:nth-child(3) {width:266px;text-align:right;font-size:26px;}

.flnkOuter {padding-top:25px;background-color:#353535;color:#fff;font-size:14px;}
.flnkInner {width:1165px;margin:0 auto;padding-right:35px;line-height:30px;height:22px;overflow:hidden;position:relative;}
.flnkInner.extend {height:auto;overflow:visible;}
.flnkInner a {display:inline-block;margin:0 20px 0 0;color:#fff;}
.flnkInner a:hover {color:#0010ae;}
.flnkInner .icon-angle-double-down {position:absolute;right:0;top:0;font-size:18px;cursor:pointer;}
.flnkInner .icon-angle-double-down:hover {color:#0010ae;}
.flnkInner.extend .icon-angle-double-down:before {content:'\f102';}
.copy {line-height:50px;background-color:#353535;text-align:center;color:#868686;}
.copy a {color:#868686;}

.fullSlide {width:1200px;height:500px;margin:25px auto;position:relative;}
.fullSlide .bd {width:1200px;height:500px;overflow:hidden;}
.fullSlide .bd li>a {display:block;position:relative;width:1200px;height:500px;overflow:hidden;}
.fullSlide .bd p {position:absolute;bottom:-69px;left:0;right:0;height:45px;padding:12px 0;font-size:20px;background-color:rgba(255,255,255,.6);}
.fullSlide .bd p>a {display:block;width:270px;height:45px;line-height:45px;text-align:center;background-color:#fff;color:#0694cd;box-shadow:0 0 8px rgba(0,0,0,0.1);border-radius:23px;margin:0 auto;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.fullSlide .bd p>a:hover {background-color:#0010ae;color:#fff;}
.fullSlide .hd {display:none;}
.fullSlide .prev,
.fullSlide .next {position:absolute;z-index:5;left:3%;top:50%;margin-top:-25px;display:block;width:32px;height:40px;background:url(../image/slider-arrow.png) -110px 5px no-repeat;opacity:0.5;}
.fullSlide .next {left:auto;right:3%;background-position:8px 5px;}
.fullSlide .prev:hover,
.fullSlide .next:hover {opacity:1;}


.kf-icon {font-family:'fontello';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.cndns-right {position:fixed;right:10px;top:50%;margin-top:-162px;z-index:99999;background-color:#f1f1f1;border:1px solid #e0e0e0;font-family:'Microsoft YaHei';}
.cndns-right i {font-style:normal;}
.cndns-right-meau {position:relative;}
.cndns-right-meau:hover .cndns-right-box {display:block;}
a.cndns-right-btn {position:relative;display:block;width:75px;height:80px;text-align:center;border-top:1px solid #e0e0e0;}
a.cndns-right-btn:hover {background:#ffffff;text-decoration:none;}
a.cndns-right-btn:hover .kf-icon {color:#0099ff;}
a.cndns-right-btn span {font-size:28px;line-height:52px;color:#555;}
a.cndns-right-btn p {font-size:12px;line-height:18px;padding-bottom:10px;color:#666;}
.meau-top a.cndns-right-btn span {font-size:24px;line-height:38px;padding-top:10px;}
.meau-top a.cndns-right-btn i {display:block;font-size:12px;color:#555;}
.cndns-right-box {position:absolute;top:0;right:62px;padding-right:25px;display:none;}
.cndns-right-box .box-border {position:relative;padding:20px;overflow:hidden;box-shadow:0 3px 8px rgba(0,0,0,.15);border-top:4px solid #0099ff;border-left:1px solid #f1f1f1;border-right:1px solid #f1f1f1;border-bottom:1px solid #f1f1f1;background-color:#fff;}
.cndns-right-box .box-border .sev-t span {float:left;display:block;font-size:48px;line-height:56px;margin-right:20px;color:#d3d3d3;}
.cndns-right-box .box-border .sev-t p {float:left;font-size:22px;line-height:28px;}
.cndns-right-box .box-border .sev-t p i {display:block;font-size:12px;color:#999;}
.cndns-right-box .box-border .sev-b {padding-top:15px;margin-top:15px;border-top:1px solid #e4e4e4;}
.cndns-right-box .box-border .sev-b li {float:left;width:50%;}
.cndns-right-box .box-border .sev-b li a {display:inline-block;font-size:12px;line-height:36px;padding-left:43px;background:url(../image/zxqq.png) no-repeat left 3px;}
.cndns-right-box .box-border .sev-b li a:hover {color:#0099ff;}
.meau-sev .cndns-right-btn {border-top:none;}
.meau-sev .cndns-right-box .box-border {width:300px;}
.meau-contact .cndns-right-box .box-border {width:230px;}
.meau-code .cndns-right-box {top:-161px;}
.meau-code .cndns-right-box .box-border {width:180px;padding:15px;text-align:center;}
.meau-code .cndns-right-box .box-border em {display:block;font-size:12px;padding-top:8px;color:#999;text-align:center;}

.nfoundbg {width:1168px;padding-top:585px;padding-bottom:35px;background:url(../image/404.png) no-repeat top center;margin:0 auto;text-align:center;}
.nfoundbg h1 {font-size:30px;line-height:50px;font-family:'Source Sans Pro',Helvetica,Arial,sans-serif;font-weight:900;}
.nfoundbg p {font-size:16px;color:#999;margin-bottom:15px;}
.nfoundbg p a {font-weight:bold;color:#0010ae;}
.nfoundbg form {position:relative;width:260px;height:40px;margin:0 auto;border-radius:20px;background-color:#fff;border:1px solid #0010ae;}
.nfoundbg form:after {position:absolute;z-index:1;right:0;top:0;font-family:'fontello';content:'\e814';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;text-align:center;font-variant:normal;text-transform:none;width:40px;height:40px;line-height:40px;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;color:#0010ae;}
.nfoundbg input {border:none;background:none;outline:none;}
.nfoundbg input[type='text'] {float:left;width:220px;height:40px;padding:9px 0 9px 20px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
.nfoundbg input[type='submit'] {float:right;width:40px;height:40px;opacity:0;position:relative;z-index:2;cursor:pointer;}
.yewu {height:200px;text-align:center;color:#fff;background:url(../image/yewubg.jpg) no-repeat center center;}
.yewu h2 {font-weight:normal;font-size:34px;padding-top:35px;}
.yewu p {font-size:14px;margin-bottom:25px;font-family:'Microsoft YaHei';}
.yewu li {display:inline-block;width:192px;height:37px;line-height:37px;margin:0 16px;font-size:18px;}
.yewu li a {display:block;color:white;border:1px solid #adadad;border-radius:9px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.yewu li a:hover {background-color:#ffa364;border-color:#ffa364;color:white;}
.banInner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* 确保文字在星星上方 */
}
.banOuter.guoji {height:200px;color:#fff;background:url(../image/guojibg.jpg) no-repeat center center;}
.banOuter.guoji h2 {font-size:34px;line-height:46px;font-weight:normal;}
.banOuter.guoji p:nth-of-type(1) {font-size:16px;margin-bottom:25px;}
.banOuter.guoji p:nth-of-type(2) {font-size:18px;font-weight:bold;}
.banOuter.guoji i {display:inline-block;margin:0 5px;font-size:12px;font-style:normal;vertical-align:middle;font-family:'Microsoft YaHei';}
.banOuter.guoji .banInner {position:relative;}
.banOuter.guoji .vercen {display:table-cell;vertical-align:middle;width:1200px;height:200px;overflow:hidden;}
.banOuter.guoji a {position:absolute;width:194px;height:45px;line-height:45px;text-align:center;border-radius:9px;left:860px;top:77px;font-size:18px;font-weight:bold;background-color:#ffffff;color:#0010ae;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.banOuter.guoji a:hover {color:#ffffff;background-color:#0010ae;}
.banOuter.mpls {height:265px;color:#fff;background:url(../image/mpls-vpn-bg.jpg) no-repeat center center;}
.banOuter.mpls .vercen {display:table-cell;vertical-align:middle;width:1200px;height:265px;text-align:center;overflow:hidden;}
.banOuter.mpls h1 {font-size:36px;line-height:46px;font-weight:bold;}
.banOuter.mpls p {font-size:20px;line-height:46px;margin-bottom:15px;}
.banOuter.mpls a {display:inline-block;width:280px;height:48px;line-height:48px;font-size:22px;font-weight:bold;color:#fff;background-color:#ffa364;border-radius:10px;}
.banOuter.mpls a:hover {background-color:#ff9933;}
.banOuter.sdwan {height:265px;color:#fff;background:url(../image/sd-wan-bg.jpg) no-repeat center center;}
.banOuter.sdwan .banInner {position:relative;}
.banOuter.sdwan .vercen {display:table-cell;vertical-align:middle;width:600px;height:265px;padding-left:144px;overflow:hidden;}
.banOuter.sdwan h1 {font-size:36px;line-height:46px;font-weight:bold;margin-bottom:10px;}
.banOuter.sdwan p:nth-of-type(1) {font-size:14px;margin-bottom:20px;}
.banOuter.sdwan p:nth-of-type(2) {font-size:18px;font-weight:bold;}
.banOuter.sdwan .w {position:absolute;left:757px;top:99px;}
.banOuter.sdwan a {display:inline-block;width:307px;height:45px;line-height:45px;margin-bottom:10px;font-size:22px;font-weight:bold;color:#fff;background-color:#ffa364;text-align:center;border-radius:10px;}
.banOuter.sdwan .w p {font-size:16px;font-weight:bold;color:#ffa364;}

.banOuter.duanxin {height:200px;color:#fff;background:url(../image/duanxin-bg.jpg) no-repeat center center;}
.banOuter.duanxin .vercen {display:table-cell;vertical-align:middle;width:562px;height:200px;padding-left:600px;padding-right:38px;text-align:right;overflow:hidden;}
.banOuter.duanxin h1 {font-size:38px;line-height:46px;font-weight:bold;}
.banOuter.duanxin p {font-size:22px;margin-bottom:10px;}
.banOuter.duanxin a {display:inline-block;width:194px;height:45px;line-height:45px;font-size:20px;font-weight:bold;color:#0010ae;background-color:#fff;text-align:center;border-radius:10px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.banOuter.duanxin a:hover {color:#fff;background-color:#ffa364;}
/* 基础容器：调亮后的深蓝色调 */
.banOuter.news {
    height: 200px;
    /* 核心修改：提高亮度的深蓝色渐变 (从宝蓝到深蓝) */
    background: radial-gradient(circle at center, #1e3a5f 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
    display: table;
    width: 100%;
}

/* 星星基础样式 - 保持伪元素实现 */
.banOuter.news::before,
.banOuter.news::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: transparent;
}

/* 第一层：大颗粒星 (5px) - 清亮的白蓝色辉光 */
.banOuter.news::before {
    width: 5px;
    height: 5px;
    /* 增加坐标密度，让画面更满 */
    box-shadow: 
        150px 30px #fff, 400px 150px #fff, 650px 80px #fff, 900px 170px #fff, 1100px 40px #fff,
        250px 120px #fff, 550px 180px #fff, 800px 20px #fff, 1000px 130px #fff, 50px 160px #fff,
        1150px 160px #fff, 320px 20px #fff, 720px 140px #fff, 480px 45px #fff, 850px 110px #fff;
    /* 更亮的蓝色发光 */
    filter: drop-shadow(0 0 8px rgba(173, 216, 230, 0.9)); 
    animation: starFlash 3s ease-in-out infinite;
}

/* 第二层：中等颗粒 (3px) - 纯净白 */
.banOuter.news::after {
    width: 3px;
    height: 3px;
    box-shadow: 
        100px 150px #ffffff, 300px 50px #ffffff, 500px 120px #ffffff, 750px 160px #ffffff, 950px 60px #ffffff,
        200px 40px #ffffff, 450px 140px #ffffff, 700px 30px #ffffff, 850px 180px #ffffff, 1150px 110px #ffffff,
        50px 10px #ffffff, 600px 50px #ffffff, 1050px 25px #ffffff;
    opacity: 0.8;
    animation: starFlash 4s ease-in-out infinite 1s;
}

/* 闪烁动画 */
@keyframes starFlash {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* 文字层：确保清晰度 */


.banOuter.news .vercen {
    display: table-cell;
    vertical-align: middle;
    width: 1200px;
    height: 200px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.banOuter.news h4, .banOuter.news h5 {
    font-size: 34px;
    line-height: 46px;
    font-weight: normal;
    margin-bottom: 5px;
    /* 配合浅蓝背景，增强文字阴影对比 */
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.banOuter.news p {
    font-size: 18px;
    opacity: 1; /* 浅蓝背景下全透明更清晰 */
    font-weight: 300;
}


.banOuter.aboutus {height:200px;background:url(../image/aboutusbanner.jpg) no-repeat center center;}
.banOuter.aboutus .vercen {display:table-cell;vertical-align:middle;width:1200px;height:200px;text-align:center;overflow:hidden;color:#fff;}
.banOuter.aboutus h1 {font-size:36px;line-height:46px;font-weight:normal;}
.banOuter.aboutus i {font-size:12px;font-style:normal;vertical-align:middle;}
.banOuter.aboutus b {font-weight:normal;color:#ffa364;}
.banOuter.aboutus p {font-size:26px;}
.banOuter.zhichi {height:200px;background:url(../image/fuwubanner.jpg) no-repeat center center;}
.banOuter.zhichi .vercen {display:table-cell;vertical-align:middle;width:600px;height:200px;text-align:center;overflow:hidden;color:#fff;}
.banOuter.zhichi h1 {font-size:38px;line-height:44px;padding:8px 0 20px;font-weight:normal;}
.banOuter.zhichi p {font-size:24px;line-height:30px;padding-bottom:25px;}
.banOuter.hezuo {height:200px;background:url(../image/hezuobanner.jpg) no-repeat center center;}
.banOuter.hezuo .vercen {display:table-cell;vertical-align:middle;width:1200px;height:200px;text-align:center;overflow:hidden;color:#fff;}
.banOuter.hezuo h1 {font-size:36px;line-height:44px;font-weight:normal;}
.banOuter.hezuo h1 b {color:#ffa364;}
.banOuter.hezuo p {font-size:20px;font-weight:normal;}

.banOuter.lianxi {height:200px;background:url(../image/contactbanner.jpg) no-repeat center center;}
.banOuter.lianxi .vercen {display:table-cell;vertical-align:middle;width:776px;height:200px;text-align:center;overflow:hidden;color:#fff;}
.banOuter.lianxi h1 {font-size:30px;line-height:44px;font-weight:normal;padding:15px 0;}
.banOuter.lianxi h1 b {font-size:34px;font-weight:bold;}
.banOuter.lianxi p {font-size:22px;font-weight:normal;padding-top:15px;}

.banOuter.zhineng {height:200px;color:#fff;background:url(../image/znbanner.jpg) no-repeat center center;}
.banOuter.zhineng h1 {font-size:34px;line-height:46px;font-weight:normal;}
.banOuter.zhineng p {font-size:16px;}
.banOuter.zhineng .banInner {position:relative;}
.banOuter.zhineng .vercen {display:table-cell;vertical-align:middle;width:1200px;height:200px;overflow:hidden;}
.banOuter.zhineng a {position:absolute;width:194px;height:45px;line-height:45px;text-align:center;border-radius:9px;left:860px;top:77px;font-size:18px;font-weight:bold;background-color:#ffffff;color:#0010ae;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.banOuter.zhineng a:hover {color:#ffffff;background-color:#0010ae;}

.banOuter.jiaoyu {height:200px;color:#fff;background:url(../image/jybanner.jpg) no-repeat center center;}
.banOuter.jiaoyu h2 {font-size:34px;line-height:46px;font-weight:normal;margin-top:10px;}
.banOuter.jiaoyu p {font-size:20px;margin-bottom:20px;}
.banOuter.jiaoyu .vercen {display:table-cell;vertical-align:middle;text-align:center;width:1200px;height:200px;overflow:hidden;}
.banOuter.jiaoyu a {display:inline-block;width:194px;height:45px;line-height:45px;text-align:center;border-radius:9px;left:860px;top:77px;font-size:18px;font-weight:bold;background-color:#ffffff;color:#ffa364;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.banOuter.jiaoyu a:hover {color:#ffffff;background-color:#0010ae;}

.banOuter.jiejue {height:200px;color:#fff;background:url(../image/jjbanner.jpg) no-repeat center center;}
.banOuter.jiejue h1 {font-size:34px;width: ;margin-top:-20px;}
.banOuter.jiejue i {font-size:12px;font-style:normal;vertical-align:middle;}
.banOuter.jiejue p {font-size:18px;margin-bottom:15px;}
.banOuter.jiejue .vercen {display:table-cell;vertical-align:middle;text-align:center;width:1200px;height:200px;overflow:hidden;}
.banOuter.jiejue a {display:inline-block;width:194px;height:45px;line-height:45px;text-align:center;border-radius:9px;left:860px;top:77px;font-size:18px;font-weight:bold;background-color:#ffffff;color:#0010ae;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.banOuter.jiejue a:hover {color:#ffffff;background-color:#ffa364;}

.banOuter.yunzhuanxian {height:200px;color:#fff;background:url(../image/yzxbg.jpg) no-repeat center center;}
.banOuter.yunzhuanxian .vercen {display:table-cell;vertical-align:middle;text-align:center;width:1200px;height:200px;overflow:hidden;}
.banOuter.yunzhuanxian h1 {font-size:28px;line-height:46px;font-weight:bold;}
.banOuter.yunzhuanxian p {font-size:16px;}
.banOuter.yunzhuanxian p:nth-of-type(2) {margin-bottom:10px;}
.banOuter.yunzhuanxian p:nth-of-type(3) {font-size:22px;}


.site {width:1200px;margin:0 auto;line-height:48px;font-size:14px;color:#666;font-family:'Microsoft YaHei';}
.site a:link,
.site a:visited {color:inherit;}
.site a:hover {color:#0010ae;}
.site span {display:inline-block;position:relative;padding-left:32px;}
.site span:before {position:absolute;content:'';left:0;top:50%;width:16px;height:16px;margin-top:-8px;background-color:#0010ae;}

/* -------------------------------------------------- */
/* 全局和标题部分保持不变 */
/* -------------------------------------------------- */
.axzInner {background: #5B5B5B;}
.xzInner {width:1200px;margin:0 auto;}
.xzInner .tit {height:152px;text-align:center;padding-top:50px;}
.xzInner i {display:block;font-style:normal;font-weight:normal;font-size:16px;line-height:24px;color:#cecece;text-transform:uppercase;}
.xzInner h4 {display:inline-block;font-size:32px;line-height:48px;color:#0010ae;}
.xzInner p {font-size:20px;line-height:30px;color:#666;}

.xzInner .ld {position:absolute;left:-5.5em;width:5em;height:1px;background-color:#0010ae;top:50%;}
.xzInner .rd {position:absolute;right:-5.5em;width:5em;height:1px;background-color:#0010ae;top:50%;}

/* -------------------------------------------------- */
/* 修改后的列表项（li）样式，使用圆形设计 */
/* -------------------------------------------------- */

.xzInner ul { /* 确保ul清除浮动 */
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* 使用 Flexbox 布局更容易控制对齐 */
    justify-content: space-between;
}

.xzInner li {
    /* 将矩形基础样式改为圆形/圆角矩形 */
    float: none; /* 取消原有的float:left; 改用flex布局 */
    width: 280px;
    height: 160px;
    margin-right: 0; /* Flexbox 管理间距，不需要右边距 */
    background-color:;
    transition: all .3s;
    /* 核心修改：创建圆角 */
    border-radius: 10%; /* 如果需要正圆，设置50%; 如果只是圆角卡片，可以设置一个较小值如 15px */
    overflow: hidden; /* 确保内容在圆角内 */
    display: flex; /* 使用 Flexbox 垂直水平居中内容 */
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box; /* 边框和内边距包含在宽度高度内 */
rgba(13,134,109,1.00)}

.xzInner dl {
    position: static; /* dl不再绝对定位，而是作为flex子项居中 */
    color: #fff;
    text-align: center; /* 文本居中 */
    padding: 20px; /* 增加内边距 */
}

/* 标题 dt 和 描述 dd 的样式调整，以适应居中布局 */
.xzInner dt {
    display: block; /* 块级显示 */
    font-size: 22px;
    line-height: 33px;
    font-weight: bold;
    margin: 0 auto 15px auto; /* 居中并设置下边距 */
    padding-top: 0; /* 取消原有的padding-top */
    border-bottom: 2px solid #fff;
    width: fit-content; /* 宽度适应内容 */
}

.xzInner dd {
    font-size: 14px;
    margin-left: 0; /* 取消左边距 */
    padding-right: 0; /* 取消右边距 */
    text-align: center; /* 文本居中 */
}




/* Hover 效果调整 */
.xzInner li:hover {
    background-color: #0010ae;
    /* 悬停时不再需要复杂的负值定位来模拟边框，使用 box-shadow 或 border 代替 */
    /* 移除以下原有的定位代码，这些代码是为矩形布局设计的 */
    /*
    left:-11px;
    right:-11px;
    top:-11px;
    bottom:-11px;
    */
    /* 可以添加一个轻微的缩放效果或者边框效果 */
    transform: scale(1.05);
    border: 1px solid #0010ae;
}

.xzInner li:hover dl {
   padding: 20px; /* 保持hover时的padding一致 */
   border: none; /* 移除hover时dl上的border */
}

.xzInner li:hover dl:after {
   /* 如果移除了after元素，这行代码也无效了 */
}


.fwInner {width:1200px;height:640px;margin:0 auto;}
.fwInner .tit {height:100px;padding-top:31px;text-align:center;}
.fwInner i {position:relative;bottom:-35px;display:block;color:#cdcdcd;font-size:40px;font-weight:bold;font-style:normal;line-height:60px;}
.fwInner h5 {position:relative;display:inline-block;padding:0 3px;font-size:32px;font-weight:bold;line-height:40px;margin-bottom:10px;background-color:#fff;color:#0010ae;}
.fwInner h5:after {content:'';position:absolute;bottom:-8px;width:1em;height:3px;left:50%;margin-left:-.5em;background-color:#0010ae;}
.fwInner p {font-size:20px;line-height:30px;color:#666;}

.clstep {position:relative;}
.clstep b {position:absolute;top:0;display:block;height:62px;line-height:62px;font-weight:normal;text-align:center;border:7px solid #fff;background-color:#e1e1e1;border-radius:38px;font-size:26px;}
.clstep b:nth-of-type(1) {left:0;z-index:2;width:271px;}
.clstep b:nth-of-type(2) {left:234px;z-index:1;width:732px;background-color:#0010ae;color:#fff;}
.clstep b:nth-of-type(3) {right:0;z-index:0;width:236px;padding-left:106px;}
.clstep ul {float:left;padding-top:100px;}
.clstep li {float:left;position:relative;width:133px;padding-top:116px;text-align:center;font-size:16px;}
.clstep li:before {content:'';width:0px;border-left:1px dotted #bfbfbf;height:90px;font-size:0;line-height:0;position:absolute;left:50%;top:0;}
.clstep li:after {content:'';width:10px;height:10px;font-size:0;line-height:0;position:absolute;left:50%;top:90px;margin-left:-5px;background-color:#bfbfbf;border-radius:50%;}
.clstep ul:nth-of-type(2) li {color:#0010ae;}
.clstep ul:nth-of-type(2) li:before {border-color:#0010ae;}
.clstep ul:nth-of-type(2) li:after {background-color:#0010ae;}

.cjOuter {height:816px;background:url(../image/changjing.jpg) no-repeat top center;}
.cjOuter .tit {height:184px;line-height:184px;text-align:center;}
.cjOuter h6 {display:inline-block;font-size:32px;line-height:48px;color:#fff;}
.cjOuter .ld {position:absolute;left:-5.5em;width:4.5em;height:3px;margin-top:-1px;background-color:#fff;top:50%;}
.cjOuter .rd {position:absolute;right:-5.5em;width:4.5em;height:3px;margin-top:-1px;background-color:#fff;top:50%;}
.cjInner {width:1200px;height:507px;position:relative;margin:0 auto;}
.cjInner li {float:left;width:160px;margin-right:100px;text-align:center;position:relative;}
.cjInner li:after {content:'';position:absolute;left:-12px;top:-12px;width:184px;height:184px;background:url(../image/yuan.png) no-repeat center center;opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.cjInner li:nth-child(5n) {margin-right:0;}
.cjInner li:hover:after {opacity:1;}
.cjInner p {height:82px;font-size:18px;line-height:51px;color:#fff;}
.cjInner .photo {width:160px;height:160px;background-image:url(../image/shiyong.png);background-repeat:no-repeat;}
.cjInner li:nth-child(1) .photo {background-position:-780px 0;}
.cjInner li:nth-child(2) .photo {background-position:-260px 0;}
.cjInner li:nth-child(3) .photo {background-position:-520px 0;}
.cjInner li:nth-child(4) .photo {background-position:0 0;}
.cjInner li:nth-child(5) .photo {background-position:-1040px 0;}
.cjInner li:nth-child(6) .photo {background-position:0 -242px;}
.cjInner li:nth-child(7) .photo {background-position:-260px -242px;}
.cjInner li:nth-child(8) .photo {background-position:-520px -242px;}
.cjInner li:nth-child(9) .photo {background-position:-780px -242px;}
.cjInner li:nth-child(10) .photo {background-position:-1040px -242px;}

.cjOuter.jiejue li:nth-child(1) .photo {background-position:-780px -242px;}
.cjOuter.jiejue li:nth-child(2) .photo {background-position:0 0;}
.cjOuter.jiejue li:nth-child(3) .photo {background-position:-520px -242px;}
.cjOuter.jiejue li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.jiejue li:nth-child(5) .photo {background-position:-1040px 0;}
.cjOuter.jiejue li:nth-child(6) .photo {background-position:0 -242px;}
.cjOuter.jiejue li:nth-child(7) .photo {background-position:-260px -242px;}
.cjOuter.jiejue li:nth-child(8) .photo {background-position:-1040px -242px;}
.cjOuter.jiejue li:nth-child(9) .photo {background-position:-520px 0;}
.cjOuter.jiejue li:nth-child(10) .photo {background-position:-260px 0;}

.cjOuter.guoji {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.guoji li:nth-child(1) .photo {background-position:-520px -242px;}
.cjOuter.guoji li:nth-child(2) .photo {background-position:0 0;}
.cjOuter.guoji li:nth-child(3) .photo {background-position:-1040px 0;}
.cjOuter.guoji li:nth-child(4) .photo {background-position:-780px -242px;}
.cjOuter.guoji li:nth-child(5) .photo {background-position:-780px 0;}
.cjOuter.mpls {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.mpls li:nth-child(1) .photo {background-position:-780px -242px;}
.cjOuter.mpls li:nth-child(2) .photo {background-position:-1040px 0;}
.cjOuter.mpls li:nth-child(3) .photo {background-position:-520px -242px;}
.cjOuter.mpls li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.mpls li:nth-child(5) .photo {background-position:0 -242px;}

.cjOuter.kuajing {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.kuajing .cjInner .photo {background-image:url(../image/kjyy.png);}
.cjOuter.kuajing li:nth-child(1) .photo {background-position:0 0;}
.cjOuter.kuajing li:nth-child(2) .photo {background-position:-260px 0;}
.cjOuter.kuajing li:nth-child(3) .photo {background-position:-520px 0;}
.cjOuter.kuajing li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.kuajing li:nth-child(5) .photo {background-position:-1040px 0;}

.cjOuter.zhineng {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.zhineng .cjInner .photo {background-image:url(../image/znyy.png);}
.cjOuter.zhineng li:nth-child(1) .photo {background-position:0 0;}
.cjOuter.zhineng li:nth-child(2) .photo {background-position:-260px 0;}
.cjOuter.zhineng li:nth-child(3) .photo {background-position:-520px 0;}
.cjOuter.zhineng li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.zhineng li:nth-child(5) .photo {background-position:-1040px 0;}

.cjOuter.yiliao {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.yiliao .cjInner .photo {background-image:url(../image/ylyy.png);}
.cjOuter.yiliao li:nth-child(1) .photo {background-position:0 0;}
.cjOuter.yiliao li:nth-child(2) .photo {background-position:-260px 0;}
.cjOuter.yiliao li:nth-child(3) .photo {background-position:-520px 0;}
.cjOuter.yiliao li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.yiliao li:nth-child(5) .photo {background-position:-1040px 0;}

.cjOuter.jiaoyu {height:598px;background:url(../image/changjing.jpg) no-repeat bottom center;}
.cjOuter.jiaoyu .cjInner .photo {background-image:url(../image/jyyy.png);}
.cjOuter.jiaoyu li:nth-child(1) .photo {background-position:0 0;}
.cjOuter.jiaoyu li:nth-child(2) .photo {background-position:-260px 0;}
.cjOuter.jiaoyu li:nth-child(3) .photo {background-position:-520px 0;}
.cjOuter.jiaoyu li:nth-child(4) .photo {background-position:-780px 0;}
.cjOuter.jiaoyu li:nth-child(5) .photo {background-position:-1040px 0;}

.tuijian {width:1200px;margin:0px auto 85px;}
.tuijian .tit {text-align:center;}
.tuijian i {display:block;font-style:normal;font-size:20px;line-height:58px;margin-bottom:10px;color:#cdcdcd;text-transform:uppercase;}
.tuijian .h8 {display:inline-block;position:relative;width:293px;font-size:32px;font-weight:bold;line-height:68px;color:#0010ae;border-bottom:2px solid #0010ae;}
.tuijian .h8:after {position:absolute;background:#fff url(../image/arrow.png) no-repeat center center;width:57px;height:15px;overflow:hidden;content:'';left:50%;margin-left:-28px;bottom:-8px;line-height:0;}
.tuijian li {float:left;margin-right:21px;}
.tuijian li:last-child {margin-right:0;margin-left:1px;}
.tuijian a {display:block;width:270px;padding:6px 6px 15px;border:1px solid #e0e0e0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.tuijian .photo {width:270px;height:155px;background-position:center center;background-repeat:no-repeat;background-size:contain;background-color:#fff;}
.tuijian b {display:block;margin:15px 0 10px;padding:0 10px;font-size:18px;line-height:22px;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.tuijian p {height:42px;padding:0 10px;overflow:hidden;font-size:14px;color:#666;}
.tuijian a:hover {background-color:#0010ae;color:#fff;}
.tuijian a:hover b,
.tuijian a:hover p {color:inherit;}
.tuijian.guoji {margin-top:100px;}
.tuijian.guoji .tit {margin-bottom:45px;}
.tuijian.guoji i {margin-bottom:-35px;display:block;font-size:40px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;color:#cdcdcd;}
.tuijian.guoji .h8 {display:inline-block;position:relative;width:auto;font-size:32px;font-weight:bold;line-height:40px;color:#0010ae;border:none;padding:0 3px;background-color:#fff;}
.tuijian.guoji .h8:after {position:absolute;background:#0010ae;width:1em;height:3px;left:50%;margin-left:-.5em;bottom:-8px;content:'';}
.tuijianOuter {height:385px;margin-bottom:95px;padding-top:65px;background-color:#f5f5f5;}
.tuijianOuter .tuijian.guoji .h8 {background-color:#f5f5f5;}
.tuijianOuter .tuijian a {background-color:#ffffff;}
.tuijianOuter .tuijian a:hover {background-color:#0010ae;color:#fff;}
.tuijianOuter .tuijian a:hover b,
.tuijianOuter .tuijian a:hover p {color:inherit;}

.zuixin {position:relative;width:1194px;margin:0 auto 10px;border:3px solid #0010ae;}
.zuixin .tit {position:absolute;top:-26px;width:300px;left:50%;margin:0 auto;margin-left:-150px;text-align:center;background-color:#fff;}
.zuixin .h7 {display:inline-block;font-size:32px;line-height:48px;color:#0010ae;}
.zuixin .ld {position:absolute;left:1.3em;top:50%;width:.8em;height:4px;margin-top:4px;background-color:#0010ae;}
.zuixin .rd {position:absolute;right:1.3em;top:50%;width:.8em;height:4px;margin-top:4px;background-color:#0010ae;}
.zuixin ul {padding:35px 25px 25px;}
.zuixin ul li {float:left;width:340px;margin-right:62px;}
.zuixin ul a {display:block;font-size:16px;color:#666;position:relative;padding-top:15px;padding-bottom:15px;padding-right:85px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-bottom:1px dashed #c1c1c1;}
.zuixin ul a:hover {color:#0010ae;}
.zuixin ul i {position:absolute;right:0;font-style:normal;}
.zuixin ul i:after {font-family:'fontello';content:'\e809';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;margin-left:.1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.zuixin ul li:nth-child(3n) {margin-right:0;}
.zuixin ul li:nth-child(7) a,
.zuixin ul li:nth-child(8) a,
.zuixin ul li:nth-child(9) a {border-bottom:none;}

.guojiInner {width:1200px;margin:0 auto;}
.guojiInner .tit {width:1200px;height:176px;text-align:center;display:table-cell;vertical-align:middle;color:#0010ae;}
.guojiInner i {display:block;font-style:normal;font-weight:normal;font-size:16px;line-height:24px;text-transform:uppercase;}
.guojiInner h2 {display:inline-block;font-size:32px;line-height:48px;}
.guojiInner .tit p {font-size:20px;line-height:30px;}

.guojiInner .ld {position:absolute;left:-5.5em;width:5em;height:1px;background-color:#0010ae;top:50%;}
.guojiInner .rd {position:absolute;right:-5.5em;width:5em;height:1px;background-color:#0010ae;top:50%;}
.guojiInner .vercen {}
.guojiInner dl {display:table-cell;vertical-align:middle;width:1200px;height:246px;padding-left:70px;padding-right:540px;color:#fff;background:#919191 url(../image/guojijianjiebg.jpg) no-repeat 760px center;}
.guojiInner dt {font-size:24px;padding-bottom:10px;}
.guojiInner dd p {font-size:16px;margin-bottom:10px;}
.guojiInner a {display:block;width:197px;height:36px;text-align:center;font-size:18px;font-weight:bold;line-height:36px;background-color:#0010ae;color:#ffffff;}
.guojiOuter.mpls .guojiInner dl {background-image:url(../image/mplsvpnbg.jpg);}
.guojiOuter.sdwan .guojiInner dl {background-image:url(../image/sdwanbg.jpg);}
.guojiOuter.duanxin .guojiInner dl {background-image:url(../image/duanxinbg.jpg);}


.guojiOuter.yunzhuanxian {height:auto;padding-bottom:60px;}
.guojiOuter.yunzhuanxian .guojiInner .tit {height:90px;padding-top:25px;}
.guojiOuter.yunzhuanxian .guojiInner dl {height:200px;padding-right:460px;background-image:url(../image/yunzhuanxianbg.jpg);background-position:780px center;background-color:#fff;}
.guojiOuter.yunzhuanxian .guojiInner dd p {font-size:20px;margin-bottom:0;text-indent:2em;line-height:39px;color:#666;}

.guojiInner.hezuo dl {background-image:url(../image/hezuobg.jpg);text-align:justify;text-justify:distribute;}
.guojiInner.lianxi dl {background-image:url(../image/contactbg.jpg);background-position:710px center;background-color:#0010ae;}
.guojiInner.lianxi dd p {font-size:18px;margin-bottom:0;}
.guojiInner.lianxi a {background-color:#ffa364;}

.guojiOuter.kuajing {background:#FFFFFF;}
.guojiOuter.kuajing .guojiInner .tit {height:160px;color:#fff;}
.guojiOuter.kuajing .guojiInner .tit h1 {font-size:38px;}
.guojiOuter.kuajing .guojiInner .tit p {font-size:16px;color:#cecece;}
.guojiOuter.kuajing .guojiInner .word:before {background-color:#fff;left:-1.5em;}
.guojiOuter.kuajing .guojiInner .word:after {background-color:#fff;right:-1.5em;}
.guojiOuter.kuajing .guojiInner .ld {display:none;}
.guojiOuter.kuajing .guojiInner .rd {display:none;}
.guojiOuter.kuajing .guojiInner dl {background-image:url(../image/kjdsbg.jpg);background-color:#032960;}
.guojiOuter.kuajing .guojiInner dt {display:inline-block;font-size:22px;line-height:30px;margin-bottom:10px;padding:0;border-bottom:1px solid #fff;color:#fff;}
.guojiOuter.kuajing dd p {font-size:14px;text-indent:2em;margin-bottom:0;}

.guojiOuter.zhineng {background:#FFFFFF;}
.guojiOuter.zhineng .guojiInner .tit {height:160px;color:#fff;}
.guojiOuter.zhineng .guojiInner .tit p {font-size:16px;color:#cecece;}
.guojiOuter.zhineng .guojiInner .word:before {background-color:#fff;left:-1.5em;}
.guojiOuter.zhineng .guojiInner .word:after {background-color:#fff;right:-1.5em;}
.guojiOuter.zhineng .guojiInner .ld {display:none;}
.guojiOuter.zhineng .guojiInner .rd {display:none;}
.guojiOuter.zhineng .guojiInner dl {height:430px;padding-right:473px;background-image:url(../image/znzz.jpg);background-color:#032960;}
.guojiOuter.zhineng .guojiInner dt {display:inline-block;font-size:22px;line-height:30px;margin-bottom:10px;padding:0;border-bottom:1px solid #fff;color:#fff;}
.guojiOuter.zhineng dd p {font-size:14px;text-indent:2em;margin-bottom:0;line-height:24px;text-align:justify;text-justify:distribute;}

.guojiOuter.yiliao  {background:#FFFFFF;}
.guojiOuter.yiliao .guojiInner .tit {height:160px;color:#fff;}
.guojiOuter.yiliao .guojiInner .tit p {font-size:16px;color:#cecece;}
.guojiOuter.yiliao .guojiInner .word:before {background-color:#fff;left:-1.5em;}
.guojiOuter.yiliao .guojiInner .word:after {background-color:#fff;right:-1.5em;}
.guojiOuter.yiliao .guojiInner .ld {display:none;}
.guojiOuter.yiliao .guojiInner .rd {display:none;}
.guojiOuter.yiliao .guojiInner dl {height:321px;padding-right:468px;background-image:url(../image/ylbg.jpg);background-color:#032960;}
.guojiOuter.yiliao .guojiInner dt {display:inline-block;font-size:22px;line-height:30px;margin-bottom:10px;padding:0;border-bottom:1px solid #fff;color:#fff;}
.guojiOuter.yiliao dd p {font-size:14px;text-indent:2em;margin-bottom:0;line-height:24px;text-align:justify;text-justify:distribute;}

.guojiOuter.jiaoyu {background:#FFFFFF;}
.guojiOuter.jiaoyu .guojiInner .tit {height:160px;color:#fff;}
.guojiOuter.jiaoyu .guojiInner .tit h1 {font-size:38px;}
.guojiOuter.jiaoyu .guojiInner .tit p {font-size:16px;color:#cecece;}
.guojiOuter.jiaoyu .guojiInner .word:before {background-color:#fff;left:-1.5em;}
.guojiOuter.jiaoyu .guojiInner .word:after {background-color:#fff;right:-1.5em;}
.guojiOuter.jiaoyu .guojiInner .ld {display:none;}
.guojiOuter.jiaoyu .guojiInner .rd {display:none;}
.guojiOuter.jiaoyu .guojiInner dl {height:321px;padding-right:468px;background-image:url(../image/ylbg.jpg);background-color:#032960;}
.guojiOuter.jiaoyu .guojiInner dt {display:inline-block;font-size:22px;line-height:30px;margin-bottom:10px;padding:0;border-bottom:1px solid #fff;color:#fff;}
.guojiOuter.jiaoyu dd p {font-size:14px;text-indent:2em;margin-bottom:0;line-height:22px;text-align:justify;text-justify:distribute;}

.sixOuter {background-color:#f7f8fb;}
.sixInner {width:1200px;height:716px;margin:0 auto;}
.sixInner .tit {width:1200px;height:176px;text-align:center;display:table-cell;vertical-align:middle;}
.sixInner h3 {font-size:40px;line-height:50px;color:#0010ae;}
.sixInner .tit p {font-size:26px;color:#cdcdcd;}
.sixInner li {float:left;width:332px;height:220px;margin:0 25px 28px 26px;border-radius:9px;text-align:center;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.sixInner li div {width:332px;height:220px;text-align:center;display:table-cell;vertical-align:middle;}
.sixInner i {display:inline-block;width:62px;height:62px;line-height:0;background-repeat:no-repeat;background-image:url(../image/guojiicon.png);}
.sixInner li:nth-child(2) i {background-position:-62px 0;}
.sixInner li:nth-child(3) i {background-position:-124px 0;}
.sixInner li:nth-child(4) i {background-position:0 -62px;}
.sixInner li:nth-child(5) i {background-position:-62px -62px;}
.sixInner li:nth-child(6) i {background-position:-124px -62px;}
.sixInner li p {padding-top:20px;font-size:30px;color:aliceblue;}
.sixInner li:hover {background-color:#000;box-shadow:22px 22px 38px rgba(0,0,0,0.1);}

.iYs {width:1234px;height:534px;overflow:hidden;margin:20px auto 25px;}
.iYs .ystab {height:500px;padding:17px;}
.iYs .ystab.tab1 {background-image:url(../image/ystab.jpg);background-repeat:no-repeat;}
.iYs .ystab.tab1 .hd li:nth-child(1) {background-image:url(../image/ystit.png);background-repeat:no-repeat;background-position:172px 0;color:#fff;}
.iYs .ystab.tab1 .hd li:nth-child(2) {background-image:url(../image/ystit.png);background-repeat:no-repeat;background-position:172px -87px;color:#333;}

.iYs .ystab.tab2 {background-image:url(../image/ystab.jpg);background-repeat:no-repeat;background-position:left bottom;}
.iYs .ystab.tab2 .hd li:nth-child(1) {background-image:url(../image/ystit.png);background-repeat:no-repeat;background-position:172px -87px;color:#333;}
.iYs .ystab.tab2 .hd li:nth-child(2) {background-image:url(../image/ystit.png);background-repeat:no-repeat;background-position:172px 0;color:#fff;}

.iYs .hd {height:87px;line-height:87px;}
.iYs .hd li {float:left;width:600px;text-align:center;font-size:30px;font-weight:bold;}

.iYs .conInner {width:1200px;height:413px;position:relative;}
.iYs .conInner li {position:absolute;line-height:20px;font-size:16px;color:#fff;}
.iYs .conInner li:nth-child(1) {width:400px;text-align:right;left:0;top:78px;}
.iYs .conInner li:nth-child(2) {width:350px;text-align:right;left:0;top:153px;}
.iYs .conInner li:nth-child(3) {width:360px;text-align:right;left:0;top:244px;}
.iYs .conInner li:nth-child(4) {width:390px;text-align:right;left:0;top:305px;}
.iYs .conInner li:nth-child(5) {width:390px;text-align:left;right:0;top:78px;}
.iYs .conInner li:nth-child(6) {width:360px;text-align:left;right:0;top:165px;}
.iYs .conInner li:nth-child(7) {width:360px;text-align:left;right:0;top:225px;}
.iYs .conInner li:nth-child(8) {width:390px;text-align:left;right:0;top:305px;}

.iYs .conInner.txt {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center;position:static;}
.iYs .conInner.txt p {padding-left:43px;font-size:16px;color:#fff;}


.cpysOuter.guoji ol li {float:left;width:252px;margin:0 60px 0 0;text-align:center;border:none;}
.cpysOuter.guoji ol li:last-child {margin-right:0;}
.cpysOuter.guoji ol i {display:inline-block;width:107px;height:107px;line-height:0;margin-bottom:12px;border-radius:20%;background-repeat:no-repeat;background-color:#0010ae;}
.cpysOuter.guoji ol i .aggg {display: flex;  font-size: 50px;color: aliceblue;align-items: center;height: 100%;width: 100%;justify-content: center}
.cpysOuter.guoji ol li:nth-child(1) i {background-position:0 -124px;}
.cpysOuter.guoji ol li:nth-child(2) i {background-position:-107px -124px;}
.cpysOuter.guoji ol li:nth-child(3) i {background-position:0 -231px;}
.cpysOuter.guoji ol li:nth-child(4) i {background-position:-107px -231px;}
.cpysOuter.guoji ol b {display:block;position:relative;font-weight:bold;font-size:24px;line-height:58px;margin-bottom:20px;color:#0010ae;}
.cpysOuter.guoji ol b:after {content:'';position:absolute;bottom:-3px;width:2em;margin-left:-1em;left:50%;height:3px;background-color:#0010ae;}
.cpysOuter.guoji ol p {font-size:14px;padding:0 13px;color:#8d8d8d;}
.cpysOuter.guoji ol li:hover i {background-color:#ffa364;}
.cpysOuter.guoji ol li:hover b {color:#ffa364;}
.cpysOuter.guoji ol li:hover b:after {background-color:#ffa364;}

.gjhlw {height:680px;background:url(../image/guojihulianwang.jpg) no-repeat top center;text-indent:-9999em;}

.faInner {width:1200px;height:529px;margin:0 auto;position:relative;}
.faInner .tit {height:160px;padding-top:25px;text-align:center;}
.faInner i {position:relative;bottom:-30px;display:block;color:#cdcdcd;font-size:45px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;}
.faInner h5 {position:relative;display:inline-block;padding:0 5px;font-size:31px;line-height:40px;background-color:#fff;color:#0010ae;}
.faInner li {float:left;width:520px;padding-right:80px;}
.faInner dt {display:inline-block;line-height:38px;font-size:24px;font-weight:bold;color:#0010ae;position:relative;}
.faInner dt:after {content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;background-color:#0010ae;}
.faInner dd {padding-top:15px;font-size:20px;color:#666;}
.faInner a {position:absolute;left:360px;top:380px;width:480px;height:66px;line-height:66px;font-size:26px;border-radius:33px;text-align:center;background-color:#0010ae;color:#ffffff;}
.faInner a:hover {opacity:.9;}

.hzOuter {background:url(../image/qjbg.jpg) no-repeat top center;height:369px;}
.hzInner {width:1200px;margin:0 auto;text-align:center;color:#ffffff;}
.hzInner .tit {position:relative;display:inline-block;padding:50px 0;}
.hzInner .tit h6 {display:inline-block;font-size:36px;line-height:54px;font-weight:bold;}
.hzInner .tit p {font-size:18px;line-height:27px;opacity:.6;text-transform:uppercase;}
.hzInner p {font-size:18px;text-align:left;text-indent:2em;line-height:36px;}

.zyInner {width:1200px;height:554px;margin:0 auto;}
.zyInner .tit {width:1200px;height:227px;text-align:center;display:table-cell;vertical-align:middle;}
.zyInner i {margin-bottom:-35px;display:block;font-size:40px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;color:#cdcdcd;}
.zyInner .h7 {position:relative;display:inline-block;padding:0 3px;font-size:32px;font-weight:bold;line-height:40px;background-color:#fff;color:#0010ae;}
.zyInner .h7:after {content:'';position:absolute;bottom:-8px;width:1em;height:3px;left:50%;margin-left:-.5em;background-color:#0010ae;}
.zyInner li {float:left;width:240px;height:150px;padding:43px 80px 0;position:relative;border-top:4px solid #0010ae;}
.zyInner li:before {content:'';position:absolute;z-index:1;left:50%;margin-left:-44px;top:-64px;width:80px;height:80px;border-radius:50%;line-height:0;border:4px solid #0010ae;background-color:#ffffff;}
.zyInner li:after {content:'';position:absolute;z-index:2;left:0;right:0;top:-64px;height:60px;line-height:0;background-color:#ffffff;}
.zyInner li b {position:absolute;z-index:3;left:0;right:0;top:-37px;display:block;text-align:center;line-height:54px;height:54px;font-weight:normal;font-size:36px;color:#0010ae;}
.zyInner li p {font-size:18px;color:#666;}
.zyInner u {display:block;line-height:54px;font-size:16px;text-align:center;text-decoration:none;color:#ffffff;background-color:#0010ae;}

.mplsSixOuter {background-color:#f7f8fb;}
.mplsSixInner {width:1200px;height:1172px;margin:0 auto;}
.mplsSixInner .tit {width:1200px;height:200px;text-align:center;display:table-cell;vertical-align:middle;}
.mplsSixInner h3 {font-size:40px;line-height:50px;color:#0010ae;}
.mplsSixInner .tit p {font-size:26px;color:#cdcdcd;}
.mplsSixInner li {float:left;position:relative;width:291px;height:245px;margin-right:29px;padding:204px 40px 4px;text-align:center;background:url(../image/sixbg.png) no-repeat center center;}
.mplsSixInner li:nth-child(3n) {margin-right:0;}
.mplsSixInner li:hover {background-image:url(../image/sixhover.png);background-position:center center;color:#0010ae;}
.mplsSixInner li:hover p {color:inherit;}
.mplsSixInner span {display:block;font-size:20px;margin-bottom:25px;color:inherit;}
.mplsSixInner p {font-size:16px;line-height:28px;color:#666;}
.mplsSixInner i {position:absolute;left:129px;top:18px;width:114px;height:114px;background-image:url(../image/mplsicon.png);background-repeat:no-repeat;}
.mplsSixInner li:nth-child(1) i {background-position:0 0;}
.mplsSixInner li:nth-child(2) i {background-position:-114px 0;}
.mplsSixInner li:nth-child(3) i {background-position:-228px 0;}
.mplsSixInner li:nth-child(4) i {background-position:-342px 0;}
.mplsSixInner li:nth-child(5) i {background-position:-456px 0;}
.mplsSixInner li:nth-child(6) i {background-position:-570px 0;}
.mplsSixOuter.duanxin .mplsSixInner {height:637px;}
.mplsSixOuter.duanxin .tit {height:120px;padding-top:26px;}
.mplsSixOuter.duanxin li:nth-child(1) i {background-position:-684px 0;}
.mplsSixOuter.duanxin li:nth-child(2) i {background-position:-798px 0;}
.mplsSixOuter.duanxin li:nth-child(3) i {background-position:-912px 0;}

.mplsSixOuter.yunzhuanxian {background-color:#fff;}
.mplsSixOuter.yunzhuanxian .mplsSixInner {height:680px;}
.mplsSixOuter.yunzhuanxian .tit {height:120px;padding-top:26px;}
.mplsSixOuter.yunzhuanxian li:nth-child(1) i {background-position:-1026px 0;}
.mplsSixOuter.yunzhuanxian li:nth-child(2) i {background-position:-1140px 0;}
.mplsSixOuter.yunzhuanxian li:nth-child(3) i {background-position:-1254px 0;}











.cpysOuter.mpls {height:1305px;position:relative;text-align:center;}
.cpysOuter.mpls:after {position:absolute;bottom:0;left:0;right:0;top:1065px;background-color:#ffffff;content:'';}
.cpysOuter.mpls .t {position:relative;display:inline-block;margin:525px 0 65px;}
.cpysOuter.mpls .h {position:relative;display:inline-block;font-size:44px;font-weight:bold;line-height:60px;margin-bottom:10px;color:#0010ae;}
.cpysOuter.mpls .h:after {content:'';position:absolute;z-index:1;bottom:-3px;width:1em;height:3px;left:50%;margin-left:-.5em;background-color:#0010ae;}
.cpysOuter.mpls .t i {font-size:32px;color:#cdcdcd;display:block;font-style:normal;text-align:center;text-transform:uppercase;}
.cpysOuter.mpls dl {position:relative;z-index:2;padding-right:860px;}
.cpysOuter.mpls dl:after {content:'';position:absolute;z-index:3;right:0;top:50%;width:819px;height:286px;margin-top:-143px;background:url(../image/mpls-vpn.jpg) no-repeat right center;box-shadow:0 0 13px 3px rgba(0,174,243,.5);}
.cpysOuter.mpls dt {padding-bottom:10px;font-weight:bold;font-size:35px;color:#666;}
.cpysOuter.mpls dd p {padding-bottom:10px;text-align:left;text-indent:2em;font-size:19px;color:#666;text-align:justify;text-justify:distribute;}
.cpysOuter.mpls dd b {display:block;font-size:22px;font-weight:normal;color:#0010ae;}

.cpysOuter.sdwan {height:644px;position:relative;}
.cpysOuter.sdwan .cpysInner {height:644px;}

.slideTxtOuter {height:1018px;background:url(../image/mplstabbg.jpg) no-repeat top center;}
.slideTxtInner {position:relative;width:1200px;height:1018px;margin:0 auto;color:#ffffff;}
.slideTxtInner .hd {position:absolute;left:0;top:84px;width:1200px;}
.slideTxtInner .hd li {float:left;text-align:center;width:512px;height:73px;line-height:73px;margin:15px 15px 41px;font-size:40px;font-weight:bold;color:#ffffff;border:4px solid #ffffff;border-radius:12px;}
.slideTxtInner .hd li:last-child {float:right;}
.slideTxtInner .hd li.on {width:512px;height:81px;line-height:81px;margin:0;padding:15px 15px 41px;background:url(../image/tabcurrent.png) no-repeat;border:none;color:#0010ae;}

.slideTxtInner div.bg {position:absolute;top:252px;width:1200px;height:766px;background:url(../image/wan.png) no-repeat 17px 522px;}
.slideTxtInner ul.bg {position:absolute;top:252px;width:1200px;height:766px;background:url(../image/mplsys.png) no-repeat 278px 0;}

.slideTxtInner .sec1 {position:absolute;left:32px;top:0;}
.slideTxtInner .sec1 strong {display:block;font-size:36px;line-height:64px;font-weight:bold;}
.slideTxtInner p {font-size:16px;}
.slideTxtInner b {display:block;font-size:20px;font-weight:bold;}
.slideTxtInner .sec2 {position:absolute;left:377px;top:13px;width:443px;height:432px;background:url(../image/yun.png) no-repeat;}
.slideTxtInner .sec2 ul {position:absolute;left:40px;top:62px;font-size:12px;color:#ffffff;}
.slideTxtInner .sec2 ul li {float:left;text-align:center;line-height:38px;}
.slideTxtInner .sec2 ul li:nth-child(1) {width:125px;}
.slideTxtInner .sec2 ul li:nth-child(2) {width:127px;}
.slideTxtInner .sec2 ul li:nth-child(3) {width:125px;}
.slideTxtInner .sec2 dt {position:absolute;left:110px;top:212px;}
.slideTxtInner .sec2 dd {position:absolute;left:31px;top:306px;}
.slideTxtInner .sec2 dd span {float:left;display:block;width:115px;height:37px;line-height:37px;margin-right:10px;margin-bottom:6px;font-size:16px;text-align:center;font-weight:bold;color:#ffffff;background-color:#0010ae;}
.slideTxtInner .sec2 dd span:nth-of-type(1) {width:125px;}
.slideTxtInner .sec2 dd span:nth-of-type(4) {width:250px;}
.slideTxtInner .sec3 {position:absolute;left:857px;top:0;}
.slideTxtInner .sec3 strong {display:block;font-size:36px;line-height:64px;font-weight:bold;}

.slideTxtInner ul.bg ol {position:absolute;top:294px;width:260px;}
.slideTxtInner ul.bg ol:nth-of-type(1) {left:0;text-align:right;}
.slideTxtInner ul.bg ol:nth-of-type(2) {right:0;width:270px;text-align:left;}
.slideTxtInner ul.bg li {line-height:61px;color:#ffffff;font-size:20px;font-weight:bold;}
.slideTxtInner .tit {position:absolute;left:402px;top:367px;width:397px;height:196px;}
.slideTxtInner .tit span {font-size:27px;color:#0010ae;}
.slideTxtInner .vercen {display:table-cell;vertical-align:middle;width:397px;height:196px;text-align:center;}

.tpOuter {height:663px;background-color:#565656;}
.tpInner {width:1200px;height:663px;margin:0 auto;background:url(../image/sdwantuopu.jpg) no-repeat center center;}
.tpInner .tit {text-indent:-9999em;}

.sdInner {width:1200px;margin:0 auto;padding-bottom:65px;}
.sdInner dl {float:left;width:550px;padding-top:65px;}
.sdInner dl:nth-of-type(1),
.sdInner dl:nth-of-type(3) {margin-right:100px;}
.sdInner dt {position:relative;padding-left:26px;font-size:28px;font-weight:bold;margin-bottom:10px;color:#0010ae;}
.sdInner dt:before {content:'';position:absolute;left:0;top:50%;margin-top:-8px;width:16px;height:16px;background-color:#0010ae;}
.sdInner dd {font-size:16px;color:#666;}

.threeInner {position:relative;width:1200px;height:350px;margin:0 auto;padding-top:72px;}
.threeInner li {float:left;width:380px;margin-right:30px;}
.threeInner li:last-child {margin-right:0;}
.threeInner b {position:relative;display:block;width:380px;height:44px;line-height:44px;margin-bottom:20px;text-align:center;font-size:22px;font-weight:bold;color:#ffffff;background-color:#0010ae;}
.threeInner b:after {content:'';position:absolute;left:0;right:0;bottom:-3px;height:2px;background-color:#0010ae;}
.threeInner p {font-size:18px;color:#666;}
.threeInner a {position:absolute;left:50%;top:252px;width:480px;height:66px;line-height:66px;margin-left:-240px;font-size:26px;border-radius:33px;text-align:center;background-color:#ffa364;color:#ffffff;}
.threeInner a:hover {opacity:.9;}



.dxysOuter {}
.dxysInner {width:1200px;height:1070px;margin:0 auto;position:relative;}
.dxysInner .tit {height:109px;padding-top:80px;text-align:center;}
.dxysInner .tit i {margin-bottom:-35px;display:block;font-size:42px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;color:#cdcdcd;}
.dxysInner .tit h4 {display:inline-block;position:relative;width:auto;font-size:32px;font-weight:bold;line-height:40px;color:#0010ae;border:none;padding:0 3px;background-color:#fff;}
.dxysInner .tit h4:after {position:absolute;background:#0010ae;width:1em;height:3px;left:50%;margin-left:-.5em;bottom:-8px;content:'';}
.dxysInner li {float:left;width:246px;height:305px;padding:0 27px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.dxysInner li div {width:246px;height:305px;text-align:center;display:table-cell;vertical-align:middle;}
.dxysInner li i {display:inline-block;width:100px;height:100px;background-repeat:no-repeat;background-image:url(../image/dxicon.png);}
.dxysInner li:nth-of-type(1) i {background-position:0 0;}
.dxysInner li:nth-of-type(2) i {background-position:-100px 0;}
.dxysInner li:nth-of-type(3) i {background-position:-200px 0;}
.dxysInner li:nth-of-type(4) i {background-position:-300px 0;}
.dxysInner li:nth-of-type(5) i {background-position:-400px 0;}
.dxysInner li:nth-of-type(6) i {background-position:-500px 0;}
.dxysInner li:nth-of-type(7) i {background-position:-600px 0;}
.dxysInner li:nth-of-type(8) i {background-position:-700px 0;}
.dxysInner li b {display:block;font-size:24px;color:#0010ae;font-weight:bold;}
.dxysInner li p {font-size:14px;color:#666;}
.dxysInner li:hover {background-color:#ffffff;box-shadow:22px 22px 38px rgba(0,0,0,0.1);}
.dxysInner li:hover:nth-of-type(1) i {background-position:0 -214px;}
.dxysInner li:hover:nth-of-type(2) i {background-position:-100px -214px;}
.dxysInner li:hover:nth-of-type(3) i {background-position:-200px -214px;}
.dxysInner li:hover:nth-of-type(4) i {background-position:-300px -214px;}
.dxysInner li:hover:nth-of-type(5) i {background-position:-400px -214px;}
.dxysInner li:hover:nth-of-type(6) i {background-position:-500px -214px;}
.dxysInner li:hover:nth-of-type(7) i {background-position:-600px -214px;}
.dxysInner li:hover:nth-of-type(8) i {background-position:-700px -214px;}
.dxysInner .but {position:absolute;left:50%;top:899px;margin-left:-240px;display:block;width:480px;height:66px;line-height:66px;font-weight:bold;text-align:center;font-size:28px;border-radius:33px;background-color:rgba(255,163,100,1);color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.dxysInner .but:hover {background-color:rgba(0,174,243,.8);}



.dxysOuter.yunzhuanxian {background-color:#f7f8fb;}
.dxysOuter.yunzhuanxian .dxysInner {height:1165px;}
.dxysOuter.yunzhuanxian .dxysInner .tit h4 {background-color:#f7f8fb;}
.dxysOuter.yunzhuanxian .dxysInner li {float:left;width:322px;height:317px;padding:35px 27px 0;margin-right:36px;margin-bottom:36px;background-color:#fff;box-shadow:22px 22px 38px rgba(0,0,0,0.1);border-radius:15px;}
.dxysOuter.yunzhuanxian .dxysInner li div {width:auto;height:auto;text-align:center;display:block;vertical-align:middle;}
.dxysOuter.yunzhuanxian .dxysInner li b {margin-bottom:10px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-child(3n) {margin-right:0;}
.dxysOuter.yunzhuanxian .dxysInner li div {width:322px;height:352px;}
.dxysOuter.yunzhuanxian .dxysInner .but {top:1017px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(1) i {background-position:0 0;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(2) i {background-position:0 -314px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(3) i {background-position:-100px -314px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(4) i {background-position:-200px -314px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(5) i {background-position:-300px -314px;}
.dxysOuter.yunzhuanxian .dxysInner li:nth-of-type(6) i {background-position:-400px -314px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(1) i {background-position:0 -214px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(2) i {background-position:0 -414px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(3) i {background-position:-100px -414px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(4) i {background-position:-200px -414px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(5) i {background-position:-300px -414px;}
.dxysOuter.yunzhuanxian .dxysInner li:hover:nth-of-type(6) i {background-position:-400px -414px;}




.sandaOuter {background:url(../image/mplstabbg.jpg) no-repeat bottom center;}
.sandaInner {width:1200px;height:771px;margin:0 auto;position:relative;}
.sandaInner .tit {width:1200px;height:240px;text-align:center;display:table-cell;vertical-align:middle;color:#ffffff;}
.sandaInner .tit h5 {font-weight:bold;font-size:40px;line-height:50px;font-weight:bold;display:inline-block;margin-bottom:15px;padding:0 5px;border-bottom:3px solid #ffffff;}
.sandaInner .tit p {font-size:16px;color:inherit;}
.sandaInner ul {position:absolute;width:150px;height:319px;padding-left:1050px;background:url(../image/sanda.png) no-repeat;}
.sandaInner ul li {line-height:45px;margin-bottom:25px;font-size:28px;font-weight:bold;color:#ffffff;}
.sandaInner .logo {position:absolute;left:421px;top:324px;width:355px;height:153px;background:#ffffff url(../image/logo.png) no-repeat center center;border-radius:12px;background-size:270px 73px;}
.sandaInner ol {position:absolute;left:0;top:632px;width:1200px;}
.sandaInner ol li {float:left;position:relative;width:368px;height:69px;margin-right:48px;background-color:#ffffff;color:#0010ae;border-radius:35px;}
.sandaInner ol li:last-child {margin-right:0;}
.sandaInner ol li i {position:absolute;left:30px;top:17px;width:31px;height:31px;font-style:normal;font-weight:bold;font-size:28px;border:2px solid #0010ae;border-radius:50%;line-height:31px;text-align:center;color:#0010ae;}
.sandaInner ol li p {display:table-cell;vertical-align:middle;width:221px;padding:0 60px 0 87px;height:69px;font-size:20px;line-height:24px;}
.sandaInner ol li:hover {background-color:#ffa364;color:#ffffff;}
.sandaInner ol li:hover i {color:#ffffff;border-color:#ffffff;}

.shoufei {width:1200px;height:563px;margin:0 auto;}
.shoufei .tit {width:1200px;height:222px;text-align:center;display:table-cell;vertical-align:middle;}
.shoufei h6 {display:inline-block;font-size:32px;line-height:48px;color:#0010ae;}
.shoufei .ld {position:absolute;left:-5.5em;width:4.5em;height:3px;margin-top:-1px;background-color:#0010ae;top:50%;}
.shoufei .rd {position:absolute;right:-5.5em;width:4.5em;height:3px;margin-top:-1px;background-color:#0010ae;top:50%;}
.shoufei li {float:left;width:300px;text-align:center;}
.shoufei li i {display:inline-block;width:114px;height:114px;margin-bottom:25px;border-radius:50%;box-shadow:0 0 20px rgba(0,174,243,.5);background-repeat:no-repeat;background-image:url(../image/dxicon.png);}
.shoufei li:nth-child(1) i {background-position:0 -100px;}
.shoufei li:nth-child(2) i {background-position:-114px -100px;}
.shoufei li:nth-child(3) i {background-position:-228px -100px;}
.shoufei li:nth-child(4) i {background-position:-342px -100px;}
.shoufei li p {font-size:20px;color:#666;}

.dxfslc {width:1200px;margin:0 auto;}
.gkOuter {height:917px;background-color:#565656;}
.gkInner {width:1200px;margin:0 auto;}
.gkInner .tit {width:1200px;height:157px;text-align:center;display:table-cell;vertical-align:middle;font-size:40px;font-weight:bold;color:#fff;}
.gkInner ul {padding:130px 0 35px;background:url(../image/dxtitbg.png) no-repeat top center;}
.gkInner li {float:left;width:300px;padding:0 50px;text-align:center;}
.gkInner li:nth-child(1) {padding-right:69px;width:281px;}
.gkInner li:nth-child(3) {padding-left:69px;width:281px;}
.gkInner li b {display:block;font-size:24px;margin-bottom:10px;font-weight:bold;color:#ffa364;}
.gkInner li p {font-size:18px;color:#fff;}
.gkInner dl {width:402px;height:295px;padding-right:798px;background:url(../image/paas.jpg) no-repeat right center;}
.gkInner dt {font-size:20px;line-height:54px;margin-bottom:20px;text-align:center;font-weight:bold;color:#fff;background-color:#0010ae;}
.gkInner dd p {font-size:14px;color:#fff;margin-bottom:25px;}

.newsInner {width:1200px;margin:0 auto;padding-bottom:30px;}
.newsInner .left {float:left;width:910px;}
.newsInner .right {float:right;width:260px;}

.slideNewsBox .hd ul {padding-bottom:35px;}
.slideNewsBox .hd li {float:left;display:block;width:302px;margin-right:2px;}
.slideNewsBox .hd li:last-child {margin-right:0;}
.slideNewsBox .hd li a {position:relative;display:block;text-align:center;line-height:53px;font-size:20px;border:1px solid #0010ae;color:#0010ae;background-color:#fff;}
.slideNewsBox .hd li.on a {background-color:#0010ae;color:#fff;}
.slideNewsBox .hd li.on a:after {font-family:'fontello';content:'\e871';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;bottom:-28px;left:50%;margin-left:-0.5em;font-size:52px;color:#0010ae;}

.tw {padding-bottom:16px;}
.tw dt {float:left;width:265px;height:160px;}
.tw .photo {position:relative;display:block;width:265px;height:160px;margin:0 auto;overflow:hidden;}
.tw .photo span {display:table-cell;vertical-align:middle;text-align:center;width:265px;height:160px;overflow:hidden;}
.tw .photo span img {vertical-align:bottom;width:265px;height:160px;transition:transform 0.3s ease 0s;}
.tw .photo u {display:table-cell;vertical-align:middle;text-align:center;width:265px;height:160px;overflow:hidden;text-decoration:none;font-size:16px;background-color:#f6f6f6;color:#999;}
.tw a:hover img {transform:scale(1.2,1.2);}
.tw dd {float:right;width:608px;height:160px;position:relative;}
.tw dd b {display:block;font-size:18px;margin-bottom:5px;color:#666;font-weight:normal;}
.tw dd a {position:absolute;left:0;bottom:0;width:127px;height:36px;text-align:center;font-size:16px;line-height:36px;border-radius:3px;color:#fff;background-color:#0010ae;}
.tw dd a:hover {background-color:#ffa364;}
.tw dd p {font-size:14px;color:#8f8f8f;}

dl.list {padding-bottom:16px;}
dl.list dt {padding:0 25px;line-height:51px;color:#fff;background-color:#0010ae;}
dl.list .tit {float:left;font-size:22px;}
dl.list .more {float:right;font-size:22px;}
dl.list .more a {color:inherit;}
dl.list dd {padding:15px 25px;border:1px solid #0010ae;}
dl.list dd li {position:relative;width:392px;}
dl.list dd li:nth-child(odd) {float:left;}
dl.list dd li:nth-child(even) {float:right;}
dl.list dd a {display:block;height:54px;line-height:54px;padding-right:70px;font-size:14px;color:#666;border-bottom:1px dashed #bfbfbf;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
dl.list dd a:hover {color:#0010ae;}
dl.list dd span {position:absolute;right:0;top:0;line-height:54px;color:#666;}

.wt {padding-bottom:16px;}
.wt dt {padding:0 25px;line-height:51px;color:#fff;background-color:#0010ae;}
.wt .tit {float:left;font-size:22px;}
.wt .more {float:right;font-size:22px;}
.wt .more a {color:inherit;}
.wt dd {padding:35px 25px 0;border:1px solid #0010ae;}
.wt dd li {width:392px;margin-bottom:35px;}
.wt dd li:nth-child(odd) {float:left;}
.wt dd li:nth-child(even) {float:right;}
.wt b {position:relative;display:block;padding-left:35px;font-size:18px;line-height:30px;color:#666;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.wt p {position:relative;padding-left:35px;font-size:14px;line-height:24px;color:#666;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.wt b:before {content:'Q';position:absolute;left:0;top:4px;width:20px;height:18px;text-align:center;line-height:18px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wt p:before {content:'A';position:absolute;left:0;top:1px;width:20px;height:18px;text-align:center;line-height:18px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wt li a:hover b:before,
.wt li a:hover p:before {background-color:#0010ae;color:#fff;}

.sidebar h4 {line-height:50px;font-size:22px;text-align:center;background-color:#0010ae;color:#fff;}
.sidebar dd {padding:25px 10px 0px;border:1px solid #0010ae;}
.sidebar dd ul li {margin-bottom:35px;}
.sidebar dd img {width:239px;}
.sidebar dd h5 {font-size:16px;color:#666;text-align:center;}
.sidebar dd.list {padding:15px 10px 10px;}
.sidebar dd.list li a {display:block;padding-bottom:5px;font-size:14px;color:#888;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.sidebar dd.list li a:hover {color:#0010ae;}
.sidebar dd.wt {padding:15px 10px 0px;}
.sidebar dd.wt ul li {margin-bottom:15px;padding-bottom:15px;border-bottom:1px dashed #ddd;}
.sidebar dd.wt ul li:last-child {margin-bottom:0;border-bottom:none;}
.sidebar dd.wt b {font-size:14px;color:#333;}
.sidebar dd.wt p {font-size:14px;color:#666;}
.sidebar dd.wt a:hover b {color:#0010ae;}

.wdlist li {margin-bottom:25px;padding-bottom:25px;border-bottom:1px dashed #cacaca;}
.wdlist b {position:relative;display:block;padding-left:35px;font-size:18px;line-height:30px;color:#666;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.wdlist p {position:relative;padding-left:35px;margin-bottom:10px;font-size:14px;line-height:24px;color:#666;}
.wdlist b:before {content:'Q';position:absolute;left:0;top:4px;width:20px;height:18px;text-align:center;line-height:18px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wdlist p:before {content:'A';position:absolute;left:0;top:1px;width:20px;height:18px;text-align:center;line-height:18px;font-weight:normal;font-size:12px;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.wdlist li a:hover b {color:#0010ae;}
.wdlist li a:hover b:before,
.wdlist li a:hover p:before {background-color:#0010ae;color:#fff;}
.wdlist span {display:inline-block;padding:0 10px;font-size:14px;margin-left:35px;border-radius:13px;background-color:#c7c7c7;color:#fff;}

.pagenav {padding:25px 0;clear:both;line-height:0;font-size:12px;font-family:'Microsoft YaHei';}
.pagenav span,
.pagenav a,
.pagenav strong {display:inline-block;position:relative;z-index:1;margin-left:-1px;line-height:32px;padding:0 15px;overflow:hidden;border:1px solid #dfdfdf;background-color:white;}
.pagenav strong {z-index:2;font-weight:normal;border-color:#0010ae;color:#0010ae;}
.pagenav a:hover {z-index:2;text-decoration:none;border-color:#0010ae;color:#0010ae;}

.nlist li {margin-bottom:25px;padding-bottom:25px;border-bottom:1px solid #eee;}
.nlist li:last-child {margin-bottom:0;padding-bottom:0;border-bottom:none;}
.nlist a:hover img {transform:scale(1.2,1.2);}
.nlist li u {display:table-cell;vertical-align:middle;text-align:center;width:190px;height:120px;overflow:hidden;text-decoration:none;font-size:16px;background-color:#f6f6f6;color:#999;}
.nlist li u:before {margin:0 5px 0 0;width:auto;}
.nlist .photo {float:left;position:relative;display:block;width:190px;height:120px;overflow:hidden;}
.nlist .photo span {display:table-cell;vertical-align:middle;text-align:center;width:190px;height:120px;overflow:hidden;}
.nlist .photo span img {vertical-align:bottom;max-width:190px;max-height:120px;transition:transform 0.3s ease 0s;}
.nlist .desc {float:right;width:700px;overflow:hidden;}
.nlist .desc b {display:block;font-size:16px;font-weight:bold;margin-bottom:5px;}
.nlist .desc p {margin-bottom:10px;text-align:justify;text-justify:distribute;}
.nlist p {line-height:20px;font-size:14px;color:#888;}
.nlist .desc span {display:inline-block;padding:0 10px;font-size:12px;margin-right:15px;border-radius:13px;background-color:#c7c7c7;color:#fff;}

.aboutInfo h1 {font-size:22px;font-weight:bold;line-height:44px;}
.aboutInfo span {display:inline-block;padding:0 10px;font-size:12px;margin-right:15px;border-radius:13px;background-color:#43cdff;color:#fff;}
.aboutInfo span a {color:inherit;}

.format {clear:both;overflow:hidden;font-size:16px;color:#555;letter-spacing:.5px;padding:25px 0;}
.format h2 {margin-bottom:20px;font-size: 20px}
.format p {clear:both;margin-bottom:20px;text-indent:2em;}
.format ul {margin-bottom:20px;list-style-position:outside;list-style-type:disc;list-style-image:none;padding-left:20px;margin-left:2em;}
.format ul li {display:list-item;list-style-position:outside;list-style-type:disc;list-style-image:none;}
.format table {-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;}
.format table th,
.format table td {padding:3px 6px;}
.format a:link,
.format a:visited {color:#ff3300;}

.shengming {margin-bottom:60px;padding:10px 20px;font-size:14px;color:#666;background-color:#f2f2f2;}
dl.related dt {line-height:50px;margin-bottom:20px;padding:0 20px;font-size:22px;color:#fff;background-color:#0010ae;}
dl.related li {float:left;margin:0 20px 20px 0;}
dl.related li:nth-child(3n) {margin-right:0;}
dl.related a {float:left;display:block;width:272px;padding:8px;overflow:hidden;border:1px solid #dcdcdc;}
dl.related a:hover {border-color:#0010ae;}
dl.related a:hover img {transform:scale(1.2,1.2);}
dl.related .photo {position:relative;display:block;width:272px;height:153px;margin:0 auto;overflow:hidden;}
dl.related .photo span {display:table-cell;vertical-align:middle;text-align:center;width:272px;height:153px;overflow:hidden;}
dl.related .photo span img {vertical-align:bottom;max-width:272px;max-height:153px;transition:transform 0.3s ease 0s;}
dl.related b {display:block;text-align:center;font-size:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:10px 0 2px;padding:0 8px;}

.slideTwBox .hd li {float:left;width:224px;margin-right:20px;}
.slideTwBox .hd li:last-child {margin-right:0;}
.slideTwBox .hd li a {position:relative;display:block;text-align:center;line-height:53px;font-size:20px;border:1px solid #0010ae;color:#0010ae;}
.slideTwBox .hd li.anchor_active a {background-color:#0010ae;color:#fff;}
.slideTwBox .hd li.anchor_active a:after {font-family:'fontello';content:'\e871';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;bottom:-28px;left:50%;margin-left:-0.5em;font-size:52px;color:#0010ae;}

.abouttit {height:100px;text-align:center;padding-top:100px;}
.abouttit h2 {display:inline-block;font-size:32px;line-height:38px;color:#0010ae;}
.abouttit p {font-size:20px;line-height:30px;font-weight:normal;color:#0010ae;}
.abouttit .ld {position:absolute;left:-2.5em;width:2em;height:1px;background-color:#0010ae;top:50%;}
.abouttit .rd {position:absolute;right:-2.5em;width:2em;height:1px;background-color:#0010ae;top:50%;}

.about {width:1110px;height:700px;padding:24px 45px;position:relative;background-color:#0010ae;color:#fff;background-image:url(../image/aboutusbg.jpg);background-repeat:no-repeat;background-position:761px 32px;}
.about .w {width:663px;}
.about .w p {font-size:16px;line-height:23px;text-indent:2em;text-align:justify;text-justify:distribute;}
.about .w p b {display:block;padding-bottom:15px;font-size:24px;font-weight:normal;text-indent:0;}
.about a {position:absolute;top:650px;display:block;width:298px;height:55px;line-height:55px;text-align:center;font-size:22px;}
.about a.one {left:252px;background-color:#ffa364;color:#fff;}
.about a.two {left:660px;background-color:#ffa364;color:#fff;}
.about .zhengshu {width:412px;position:absolute;left:757px;top:295px;}
.about .zhengshu .tit {text-align:center;padding:15px 0;}
.about .zhengshu h3 {font-size:22px;line-height:26px;font-weight:bold;}
.about .zhengshu p {font-size:12px;text-transform:uppercase;}
.about .scroll-left2 {width:412px;margin:auto;padding:0;}
.about .scroll-left2 .hd .prev,
.about .scroll-left2 .hd .next {background-image:url(../image/pic-slide-arrow2.png);}
.about .scroll-left2 .bd li {width:140px;margin:0 18px;}
.about .scroll-left2 .photo {width:140px;height:203px;}
.about .scroll-left2 .photo span {width:140px;height:203px;}
.about .scroll-left2 .photo span img {max-width:140px;max-height:203px;}

.gsystit {width:1200px;height:140px;padding-top:42px;text-align:center;display:table-cell;vertical-align:middle;}
.gsystit i {margin-bottom:-35px;display:block;font-size:40px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;color:#cdcdcd;}
.gsystit h4 {position:relative;display:inline-block;padding:0 3px;font-size:32px;font-weight:bold;line-height:40px;background-color:#fff;color:#0010ae;}
.gsystit h4:after {content:'';position:absolute;bottom:-8px;width:1em;height:3px;left:50%;margin-left:-.5em;background-color:#0010ae;}

.slideYsBox {height:470px;}
.slideYsBox .hd {float:left;width:124px;padding-left:30px;}
.slideYsBox .hd i {display:block;width:120px;height:120px;margin-bottom:10px;border:2px solid #0010ae;border-radius:50%;background-image:url(../image/ysbg.png);background-repeat:no-repeat;}
.slideYsBox .hd li:nth-child(1) {margin-bottom:75px;}
.slideYsBox .hd li:nth-child(1) i {background-position:0 0;}
.slideYsBox .hd li:nth-child(2) i {background-position:0 -124px;}
.slideYsBox .hd p {font-size:20px;text-align:center;color:#0010ae;}
.slideYsBox .hd li.on:nth-child(1) i {background-position:0 -240px;background-color:#0010ae;}
.slideYsBox .hd li.on:nth-child(2) i {background-position:0 -360px;background-color:#0010ae;}
.slideYsBox .bd {float:right;}
.slideYsBox .con {position:relative;width:920px;height:350px;padding:25px 30px;border:1px solid #0010ae;border-radius:9px;}
.slideYsBox .con:before {content:'';position:absolute;z-index:2;margin-top:-12px;left:-12px;width:0;height:0;font-size:0;line-height:0;border-style:solid;border-width:12px 12px 12px 0;border-top-color:transparent;border-left-color:transparent;border-bottom-color:transparent;border-right-color:#0010ae;}
.slideYsBox .con:after {content:'';position:absolute;z-index:3;margin-top:-15px;left:-11px;width:0;height:0;font-size:0;line-height:0;border-style:solid;border-width:15px 15px 15px 0;border-color:#fff;border-top-color:transparent;border-left-color:transparent;border-bottom-color:transparent;}
.slideYsBox .con b {display:inline-block;font-size:20px;line-height:26px;margin-bottom:10px;font-weight:bold;color:#0010ae;border-bottom:2px solid #0010ae;}
.slideYsBox .con p {font-size:16px;color:#888;}
.slideYsBox .con ul {list-style-position:outside;list-style-type:decimal;list-style-image:none;padding-left:20px;}
.slideYsBox .con ul li {display:list-item;list-style-position:outside;list-style-type:decimal;list-style-image:none;font-size:16px;color:#888;}
.slideYsBox .con ul li:last-child {margin:0;}
.slideYsBox .bd div:nth-child(1) li {line-height:30px;}
.slideYsBox .bd div:nth-child(2) li {line-height:24px;}

.tdOuter {height:976px;background:url(../image/tuandui.jpg) no-repeat top center;}
.tdInner {width:1200px;margin:0 auto;position:relative;}
.tdInner .tit {width:1200px;height:130px;padding-top:55px;text-align:center;display:table-cell;vertical-align:middle;}
.tdInner .w {width:1200px;position:relative;}
.tdInner .w p {width:730px;font-size:18px;line-height:36px;text-indent:2em;color:#666;}
.tdInner .w img {position:absolute;right:35px;top:50%;margin-top:-99px;box-shadow:0 0 13px rgba(0,0,0,0.32);}
.tdInner .one {position:absolute;left:0;top:420px;width:568px;height:387px;}
.tdInner .one dt {width:253px;height:38px;line-height:38px;font-size:24px;margin:43px 0 42px 157px;text-align:center;background-color:#0010ae;color:#fff;}
.tdInner .one dd {padding:0 0 0 376px;}
.tdInner .one b {display:block;font-size:16px;font-weight:bold;color:#0010ae;}
.tdInner .one p {font-size:14px;color:#666;}

.tdInner .two {position:absolute;left:632px;top:420px;width:568px;height:387px;}
.tdInner .two dt {width:253px;height:38px;line-height:38px;font-size:24px;margin:43px 0 42px 157px;text-align:center;background-color:#0010ae;color:#fff;}
.tdInner .two dd {padding:0 20px 0 276px;}
.tdInner .two b {display:block;font-size:18px;line-height:27px;font-weight:bold;color:#0010ae;}
.tdInner .two p {font-size:16px;line-height:24px;text-indent:2em;color:#666;}

.hexin {width:1200px;margin:0 auto 95px;}
.hexin .tit {position:relative;top:-20px;}
.hexin h6 {font-size:32px;font-weight:bold;text-align:center;color:#0010ae;}
.hexin i {font-size:10px;font-style:normal;vertical-align:middle;}
.hexin li {float:left;width:285px;margin-right:20px;}
.hexin li:last-child {margin-right:0;}
.hexin li p {font-size:16px;text-align:center;color:#666;}
.hexin li a:hover p {color:#0010ae;}
.hexin .photo {margin-bottom:10px;}

.zuixin dl {float:left;width:354px;padding:55px 0 25px 25px;}
.zuixin dt img {width:354px;height:212px;}
.zuixin dd {padding:10px 0;text-align:center;}
.zuixin dd b {font-size:16px;font-weight:normal;color:#666;}
.zuixin ol {float:right;width:740px;padding:40px 28px 25px 0;}
.zuixin ol li {float:left;width:340px;}
.zuixin ol li:nth-child(odd) {margin-right:60px;}
.zuixin ol a {display:block;font-size:16px;color:#666;padding-right:30px;padding:15px 0;border-bottom:1px dashed #c1c1c1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.zuixin ol a:hover {color:#0010ae;}
.zuixin ol li:nth-child(9) a,
.zuixin ol li:nth-child(10) a {border-bottom:none;}

.fuwu {padding-bottom:65px;}
.fuwu li {float:left;width:260px;height:330px;margin-right:90px;padding:0 40px;background-color:#fff;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.fuwu li:last-child {margin-right:0;}
.fuwu li:hover {box-shadow:5px 5px 15px rgba(0,174,243,0.4);}
.fuwu li div {width:260px;height:330px;text-align:center;display:table-cell;vertical-align:middle;}
.fuwu li b {display:block;margin-bottom:15px;font-size:24px;font-weight:bold;color:#0010ae;}
.fuwu li p {margin-bottom:25px;font-size:14px;color:#666;}
.fuwu li a {display:block;width:171px;height:41px;line-height:41px;margin:0 auto;font-size:18px;text-align:center;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.fuwu li a:hover {color:#fff;background-color:#0010ae;}

.dingqi {height:452px;background:url(../image/dingqi.jpg) no-repeat top center;}
.dingqi dt {display:inline-block;font-size:30px;line-height:42px;margin-bottom:25px;margin-left:36px;border-bottom:2px solid #fff;font-weight:bold;color:#fff;}
.dingqi dd {font-size:18px;color:#fff;text-indent:2em;line-height:32px;}
.dingqiInner {width:1200px;margin:0 auto;}
.dingqiInner dl {width:745px;height:322px;padding:0 45px;display:table-cell;vertical-align:middle;}

.dailitit {font-size:32px;font-weight:bold;color:#0010ae;text-align:center;padding:65px 0 115px;}
.daililc {padding-bottom:60px;}
.daililc li {position:relative;display:table-cell;vertical-align:middle;text-align:center;width:200px;height:278px;padding:0 50px;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.daililc li a {display:block;width:171px;height:41px;line-height:41px;margin:0 auto;font-size:18px;text-align:center;background-color:#fff;color:#0010ae;border:1px solid #0010ae;border-radius:5px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.daililc li p {font-size:16px;line-height:24px;min-height:48px;color:#666;margin-bottom:55px;}
.daililc li:hover {background-color:#0010ae;color:#fff;box-shadow:5px 5px 15px rgba(0,174,243,0.4);}
.daililc li:hover i {background-color:#0010ae;color:#fff;}
.daililc li:hover p {color:inherit;}
.daililc li:before {content:'';position:absolute;top:-46px;right:0;width:115px;height:3px;background-color:#0010ae;}
.daililc li:after {content:'';position:absolute;top:-46px;left:0;width:115px;height:3px;background-color:#0010ae;}
.daililc li:first-child:after {background-color:#fff;}
.daililc li:last-child:before {background-color:#fff;}
.daililc li i {position:absolute;top:-68px;left:50%;margin-left:-20px;display:block;width:39px;height:39px;line-height:39px;text-align:center;border:1px solid #0010ae;border-radius:50%;font-style:normal;font-size:24px;color:#0010ae;}

.contact {width:1165px;height:106px;line-height:106px;position:relative;padding-left:35px;font-size:18px;color:#666;background-color:#f5f5f5;margin-bottom:20px;}
.contact a {position:absolute;right:49px;top:50%;margin-top:-24px;display:block;width:189px;height:48px;line-height:48px;text-align:center;color:#fff;background-color:#0010ae;border-radius:24px;font-size:20px;box-shadow:0 0 6px rgba(0,0,0,0.2);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.contact a:hover {background-color:#ffa364;}
.map {width:100%;height:555px;margin:20px 0;}

/* 容器及标题样式保持不变 */
.kjwt {width:1200px;height:700px;margin:0 auto;}
.kjwt .tit {width:1200px;height:219px;display:table-cell;vertical-align:middle;text-align:center;}
.kjwt .tit h3 {display:inline-block;width:600px;height:65px;line-height:65px;position:relative;font-size:32px;font-weight:bold;color:#0010ae;border:1px solid #0010ae;}

/* --- 修改点：LI 默认添加 2px 灰色边框 --- */
.kjwt li {
    float: left;
    position: relative; 
    width: 285px;
	height: 220px;
    margin-right: 20px;
    margin-bottom: 45px;
    text-align: center;
    border: 8px solid #e0e0e0; /* 默认灰色边框 */
    box-sizing: border-box;    /* 保证边框不增加 li 的实际宽度，防止布局错位 */
    transition: all 0.3s ease; /* 添加平滑动画效果 */
    padding: 15px 0;           /* 适当增加内边距使内容不贴边 */
}

.kjwt li:nth-child(4n) {margin-right:0;}

/* 标题和描述样式 */
.kjwt b {position:relative;display:block;font-size:23px;line-height:44px;margin-bottom:15px;color:#0010ae;font-weight:bold;}
.kjwt b:after {content:'';position:absolute;width:2em;height:3px;background-color:#0010ae;bottom:-3px;left:50%;margin-left:-1em;}
.kjwt p {width:225px;margin:0 auto;font-size:14px;color:#8d8d8d;}

/* --- 修改点：鼠标经过时的样式变化 --- */
.kjwt li:hover {
    border-color: #0010ae;     /* 1. 边框变为蓝色 */
}

.kjwt li:hover i {
    color: #ffa364;            /* 2. I 标签文字变为橙色 */
    background-color: #ffa364; /* 保留你原有的背景变橙色逻辑，如不需要可删掉此行 */
}

.kjwt li:hover b {color:#ffa364;}
.kjwt li:hover b:after {background-color:#ffa364;}

/* 图标背景样式保持不变 */
.kjwt.zhineng {height:633px;}
.kjwt.zhineng i {background-image:url(../image/znicon.png);}
.kjwt.yiliao {height:576px;}
.kjwt.yiliao i {background-image:url(../image/ylicon.png);}
.kjwt.jiaoyu {height:594px;}
.kjwt.jiaoyu i {background-image:url(../image/jyicon.png);}

    .flowing-background {
        width: 100%;
        height: 400px;
        /* 1. 设置渐变颜色：确保背景尺寸大于容器，以便移动 */
        background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
        background-size: 400% 400%;
        
        /* 2. 绑定动画：15秒循环，平滑过渡 */
        animation: gradientBG 15s ease infinite;
        
        /* 装饰用 */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: sans-serif;
        border-radius: 8px;
    }

    /* 3. 定义动画关键帧：改变背景的位置 */
    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

.shenmeOuter {  width: 100%;
        height: 710px;
        /* 1. 设置渐变颜色：确保背景尺寸大于容器，以便移动 */
        background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #FF0000);
        background-size: 400% 400%;
        
        /* 2. 绑定动画：15秒循环，平滑过渡 */
        animation: gradientBG 15s ease infinite;
        
        /* 装饰用 */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: sans-serif;
        border-radius: 8px;
    }

    /* 3. 定义动画关键帧：改变背景的位置 */
    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }}

.shenmeInner {width:1200px;margin:0 auto;}
.shenmeInner .tit {text-align:center;padding-top:17px;height:147px;width:1200px;display:table-cell;vertical-align:middle;}
.shenmeInner .tit h4 {display:inline-block;width:600px;height:65px;line-height:65px;position:relative;font-size:32px;font-weight:bold;color:#fff;border:1px solid #fff;}
.shenmeInner ul {width:1084px;margin:0 auto;}
.shenmeInner ul li {position:relative;width:948px;height:84px;background-color:rgba(255,255,255,.7);margin-bottom:27px;padding-left:136px;font-size:18px;color:#011848;;border: solid  #EDE6E6;}
.shenmeInner ul li:hover{position:relative;width:948px;height:84px;background-color:rgba(255,255,255,.7);margin-bottom:27px;padding-left:136px;font-size:18px;color:darkblue;border: solid coral;}
.shenmeInner ul li:last-child {margin-bottom:54px;}
.shenmeInner ul li p {width:948px;height:84px;display:table-cell;vertical-align:middle;}
.shenmeInner ul i {position:absolute;left:0;top:0;width:136px;height:84px;line-height:84px;text-align:center;font-style:normal;font-size:32px;color:#011848;}
.shenmeInner ul i:after {content:'';height:31px;width:1px;font-size:0;line-height:0;background-color:#011848;position:absolute;left:115px;top:27px;}
.shenmeInner ol {width:1084px;margin:0 auto 40px;}
.shenmeInner ol li {float:left;width:284px;height:61px;text-align:center;line-height:61px;color:coral;background-color:rgba(255,255,255,.7);font-size:26px;font-weight:bold;margin-right:114px;}
.shenmeInner ol li:last-child {margin-right:0;}
.shenmeInner b {display:block;text-align:center;font-weight:bold;font-size:20px;color:white;}

.chuanshu {width:1084px;margin:0 auto;height:394px;}
.chuanshu .tit {text-align:center;padding-top:48px;height:95px;width:1200px;display:table-cell;vertical-align:middle;}
.chuanshu h5 {text-align:center;font-size:38px;font-weight:bold;color:#0010ae;}
.chuanshu p {font-size:18px;text-indent:2em;line-height:34px;color:#666;}

.jiagouOuter {height:806px;background-color:#565656;}
.jiagouInner {width:1200px;margin:0 auto;}
.jiagouInner .tit {text-align:center;height:218px;width:1200px;display:table-cell;vertical-align:middle;}
.jiagouInner h6 {display:inline-block;font-size:38px;line-height:48px;color:white;}
.jiagouInner .ld {position:absolute;left:-2.5em;width:2em;height:1px;background-color:white;top:50%;}
.jiagouInner .rd {position:absolute;right:-2.5em;width:2em;height:1px;background-color:white;top:50%;}
.jiagouOuter.zhineng .tit {text-align:center;height:172px;width:1200px;display:table-cell;vertical-align:middle;}

.faysInner {width:1200px;height:528px;margin:0 auto;}
.faysInner .tit {text-align:center;height:143px;width:1200px;padding-top:21px;font-size:38px;font-weight:bold;color:#0010ae;display:table-cell;vertical-align:middle;}
.faysInner li {float:left;width:246px;height:305px;padding:0 27px;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.faysInner li div {width:246px;height:305px;text-align:center;display:table-cell;vertical-align:middle;}
.faysInner li i {display:inline-block;width:100px;height:100px;background-repeat:no-repeat;background-image:url(../image/fays.png);}
.faysInner li:nth-of-type(1) i {background-position:0 0;}
.faysInner li:nth-of-type(2) i {background-position:-100px 0;}
.faysInner li:nth-of-type(3) i {background-position:-200px 0;}
.faysInner li:nth-of-type(4) i {background-position:-300px 0;}
.faysInner li b {display:block;font-size:24px;margin-top:-10px;margin-bottom:10px;color:#0010ae;font-weight:bold;}
.faysInner li p {font-size:14px;color:#666;}
.faysInner li:hover {background-color:#ffffff;box-shadow:22px 22px 38px rgba(0,0,0,0.1);}
.faysInner.yiliao li i {background-image:url(../image/ylfays.png);}
.faysInner.jiaoyu li i {background-image:url(../image/jyfays.png);}

.cgalOuter {height:548px;background-color:#f7f8fb;margin-top:100px; }
.cgalInner {width:1200px;margin:0 auto;}
.cgalInner .tit {text-align:center;height:100px;}
.cgalInner i {position:relative;bottom:-35px;display:block;color:#cdcdcd;font-size:40px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;}
.cgalInner h2 {position:relative;display:inline-block;padding:0 3px;font-size:32px;font-weight:bold;line-height:40px;margin-bottom:10px;background-color:#f7f8fb;color:#0010ae;}
.cgalInner h5:after {content:'';position:absolute;bottom:-8px;width:1em;height:3px;left:50%;margin-left:-.5em;background-color:#0010ae;}
.cgalInner li {float:left;margin-right:21px;background-color:white;}
.cgalInner li:last-child {margin-right:0;margin-left:1px;}
.cgalInner li a {display:block;width:270px;padding:6px 6px 15px;border:1px solid #e0e0e0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.cgalInner .photo {width:270px;height:155px;background-position:center center;background-repeat:no-repeat;background-size:contain;background-color:#fff;}
.cgalInner b {display:block;margin:15px 0 10px;padding:0 10px;font-size:18px;line-height:22px;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.cgalInner p {height:42px;padding:0 10px;overflow:hidden;font-size:14px;color:#666;}
.cgalInner li a:hover {background-color:#0010ae;color:#fff;}
.cgalInner li a:hover b,
.cgalInner li a:hover p {color:inherit;}
.cgalInner .but {display:block;width:480px;height:66px;line-height:66px;margin:49px auto 0;text-align:center;border-radius:33px;color:white;background-color:#0010ae;font-size:26px;}
.cgalOuter.jiejue {height:438px;}

.ssOuter {height:75px;background-color:#f5f5f5;}
.ssInner {width:1200px;margin:0 auto;}
.ssInner .left {line-height:75px;font-size:14px;color:#999;}
.ssInner .left a {display:inline-block;margin-right:20px;color:#999;}
.ssInner .right {padding-top:17px;}
.ssInner .right form {position:relative;width:260px;height:40px;border-radius:20px;background-color:#fff;}
.ssInner .right form:after {position:absolute;z-index:1;right:0;top:0;font-family:'fontello';content:'\e814';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;text-align:center;font-variant:normal;text-transform:none;width:70px;height:40px;line-height:40px;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;color:#0010ae;}
.ssInner .right input {border:none;background:none;outline:none;}
.ssInner .right input[type='text'] {float:left;width:190px;height:40px;padding:9px 0 9px 20px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
.ssInner .right input[type='submit'] {float:right;width:70px;height:40px;opacity:0;position:relative;z-index:2;cursor:pointer;}

.subWrap {width:1200px;margin:0 auto;padding:28px 0;}
.subWrap .site {height:60px;line-height:60px;border-bottom:1px solid #bfbfbf;margin-bottom:23px;}
.subWrap .site .left {font-size:20px;color:#0010ae;}
.subWrap .site .left:before {margin-left:0;}
.subWrap .site .left h1 {font-size:inherit;color:inherit;font-weight:inherit;display:inline;}
.subWrap .site .right {font-size:14px;color:#999;}
.subWrap .site .right a {color:#999;}

.searchlist li {float:left;margin:0 20px 20px 0;}
.searchlist li:nth-child(4n) {margin-right:0;}
.searchlist li a {float:left;display:block;width:271px;padding:5px;border:1px solid #dcdcdc;overflow:hidden;box-shadow:0px 0px 0px 1px #f3f3f3 inset;}
.searchlist .photo {position:relative;display:block;width:271px;height:156px;margin:0 auto;overflow:hidden;}
.searchlist .photo span {display:table-cell;vertical-align:middle;text-align:center;width:271px;height:156px;overflow:hidden;}
.searchlist .photo span img {vertical-align:bottom;max-width:271px;max-height:156px;transition:transform 0.3s ease 0s;}
.searchlist .photo u {display:table-cell;vertical-align:middle;text-align:center;width:271px;height:156px;overflow:hidden;text-decoration:none;font-size:16px;background-color:#f6f6f6;color:#999;}
.searchlist b {display:block;text-align:center;font-size:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:15px 0;padding:0 8px;}
.searchlist p {height:42px;line-height:22px;margin-bottom:30px;padding:0 8px;font-size:14px;color:#666;overflow:hidden;}
.searchlist a:hover {border-color:#283f8b;box-shadow:0 0 0 1px #283f8b inset;}
.searchlist a:hover img {transform:scale(1.2,1.2);}

.bottom {position:fixed;bottom:0;left:0;right:0;z-index:999999;height:66px;background-color:#ffa364;overflow:hidden;}
.bottomInner {width:572px;height:46px;margin:10px auto;overflow:hidden;}
.bottomInner .bg {float:left;position:relative;height:46px;border-radius:9px;background:white url(../image/zuojibg.png) no-repeat 60px center;padding-left:140px;background-size:30px 27px;}
.bottomInner .bg:after {position:absolute;content:'';height:20px;width:1px;background-color:#0010ae;font-size:0;line-height:0;left:115px;top:13px;}
.bottomInner input[type='text'] {float:left;display:block;width:300px;height:46px;font-size:16px;border:none;background-color:transparent;outline:none;}
.bottomInner input[type='button'] {float:right;display:block;height:46px;padding:0 15px;border:none;border-radius:9px;font-size:16px;outline:none;cursor:pointer;color:white;background-color:#0010ae;}

.bottom a {position:absolute;right:15px;top:17px;width:30px;height:30px;line-height:30px;font-size:16px;text-align:center;color:white;border:1px solid white;border-radius:50%;}
.bottom input::-webkit-input-placeholder,
.bottom textarea::-webkit-input-placeholder {color:#999;opacity:1;font-size:16px;}
.bottom input:-moz-placeholder,
.bottom textarea:-moz-placeholder {color:#999;opacity:1;font-size:16px;}
.bottom input::-moz-placeholder,
.bottom textarea::-moz-placeholder {color:#999;opacity:1;font-size:16px;}
.bottom input:-ms-input-placeholder,
.bottom textarea:-ms-input-placeholder {color:#999;opacity:1;font-size:16px;}

.hunheOuter {
    height: 988px;
    background: radial-gradient(circle at center, #1e3a5f 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
    display: table;
    width: 100%;
}

.hunheOuter::before,
.hunheOuter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: transparent;
}

/* 第一层：大颗粒星 - 坐标散布到全屏 */
.hunheOuter::before {
    width: 5px;
    height: 5px;
    /* 修改点：将 px 改为 vh 和 vw，确保纵向分布到 100vh */
    box-shadow: 
        10vw 10vh #fff, 25vw 65vh #fff, 45vw 35vh #fff, 65vw 85vh #fff, 85vw 25vh #fff, 
        92vw 62vh #fff, 12vw 88vh #fff, 55vw 55vh #fff, 35vw 15vh #fff, 75vw 45vh #fff,
        20vw 25vh #fff, 40vw 80vh #fff, 60vw 15vh #fff, 80vw 90vh #fff, 10vw 45vh #fff,
        /* 额外增加底部区域坐标 */
        15vw 95vh #fff, 45vw 75vh #fff, 75vw 95vh #fff, 95vw 50vh #fff;
    filter: drop-shadow(0 0 8px rgba(173, 216, 230, 0.9)); 
    animation: starFlash 3s ease-in-out infinite;
}

/* 第二层：中等颗粒 - 坐标散布 */
.hunheOuter::after {
    width: 3px;
    height: 3px;
    box-shadow: 
        5vw 45vh #ffffff, 18vw 22vh #ffffff, 32vw 78vh #ffffff, 48vw 12vh #ffffff, 62vw 56vh #ffffff, 
        78vw 34vh #ffffff, 88vw 82vh #ffffff, 95vw 15vh #ffffff, 42vw 92vh #ffffff, 22vw 52vh #ffffff,
        15vw 5vh #ffffff, 85vw 55vh #ffffff, 30vw 95vh #ffffff, 70vw 75vh #ffffff, 50vw 5vh #ffffff,
        /* 补充中部和底部的星星 */
        55vw 65vh #ffffff, 25vw 85vh #ffffff, 80vw 40vh #ffffff, 10vw 90vh #ffffff;
    opacity: 0.8;
    animation: starFlash 4s ease-in-out infinite 1s;
}

@keyframes starFlash {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* 文字层：确保清晰度 */


.hunheInner {width:1200px;margin:0 auto;text-align:center;color: aliceblue;}



.hunheInner .tit {line-height:162px;font-size:40px;}
.hunheInner dl {text-align:left;padding-top:20px;width:1110px;margin:0 auto;}
.hunheInner dt {font-size:32px;margin-bottom:10px;}
.hunheInner dd {font-size:22px;text-indent:2em;}

.plist {padding-top:50px;}
.plist li {float:left;margin:0 16px 16px 0;-webkit-transition:box-shadow .3s;-moz-transition:box-shadow .3s;-ms-transition:box-shadow .3s;transition:box-shadow .3s;}
.plist li:nth-child(4n) {margin-right:0;}
.plist li:hover {box-shadow:0 0 12px rgba(0,0,0,0.3);}
.plist li a {float:left;display:block;width:288px;overflow:hidden;}

.plist .photo {position:relative;display:block;width:280px;height:210px;padding:3px;border:1px solid #ddd;overflow:hidden;}
.plist .photo a {display:table-cell;vertical-align:middle;text-align:center;width:280px;height:210px;overflow:hidden;}
.plist .photo a img {vertical-align:bottom;max-width:280px;max-height:210px;transition:transform 0.3s ease 0s;}
.plist .photo u {display:table-cell;vertical-align:middle;text-align:center;width:280px;height:210px;overflow:hidden;text-decoration:none;font-size:16px;background-color:#f6f6f6;color:#999;}
.plist b {display:block;height:45px;line-height:45px;font-weight:normal;text-align:center;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 15px;background-color:#eee;}


.preNext {padding:10px 0;font-size:14px;border-top:1px solid #bfbfbf;}
.preNext span {display:block;}


.canvas-wrap {position:relative;z-index:1;width:100%;height:600px;}
#canvas {width:100%;height:600px;overflow:hidden;position:absolute;top:0;left:0;background:linear-gradient(#0191ff,#0064f7);}
.canvas-word {width:1200px;height:600px;margin:-600px auto 0;position:relative;z-index:2;text-align:center;color:#fff;}
.canvas-word dt {padding-top:105px;font-size:46px;line-height:60px;font-weight:bold;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;}
.canvas-word dt h1 {font-size:inherit;}
.canvas-word dt i {display:inline-block;width:13px;height:13px;margin:0 30px;border-radius:50%;background-color:#fff;font-size:0;line-height:0;}
.canvas-word dd p {font-size:26px;line-height:44px;margin-bottom:45px;}
.canvas-word dd a {display:block;width:385px;height:68px;text-align:center;line-height:68px;font-size:30px;margin:0 auto;color:#fff;background-color:#1cc397;border-radius:34px;box-shadow:0 5px 0 rgba(3,55,122,.9);}


.canvas-word-2 {width:1200px;height:600px;margin:-600px auto 0;position:relative;z-index:2;background:url(../image/sd-wan-banner.png) no-repeat top center;}
.canvas-word-2 dt {height:278px;text-indent:-9999em;}
.canvas-word-2 dd {height:228px;padding:0 115px;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;}
.canvas-word-2 dd p {font-size:24px;color:#fff;text-indent:2em;}



.banner-five {position:relative;z-index:3;width:1200px;height:154px;margin:-85px auto 0;padding:28px;background:url(../image/banner-five.png) no-repeat center center;}
.banner-five ul {font-family:'Microsoft YaHei';}
.banner-five li {float:left;width:140px;padding-top:58px;padding-left:80px;padding-right:20px;word-break:normal;}
.banner-five dt {display:none;}
.banner-five dd {font-weight:normal;color:#666;}

.sdwan-zhuanxian-outer {position:relative;z-index:2;height:394px;margin-top:-105px;background-color:#f9f9f9;}
.sdwan-zhuanxian-inner {width:1200px;height:394px;margin:0 auto;background:url(../image/sdwan-zhuanxian-inner.png) no-repeat right bottom;}
.sdwan-zhuanxian-outer .tit {padding-top:146px;padding-bottom:18px;text-align:center;}
.sdwan-zhuanxian-outer .tit h2 {display:inline-block;font-size:32px;line-height:32px;margin-bottom:10px;color:#06447f;}
.sdwan-zhuanxian-outer .tit p {font-size:20px;line-height:20px;color:#06447f;}
.sdwan-zhuanxian-outer .ld {position:absolute;left:-90px;width:64px;height:1px;background-color:#06447f;top:50%;}
.sdwan-zhuanxian-outer .rd {position:absolute;right:-90px;width:64px;height:1px;background-color:#06447f;top:50%;}
.sdwan-zhuanxian-outer dl {padding-left:70px;}
.sdwan-zhuanxian-outer dt {margin-bottom:10px;font-size:22px;}
.sdwan-zhuanxian-outer dd {width:763px;font-size:16px;color:#7f7f7f;}

.sdwan-slide {position:relative;width:100%;height:297px;margin:0 auto;padding:58px 0 86px;overflow:hidden;}
.sdwan-slide .bd {position:relative;z-index:0;margin:0 auto;overflow:hidden;}
.sdwan-slide .bd ul {width:100%;}
.sdwan-slide .bd li {width:100%;height:297px;overflow:hidden;}
.sdwan-slide .cent {width:100%;max-width:1200px;margin:0 auto;}
.sdwan-slide img {vertical-align:middle;}

.sdwan-slide .s2 dl {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center;}
.sdwan-slide .s2 dt {width:195px;font-size:16px;line-height:32px;color:#666;}
.sdwan-slide .s2 dt img {margin-right:1em;}
.sdwan-slide .s2 dd {width:984px;}

.sdwan-slide .s3 dl {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center;}
.sdwan-slide .s3 dt {width:531px;}
.sdwan-slide .s3 dd {width:610px;font-size:16px;color:#666;}
.sdwan-slide .s3 p {padding:10px 0 10px 25px;line-height:30px;background:url(../image/sdwan-arrow-icon.png) no-repeat left 17px;}
.sdwan-slide .s3 b {color:#333;}

.sdwan-slide .s4 dl {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:center;}
.sdwan-slide .s4 dt {width:477px;font-size:16px;color:#666;}
.sdwan-slide .s4 dd {width:723px;}
.sdwan-slide .s4 strong {display:block;margin-bottom:10px;font-size:20px;color:#06447f;}
.sdwan-slide .s4 p {padding:10px 0 10px 25px;line-height:30px;background:url(../image/sdwan-arrow-icon.png) no-repeat left 17px;}

.sdwan-slide .hd {position:absolute;z-index:1;left:0;bottom:39px;width:100%;height:10px;line-height:0;font-size:0;}
.sdwan-slide .hd ul {text-align:center;}
.sdwan-slide .hd ul li {display:inline-block;cursor:pointer;width:10px;height:10px;border-radius:50%;background-color:#e3e3e3;overflow:hidden;margin:0 4px;}
.sdwan-slide .hd ul .on {background-color:#c7c7c7;}
.sdwan-slide .prev,
.sdwan-slide .next {position:absolute;z-index:5;top:50%;margin-top:-29px;display:block;width:34px;height:58px;background:url(../image/sdwan-slide-arrow.png) left center no-repeat;opacity:1;}
.sdwan-slide .prev {left:10%;}
.sdwan-slide .next {right:10%;background-position:right center;}
.sdwan-slide .prev:hover,
.sdwan-slide .next:hover {opacity:1;}

.sdwan-ys-outer {height:785px;background:url(../image/sdwan-ys.jpg) no-repeat center center;}
.sdwan-ys-inner {width:1200px;height:785px;margin:0 auto;position:relative;}
.sdwan-ys-inner h3 {display:none;}
.sdwan-ys-inner .circle {position:absolute;z-index:1;width:520px;height:520px;left:340px;top:157px;font-size:0;line-height:0;background-image:url(../image/circle.png);background-repeat:no-repeat;content:'';-webkit-transition:all .6s;-moz-transition:all .6s;-ms-transition:all .6s;-o-transition:all .6s;transition:all .6s;}

.sdwan-ys-inner dt {position:absolute;z-index:1;font-size:22px;line-height:30px;color:#fff;-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s;}
.sdwan-ys-inner dt:hover {color:#00e1ff;}
.sdwan-ys-inner dt:after {display:block;width:70px;height:70px;font-size:0;line-height:0;overflow:hidden;background-image:url(../image/sdwan-ys-icon.png);background-repeat:no-repeat;content:'';position:absolute;-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s;}
.sdwan-ys-inner dd {width:300px;height:300px;padding:110px;position:absolute;z-index:2;left:340px;top:157px;font-size:16px;line-height:28px;text-indent:2em;color:#fff;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s;opacity:0;}

.sdwan-ys-inner li {position:relative;z-index:1;}
.sdwan-ys-inner li.current {z-index:2;}
.sdwan-ys-inner li.current dt {color:#00e1ff !important;}
.sdwan-ys-inner li.current dd {opacity:1;}

.sdwan-ys-inner li:nth-child(1) dt {left:0;top:191px;width:290px;padding-right:70px;text-align:right;}
.sdwan-ys-inner li:nth-child(1) dt:after {background-position:0px 0px;right:0;top:-5px;}
.sdwan-ys-inner li:nth-child(1):hover dt:after {background-position:-70px 0;}
.sdwan-ys-inner li.current:nth-child(1) dt:after {background-position:-70px 0;}

.sdwan-ys-inner li:nth-child(2) dt {left:0;top:370px;width:248px;padding-right:70px;text-align:right;}
.sdwan-ys-inner li:nth-child(2) dt:after {background-position:0 -70px;right:0;top:-5px;}
.sdwan-ys-inner li:nth-child(2):hover dt:after {background-position:-70px -70px;}
.sdwan-ys-inner li.current:nth-child(2) dt:after {background-position:-70px -70px;}

.sdwan-ys-inner li:nth-child(3) dt {left:-15px;top:549px;width:308px;padding-right:70px;text-align:right;}
.sdwan-ys-inner li:nth-child(3) dt:after {background-position:0 -140px;right:0;top:-5px;}
.sdwan-ys-inner li:nth-child(3):hover dt:after {background-position:-70px -140px;}
.sdwan-ys-inner li.current:nth-child(3) dt:after {background-position:-70px -140px;}

.sdwan-ys-inner li:nth-child(4) dt {left:484px;top:691px;padding-left:70px;line-height:60px;}
.sdwan-ys-inner li:nth-child(4) dt:after {background-position:0 -420px;left:0;top:-5px;}
.sdwan-ys-inner li:nth-child(4):hover dt:after {background-position:-70px -420px;}
.sdwan-ys-inner li.current:nth-child(4) dt:after {background-position:-70px -420px;}

.sdwan-ys-inner li:nth-child(5) dt {left:829px;top:191px;padding-left:70px;}
.sdwan-ys-inner li:nth-child(5) dt:after {background-position:0 -210px;left:0;top:-5px;}
.sdwan-ys-inner li:nth-child(5):hover dt:after {background-position:-70px -210px;}
.sdwan-ys-inner li.current:nth-child(5) dt:after {background-position:-70px -210px;}

.sdwan-ys-inner li:nth-child(6) dt {left:879px;top:370px;padding-left:70px;}
.sdwan-ys-inner li:nth-child(6) dt:after {background-position:0 -280px;left:0;top:-5px;}
.sdwan-ys-inner li:nth-child(6):hover dt:after {background-position:-70px -280px;}
.sdwan-ys-inner li.current:nth-child(6) dt:after {background-position:-70px -280px;}

.sdwan-ys-inner li:nth-child(7) dt {left:830px;top:549px;padding-left:70px;}
.sdwan-ys-inner li:nth-child(7) dt:after {background-position:0 -350px;left:0;top:-5px;}
.sdwan-ys-inner li:nth-child(7):hover dt:after {background-position:-70px -350px;}
.sdwan-ys-inner li.current:nth-child(7) dt:after {background-position:-70px -350px;}

.sdwan-yy-inner {width:1200px;height:777px;margin:0 auto;background:url(../image/sdwan-yy.jpg) no-repeat center center;}
.sdwan-yy-inner h3 {height:173px;overflow:hidden;text-indent:-9999em;}
.sdwan-yy-inner ul {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:flex-start;margin-bottom:178px;}
.sdwan-yy-inner li {width:340px;}
.sdwan-yy-inner dt {height:82px;overflow:hidden;text-indent:-9999em;}
.sdwan-yy-inner dd {padding-top:29px;}
.sdwan-yy-inner dd p {line-height:52px;margin-bottom:18px;font-size:22px;color:#666;}
.sdwan-yy-inner li:nth-child(1) dd {padding-left:75px;}
.sdwan-yy-inner li:nth-child(2) dd {padding-left:50px;}
.sdwan-yy-inner li:nth-child(2) dd p:nth-child(2) {margin-bottom:31px;}
.sdwan-yy-inner li:nth-child(2) dd p:last-child {line-height:26px;}
.sdwan-yy-inner ol {display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;align-items:flex-start;}
.sdwan-yy-inner ol li {width:136px;text-align:center;font-size:22px;color:#008df1;}

.sdwan-gg-outer {height:704px;background:url(../image/table.jpg) no-repeat center center;}
.sdwan-gg-inner {width:1200px;margin:0 auto;}
.sdwan-gg-inner .hd ul {padding-top:67px;padding-left:167px;padding-bottom:32px;}
.sdwan-gg-inner .hd li {float:left;width:335px;height:66px;line-height:66px;font-size:30px;text-align:center;color:#fff;background-color:#008df1;}
.sdwan-gg-inner .hd li:first-child {margin-right:196px;}
.sdwan-gg-inner .hd li.on {background-image:url(../image/table.jpg);background-repeat:no-repeat;background-position:-1058px -67px;}
.sdwan-gg-inner table {width:100%;word-break:normal;}
.sdwan-gg-inner .gg1 th {width:240px;line-height:60px;font-weight:normal;text-align:center;font-size:24px;color:#fff;background-color:#1cc397;}
.sdwan-gg-inner .gg1 td {height:46px;text-align:center;font-size:18px;color:#fff;background-color:rgba(19,24,47,.9);border:1px solid rgba(54,58,77,.9);}
.sdwan-gg-inner .gg2 td {height:46px;font-size:18px;color:#fff;}
.sdwan-gg-inner .gg2 td:first-child {text-align:center;background-color:#1aa182;border:2px solid #3ca78f;border-right:none;}
.sdwan-gg-inner .gg2 td:last-child {padding-left:15px;border:2px solid rgba(54,58,77,.9);border-left:none;background-color:rgba(19,24,47,.9);}

.sdwan-anli {width:1200px;margin:0 auto 60px;}
.sdwan-anli .tit {padding:55px 0 25px;text-align:center;}
.sdwan-anli i {margin-bottom:-35px;display:block;font-size:38px;font-weight:bold;font-style:normal;line-height:60px;text-transform:uppercase;color:#cdcdcd;}
.sdwan-anli .h8 {display:inline-block;position:relative;width:auto;font-size:26px;font-weight:bold;line-height:40px;border:none;padding:0 2px;background-color:#fff;color:#06447f;}
.sdwan-anli .h8:after {content:'';position:absolute;left:50%;bottom:-6px;width:1em;height:3px;margin-left:-.5em;background:#06447f;}
.sdwan-anli li {float:left;margin-right:21px;}
.sdwan-anli li:last-child {margin-right:0;margin-left:1px;}
.sdwan-anli a {display:block;width:270px;padding:6px 6px 0;border:1px solid #e0e0e0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.sdwan-anli .photo {width:270px;height:155px;background-position:center center;background-repeat:no-repeat;background-size:contain;background-color:#fff;}
.sdwan-anli b {display:block;font-size:16px;line-height:40px;font-weight:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.sdwan-anli a:hover {background-color:#a1a1a1;color:#fff;}
.sdwan-anli a:hover b {color:inherit;}

.sdwan-zuixin {position:relative;width:1198px;margin:0 auto 25px;border:1px dashed #c1c1c1;}
.sdwan-zuixin .tit {position:absolute;top:-26px;width:290px;left:50%;margin:0 auto;margin-left:-150px;text-align:center;background-color:#fff;}
.sdwan-zuixin .h7 {display:inline-block;font-size:26px;line-height:48px;color:#06447f;}
.sdwan-zuixin .ld {position:absolute;left:1.8em;top:50%;width:.8em;height:4px;margin-top:4px;background-color:#cdcdcd;}
.sdwan-zuixin .rd {position:absolute;right:1.8em;top:50%;width:.8em;height:4px;margin-top:4px;background-color:#cdcdcd;}
.sdwan-zuixin ul {padding:35px 25px 15px;}
.sdwan-zuixin ul li {float:left;width:340px;margin-right:62px;}
.sdwan-zuixin ul a {display:block;font-size:16px;color:#666;position:relative;padding-top:15px;padding-bottom:15px;padding-right:85px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-bottom:1px dashed #c1c1c1;}
.sdwan-zuixin ul a:hover {color:#06447f;}
.sdwan-zuixin ul i {position:absolute;right:0;font-style:normal;}
.sdwan-zuixin ul i:after {font-family:'fontello';content:'\e809';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;margin-left:.1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.sdwan-zuixin ul li:nth-child(3n) {margin-right:0;}
.sdwan-zuixin ul li:nth-child(7) a,
.sdwan-zuixin ul li:nth-child(8) a,
.sdwan-zuixin ul li:nth-child(9) a {border-bottom:none;}


.sdwan-jianjie {width:1148px;margin:0 auto 20px;padding:25px;border:1px solid #f5f5f5;font-size:16px;color:#666;background-color:#f5f5f5;}
.sdwan-jianjie span {font-weight:bold;color:#333;}

.ziyuanyoushi {
    height: 880px;
    background-repeat: no-repeat;
    background-position: center 87px;
}
.zyysInner .tit {
    height: 168px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.zyysInner .tit strong {
    display: block;
    margin-bottom: 8px;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    color: #0010ae;
    height: auto;
}
.zyysInner .tit p {margin-bottom:28px;text-align:center;font-size:20px;line-height:20px;color:#666;}
.zyysInner .hd ul {width:1200px;margin:0 auto;}
.zyysInner .hd li {float:left;width:151px;height:39px;line-height:39px;text-align:center;padding-top:4px;padding-bottom:26px;font-size:22px;font-weight:bold;color:#0010ae;}
.zyysInner .hd li.on {
    padding-left: 12px;
    padding-right: 12px;
    background-repeat: no-repeat;
    color: white;
    background-image: url(../image/zyyscurrent.png);
}

.zyysInner .tab1 ol {width:1200px;margin:0 auto;padding-top:61px;}
.zyysInner .tab1 ol li:first-child {float:left;width:495px;padding-left:47px;background-image:url(../image/zyysicon.png);background-repeat:no-repeat;background-position:10px 10px;}
.zyysInner .tab1 ol li:last-child {float:right;width:550px;padding-left:47px;background-image:url(../image/zyysicon.png);background-repeat:no-repeat;background-position:10px 10px;}
.zyysInner .tab1 ol li:first-child p {font-size:24px;line-height:42px;margin-bottom:99px;color:#373737;}
.zyysInner .tab1 ol li > p {font-size:24px;line-height:42px;color:#373737;}
.zyysInner .tab1 dl {padding-top:20px;}
.zyysInner .tab1 ol dt {font-size:22px;margin-bottom:10px;}
.zyysInner .tab1 ol dd {font-size:20px;color:#575757;padding-bottom:13px;}
.zyysInner .tab1 ol dd p {margin-bottom:10px;}

.zyysInner .tab2 {position:relative;width:1186px;height:655px;margin:0 auto;padding-left:66px;background:url(../image/zyysbg1.png) no-repeat top center;}
.zyysInner .tab2 .bg1 {padding-top:24px;}
.zyysInner .tab2 .bg1 > p {width:500px;font-size:20px;line-height:34px;color:#373737;}
.zyysInner .tab2 .bg1 ol strong {position:absolute;top:32px;height:47px;line-height:47px;text-align:center;}
.zyysInner .tab2 .bg1 ol span.jiahao {position:absolute;top:40px;width:18px;text-align:center;}
.zyysInner .tab2 .bg1 ol b {position:absolute;top:60px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;}
.zyysInner .tab2 .bg1 ol span {position:absolute;top:100px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;display:block;}

.zyysInner .tab2 .bg1 ol li:nth-child(1) strong {left:681px;width:49px;}
.zyysInner .tab2 .bg1 ol li:nth-child(2) strong {left:860px;width:76px;}
.zyysInner .tab2 .bg1 ol li:nth-child(3) strong {left:1057px;width:76px;}

.zyysInner .tab2 .bg1 ol li:nth-child(2) span.jiahao {left:936px;}
.zyysInner .tab2 .bg1 ol li:nth-child(3) span.jiahao {left:1133px;}

.zyysInner .tab2 .bg1 ol li:nth-child(1) b {left:730px;}
.zyysInner .tab2 .bg1 ol li:nth-child(2) b {left:936px;}
.zyysInner .tab2 .bg1 ol li:nth-child(3) b {left:1133px;}

.zyysInner .tab2 .bg1 ol li:nth-child(1) span {left:642px;}
.zyysInner .tab2 .bg1 ol li:nth-child(2) span {left:836px;}
.zyysInner .tab2 .bg1 ol li:nth-child(3) span {left:1028px;}

.zyysInner .tab2 .tishi {position:absolute;left:67px;top:193px;font-size:20px;line-height:20px;color:#373737;}
.zyysInner .tab2 .tishi span i {display:inline-block;width:20px;height:20px;border-radius:50%;text-indent:-9999em;}
.zyysInner .tab2 .tishi span:first-child {margin-right:55px;}
.zyysInner .tab2 .tishi span:first-child i {background-color:#ffb502;}
.zyysInner .tab2 .tishi span:last-child i {background-color:#004eff;}
.zyysInner .tab2 .bg2 {position:absolute;left:67px;top:322px;}
.zyysInner .tab2 .bg2 p:first-child {font-size:28px;line-height:28px;color:#373737;margin-bottom:20px;}
.zyysInner .tab2 .bg2 p:last-child {font-size:18px;line-height:34px;color:#7d7d7d;width:340px;}

.redcolor {color:#ff2841 !important;}
.fw400 {font-weight:400 !important;}
.fw700 {font-weight:700 !important;}

@font-face {
  font-family:'font20344';
  src:url('../font/font20344.eot');
  src:url('../font/font20344.eot') format('embedded-opentype'),
  url('../font/font20344.woff') format('woff'),
  url('../font/font20344.ttf') format('truetype'),
  url('../font/font20344.svg') format('svg');
  font-weight:normal;font-style:normal;
}
.font20344 {font-family:"font20344";font-size:32px;margin-right:10px;}
@font-face {
  font-family:'DINCond-Medium';
  src:url('../font/DINCond-Medium.eot');
  src:url('../font/DINCond-Medium.eot') format('embedded-opentype'),
  url('../font/DINCond-Medium.woff') format('woff'),
  url('../font/DINCond-Medium.ttf') format('truetype'),
  url('../font/DINCond-Medium.svg') format('svg');
  font-weight:normal;font-style:normal;
}
.DINCond-Medium {font-family:"DINCond-Medium";font-size:65px;font-weight:normal;color:#373737;}










.zyysInner .tab3 {position:relative;width:1186px;height:655px;margin:0 auto;padding-left:66px;background:url(../image/zyysbg2.png) no-repeat top center;}
.zyysInner .tab3 .bg3 {padding-top:24px;}
.zyysInner .tab3 .bg3 > p {width:500px;font-size:20px;line-height:34px;color:#373737;}
.zyysInner .tab3 .bg3 ol strong {position:absolute;top:32px;height:47px;line-height:47px;text-align:center;}
.zyysInner .tab3 .bg3 ol span.jiahao {position:absolute;top:40px;width:18px;text-align:center;}
.zyysInner .tab3 .bg3 ol b {position:absolute;top:60px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;}
.zyysInner .tab3 .bg3 ol span {position:absolute;top:100px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;display:block;}

.zyysInner .tab3 .bg3 ol li:nth-child(1) strong {left:660px;width:85px;}
.zyysInner .tab3 .bg3 ol li:nth-child(2) strong {left:874px;width:71px;}
.zyysInner .tab3 .bg3 ol li:nth-child(3) strong {left:1059px;width:96px;}

.zyysInner .tab3 .bg3 ol li:nth-child(1) span.jiahao {left:745px;}
.zyysInner .tab3 .bg3 ol li:nth-child(1) b {left:745px;}
.zyysInner .tab3 .bg3 ol li:nth-child(2) b {left:945px;}
.zyysInner .tab3 .bg3 ol li:nth-child(3) b {left:1155px;}

.zyysInner .tab3 .bg3 ol li:nth-child(1) span {left:628px;}
.zyysInner .tab3 .bg3 ol li:nth-child(2) span {left:837px;}
.zyysInner .tab3 .bg3 ol li:nth-child(3) span {left:1024px;}

.zyysInner .tab3 .tishi {position:absolute;left:67px;top:193px;font-size:20px;line-height:20px;color:#373737;}
.zyysInner .tab3 .tishi span i {display:inline-block;width:20px;height:20px;border-radius:50%;text-indent:-9999em;}
.zyysInner .tab3 .tishi span:first-child {margin-right:55px;}
.zyysInner .tab3 .tishi span:first-child i {background-color:#7dc205;}
.zyysInner .tab3 .tishi span:last-child i {background-color:#535353;}
.zyysInner .tab3 .bg4 {position:absolute;left:67px;top:322px;}
.zyysInner .tab3 .bg4 p:first-child {font-size:28px;line-height:28px;color:#373737;margin-bottom:20px;}
.zyysInner .tab3 .bg4 p:last-child {font-size:18px;line-height:34px;color:#7d7d7d;width:340px;}


.zyysInner .tab4 {position:relative;width:1186px;height:655px;margin:0 auto;padding-left:66px;background:url(../image/zyysbg3.png) no-repeat top center;}
.zyysInner .tab4 .bg5 {padding-top:24px;}
.zyysInner .tab4 .bg5 > p {width:500px;font-size:20px;line-height:34px;color:#373737;}
.zyysInner .tab4 .bg5 ol strong {position:absolute;top:32px;height:47px;line-height:47px;text-align:center;}
.zyysInner .tab4 .bg5 ol span.jiahao {position:absolute;top:40px;width:18px;text-align:center;}
.zyysInner .tab4 .bg5 ol b {position:absolute;top:60px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;}
.zyysInner .tab4 .bg5 ol span {position:absolute;top:100px;font-size:20px;line-height:20px;font-weight:normal;color:#7d7d7d;display:block;}
.zyysInner .tab4 .bg5 ol li:nth-child(1) strong {left:838px;width:78px;}
.zyysInner .tab4 .bg5 ol li:nth-child(2) strong {left:1074px;width:71px;}
.zyysInner .tab4 .bg5 ol li:nth-child(1) span.jiahao {left:916px;}
.zyysInner .tab4 .bg5 ol li:nth-child(1) b {left:916px;}
.zyysInner .tab4 .bg5 ol li:nth-child(2) b {left:1145px;}
.zyysInner .tab4 .bg5 ol li:nth-child(1) span {left:775px;}
.zyysInner .tab4 .bg5 ol li:nth-child(2) span {left:1045px;}

.zyysInner .tab4 .tishi {position:absolute;left:67px;top:193px;font-size:20px;line-height:20px;color:#373737;}
.zyysInner .tab4 .tishi span i {display:inline-block;width:20px;height:20px;border-radius:50%;text-indent:-9999em;}
.zyysInner .tab4 .tishi span:first-child {margin-right:55px;}
.zyysInner .tab4 .tishi span:first-child i {background-color:#ffb502;}
.zyysInner .tab4 .tishi span:last-child i {background-color:#004eff;}

.zyysInner .tab4 .bg6 {position:absolute;left:67px;top:322px;}
.zyysInner .tab4 .bg6 p:first-child {font-size:28px;line-height:28px;color:#373737;margin-bottom:20px;}
.zyysInner .tab4 .bg6 p:last-child {font-size:18px;line-height:34px;color:#7d7d7d;width:340px;word-break:normal;}


.mplsjiagou {height:1180px;background:url(../image/mpls.jpg) no-repeat top center;}
.jginner {position:relative;width:1200px;margin:0 auto;}
.jginner .tit {display:none;}
.jginner ul {position:absolute;top:875px;}
.jginner li {line-height:46px;padding-left:48px;font-size:22px;color:#666;position:relative;}
.jginner li:before {content:'';position:absolute;left:26px;top:50%;margin-top:-5px;width:10px;height:10px;font-size:0;line-height:0;border-radius:50%;background-color:#03b5fb;}
.jginner ul:nth-of-type(1) {left:0;}
.jginner ul:nth-of-type(2) {left:409px;}
.jginner ul:nth-of-type(3) {left:869px;}
.jginner ul:nth-of-type(3) li:nth-child(2) {line-height:91px;}

.sdwan-banner {height:720px;background:#EFEFEF;font-family:'Microsoft YaHei UI';}
.sdwan-banner dl {width:1200px;margin:0 auto;}
.sdwan-banner dt {height:183px;text-indent:-9999em;}
.sdwan-banner dd {width:620px;}
.sdwan-banner dd p {font-size:18px;line-height:35px;color:#fff;margin-bottom:46px;}
.sdwan-banner dd a {display:block;width:196px;height:57px;text-align:center;line-height:57px;background-color:#fff000;color:#000;font-size:24px;border-radius:9px;box-shadow:5.39px 2.61px 12.35px 0.65px rgba(70,73,2,.18);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.sdwan-banner dd a:hover {box-shadow:5.39px 2.61px 12.35px 0.65px rgba(70,73,2,.48);}

.sdwan-tit {text-align:center;}
.sdwan-tit h2 {font-size:40px;font-weight:bold;color:#000000;line-height:71px;padding-top:41px;}
.sdwan-tit p {font-size:18px;color:#959595;line-height:18px;}
.sdwan-tita {text-align:center;}
.sdwan-tita h2 {font-size:30px;font-weight:bold;color:#000;line-height:71px;padding-top:41px;}
.sdwan-tita p {font-size:18px;color:#959595;line-height:18px;}

.sdwan-tuobutua {width:1200px;margin:0 auto;}
.sdwan-tuobutua .sdwan-tit {height:153px;}
.sdwan-tuobutua ul {padding:20px 10px 0;}
.sdwan-tuobutua li {float:left;width:240px;height:156px;margin:0 30px 30px 0;padding-top:16px;padding-left:86px;padding-right:47px;border-radius:3px;background-color:#f7faff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;background-position:20px 16px;background-repeat:no-repeat;}
.sdwan-tuobutua strong {display:block;font-size:24px;font-weight:500;line-height:42px;padding-top:4px;color:#393939;}
.sdwan-tuobutua p {font-size:14px;color:#8d8d8d;}
.sdwan-tuobutua li:nth-child(3n) {margin-right:0;}
.sdwan-tuobutua li:hover {box-shadow:0 0 24px rgba(33,95,181,.1);background-color:#fff;}
.sdwan-tuobutua li:hover strong {color:#0065f3;}


.sdwan-tuobutu {width:1238px;margin:0 auto;}
.sdwan-tuobutu .sdwan-tit {height:153px;}
.sdwan-tuobutu ul {padding:50px 19px 0;}
.sdwan-tuobutu li {float:left;width:251px;height:146px;margin:0 24px 24px 0;padding-top:16px;padding-left:86px;padding-right:47px;border-radius:3px;background-color:#f7faff;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;background-position:20px 16px;background-repeat:no-repeat;}
.sdwan-tuobutu strong {display:block;font-size:24px;font-weight:500;line-height:42px;padding-top:4px;color:#393939;}
.sdwan-tuobutu p {font-size:18px;color:#8d8d8d;}
.sdwan-tuobutu li:nth-child(1) {background-image:url(../image/sdwan-tuobutu-1.png);}
.sdwan-tuobutu li:nth-child(2) {background-image:url(../image/sdwan-tuobutu-2.png);}
.sdwan-tuobutu li:nth-child(3) {background-image:url(../image/sdwan-tuobutu-3.png);}
.sdwan-tuobutu li:nth-child(4) {background-image:url(../image/sdwan-tuobutu-4.png);}
.sdwan-tuobutu li:nth-child(5) {background-image:url(../image/sdwan-tuobutu-5.png);}
.sdwan-tuobutu li:nth-child(6) {background-image:url(../image/sdwan-tuobutu-6.png);}
.sdwan-tuobutu li:nth-child(3n) {margin-right:0;}
.sdwan-tuobutu li:hover {box-shadow:0 0 24px rgba(33,95,181,.1);background-color:#fff;}
.sdwan-tuobutu li:hover strong {color:#0065f3;}

.sdwan-ziyuanyoushi .zyysInner .tit strong {font-size:30px;font-weight:bold;color:#313131;}
.sdwan-ziyuanyoushi .zyysInner .tit p {font-size:18px;color:#959595;line-height:18px;}

.sdwan-xuqiu {padding-bottom:50px;}
.sdwan-xuqiu .sdwan-tit {padding-bottom:40px;}
.sdwan-xuqiu ul {height:487px;margin:0 auto;padding:50px 300px 0px 60px;background:url(../image/sdpc1.png) no-repeat top center;}
.sdwan-xuqiu li {float:left;width:153px;height:51px;line-height:51px;margin:0 25px 25px 0;padding-left:73px;font-size:20px;color:#0064f1;background:#e9f4ff url(../image/right.png) no-repeat 30px center;}

.sdwan-shiyong {padding-bottom:50px;background-color:#f7faff;}
.sdwan-shiyong .sdwan-tit {padding-bottom:20px;}
.picMarquee-top {position:relative;width:1240px;margin:0 auto;}
.picMarquee-top:before {position:absolute;z-index:1;left:0;right:0;top:20px;content:'';height:105px;font-size:0;line-height:0;
background:linear-gradient(to bottom right, rgba(247,250,255,1), transparent);}
.picMarquee-top:after {position:absolute;z-index:1;left:0;right:0;bottom:20px;content:'';height:105px;font-size:0;line-height:0;
background:linear-gradient(to top right, rgba(247,250,255,1), transparent);}
.picMarquee-top .hd {display:none;}
.picMarquee-top .bd {padding:20px 0 20px 20px;height:520px;overflow:hidden;}
.picMarquee-top .bd ul {}
.picMarquee-top .bd ul li {width:1200px;margin:0 0 19px;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;}
.picMarquee-top .bd ul li img {width:184px;height:85px;box-shadow:0 0 20px rgba(33,95,181,.1);margin-right:19px;}
.picMarquee-top .bd ul li img:last-child {margin-right:0;}

.sdwan-zixun {width:1200px;margin:0 auto;}
.sdwan-zixun .sdwan-tit {padding-bottom:50px;}
.sdwan-zixun dl.left {width:765px;}
.sdwan-zixun dl.right {width:385px;}


.sdwan-zixun dt {height:28px;line-height:28px;position:relative;padding-left:14px;}
.sdwan-zixun dt:before {content:'';position:absolute;left:0;top:0;bottom:0;width:4px;font-size:0;line-height:0;background-color:#0169f2;}
.sdwan-zixun dt b {font-weight:normal;font-size:24px;color:#393939;}
.sdwan-zixun dt a {position:absolute;right:0;font-size:14px;color:#8d8d8d;}
.sdwan-zixun dt a:hover {color:#0169f2 !important;}


.sdwan-zixun ul {padding-top:30px;}
.sdwan-zixun dl.left li {overflow:hidden;padding-bottom:30px;margin-bottom:30px;border-bottom:1px solid #d5d5d5;}
.sdwan-zixun dl.left li:last-child {border-bottom:none;}
.sdwan-zixun dl.left li .left {width:271px;height:160px;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;background-position:center center;background-size:cover;}
.sdwan-zixun dl.left li .left img {max-width:271px;max-height:160px;opacity:0;}
.sdwan-zixun dl.left li b {display:block;margin-bottom:10px;line-height:24px;font-size:22px;color:#393939;}
.sdwan-zixun dl.left li a:hover b {color:#0169f2 !important;}
.sdwan-zixun dl.left li p {font-size:14px;color:#a4a4a4;word-break:normal;}
.sdwan-zixun .timekw {position:absolute;bottom:0;left:0;}
.sdwan-zixun .timekw i {font-style:normal;font-size:14px;color:#8d8d8d;}
.sdwan-zixun .timekw span {display:inline-block;height:26px;line-height:26px;color:#fff;margin-left:15px;padding:0 10px;border-radius:13px;background-color:#90bfff;}
.sdwan-zixun dl.left li .right {width:470px;height:160px;position:relative;}


.sdwan-zixun dl.right li:first-child a {height:221px;display:block;background-repeat:no-repeat;background-position:center center;background-size:cover;position:relative;}
.sdwan-zixun dl.right li:first-child strong {display:block;position:absolute;left:0;right:0;bottom:0;padding:15px 20px;background-color:rgba(0,0,0,.3);font-size:18px;color:#fff;font-weight:normal;}
.sdwan-zixun dl.right li:first-child a:before {display:none;}
.sdwan-zixun dl.right li {margin-bottom:21px;}
.sdwan-zixun dl.right li b {display:block;padding-left:18px;margin-bottom:5px;font-weight:normal;font-size:18px;color:#303030;position:relative;}
.sdwan-zixun dl.right li b:before {width:8px;height:8px;border-radius:4px;background-color:#c5c5c5;font-size:0;line-height:0;content:'';position:absolute;left:0;top:50%;margin-top:-4px;}
.sdwan-zixun dl.right li p {font-size:14px;color:#a4a4a4;word-break:normal;height:42px;overflow:hidden;padding-left:18px;}
.sdwan-zixun dl.right li a:hover b {color:#0169f2 !important;}
.sdwan-zixun dl.right li a:hover b:before {background-color:#0169f2 !important;}

.sdwan-jianjie-2 {height:195px;padding-top:105px;background:url(../image/sdwanjieshao.jpg) no-repeat top center;text-align:center;}
.sdwan-jianjie-2 dt {display:none;}
.sdwan-jianjie-2 p {font-size:18px;line-height:34px;color:#fff;margin-bottom:25px;}
.sdwan-jianjie-2 a {display:inline-block;width:196px;height:57px;line-height:57px;background-color:#fff000;color:#000;font-size:24px;border-radius:9px;box-shadow:5.39px 2.61px 12.35px 0.65px rgba(70,73,2,.18);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;}
.sdwan-jianjie-2 a:hover {box-shadow:0 0 12.35px 0.65px rgba(70,73,2,.48);}

.tags-ul {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.tags-li {
    background-color: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.tags-li:hover {
    transform: translateY(-2px);
}

.tags-li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.tags-tag-count {
    margin-left: 8px;
    background-color: #e0e0e0;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.tags-title {
    text-align: center;
    margin: 20px 0;
    padding: 10px 0;
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

/* h2 标签样式 */
h2.topic-title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
 text -align: center;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  text-align: center;
}

/* a 标签样式 */
.topic a {
  display: inline-block;
  margin: 5px 10px;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.topic a:hover {
  background-color: #e0e0e0;
  color: #0066cc;
  transform: translateY(-2px);
}

/* 针对特殊 a 标签的样式当，链接处于激活状态时 */
.topic a:active {
  background-color: #d0d0d0;
}

/* 当 a 标签被点击后，即处于访问过状态的样式 */
.topic a:visited {
  color: #666;
}
.prevnext { margin-bottom:30px;}
.prevnext p{ height:30px; line-height:30px; font-size:14px;}

.prevnext a,.prevnext a:link,a:visited {
  color: #666; font-size:14px;
}

	.banner {
  /* height: 517px; */
  width: 100%;
  position: relative;
  min-width: 1300px;
}
     .font-40 {
    font-size: 40px !important;
}
	.bannertitle {
  color: #373737;
  /* font-weight: 600; */
		
}
	.topbox {
  width: 100%;
  /* position: relative; */
}

	.bannertext {
  top: 20px !important;
}
	.bannertext {
  position: absolute;

  top: 156px;
  left: 85px;
  color: #3e4456;
}
	.font-16 {
    font-size: 16px !important;
}
.bannertext div.font-16 {
  line-height: 30px !important;
}
.bannertext div.font-16 {
  color: #333;
}
.bannertext div.applybtn {
  margin-top: 45px !important;
}
	.mgt-xl {
    margin-top: 20px !important;
}
	.color-white {
	color: #fff;
}
.applybtn {
  padding: 10px 15px;
  background-color: #fd792d;
  width: 120px;
  text-align: center;
  cursor: pointer;
  margin-top: 100px;
}
	
.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
    clear: both;
}

.contenttitle {
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 35px;
  font-weight: 400 !important;
}
.fwb {
    font-weight: bold;
}

	.advanbox {
  margin: 0 auto;
  width: 1200px;
}
.c-row {
    width: 100%;
}
.col-3 {
    width: 25% !important;
}
.float-left,
.fl {
    float: left !important;
}
.list-content {
  overflow: hidden;
  text-align: center;
  padding: 0 10%;
}
.list-content .pic img {
  display: block;
  width: auto;
  height: 40px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
}
.list-content .title {
  height: 24px;
  line-height: 24px;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  overflow: hidden;
  margin-bottom: 8px;
}
.list-content .description {
  /* width: 70%;*/
  padding-top: 5px;
  color: #666;
  margin: 0 auto;
  text-align: center;
  display: block;
  line-height: 24px;
  min-height: 48px;
  font-size: 14px;
  overflow: hidden;
}
.function {
  width: 100%;
  background-color: #f3f5f8;
  margin-top: 50px;
  padding-bottom: 80px;
  min-width: 1200px;
}
.funcbox {
  width: 1200px;
  margin: 0 auto;
}

.funcitem {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eff2f8),
    to(#f9fbff)
  );
  background-image: -webkit-linear-gradient(top, #eff2f8 0%, #f9fbff 100%);
  background-image: -moz-linear-gradient(top, #eff2f8 0%, #f9fbff 100%);
  background-image: -o-linear-gradient(top, #eff2f8 0%, #f9fbff 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eff2f8), to(#f9fbff));
  background-image: linear-gradient(180deg, #eff2f8 0%, #f9fbff 100%);
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 6px 8px 0 rgba(123, 133, 168, 0.1);
  box-shadow: 0 6px 8px 0 rgba(123, 133, 168, 0.1);
  border-radius: 9px;
  display: inline-block;
  padding: 20px;
  width: 43%;
  vertical-align: top;
}

.mgr-xxl {
    margin-right: 30px !important;
    margin-left: 20px;
}
.functitle {
  font-size: 18px;
  font-weight: bold !important;
}
.ver-mid {
	vertical-align: middle;
}
.font-l {
    font-size: 14px !important;
}
.mgl-l {
    margin-left: 10px !important;
}
.mgt-l {
    margin-top: 10px !important;
}
.scene {
  padding-bottom: 80px;
}
.mgt-40 {
    margin-top: 40px !important;
}
.center {
    margin: 0 auto;
}
.scheme-ul {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  /* border-bottom: 1px solid #f5f5f5; */
}
.scheme-ul li {
  width: 16%;
  float: left;
  text-align: center;
}
.scheme-ul.scheme-ul1 li {
  width: 20%;
  float: left;
  text-align: center;
}
.scheme-ul li span {
  display: inline-block;
  width: 80%;
  margin: 0 10%;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 3px solid transparent;
}
.scheme-ul.scheme-ul1 li span {
  display: inline-block;
  width: 150px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 3px solid transparent;
}
.scheme-ul li span:hover {
  color: #fd792d;
}

.scheme-ul li.on span {
  color: #fd792d;
  border-bottom: 3px solid #fd792d;
}

.tab-box {
  width: 100%;
  height: auto;
  background: #f3f5f8;
  -webkit-box-shadow: inset 5px 5px 25px 0 rgba(205, 218, 238, 0.46);
  box-shadow: inset 5px 5px 25px 0 rgba(205, 218, 238, 0.46);
  border-radius: 14px;
  margin-top: 2px;
  padding: 50px;
}
.tab-box.tab-box1 {
  width: 100%;
  height: auto;
  background: #f3f5f8;
  margin-top: 0;
  padding: 30px 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.tab-boc-left {
  width: 50%;
  height: auto;
  min-height: 300px;
  float: left;

  -o-background-size: 100% 100%;

  background-size: 100% 100%;
}

.tab-boc-right {
  width: 50%;
  height: auto;
  min-height: 300px;
  float: left;
}

.tab-box .tab-boc-left .annug-box .btn-w2 {
  padding: 0;
}

.tab-box .tab-boc-right h1 {
  font-weight: 600;
}

.tab-box .tab-boc-right p {
  line-height: 24px;
}
.hide {
	display: none;

}
.annug-box {
  padding-top: 50px;
  font-family: SourceHanSansCN-Medium;
  font-size: 16px;
  color: #434a59;
}
.tab-box .annug-box .title {
  text-align: left;
  font-size: 20px;
  color: #121212;
}
.annug-box .subtitle {
  width: 460px;
  font-size: 16px;
  color: #333;
  line-height: 30px;
}

  /* 使用包裹容器限定范围，避免污染全局 BODY 样式 */
        .bgpstyle-main-wrapper {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            width: 100%;
            overflow-x: hidden;
        }

        .bgpstyle-main-wrapper * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }

        /* 顶部横幅 - 已改为居中对齐 */
        .bgpstyle-hero {
            padding: 100px 10%;
            background: #ffffff;
            border-bottom: 1px solid #f0f0f0;
            text-align: center; /* 核心居中设置 */
        }
        .bgpstyle-hero-tag { 
            color: #0052d9; 
            font-weight: 600; 
            margin-bottom: 20px; 
            display: inline-block; 
            border: 1px solid #0052d9; 
            padding: 2px 15px; 
            border-radius: 20px; 
            font-size: 14px; 
        }
        .bgpstyle-hero-title { 
            font-size: 42px; 
            margin: 0 auto 24px auto; 
            color: #1a1a1a; 
            letter-spacing: -1px; 
            line-height: 1.2;
            max-width: 900px;
        }
        .bgpstyle-hero-desc { 
            font-size: 18px; 
            color: #666; 
            max-width: 800px; 
            margin: 0 auto 40px auto; /* 居中并保持间距 */
        }
        
        .bgpstyle-btn-group { 
            display: flex; 
            gap: 25px; 
            align-items: center; 
            justify-content: center; /* 按钮组居中 */
        }
        .bgpstyle-btn-primary {
            background: #0052d9; 
            color: #fff !important; 
            padding: 14px 40px;
            border: none; 
            border-radius: 4px; 
            cursor: pointer; 
            font-size: 16px; 
            text-decoration: none;
            transition: all 0.3s; 
            font-weight: bold; 
            display: inline-block;
        }
        .bgpstyle-btn-primary:hover { 
            background: #003ead; 
            box-shadow: 0 4px 15px rgba(0,82,217,0.3); 
        }
        .bgpstyle-sla-badge { 
            color: #2ba85c; 
            font-weight: bold; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 16px; 
        }

        /* 通用布局 */
        .bgpstyle-container { padding: 80px 10%; }
        .bgpstyle-section-title { text-align: center; font-size: 32px; margin-bottom: 60px; font-weight: 600; color: #1a1a1a; }

        /* 优势卡片 */
        .bgpstyle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .bgpstyle-card {
            padding: 40px; border: 1px solid #eee; border-radius: 12px;
            transition: all 0.3s ease; background: #fff;
            text-align: left; /* 卡片内容保持左对齐以利于阅读 */
        }
        .bgpstyle-card:hover { border-color: #0052d9; transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .bgpstyle-card-icon { font-size: 40px; margin-bottom: 25px; display: block; }
        .bgpstyle-card-h3 { font-size: 22px; margin-bottom: 18px; color: #111; font-weight: 600; }
        .bgpstyle-card-p { color: #666; font-size: 15px; line-height: 1.8; }
        .bgpstyle-highlight-text { color: #0052d9; font-weight: bold; }

        /* 收益模块 */
        .bgpstyle-benefit-section { background-color: #f9f9f9; border-radius: 16px; padding: 50px; margin-top: 20px; }
        .bgpstyle-benefit-list { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 30px; justify-content: center; }
        .bgpstyle-benefit-item { flex: 1; min-width: 200px; text-align: center; }
        .bgpstyle-benefit-val { font-size: 32px; color: #0052d9; font-weight: bold; display: block; margin-bottom: 5px; }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .bgpstyle-hero { padding: 60px 5%; }
            .bgpstyle-btn-group { flex-direction: column; gap: 20px; }
            .bgpstyle-container { padding: 50px 5%; }
            .bgpstyle-hero-title { font-size: 28px; }
            .bgpstyle-hero-desc { font-size: 16px; }
        }
        
          /* 样式全部以 zhuyaoyewu- 开头，确保完全独立 */
        .zhuyaoyewu-root {
            all: initial; /* 阻断外部样式继承 */
            display: block;
            font-family: 'SF Pro Display', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            color: #1d1d1f;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
        }

        .zhuyaoyewu-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 顶部视觉区 */
        .zhuyaoyewu-hero {
            text-align: center;
            padding: 100px 0 60px;
            background: radial-gradient(circle at 50% 0%, #f5f5f7 0%, #ffffff 70%);
        }

        .zhuyaoyewu-badge {
            display: inline-block;
            padding: 6px 16px;
            background: #f5f5f7;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #0066cc;
            margin-bottom: 24px;
        }

        .zhuyaoyewu-h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0 0 20px;
            color: #1d1d1f;
        }

        .zhuyaoyewu-lead {
            font-size: clamp(18px, 2vw, 22px);
            color: #86868b;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* 业务网格 */
        .zhuyaoyewu-section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            padding: 60px 0 100px;
        }

        /* 高端白色卡片 */
        .zhuyaoyewu-biz-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 48px;
            border: 1px solid #f2f2f2;
            transition: all 0.5s cubic-bezier(0.15, 0, 0.15, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .zhuyaoyewu-biz-card:hover {
            border-color: transparent;
            box-shadow: 0 30px 60px rgba(0,0,0,0.06);
            transform: translateY(-8px);
        }

        .zhuyaoyewu-icon-box {
            width: 56px;
            height: 56px;
            background: #f5f5f7;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            transition: 0.3s;
        }

        .zhuyaoyewu-biz-card:hover .zhuyaoyewu-icon-box {
            background: #0071e3;
        }

        .zhuyaoyewu-icon-box svg {
            width: 28px;
            height: 28px;
            stroke: #1d1d1f;
            fill: none;
            stroke-width: 1.5;
            transition: 0.3s;
        }

        .zhuyaoyewu-biz-card:hover .zhuyaoyewu-icon-box svg {
            stroke: #ffffff;
        }

        .zhuyaoyewu-h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 16px;
        }

        .zhuyaoyewu-p {
            font-size: 16px;
            color: #424245;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .zhuyaoyewu-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .zhuyaoyewu-tag {
            font-size: 12px;
            padding: 4px 10px;
            background: #f5f5f7;
            color: #1d1d1f;
            border-radius: 6px;
            font-weight: 500;
        }

        /* 底部行动条 */
        .zhuyaoyewu-footer-action {
            background: #f5f5f7;
            padding: 80px 24px;
            text-align: center;
            border-radius: 32px;
            margin-bottom: 60px;
        }

        .zhuyaoyewu-cta-btn {
            display: inline-block;
            padding: 18px 48px;
            background: #0071e3;
            color: #ffffff;
            border-radius: 40px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .zhuyaoyewu-cta-btn:hover {
            background: #0077ed;
            box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .zhuyaoyewu-hero { padding: 60px 0 40px; }
            .zhuyaoyewu-section-grid { grid-template-columns: 1fr; }
            .zhuyaoyewu-biz-card { padding: 32px; }
        }
