/* ===== 轮播图组件主容器样式 ===== */
/* 轮播图外层容器 */
.tem_2_53 .w-slide {
    margin: 0;
    padding: 0;
    width: 100%;              /* 宽度100%填充父容器 */
    height: 600px;            /* 固定高度600px */
    position: relative;       /* 相对定位，作为内部绝对定位元素的参考 */
    top: 0px;
    left: 0px;
    overflow: hidden;         /* 隐藏溢出内容 */
    visibility: hidden;       /* 初始隐藏，等待JavaScript初始化完成 */
    z-index: 1 !important;    /* 确保层级，!important覆盖其他样式 */
}
/* 轮播图内部滑动容器 */
.tem_2_53 .w-slide-inner {
    margin: 0;
    padding: 0;
    cursor: default;          /* 默认光标样式 */
    position: relative;
    top: 0;
    left: 0;
    height: 600px;            /* 与父容器同高 */
    overflow: hidden;         /* 隐藏溢出的轮播项 */
}
/* 单个轮播项样式 */
.tem_2_53 .w-slide-inner .content-box {
    background-repeat: no-repeat;    /* 背景图不重复 */
    background-position: 50% 50%;    /* 背景图居中显示 */
    background-size: cover;          /* 背景图覆盖整个区域 */
    opacity: 1;                      /* 完全不透明 */
}
/* 轮播项内部背景层 - 使用!important确保样式优先级 */
.tem_2_53 .w-slide-inner .content-box > .content-box-inner {
    width: 100% !important;          /* 强制100%宽度 */
    height: 600px !important;        /* 强制600px高度 */
    position: absolute;              /* 绝对定位，作为背景层 */
    z-index: 0 !important;           /* 底层显示，确保内容在上层 */
    top: 0;
    left: 0;
    background-size: cover;          /* 背景图覆盖模式 */
}
/* 内容区域容器 */
.tem_2_53 .w-slide-inner .content-box > .smAreaC {
    height: 600px;  /* 设置内容区域高度 */
}
/* ===== 轮播图导航指示器样式 ===== */
/* 指示器容器 - 定位在右下角 */
.tem_2_53 .w-slide-btn-box {
    margin: 0;
    padding: 0;
    position: absolute;      /* 绝对定位 */
    bottom: 16px;           /* 距离底部16px */
    right: 16px;            /* 距离右侧16px */
}
/* 指示器圆点通用样式 */
.tem_2_53 .w-slide-btn-box div,
.tem_2_53 .w-slide-btn-box div:hover,
.tem_2_53 .w-slide-btn-box .w-slide-btnav {
    margin: 0;
    padding: 0;
    position: absolute;      /* 绝对定位 */
    width: 15px;            /* 圆点宽度 */
    height: 15px;           /* 圆点高度 */
    border-radius: 50%;     /* 圆形效果 */
    overflow: hidden;       /* 隐藏溢出 */
    cursor: pointer;        /* 手型光标，表示可点击 */
}
/* 激活状态的指示器 */
.tem_2_53 .w-slide-btn-box .w-slide-btnav {
    background-color: transparent;  /* 透明背景 */
}
/* 默认状态的指示器 */
.tem_2_53 .w-slide-btn-box div {
    background-color: rgb(204, 204, 204);  /* 灰色背景 */
}
/* 激活状态的指示器 - 黄色高亮 */
.tem_2_53 .w-slide-btn-box .w-slide-btnav {
    background-color: rgb(254, 197, 2);  /* 黄色激活状态 */
}
/* 禁用状态的指示器 - 空规则，可能在JS中动态添加样式 */
.tem_2_53 .w-slide-btn-box .w-slide-btndn,
.tem_2_53 .w-slide-btn-box .dn:hover {
    /* 样式可能在JavaScript中动态设置 */
}
/* ===== 左右导航箭头样式 ===== */
/* 左箭头定位 */
.tem_2_53 .w-slide .w-slide-arrowl {
    margin: 0;
    padding: 0;
    top: 0px;
    left: 10px !important;  /* 强制左侧10px位置 */
}
/* 右箭头定位 */
.tem_2_53 .w-slide .w-slide-arrowr {
    margin: 0;
    padding: 0;
    top: 0px;
    left: auto !important;  /* 取消左侧定位 */
    right: 10px;            /* 右侧10px位置 */
}
/* 左右箭头通用样式 */
.tem_2_53 .w-slide .w-slide-arrowl,
.tem_2_53 .w-slide .w-slide-arrowr {
    margin: 0;
    padding: 20px 8px;      /* 上下20px，左右8px的内边距 */
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.24);  /* 半透明黑色背景 */
    cursor: pointer;        /* 可点击光标 */
    text-align: center;     /* 文字居中 */
    overflow: hidden;
    /* 跨浏览器过渡动画效果 */
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;  /* 200毫秒线性过渡 */
}
/* 箭头图标样式 */
.tem_2_53 .w-slide .w-slide-arrowl .w-itemicon,
.tem_2_53 .w-slide .w-slide-arrowr .w-itemicon {
    color: #FFF;            /* 白色图标 */
    font-size: 20px;        /* 图标大小 */
    /* 跨浏览器透明度设置 */
    -moz-opacity: .8;
    -webkit-opacity: .8;
    -ms-opacity: .8;
    -o-opacity: .8;
    opacity: .8;            /* 80%透明度 */
}
/* 左箭头悬停效果 */
.tem_2_53 .w-slide .w-slide-arrowl:hover {
    color: #fff;            /* 保持白色 */
}
/* 右箭头悬停效果 */
.tem_2_53 .w-slide .w-slide-arrowr:hover {
    color: #fff;            /* 保持白色 */
}
/* 左箭头禁用状态 - 使用背景图定位 */
.tem_2_53 .w-slide .w-slide-arrowl.w-slide-arrowldn {
    background-position: -256px -37px;  /* 定位 */
}
/* 右箭头禁用状态 - 使用背景图定位 */
.tem_2_53 .w-slide .w-slide-arrowr.w-slide-arrowrdn {
    background-position: -315px -37px;  /* 定位 */
}
/* ===== 轮播图基础容器 ===== */
.tem_2_53 {
    position: relative;  /* 相对定位，建立定位上下文 */
}
/* ===== 控制面板样式 ===== */
/* 响应式调整时显示控制面板 */
.smart-resize .tem_2_53 .w-slide-control {
    display: block;  /* 显示控制面板 */
}
/* 控制面板基础样式 */
.tem_2_53 .w-slide-control {
    display: none;           /* 默认隐藏 */
    padding: 0 8px;          /* 左右内边距 */
    position: absolute;      /* 绝对定位 */
    border-radius: 4px 4px 0 0;  /* 左上右上圆角 */
    background-color: #609ee9;   /* 蓝色背景 */
    width: 120px;            /* 固定宽度 */
    height: 32px;            /* 固定高度 */
    line-height: 32px;       /* 行高等于高度，垂直居中 */
    font-size: 12px;         /* 小号字体 */
    color: #FFF;             /* 白色文字 */
    text-align: center;      /* 文字居中 */
}

/* 顶部控制面板定位 */
.tem_2_53 .w-slide-control.w-control-top {
    top: -32px;     /* 向上偏移32px，在轮播图上方 */
    left: 248px;    /* 距离左侧248px */
}
/* 底部控制面板定位和样式 */
.tem_2_53 .w-slide-control.w-control-bottom {
    bottom: -32px;           /* 向下偏移32px，在轮播图下方 */
    left: 248px;             /* 距离左侧248px */
    border-radius: 0 0 4px 4px;  /* 左下右下圆角 */
}
/* 控制链接样式 */
.tem_2_53 .w-slide-control .w-control-link {
    width: 20px;             /* 固定宽度 */
    height: 32px;            /* 与容器同高 */
    float: left;             /* 左浮动 */
    text-decoration: none;   /* 去除下划线 */
}
/* 控制图标容器 */
.tem_2_53 .w-slide-control .w-control-link .w-control-icon {
    margin-top: 7px;         /* 上边距，垂直居中 */
    display: block;
    width: 18px;             /* 图标宽度 */
    height: 18px;            /* 图标高度 */
    line-height: 18px;       /* 行高等于高度，居中 */
    border-radius: 50px;     /* 圆形 */
    background-color: #3E89E5;  /* 深蓝色背景 */
}
/* 控制图标字体样式 */
.tem_2_53 .w-slide-control .w-control-link .w-control-icon .mw-iconfont {
    color: #FFF;      /* 白色图标 */
    font-size: 10px;  /* 小号字体 */
}
/* 控制文本区域 */
.tem_2_53 .w-slide-control .w-control-text {
    width: 80px;             /* 固定宽度 */
    float: left;             /* 左浮动 */
    display: inline-block;
    font-family: Tahoma;     /* 指定字体 */
}
/* 控制链接图标样式 */
.tem_2_53 .w-slide-control .w-control-link .mw-iconfont {
    font-size: 12px;         /* 图标大小 */
    color: #FFF;             /* 白色 */
}
/* 控制链接悬停效果 */
.tem_2_53 .w-slide-control .w-control-link .mw-iconfont:hover {
    color: #ecf5ff;          /* 浅蓝色悬停效果 */
}
/* ===== 动画定义 ===== */
/* Webkit内核浏览器向左滑入动画 */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);  /* 从左侧100%位置开始 */
        transform: translate3d(-100%, 0, 0);
        opacity: 0;          /* 完全透明 */
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);      /* 移动到正常位置 */
        transform: translate3d(0, 0, 0);
        opacity: 1;          /* 完全不透明 */
    }
}
/* 标准向左滑入动画 */
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);  /* 从左侧100%位置开始 */
        transform: translate3d(-100%, 0, 0);
        opacity: 0;          /* 完全透明 */
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);      /* 移动到正常位置 */
        transform: translate3d(0, 0, 0);
        opacity: 1;          /* 完全不透明 */
    }
}
/* 应用向左滑入动画的类 */
.slideInLeft {
    -webkit-animation-name: slideInLeft;  /* Webkit浏览器动画名称 */
    animation-name: slideInLeft;          /* 标准动画名称 */
}

/* ===== 文本内容组件样式重置 ===== */
/* 文本内容组件基础样式 */
.tem_3_53 {
    color: inherit;  /* 继承父元素的颜色，保持颜色一致性 */
}
/* 重置所有标题元素的样式 */
.tem_3_53 h1, .tem_3_53 h2, .tem_3_53 h3,
.tem_3_53 h4, .tem_3_53 h5, .tem_3_53 h6 {
    font-weight: normal;  /* 取消粗体，使用正常字重 */
    line-height: 1.2;     /* 设置紧凑的行高，标题通常需要更紧凑的间距 */
}
/* 二级标题样式 */
.tem_3_53 h2 {
    font-size: 1.5em;     /* 1.5倍父元素字体大小 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* 一级标题样式 */
.tem_3_53 h1 {
    font-size: 2em;       /* 2倍父元素字体大小 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* 三级标题样式 */
.tem_3_53 h3 {
    font-size: 1.17em;    /* 约1.17倍父元素字体大小 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* 四级标题样式 - 使用固定像素值 */
.tem_3_53 h4 {
    font-size: 13px;      /* 固定13像素大小，不随父元素变化 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* 五级标题样式 */
.tem_3_53 h5 {
    font-size: 0.83em;    /* 0.83倍父元素字体大小，相对较小 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* 六级标题样式 - 最小的标题 */
.tem_3_53 h6 {
    font-size: 0.67em;    /* 0.67倍父元素字体大小，最小标题 */
    font-weight: normal;  /* 正常字重，非粗体 */
}
/* ===== CKEditor富文本编辑器样式 ===== */
/* CKEditor编辑器实例的层级设置 */
#cke_txtc_tem_3_53 {
    z-index: 100000 !important;  /* 极高的层级，确保编辑器在最上层显示 */
}
/* CKEditor对话框的层级设置 - 比编辑器更高 */
.cke_editor_txtc_tem_3_53_dialog .cke_dialog {
    z-index: 100010 !important;  /* 比编辑器高10，确保对话框在编辑器之上 */
}
/* CKEditor对话框背景遮罩层 */
.cke_dialog_background_cover {
    z-index: 100000 !important;  /* 与编辑器同层级，但通过HTML顺序控制显示 */
}
/* ===== 淡入动画定义 ===== */
/* Webkit内核浏览器的淡入动画 */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;  /* 动画开始：完全透明 */
    }
    to {
        opacity: 1;  /* 动画结束：完全不透明 */
    }
}
/* 标准淡入动画定义 */
@keyframes fadeIn {
    from {
        opacity: 0;  /* 动画开始：完全透明 */
    }
    to {
        opacity: 1;  /* 动画结束：完全不透明 */
    }
}
/* 应用淡入动画的类 */
.fadeIn {
    -webkit-animation-name: fadeIn;  /* Webkit浏览器使用fadeIn动画 */
    animation-name: fadeIn;          /* 标准浏览器使用fadeIn动画 */
}

/* ===== 按钮组件样式 ===== */
/* 按钮基础样式 - 创建白色边框透明背景按钮 */
.tem_4_53 .w-button {
    display: inline-block;      /* 行内块显示，既保持行内特性又可设置宽高 */
    margin: 0;
    padding: 0;
    /* 设置2像素白色边框 */
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    /* 跨浏览器圆角重置 - 设置为0表示直角按钮 */
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: transparent;  /* 透明背景 */
    background-image: none;         /* 无背景图片 */
    background-repeat: no-repeat;   /* 背景不重复 */
    background-position: 0 0;       /* 背景位置左上角 */
    /* 跨浏览器渐变背景重置 - 设置为无渐变 */
    background: -moz-linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background-size: auto;
    /* 跨浏览器阴影重置 - 设置为无阴影 */
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    cursor: pointer;    /* 鼠标悬停时显示手型光标，表示可点击 */
    outline: none;      /* 移除焦点轮廓线，避免默认的蓝色边框 */
    text-align: center; /* 文字居中显示 */
}
/* 按钮悬停状态样式 */
.tem_4_53 .w-button:hover {
    /* 保持白色边框颜色不变 */
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    border-left-color: #ffffff;
    background: transparent;        /* 保持透明背景 */
    background-image: none;         /* 无背景图片 */
    background-repeat: no-repeat;   /* 背景不重复 */
    background-position: 0 0;       /* 背景位置左上角 */
    /* 跨浏览器渐变背景重置 - 悬停时仍无渐变 */
    background: -moz-linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background-size: auto;
    /* 跨浏览器阴影重置 - 悬停时阴影完全透明（无阴影） */
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}
/* 按钮位置容器 - 用于控制按钮内边距 */
.tem_4_53 .w-button-position {
    display: block;     /* 块级显示 */
    padding: 0 5px;     /* 左右5像素内边距，上下无内边距 */
}
/* 按钮图标样式 */
.tem_4_53 .w-button .w-button-icon {
    display: inline-block;      /* 行内块显示 */
    margin-right: 3px;          /* 右侧3像素外边距，与文字保持间距 */
    font-size: 12px;            /* 图标字体大小 */
    color: #ffffff;             /* 白色图标 */
    font-weight: 400;           /* 正常字重（非粗体） */
    font-style: normal;         /* 非斜体 */
    vertical-align: top;        /* 顶部垂直对齐 */
}
/* 按钮悬停时图标样式 */
.tem_4_53 .w-button:hover .w-button-icon {
    color: #FFF;        /* 保持白色（与#ffffff相同） */
    font-size: 12px;    /* 保持字体大小不变 */
    font-weight: 400;   /* 保持正常字重 */
}
/* 隐藏图标状态 - 用于需要动态显示/隐藏图标的场景 */
.tem_4_53 .w-button .w-button-icon.w-icon-hide {
    display: none;  /* 完全隐藏图标 */
}
/* 按钮文字样式 */
.tem_4_53 .w-button .w-button-text {
    display: inline-block;          /* 行内块显示 */
    font-family: 'Microsoft YaHei'; /* 使用微软雅黑字体 */
    font-size: 12px;                /* 12像素字体大小 */
    color: #ffffff;                 /* 白色文字 */
    font-weight: 400;               /* 正常字重 */
    text-decoration: none;          /* 无下划线装饰 */
    font-style: normal;             /* 非斜体 */
    vertical-align: top;            /* 顶部垂直对齐 */
    *vertical-align: middle;        /* IE6/7 hack：中间垂直对齐（兼容旧版IE） */
    width: 100%;                    /* 宽度100%填充容器 */
}
/* 按钮悬停时文字样式 */
.tem_4_53 .w-button:hover .w-button-text {
    color: #FFF;                /* 保持白色（与#ffffff相同） */
    font-size: 12px;            /* 保持字体大小不变 */
    font-weight: 400;           /* 保持正常字重 */
    font-style: normal;         /* 非斜体 */
    text-decoration: none;      /* 无下划线装饰 */
}
/* ===== 从右侧滑入动画定义 ===== */
/* Webkit内核浏览器的从右侧滑入动画 */
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);  /* 从右侧100%位置开始（完全在视图右侧） */
        transform: translate3d(100%, 0, 0);
        opacity: 0;  /* 完全透明 */
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);     /* 移动到正常位置 */
        transform: translate3d(0, 0, 0);
        opacity: 1;  /* 完全不透明 */
    }
}
/* 标准从右侧滑入动画定义 */
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);  /* 从右侧100%位置开始 */
        transform: translate3d(100%, 0, 0);
        opacity: 0;  /* 完全透明 */
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);     /* 移动到正常位置 */
        transform: translate3d(0, 0, 0);
        opacity: 1;  /* 完全不透明 */
    }
}
/* 应用从右侧滑入动画的类 */
.slideInRight {
    -webkit-animation-name: slideInRight;  /* Webkit浏览器使用slideInRight动画 */
    animation-name: slideInRight;          /* 标准浏览器使用slideInRight动画 */
}

/* ===== 文本内容组件样式重置 ===== */
/* 文本内容组件基础样式 顶部轮播图区域(Area46642)文本编辑和显示区域*/
.tem_8_53 {
    color: inherit;  /* 继承父元素的文字颜色，保持设计一致性 */
}
/* 重置所有标题元素的默认样式 */
.tem_8_53 h1, .tem_8_53 h2, .tem_8_53 h3,
.tem_8_53 h4, .tem_8_53 h5, .tem_8_53 h6 {
    font-weight: normal;  /* 取消浏览器默认的粗体样式，使用正常字重 */
    line-height: 1.2;     /* 设置紧凑的行高，标题通常需要比正文更紧凑的间距 */
}
/* 二级标题具体样式 */
.tem_8_53 h2 {
    font-size: 1.5em;     /* 使用相对单位，1.5倍于父元素的字体大小 */
    font-weight: normal;  /* 确保二级标题不使用粗体 */
}
/* 一级标题具体样式 */
.tem_8_53 h1 {
    font-size: 2em;       /* 最大的标题，2倍于父元素的字体大小 */
    font-weight: normal;  /* 取消粗体，保持视觉统一 */
}
/* 三级标题具体样式 */
.tem_8_53 h3 {
    font-size: 1.17em;    /* 约1.17倍父元素字体大小，介于h2和h4之间 */
    font-weight: normal;  /* 正常字重 */
}
/* 四级标题具体样式 - 使用固定像素值 */
.tem_8_53 h4 {
    font-size: 13px;      /* 固定13像素大小，不随父元素字体大小变化 */
    font-weight: normal;  /* 正常字重 */
}
/* 五级标题具体样式 */
.tem_8_53 h5 {
    font-size: 0.83em;    /* 相对较小的标题，0.83倍父元素字体大小 */
    font-weight: normal;  /* 正常字重 */
}
/* 六级标题具体样式 - 最小的标题级别 */
.tem_8_53 h6 {
    font-size: 0.67em;    /* 最小的标题，0.67倍父元素字体大小 */
    font-weight: normal;  /* 正常字重 */
}
/* ===== CKEditor富文本编辑器层级控制 ===== */
/* CKEditor编辑器实例的z-index设置 */
#cke_txtc_tem_8_53 {
    z-index: 100000 !important;
    /* 设置极高的层级值，确保富文本编辑器覆盖在页面其他内容之上 */ /* !important 用于覆盖其他可能冲突的z-index设置 */
}
/* CKEditor对话框的z-index设置 - 必须比编辑器本身更高 */
.cke_editor_txtc_tem_8_53_dialog .cke_dialog {
    z-index: 100010 !important;
    /* 对话框需要比编辑器高10个层级，确保对话框能完全覆盖编辑器 */ /* 当打开图片上传、链接设置等对话框时能正常显示 */
}
/* CKEditor对话框背景遮罩层 */
.cke_dialog_background_cover {
    z-index: 100000 !important;
    /* 背景遮罩层与编辑器同层级，通过HTML文档流顺序控制显示优先级 */ /* 用于创建模态对话框的遮罩效果，阻止与底层内容的交互 */
}

/* ===== 按钮组件样式 (tem_5_53版本) ===== */
/* 按钮基础样式 - 白色边框透明背景设计 */
.tem_5_53 .w-button {
    display: inline-block;      /* 行内块显示，兼具行内元素和块级元素特性 */
    margin: 0;                 /* 清除默认外边距 */
    padding: 0;                /* 清除默认内边距 */
    /* 设置2像素白色实线边框 - 四边相同 */
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    /* 跨浏览器直角边框设置 - 所有圆角设为0 */
    -moz-border-radius: 0;        /* Firefox */
    -webkit-border-radius: 0;     /* Chrome, Safari */
    -ms-border-radius: 0;         /* IE */
    -o-border-radius: 0;          /* Opera */
    border-radius: 0;             /* 标准属性 */
    background-color: transparent;    /* 完全透明背景 */
    background-image: none;           /* 无背景图片 */
    background-repeat: no-repeat;     /* 背景不重复 */
    background-position: 0 0;         /* 背景位置左上角 */
    /* 跨浏览器渐变背景重置 - 设置为无渐变效果 */
    background: -moz-linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background-size: auto;            /* 背景尺寸自动 */
    /* 跨浏览器阴影效果重置 - 设置无阴影 */
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);  /* 无阴影，但保留阴影属性以备扩展 */
    cursor: pointer;        /* 鼠标悬停时显示手型光标，表示可点击 */
    outline: none;          /* 移除焦点时的轮廓线，避免默认的蓝色边框 */
    text-align: center;     /* 文字水平居中 */
}
/* 按钮悬停状态样式 - 保持与正常状态一致的外观 */
.tem_5_53 .w-button:hover {
    /* 悬停时保持白色边框不变 */
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    border-left-color: #ffffff;
    background: transparent;        /* 保持透明背景 */
    background-image: none;         /* 无背景图片 */
    background-repeat: no-repeat;   /* 背景不重复 */
    background-position: 0 0;       /* 背景位置不变 */
    /* 跨浏览器渐变背景重置 - 悬停时仍无渐变 */
    background: -moz-linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background-size: auto;
    /* 跨浏览器阴影重置 - 悬停时阴影完全透明 */
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}
/* 按钮位置容器 - 控制按钮内部间距 */
.tem_5_53 .w-button-position {
    display: block;     /* 块级显示 */
    padding: 0 5px;     /* 左右5像素内边距，上下无内边距 */
}
/* 按钮图标样式 */
.tem_5_53 .w-button .w-button-icon {
    display: inline-block;      /* 行内块显示 */
    margin-right: 3px;          /* 图标右侧3像素外边距，与文字保持间距 */
    font-size: 12px;            /* 图标字体大小12像素 */
    color: #ffffff;             /* 白色图标 */
    font-weight: 400;           /* 正常字重（非粗体） */
    font-style: normal;         /* 非斜体 */
    vertical-align: top;        /* 顶部垂直对齐 */
}
/* 按钮悬停时图标样式 - 保持与正常状态一致 */
.tem_5_53 .w-button:hover .w-button-icon {
    color: #FFF;        /* 保持白色（与#ffffff相同） */
    font-size: 12px;    /* 保持12像素大小 */
    font-weight: 400;   /* 保持正常字重 */
}
/* 隐藏图标状态类 - 用于需要动态隐藏图标的场景 */
.tem_5_53 .w-button .w-button-icon.w-icon-hide {
    display: none;  /* 完全隐藏图标元素 */
}
/* 按钮文字样式 */
.tem_5_53 .w-button .w-button-text {
    display: inline-block;          /* 行内块显示 */
    font-family: 'Microsoft YaHei'; /* 使用微软雅黑字体 */
    font-size: 12px;                /* 12像素字体大小 */
    color: #ffffff;                 /* 白色文字 */
    font-weight: 400;               /* 正常字重 */
    text-decoration: none;          /* 无文字装饰（如下划线） */
    font-style: normal;             /* 非斜体 */
    vertical-align: top;            /* 顶部垂直对齐 */
    *vertical-align: middle;        /* IE6/7 Hack：中间垂直对齐（兼容旧版IE） */
    width: 100%;                    /* 宽度100%填充容器 */
}
/* 按钮悬停时文字样式 - 保持与正常状态一致 */
.tem_5_53 .w-button:hover .w-button-text {
    color: #FFF;                /* 保持白色 */
    font-size: 12px;            /* 保持12像素大小 */
    font-weight: 400;           /* 保持正常字重 */
    font-style: normal;         /* 非斜体 */
    text-decoration: none;      /* 无文字装饰 */
}
/*Area46642 (顶部轮播图区域)  Cloud SMS设置*/
.tem_6_53 {
    color: inherit;
}

.tem_6_53 h1, .tem_6_53 h2, .tem_6_53 h3, .tem_6_53 h4, .tem_6_53 h5, .tem_6_53 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_6_53 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_6_53 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_6_53 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_6_53 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_6_53 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_6_53 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_6_53 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_6_53_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*文本内容显示和编辑*/
.tem_7_53 {
    color: inherit;
}

.tem_7_53 h1, .tem_7_53 h2, .tem_7_53 h3, .tem_7_53 h4, .tem_7_53 h5, .tem_7_53 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_7_53 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_7_53 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_7_53 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_7_53 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_7_53 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_7_53 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_7_53 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_7_53_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

/* ===== 缩放进入动画定义 ===== */
/* Webkit内核浏览器的缩放进入动画 */
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;                                   /* 动画开始：完全透明 */
        -webkit-transform: scale3d(.3, .3, .3);       /* 缩放到原始大小的30% */
        transform: scale3d(.3, .3, .3);               /* 三维缩放，同时在X、Y、Z轴缩小 */
    }
    50% {
        opacity: 1;                                   /* 动画中间：完全不透明 */
        -webkit-transform: scale3d(1, 1, 1);          /* 缩放到正常大小(100%) */
        transform: scale3d(1, 1, 1);                  /* 三维缩放恢复正常 */
    }
    to {
        opacity: 1;                                   /* 动画结束：保持完全不透明 */
        -webkit-transform: scale3d(1, 1, 1);          /* 保持正常大小 */
        transform: scale3d(1, 1, 1);                  /* 保持正常三维尺寸 */
    }
}
/* 标准缩放进入动画定义 - 简化版本 */
@keyframes zoomIn {
    from {
        opacity: 0;                                   /* 动画开始：完全透明 */
        -webkit-transform: scale3d(.3, .3, .3);       /* 缩放到30%大小 */
        transform: scale3d(.3, .3, .3);               /* 三维缩放效果 */
    }
    50% {
        opacity: 1;                                   /* 动画中间：完全不透明 */
        /* 注意：标准版本在50%关键帧中省略了transform属性 */ /* 这意味着缩放效果会在0%-50%之间完成，50%-100%只处理透明度 */
    }
    to {
        opacity: 1;                                   /* 动画结束：保持完全不透明 */
    }
}
/* 应用缩放进入动画的类 */
.zoomIn {
    -webkit-animation-name: zoomIn;  /* Webkit浏览器使用zoomIn动画 */
    animation-name: zoomIn;          /* 标准浏览器使用zoomIn动画 */
}
/*区域容器(area)-包裹5个子组件-tem_23_53 - 背景图片\tem_24_31 - "NETBOU TECHNOLOGY"文字\tem_25_43 - "SMS Cloud Services"文字\
tem_26_1 - "One-stop solution for SMS service"文字\tem_64_46 - "Cloud SMS"文字*/
/* 主容器样式 - 完全透明的定位容器 */
.tem_22_33 > .w-container {
    /* 边框圆角重置 - 设置为直角 */
    border-radius: 0px;           /* 标准属性：无圆角 */
    -webkit-border-radius: 0px;   /* Webkit内核浏览器：无圆角 */
    -moz-border-radius: 0px;      /* Firefox浏览器：无圆角 */

    /* 边框样式重置 - 四边完全透明无边框 */
    border-right: 0 none transparent;   /* 右边框：0宽度，无样式，透明 */
    border-top: 0 none transparent;     /* 上边框：0宽度，无样式，透明 */
    border-bottom: 0 none transparent;  /* 下边框：0宽度，无样式，透明 */
    border-left: 0 none transparent;    /* 左边框：0宽度，无样式，透明 */

    /* 背景样式重置 - 完全透明无背景 */
    background-color: transparent;    /* 透明背景色 */
    background-image: none;           /* 无背景图片 */
    background-repeat: repeat;        /* 背景重复方式（虽然无图片，但预先设置） */
    background-position: 0 0;         /* 背景位置左上角 */

    /* 跨浏览器渐变背景重置 - 设置为无渐变效果 */
    background: -moz-linear-gradient(top, none, none);        /* Firefox渐变 */
    background: -o-linear-gradient(top, none, none);          /* Opera渐变 */
    background: -ms-linear-gradient(top, none, none);         /* IE渐变 */
    background: linear-gradient(top, none, none);             /* 标准渐变 */
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none)); /* Webkit渐变 */
    background-size: auto;            /* 背景尺寸自动 */

    /* 跨浏览器阴影效果重置 - 设置为无阴影 */
    -moz-box-shadow: 0 0 0 transparent;      /* Firefox阴影 */
    -webkit-box-shadow: 0 0 0 transparent;   /* Chrome, Safari阴影 */
    -ms-box-shadow: 0 0 0 transparent;       /* IE阴影 */
    -o-box-shadow: 0 0 0 transparent;        /* Opera阴影 */
    box-shadow: 0 0 0 transparent;           /* 标准阴影属性 */

    /* 定位设置 - 绝对定位并撑满父容器 */
    position: absolute;      /* 绝对定位，相对于最近的定位祖先元素 */
    left: 0px;              /* 距离左侧0像素 */
    top: 0px;               /* 距离顶部0像素 */
    bottom: 0px;            /* 距离底部0像素 */
    right: 0px;             /* 距离右侧0像素 */
}/* 通过left/top/right/bottom都为0，实现撑满整个父容器的效果 */

/* 容器内部直接子div样式 - 创建相对定位的内容区域 */
.tem_22_33 > .w-container > div {
    width: 100%;            /* 宽度100%，填满父容器宽度 */
    height: 100%;           /* 高度100%，填满父容器高度 */
    position: relative;     /* 相对定位，为内部绝对定位元素建立定位上下文 */
}/* 这个div作为内容区域，可以包含其他需要定位的子元素 */

.tem_23_53 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.tem_23_53 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}

.tem_24_31 {
    color: inherit;
}

.tem_24_31 h1, .tem_24_31 h2, .tem_24_31 h3, .tem_24_31 h4, .tem_24_31 h5, .tem_24_31 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_24_31 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_24_31 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_24_31 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_24_31 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_24_31 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_24_31 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_24_31 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_24_31_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.tem_25_43 {
    color: inherit;
}

.tem_25_43 h1, .tem_25_43 h2, .tem_25_43 h3, .tem_25_43 h4, .tem_25_43 h5, .tem_25_43 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_25_43 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_25_43 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_25_43 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_25_43 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_25_43 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_25_43 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_25_43 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_25_43_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.tem_26_1 {
    color: inherit;
}

.tem_26_1 h1, .tem_26_1 h2, .tem_26_1 h3, .tem_26_1 h4, .tem_26_1 h5, .tem_26_1 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_26_1 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_26_1 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_26_1 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_26_1 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_26_1 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_26_1 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_26_1 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_26_1_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.tem_64_46 {
    color: inherit;
}

.tem_64_46 h1, .tem_64_46 h2, .tem_64_46 h3, .tem_64_46 h4, .tem_64_46 h5, .tem_64_46 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_64_46 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_64_46 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_64_46 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_64_46 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_64_46 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_64_46 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_64_46 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_64_46_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

/* ===== 客服侧边栏组件样式 (tem_57_17) ===== */
/* 客服侧边栏悬停时提升层级 - 确保悬停时显示在最上层 */
#smv_tem_57_17:hover {
    z-index: 9999 !important;  /* 极高的z-index，确保客服栏悬停时覆盖其他所有元素 */
}

/* 客服侧边栏主容器样式 */
.tem_57_17_c.w-cs {
    position: absolute;  /* 绝对定位，固定在页面右侧 */
    right: 3px;         /* 距离右侧3像素，贴近浏览器边缘 */
    z-index: 9999;      /* 高层级，确保默认显示在页面内容之上 */
    font-family: Tahoma; /* 使用Tahoma字体，适合数字和英文显示 */
    overflow: hidden;   /* 隐藏溢出内容，保持布局整洁 */
}

/* 客服按钮列表容器重置 */
.tem_57_17_c.w-cs ul.w-cs-btn {
    margin: 0;         /* 清除默认外边距 */
    padding: 0;        /* 清除默认内边距 */
    list-style: none;  /* 去除列表默认样式（如圆点） */
}

/* 单个客服按钮项样式 */
.tem_57_17_c.w-cs ul.w-cs-btn li {
    position: relative;        /* 相对定位，为内部元素建立定位上下文 */
    height: 60px;             /* 固定高度60像素 */
    margin-bottom: 3px;       /* 底部间距3像素，按钮间有间隙 */
    /* 四边边框设置 - 当前均为0宽度透明边框，预留扩展性 */
    border-top-color: #fff; border-top-width: 0; border-top-style: solid;
    border-right-color: #fff; border-right-width: 0; border-right-style: solid;
    border-bottom-color: #fff; border-bottom-width: 0; border-bottom-style: solid;
    border-left-color: #fff; border-left-width: 0; border-left-style: solid;
    border-radius: 4px;       /* 4像素圆角，柔和边角 */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);  /* 无阴影效果 */
    clear: both;              /* 清除浮动 */
    overflow: hidden;         /* 隐藏溢出内容 */
    white-space: nowrap;      /* 禁止文字换行 */
    text-overflow: ellipsis;  /* 文字溢出显示省略号 */
    color: rgba(255, 255, 255, 1);  /* 白色文字，完全不透明 */
}

/* 客服按钮内部包装层样式 */
.tem_57_17_c.w-cs ul.w-cs-btn li .w-cs-list-warp {
    position: relative;       /* 相对定位 */
    z-index: 99;             /* 较高层级，确保在按钮内部上层显示 */
    background-color: rgba(255, 135, 38, 1);  /* 橙色背景 (#FF8726) */
    background-image: none;   /* 无背景图片 */
    background-repeat: repeat; /* 背景重复方式 */
    background-position: 0 0; /* 背景位置左上角 */
    /* 跨浏览器渐变背景重置 - 设置为无渐变效果 */
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
}

/* 客服按钮悬停状态样式 */
.tem_57_17_c.w-cs ul li:hover {
    border-color: #fff;                    /* 悬停时边框变为白色 */
    color: rgba(255, 255, 255, 1);         /* 保持白色文字 */
}

/* 客服按钮悬停时内部包装层样式变化 */
.tem_57_17_c.w-cs ul li:hover .w-cs-list-warp {
    background-color: rgba(255, 157, 77, 1);  /* 悬停时变为更亮的橙色 (#FF9D4D) */
    background-image: none;   /* 无背景图片 */
    background-repeat: repeat; /* 背景重复方式 */
    background-position: 0 0; /* 背景位置左上角 */
    /* 跨浏览器渐变背景重置 - 悬停时仍无渐变 */
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
}

/* 隐藏状态的客服按钮项 */
.tem_57_17_c.w-cs ul .w-cs-list.w-hide {
    display: none;  /* 完全隐藏，不占位 */
}

/* 客服按钮图标容器样式 */
.tem_57_17_c.w-cs ul .w-cs-list span.w-cs-icon {
    display: block;         /* 块级显示 */
    float: left;            /* 左浮动，图标在左侧 */
    width: 60px;            /* 固定宽度60像素，与高度相同形成正方形 */
    height: 60px;           /* 固定高度60像素 */
    line-height: 60px;      /* 行高等于高度，实现垂直居中 */
    text-align: center;     /* 文字水平居中 */
    border-radius: 4px;     /* 4像素圆角 */
}

/* 客服按钮图标样式 */
.tem_57_17_c.w-cs ul .w-cs-list span.w-cs-icon i {
    font-size: 34px;                    /* 大号图标，34像素 */
    color: rgba(255, 255, 255, 1);      /* 白色图标 */
}

/* 客服按钮悬停时图标样式 */
.tem_57_17_c.w-cs ul li:hover span.w-cs-icon i {
    font-size: 34px;  /* 保持34像素大小不变 */
    color: #fff;      /* 保持白色 */
}

/* 客服按钮悬停时文字样式 */
.tem_57_17_c.w-cs ul li:hover .w-cs-text {
    color: #fff;  /* 保持白色文字 */
}

/* 特定图标的特殊大小设置 - 电话和二维码图标稍小 */
.tem_57_17_c.w-cs ul.w-cs-btn li .w-cs-icon i.icon-phone,
.tem_57_17_c.w-cs ul.w-cs-btn li .w-cs-icon i.icon-qrcode {
    font-size: 29px;  /* 29像素，比普通图标稍小 */
}

/* 客服按钮文字样式 */
.tem_57_17_c.w-cs .w-cs-list .w-cs-text {
    padding-right: 20px;        /* 右侧内边距20像素 */
    padding-left: 2px;          /* 左侧内边距2像素，与图标保持间距 */
    line-height: 60px;          /* 行高60像素，与按钮高度相同，垂直居中 */
    color: rgba(255, 255, 255, 1);  /* 白色文字 */
    font-size: 14px;            /* 14像素字体大小 */
    font-weight: 400;           /* 正常字重 */
    font-style: normal;         /* 非斜体 */
    font-family: 'Microsoft YaHei';  /* 微软雅黑字体，适合中文显示 */
    text-decoration: none;      /* 无文字装饰（如下划线） */
    text-align: left;           /* 文字左对齐 */
    white-space: nowrap;        /* 禁止文字换行 */
    overflow: hidden;           /* 隐藏溢出文字 */
    text-overflow: ellipsis;    /* 溢出显示省略号 */
    display: block;             /* 块级显示 */
}

/* 二维码区域容器样式 */
.tem_57_17_c.w-cs .w-cs-code {
    padding: 0 20px 20px;  /* 上下无内边距，左右20像素，底部20像素内边距 */
}

/* 二维码图片样式 */
.tem_57_17_c.w-cs .w-cs-code img {
    margin: 0 auto;     /* 水平居中 */
    display: block;     /* 块级显示 */
    width: 160px;       /* 固定宽度160像素 */
    height: auto;       /* 高度自动，保持图片比例 */
}
/*网站顶部固定导航栏,包含子组件tem_60_25 - 主导航菜单、tem_62_25 - 网站Logo*/
.tem_59_25 {
    position: relative;
}

.tem_59_25 .fullcolumn-outer {
    background-color: rgb(254, 197, 2);
    background-image: none;
    background-position: left top;
    background-repeat: repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}

.tem_59_25 .fullcolumn-inner {
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: left top;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.smartFixed .tem_59_25 .fullcolumn-outer {
    left: 0 !important;
}

.tem_60_25 * {
    box-sizing: content-box;
}

.tem_60_25 .w-nav {
    margin: 0;
    padding: 0;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.tem_60_25 .w-nav:after {
    content: '';
    display: table;
    clear: both;
    zoom: 1
}

.tem_60_25 .w-nav .w-nav-inner {
    padding: 0;
    margin: 0;
    float: left;
    list-style: none;
    width: 25%;
    height: 24px;
    line-height: 24px;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-nav-item {
    padding: 0;
    margin: 0;
    position: relative;
    height: 100%;
    line-height: inherit;
    overflow: hidden;
}

.tem_60_25 .w-nav .w-nav-inner:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tem_60_25 .w-nav .w-nav-inner:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tem_60_25 .w-nav .w-nav-inner:first-child .w-nav-item .w-nav-item-line {
    display: none;
}

.tem_60_25 .w-nav .w-nav-item .w-nav-item-link {
    margin: 0;
    padding: 0 15px;
    text-decoration: none;
    outline: none;
    display: block;
    height: 100%;
    color: #444444;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tem_60_25 .w-nav .w-nav-item .w-nav-item-link .w-link-txt {
    font-family: 'Microsoft YaHei';
    font-size: 12px;
}

.tem_60_25 .w-nav .w-nav-item .w-nav-item-link .mw-iconfont {
    font-size: 12px;
}

.tem_60_25 .w-nav .w-subnav {
    margin: 0;
    padding: 0;
    position: relative;
    display: none;
    overflow: hidden;
}

.tem_60_25 .w-nav .w-subnav.userWidth {
    width: 120px;
}

.tem_60_25 .w-nav .w-subnav-item {
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-subnav-item .w-subnav-link {
    margin: 0;
    padding: 0 15px;
    height: 100%;
    line-height: 70px;
    outline: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 70px;
    color: #666;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_60_25 .w-nav .w-subnav-item .w-subnav-link .mw-iconfont {
    font-size: 12px;
}

.tem_60_25 .w-nav .w-subnav-item .w-subnav-link .w-link-txt {
    font-family: 'Microsoft YaHei';
}

.tem_60_25 .w-nav .w-nav-inner .w-nav-item-link.hover {
    margin-top: -24px;
    display: none;
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-nav-inner .w-nav-item:hover .w-nav-item-link {
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.tem_60_25 .w-subnav .w-subnav-item:hover {
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-subnav-item:hover .w-subnav-link:hover {
    color: #14C187;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_60_25 .w-nav .w-nav-item.current {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-nav-item.current .w-nav-item-link {
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_60_25 .w-nav .w-subnav-item.current {
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_60_25 .w-nav .w-subnav-item.current .w-subnav-link {
    color: #fff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_61_25 * {
    box-sizing: content-box;
}

.tem_61_25 .w-nav {
    margin: 0;
    padding: 0;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.tem_61_25 .w-nav:after {
    content: '';
    display: table;
    clear: both;
    zoom: 1
}

.tem_61_25 .w-nav .w-nav-inner {
    padding: 0;
    margin: 0;
    float: left;
    list-style: none;
    width: 25%;
    height: 24px;
    line-height: 24px;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-nav-item {
    padding: 0;
    margin: 0;
    position: relative;
    height: 100%;
    line-height: inherit;
    overflow: hidden;
}

.tem_61_25 .w-nav .w-nav-inner:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tem_61_25 .w-nav .w-nav-inner:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tem_61_25 .w-nav .w-nav-inner:first-child .w-nav-item .w-nav-item-line {
    display: none;
}

.tem_61_25 .w-nav .w-nav-item .w-nav-item-link {
    margin: 0;
    padding: 0 15px;
    text-decoration: none;
    outline: none;
    display: block;
    height: 100%;
    color: #444444;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tem_61_25 .w-nav .w-nav-item .w-nav-item-link .w-link-txt {
    font-family: 'Microsoft YaHei';
    font-size: 16px;
}

.tem_61_25 .w-nav .w-nav-item .w-nav-item-link .mw-iconfont {
    font-size: 16px;
}

.tem_61_25 .w-nav .w-subnav {
    margin: 0;
    padding: 0;
    position: relative;
    display: none;
    overflow: hidden;
}

.tem_61_25 .w-nav .w-subnav.userWidth {
    width: 120px;
}

.tem_61_25 .w-nav .w-subnav-item {
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-subnav-item .w-subnav-link {
    margin: 0;
    padding: 0 15px;
    height: 100%;
    line-height: 70px;
    outline: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 70px;
    color: #666;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_61_25 .w-nav .w-subnav-item .w-subnav-link .mw-iconfont {
    font-size: 12px;
}

.tem_61_25 .w-nav .w-subnav-item .w-subnav-link .w-link-txt {
    font-family: 'Microsoft YaHei';
}

.tem_61_25 .w-nav .w-nav-inner .w-nav-item-link.hover {
    margin-top: -24px;
    display: none;
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-nav-inner .w-nav-item:hover .w-nav-item-link {
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.tem_61_25 .w-subnav .w-subnav-item:hover {
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-subnav-item:hover .w-subnav-link:hover {
    color: #14C187;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_61_25 .w-nav .w-nav-item.current {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-nav-item.current .w-nav-item-link {
    color: #ffffff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_61_25 .w-nav .w-subnav-item.current {
    background-color: #fff;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}

.tem_61_25 .w-nav .w-subnav-item.current .w-subnav-link {
    color: #fff;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-align: center;
}

.tem_62_25 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.tem_62_25 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}

.tem_63_25 {
    color: inherit;
}

.tem_63_25 h1, .tem_63_25 h2, .tem_63_25 h3, .tem_63_25 h4, .tem_63_25 h5, .tem_63_25 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_63_25 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_63_25 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_63_25 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_63_25 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_63_25 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_63_25 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_63_25 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_63_25_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.tem_30_35 {
    color: inherit;
}

.tem_30_35 h1, .tem_30_35 h2, .tem_30_35 h3, .tem_30_35 h4, .tem_30_35 h5, .tem_30_35 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_30_35 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_30_35 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_30_35 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_30_35 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_30_35 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_30_35 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_30_35 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_30_35_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*显示微信二维码的图片组件*/
.tem_31_46 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.tem_31_46 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}

/* ===== 底部导航菜单样式 (tem_32_55) ===== */
/* 全局盒模型设置 - 使用content-box盒模型 */
.tem_32_55 * {
    box-sizing: content-box;  /* 传统盒模型，width/height只包含内容，不包含padding和border */
}
/* 导航菜单主容器样式 */
.tem_32_55 .w-nav {
    margin: 0;
    padding: 0;
    width: 555px;           /* 固定宽度555像素 */
    height: 18px;           /* 固定高度18像素 - 较矮的导航条 */
    /* 四边边框重置 - 全部设置为0宽度透明边框 */
    border-top-width: 0; border-right-width: 0; border-bottom-width: 0; border-left-width: 0;
    border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid;
    border-top-color: transparent; border-right-color: transparent; border-bottom-color: transparent; border-left-color: transparent;
    border-radius: 0;       /* 无圆角 */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);  /* 无阴影效果 */
}
/* 清除浮动 - 确保导航容器正确包裹浮动元素 */
.tem_32_55 .w-nav:after {
    content: '';        /* 伪元素内容为空 */
    display: table;     /* 表格显示，更好的清除浮动效果 */
    clear: both;        /* 清除左右浮动 */
    zoom: 1;            /* IE6/7触发hasLayout，解决浮动问题 */
}
/* 导航项内部容器样式 */
.tem_32_55 .w-nav .w-nav-inner {
    padding: 0;
    margin: 0;
    float: left;                /* 左浮动实现水平排列 */
    list-style: none;           /* 去除列表默认样式 */
    width: 23%;                 /* 每个导航项宽度约23%，6个项约138% */
    height: 18px;               /* 与导航容器同高 */
    line-height: 18px;          /* 行高等于高度，实现文字垂直居中 */
    /* 背景样式重置 - 完全透明无背景 */
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* 跨浏览器渐变背景重置 - 设置为无渐变 */
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 导航项样式 */
.tem_32_55 .w-nav .w-nav-item {
    padding: 0;
    margin: 0;
    position: relative;     /* 相对定位，为内部绝对定位元素建立上下文 */
    height: 100%;           /* 高度100%填充父容器 */
    line-height: inherit;   /* 继承父容器的行高 */
}
/* 第一个导航项的圆角重置 */
.tem_32_55 .w-nav .w-nav-inner:first-child {
    border-top-left-radius: 0;      /* 左上角无圆角 */
    border-bottom-left-radius: 0;   /* 左下角无圆角 */
}
/* 最后一个导航项的圆角重置 */
.tem_32_55 .w-nav .w-nav-inner:last-child {
    border-top-right-radius: 0;     /* 右上角无圆角 */
    border-bottom-right-radius: 0;  /* 右下角无圆角 */
}
/* 第一个导航项当前状态的圆角重置 */
.tem_32_55 .w-nav .w-nav-inner:first-child .w-nav-item.current {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/* 最后一个导航项当前状态的圆角重置 */
.tem_32_55 .w-nav .w-nav-inner:last-child .w-nav-item.current {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
/* 导航项分隔线样式 */
.tem_32_55 .w-nav .w-nav-item .w-nav-item-line {
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;      /* 绝对定位 */
    height: 100%;           /* 高度100%，贯穿整个导航项 */
    width: 0;               /* 宽度为0，实际宽度由border控制 */
    top: 0;                 /* 顶部对齐 */
    left: -1px;             /* 向左偏移1像素，与相邻项重叠 */
    border-left-width: 1px;         /* 左边框1像素宽度 */
    border-left-style: solid;       /* 实线样式 */
    border-left-color: #999999;     /* 灰色分隔线 (#999) */
}
/* 第一个导航项不需要左侧分隔线 */
.tem_32_55 .w-nav .w-nav-inner:first-child .w-nav-item .w-nav-item-line {
    display: none;  /* 隐藏分隔线 */
}
/* 导航链接基础样式 */
.tem_32_55 .w-nav .w-nav-item .w-nav-item-link {
    margin: 0;
    padding: 0;
    text-decoration: none;  /* 去除下划线 */
    outline: none;          /* 去除焦点轮廓 */
    display: block;         /* 块级显示 */
    height: 100%;           /* 高度100%填充容器 */
    color: #cccccc;         /* 默认灰色文字 (#CCC) */
    font-weight: normal;    /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无文字装饰 */
    text-align: center;     /* 文字居中 */
    white-space: nowrap;    /* 禁止换行 */
    overflow: hidden;       /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出显示省略号 */
}
/* 导航链接文字样式 */
.tem_32_55 .w-nav .w-nav-item .w-nav-item-link .w-link-txt {
    font-family: 'Microsoft YaHei';  /* 微软雅黑字体，适合中文显示 */
    font-size: 14px;                 /* 14像素字体大小 */
}
/* 导航链接图标样式 */
.tem_32_55 .w-nav .w-nav-item .w-nav-item-link .mw-iconfont {
    font-size: 14px;  /* 图标大小与文字相同 */
}
/* 子导航菜单容器 */
.tem_32_55 .w-nav .w-subnav {
    margin: 0;
    padding: 0;
    position: relative;  /* 相对定位 */
    display: none;       /* 默认隐藏，通过JavaScript控制显示 */
    overflow: hidden;    /* 隐藏溢出内容 */
}
/* 用户自定义宽度的子导航 */
.tem_32_55 .w-nav .w-subnav.userWidth {
    width: 120px;  /* 固定宽度120像素 */
}
/* 子导航项样式 */
.tem_32_55 .w-nav .w-subnav-item {
    margin: 0;
    padding: 0;
    list-style: none;   /* 去除列表样式 */
    /* 背景样式重置 - 透明无背景 */
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 子导航链接样式 */
.tem_32_55 .w-nav .w-subnav-item .w-subnav-link {
    margin: 0;
    padding: 0 15px;        /* 左右15像素内边距 */
    height: 100%;           /* 高度100% */
    line-height: 70px;      /* 行高70像素，实现垂直居中 */
    outline: none;          /* 去除焦点轮廓 */
    display: block;         /* 块级显示 */
    white-space: nowrap;    /* 禁止换行 */
    overflow: hidden;       /* 隐藏溢出 */
    text-overflow: ellipsis; /* 溢出显示省略号 */
    height: 70px;           /* 固定高度70像素 - 较高的子菜单项 */
    color: #383838;         /* 深灰色文字 (#383838) */
    font-size: 12px;        /* 12像素字体，比主菜单小 */
    font-weight: normal;    /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无文字装饰 */
    text-align: center;     /* 文字居中 */
}
/* 子导航链接文字样式 */
.tem_32_55 .w-nav .w-subnav-item .w-subnav-link .w-link-txt {
    font-family: 'Microsoft YaHei';  /* 微软雅黑字体 */
}
/* 子导航链接图标样式 */
.tem_32_55 .w-nav .w-subnav-item .w-subnav-link .mw-iconfont {
    font-size: 12px;  /* 12像素图标，与文字大小一致 */
}
/* ===== 交互状态样式 ===== */
/* 导航项悬停状态 - 背景保持不变 */
.tem_32_55 .w-nav .w-nav-inner:hover {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 导航项悬停时链接样式变化 */
.tem_32_55 .w-nav .w-nav-inner:hover .w-nav-item-link {
    color: #059FE9;         /* 变为蓝色 (#059FE9) */
    font-weight: 400;       /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无装饰 */
}
/* 子导航项悬停状态 - 背景保持不变 */
.tem_32_55 .w-subnav .w-subnav-item:hover {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 子导航链接悬停状态 */
.tem_32_55 .w-nav .w-subnav-item:hover .w-subnav-link:hover {
    color: #059FE9;         /* 变为蓝色 (#059FE9) */
    font-weight: 400;       /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无装饰 */
}
/* 当前选中的导航项状态 */
.tem_32_55 .w-nav .w-nav-item.current {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 当前选中导航项的链接样式 */
.tem_32_55 .w-nav .w-nav-item.current .w-nav-item-link {
    color: #059FE9;         /* 蓝色文字 (#059FE9) */
    font-weight: 400;       /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无装饰 */
}
/* 当前选中的子导航项状态 */
.tem_32_55 .w-nav .w-subnav-item.current {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-size: auto;
}
/* 当前选中子导航项的链接样式 */
.tem_32_55 .w-nav .w-subnav-item.current .w-subnav-link {
    color: #059FE9;         /* 蓝色文字 (#059FE9) */
    font-weight: 400;       /* 正常字重 */
    font-style: normal;     /* 非斜体 */
    text-decoration: none;  /* 无装饰 */
}
/*底部导航水平分隔线组件*/
.tem_33_54 .w-line {
    display: block;
    margin: 0;
    margin-top: -0;
    padding: 0;
    top: 50%;
    width: 580px;
    height: 1px;
    font-size: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #999999;
    -moz-box-shadow: 0 0 0 rgb(68, 68, 68);
    -webkit-box-shadow: 0 0 0 rgb(68, 68, 68);
    -ms-box-shadow: 0 0 0 rgb(68, 68, 68);
    -o-box-shadow: 0 0 0 rgb(68, 68, 68);
    box-shadow: 0 0 0 rgb(68, 68, 68);
}
/*微博分享组件*/
.tem_66_12 .w-code {
    padding: 0;
    margin: 0;
    width: 200px;
    height: 100px;
}
/*工商备案认证图标*/
.tem_65_24 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.tem_65_24 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*文本内容显示和编辑组件，显示"welcome to consult"欢迎文字*/
.tem_36_9 {
    color: inherit;
}

.tem_36_9 h1, .tem_36_9 h2, .tem_36_9 h3, .tem_36_9 h4, .tem_36_9 h5, .tem_36_9 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_36_9 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_36_9 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_36_9 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_36_9 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_36_9 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_36_9 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_36_9 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_36_9_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*显示公司联系信息的文本区域*/
.tem_38_1 {
    color: inherit;
}

.tem_38_1 h1, .tem_38_1 h2, .tem_38_1 h3, .tem_38_1 h4, .tem_38_1 h5, .tem_38_1 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_38_1 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_38_1 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_38_1 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_38_1 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_38_1 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_38_1 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_38_1 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_38_1_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*联系标题文字*/
.tem_39_20 {
    color: inherit;
}

.tem_39_20 h1, .tem_39_20 h2, .tem_39_20 h3, .tem_39_20 h4, .tem_39_20 h5, .tem_39_20 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_39_20 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_39_20 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_39_20 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_39_20 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_39_20 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_39_20 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_39_20 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_39_20_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*联系标题文字*/
.tem_55_59 {
    color: inherit;
}

.tem_55_59 h1, .tem_55_59 h2, .tem_55_59 h3, .tem_55_59 h4, .tem_55_59 h5, .tem_55_59 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.tem_55_59 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.tem_55_59 h1 {
    font-size: 2em;
    font-weight: normal;
}

.tem_55_59 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.tem_55_59 h4 {
    font-size: 13px;
    font-weight: normal;
}

.tem_55_59 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.tem_55_59 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_tem_55_59 {
    z-index: 100000 !important;
}

.cke_editor_txtc_tem_55_59_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*灰色分隔线*/
.tem_47_20 {
    position: relative;
}

.tem_47_20 .fullcolumn-outer {
    background-color: rgb(102, 102, 102);
    background-image: none;
    background-position: left top;
    background-repeat: repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}

.tem_47_20 .fullcolumn-inner {
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: left top;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.smartFixed .tem_47_20 .fullcolumn-outer {
    left: 0 !important;
}
/*分享工具栏*/
.tem_56_59 .w-share {
    margin: 0;
    padding: 0;
    width: 427px;
    height: 28px;
}

.tem_56_59 .w-share .w-share-text {
    float: left;
    font-family: 'Microsoft YaHei';
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.tem_56_59 .w-share .bds_count.w-hide {
    display: none;
}

.tem_56_59 .w-share.bdshare-button-style0-16 a, .tem_56_59 .w-share.bdshare-button-style1-16 a {
    padding-left: 20px;
    margin: 6px 8px 6px 0;
    font-family: 'Microsoft YaHei';
    font-size: 12px;
    color: #666;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.tem_56_59 .w-share.bdshare-button-style0-16 a.bds_count, .tem_56_59 .w-share.bdshare-button-style1-16 a.bds_count {
    padding: 0 !important;
}

.tem_56_59 .w-share.bdshare-button-style0-16 .w-share-text, .tem_56_59 .w-share.bdshare-button-style1-16 .w-share-text {
    margin: 6px 6px 6px 0;
    line-height: 16px;
}

.tem_56_59 .w-share.bdshare-button-style0-24 a, .tem_56_59 .w-share.bdshare-button-style1-24 a {
    padding-left: 28px;
    margin: 6px 8px 6px 0;
    font-family: 'Microsoft YaHei';
    font-size: 24px;
    color: #666;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.tem_56_59 .w-share.bdshare-button-style0-24 a.bds_count, .tem_56_59 .w-share.bdshare-button-style1-24 a.bds_count {
    padding: 0 !important;
}

.tem_56_59 .w-share.bdshare-button-style0-24 .w-share-text, .tem_56_59 .w-share.bdshare-button-style1-24 .w-share-text {
    margin: 6px 6px 6px 0;
    line-height: 24px;
}

.tem_56_59 .w-share a:hover {
    color: #609EE9;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    transition: none;
}
/*百度分享组件样式*/
.bdshare_dialog_list a, .bdshare_popup_list a, .bdshare_popup_bottom a {
    font: 12px Tahoma !important;
}
/*公司介绍文本样式*/
.con_138_54 {
    color: inherit;
}

.con_138_54 h1, .con_138_54 h2, .con_138_54 h3, .con_138_54 h4, .con_138_54 h5, .con_138_54 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_138_54 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_138_54 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_138_54 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_138_54 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_138_54 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_138_54 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_138_54 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_138_54_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*公司标语 NETBOU — Your trusted global services provider*/
.con_141_12 {
    color: inherit;
}

.con_141_12 h1, .con_141_12 h2, .con_141_12 h3, .con_141_12 h4, .con_141_12 h5, .con_141_12 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_141_12 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_141_12 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_141_12 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_141_12 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_141_12 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_141_12 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_141_12 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_141_12_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*图片轮播*/
.con_168_43 .w-slider {
    padding: 0;
    margin: 0 auto;
    position: relative;
    top: 0px;
    left: 0px;
    width: 383px;
    height: 373px;
    visibility: hidden;
}

.con_168_43 .w-slider .w-slider-wrap {
    position: relative;
    top: 0px;
    left: 0px;
    width: 383px;
    height: 373px;
    cursor: default;
    overflow: hidden;
    border-top: 0px solid #CCD1D9;
    border-right: 0px solid #CCD1D9;
    border-bottom: 0px solid #CCD1D9;
    border-left: 0px solid #CCD1D9;
    border-radius: 1px;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
}

.con_168_43 .w-slider .w-slider-wrap .w-imgauto {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, #94E6FC, #A08EFC);
    background: -webkit-gradient(linear, left top, left bottom, from(#94E6FC), to(#A08EFC));
    background: -o-linear-gradient(top, #94E6FC, #A08EFC);
    background: -ms-linear-gradient(top, #94E6FC, #A08EFC);
    background: linear-gradient(top, #94E6FC, #A08EFC);
}

.con_168_43 .w-slider .w-slider-wrap img {
    border: none !important;
}

.con_168_43 .w-slider .w-point {
    position: absolute;
    bottom: 20px;
    right: 12px;
    left: auto !important;
}

.con_168_43 .w-slider .w-point.w-hide {
    display: none;
}

.con_168_43 .w-slider .w-point .w-point-item {
    position: absolute;
    left: 24px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 2px;
    background: rgb(204, 204, 204);
    text-align: center;
    font-size: 12px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.con_168_43 .w-slider .w-point .w-point-item.w-point-itemav {
    background: rgba(251, 207, 51, 1);
    color: #fff;
}

.con_168_43 .w-slider .w-point-left, .con_168_43 .w-slider .w-point-right {
    display: block;
    position: absolute;
    bottom: 0;
    width: 34px !important;
    height: 56px !important;
    background-color: rgba(000, 000, 000, .2);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.con_168_43 .w-slider .w-point-left:hover, .con_168_43 .w-slider .w-point-right:hover {
    background-color: rgba(000, 000, 000, .4);
}

.con_168_43 .w-slider .w-point-left.w-hide, .con_168_43 .w-slider .w-point-right.w-hide {
    display: none;
}

.con_168_43 .w-slider .w-point-left {
    left: 12px;
}

.con_168_43 .w-slider .w-point-right {
    right: 12px;
}

.con_168_43 .w-slider .w-point-left .w-itemicon, .w-slider .w-point-right .w-itemicon {
    color: #FFF;
    font-size: 18px;
    line-height: 56px;
    filter: alpha(opacity=8);
    -moz-opacity: .8;
    -webkit-opacity: .8;
    -ms-opacity: .8;
    -o-opacity: .8;
    opacity: .8;
}
/*新闻中心区域*/
.con_23_31 {
    position: relative;
}

.con_23_31 .fullcolumn-outer {
    background-color: transparent;
    background-image: url(../image/-27803.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}

.con_23_31 .fullcolumn-inner {
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: left top;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.smartFixed .con_23_31 .fullcolumn-outer {
    left: 0 !important;
}
/*新闻中心标题*/
.con_177_31 {
    color: inherit;
}

.con_177_31 h1, .con_177_31 h2, .con_177_31 h3, .con_177_31 h4, .con_177_31 h5, .con_177_31 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_177_31 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_177_31 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_177_31 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_177_31 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_177_31 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_177_31 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_177_31 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_177_31_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*新闻列表1*/
.con_248_35 .w-al {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.con_248_35 ul.w-al-list {
    padding: 0;
    margin: 0;
    font-size: 0;
    margin-left: -8px;
}

.con_248_35 ul.w-al-list li.w-al-unit {
    padding: 0;
    width: 500px;
    min-width: 100px;
    margin: 0 0 8px 8px;
    overflow: hidden;
    display: inline-block;
    float: left;
    position: relative;
    list-style: none;
    cursor: pointer;
}

.con_248_35 .w-hide {
    display: none !important;
}

.con_248_35 ul.w-al-list li.w-al-unit a {
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
}

.con_248_35 .w-al-unit .w-al-pic {
    width: 500px;
    min-width: 100px;
    height: 343px;
    line-height: 343px;
    padding: 0;
    vertical-align: top;
    clear: both;
    overflow: hidden;
}

.con_248_35 .w-al-unit .w-al-pic {
    width: 500px;
    min-width: 100px;
    height: 343px;
    line-height: 343px;
    padding: 0;
    vertical-align: top;
    clear: both;
    overflow: hidden;
}

.con_248_35 .w-al-unit .w-al-pic img {
    width: 500px;
    min-width: 100px;
    height: 343px;
    object-fit: cover;
    border: none;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    transition: transform .3s ease;
}

.con_248_35 .w-al-unit a:hover .w-al-pic img {
    -webkit-transform: scale(1.1) !important;
    -moz-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
}

.con_248_35 .w-al-unit a .w-al-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38px;
    line-height: 38px;
    padding: 0 8px;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    box-sizing: border-box;
}

.con_248_35 .w-al-unit a:hover .w-al-text {
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none;
    background-repeat: repeat;
    background-position: 100% 100%;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
}

.con_248_35 .w-al-unit a h5.w-al-title {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    font-family: 'Microsoft YaHei';
    line-height: 38px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    overflow: hidden;
}

.con_248_35 .w-al-unit a p.w-al-desc {
    margin: 0;
    max-height: 44px;
    font-size: 12px;
    color: #fff;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: 'Microsoft YaHei';
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.con_248_35 .w-al-nodesc .w-al-desc {
    display: none !important;
}

.con_248_35 .pager {
    margin-left: 8px;
}
/*新闻列表2*/
.con_239_33 .w-list {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.con_239_33 .w-list .w-list-ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.con_239_33 .w-list .w-list-ul .w-list-item {
    padding: 0;
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    min-height: 88px;
    border-bottom-color: #cccccc;
    border-bottom-width: 1px;
    border-bottom-style: none;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-hide {
    display: none !important;
}

.con_239_33 .w-list .w-list-ul .w-list-item.w-list-nopic {
    min-height: 0;
}

.con_239_33 .w-list .w-list-ul .w-list-item.w-list-nopic .w-list-r {
    padding-left: 0;
}

.con_239_33 .w-list .w-list-ul .w-list-item.w-list-nopic .w-list-r .w-list-r-in {
    padding-left: 0;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-title {
    padding: 0;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-title .w-list-titlelink {
    line-height: 24px;
    display: block;
    font-family: 'Microsoft YaHei';
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    color: #404040;
    text-decoration: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-title .w-list-titlelink:hover {
    font-style: normal;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-pic {
    padding: 0;
    margin: 0;
    margin-right: 10px;
    width: 116px;
    height: 88px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-pic .w-list-piclink {
    display: block;
    width: 116px;
    height: 88px;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-pic .w-list-piclink .w-listpic-in {
    width: 116px;
    height: 88px;
    border: none;
    object-fit: cover;
    -webkit-transition: transform .3s linear;
    -moz-transition: transform .3s linear;
    -o-transition: transform .3s linear;
    -ms-transition: transform .3s linear;
    transition: transform .3s linear;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-pic .w-list-piclink .w-listpic-in:hover {
    -webkit-transform: scale(1.1) !important;
    -moz-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-r {
    padding-left: 116px;
}

.con_239_33 .w-list .w-list-ul.w-list-imgno .w-list-pic {
    display: none !important;
}

.con_239_33 .w-list .w-list-ul.w-list-imgno .w-list-item .w-list-r {
    padding-left: 0 !important;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-r .w-list-r-in {
    padding-left: 12px;
}

.con_239_33 .w-list .w-list-ul.w-list-imgno .w-list-item .w-list-r .w-list-r-in {
    padding-left: 0 !important;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-desc {
    padding: 0;
    margin: 0;
    margin-top: 5px;
    line-height: 18px;
    font-family: 'Microsoft YaHei';
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    color: #999;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-bottom {
    padding: 0;
    margin: 0;
    margin-top: 5px;
    height: 20px;
    line-height: 20px;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-bottom .w-list-date {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-family: 'Microsoft YaHei';
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    color: #BBB;
    text-decoration: none;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-bottom .w-list-viewnum {
    float: right;
    font-family: 'Microsoft YaHei';
    font-size: 12px;
    color: #BBB;
}

.con_239_33 .w-list .w-list-ul .w-list-item .w-list-bottom .w-list-viewnum .w-list-viewicon {
    font-size: 12px;
    color: #BBB;
    padding-right: 3px;
}
/*锚点*/
.con_244_13 {
    color: inherit;
}

.con_244_13 h1, .con_244_13 h2, .con_244_13 h3, .con_244_13 h4, .con_244_13 h5, .con_244_13 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_244_13 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_244_13 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_244_13 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_244_13 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_244_13 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_244_13 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_244_13 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_244_13_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*统计数据区域*/
.con_32_2 {
    position: relative;
}

.con_32_2 .fullcolumn-outer {
    background-color: rgb(238, 238, 238);
    background-image: none;
    background-position: left top;
    background-repeat: repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}

.con_32_2 .fullcolumn-inner {
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: left top;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.smartFixed .con_32_2 .fullcolumn-outer {
    left: 0 !important;
}
/*5000+项目数据*/
.con_43_42 {
    color: inherit;
}

.con_43_42 h1, .con_43_42 h2, .con_43_42 h3, .con_43_42 h4, .con_43_42 h5, .con_43_42 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_43_42 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_43_42 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_43_42 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_43_42 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_43_42 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_43_42 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_43_42 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_43_42_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.con_42_40 {
    color: inherit;
}

.con_42_40 h1, .con_42_40 h2, .con_42_40 h3, .con_42_40 h4, .con_42_40 h5, .con_42_40 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_42_40 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_42_40 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_42_40 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_42_40 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_42_40 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_42_40 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_42_40 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_42_40_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*50+国家数据*/
.con_41_37 {
    color: inherit;
}

.con_41_37 h1, .con_41_37 h2, .con_41_37 h3, .con_41_37 h4, .con_41_37 h5, .con_41_37 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_41_37 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_41_37 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_41_37 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_41_37 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_41_37 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_41_37 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_41_37 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_41_37_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.con_180_37 .w-line {
    display: block;
    margin: 0;
    margin-left: -0.5px;
    padding: 0;
    width: 1px;
    height: 93px;
    font-size: 0;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #f3f3f3;
    -moz-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -webkit-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -ms-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -o-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
}
/*12+年数据*/
.con_39_37 {
    color: inherit;
}

.con_39_37 h1, .con_39_37 h2, .con_39_37 h3, .con_39_37 h4, .con_39_37 h5, .con_39_37 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_39_37 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_39_37 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_39_37 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_39_37 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_39_37 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_39_37 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_39_37 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_39_37_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}

.con_181_2 .w-line {
    display: block;
    margin: 0;
    margin-left: -0.5px;
    padding: 0;
    width: 1px;
    height: 93px;
    font-size: 0;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #f3f3f3;
    -moz-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -webkit-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -ms-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -o-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
}

.con_45_36 .w-line {
    display: block;
    margin: 0;
    margin-left: -0.5px;
    padding: 0;
    width: 1px;
    height: 93px;
    font-size: 0;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #f3f3f3;
    -moz-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -webkit-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -ms-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    -o-box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
    box-shadow: -0.529919px -0.848048px 0 rgb(204, 204, 204);
}
/*大企业客户支持描述*/
.con_269_31 {
    color: inherit;
}

.con_269_31 h1, .con_269_31 h2, .con_269_31 h3, .con_269_31 h4, .con_269_31 h5, .con_269_31 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_269_31 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_269_31 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_269_31 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_269_31 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_269_31 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_269_31 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_269_31 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_269_31_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*案例展示标题*/
.con_179_24 {
    color: inherit;
}

.con_179_24 h1, .con_179_24 h2, .con_179_24 h3, .con_179_24 h4, .con_179_24 h5, .con_179_24 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_179_24 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_179_24 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_179_24 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_179_24 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_179_24 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_179_24 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_179_24 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_179_24_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*关于我们标题*/
.con_175_6 {
    color: inherit;
}

.con_175_6 h1, .con_175_6 h2, .con_175_6 h3, .con_175_6 h4, .con_175_6 h5, .con_175_6 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_175_6 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_175_6 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_175_6 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_175_6 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_175_6 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_175_6 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_175_6 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_175_6_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*行业应用案例*/
.con_157_53 .w-al {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.con_157_53 ul.w-al-list {
    padding: 0;
    margin: 0;
    font-size: 0;
    margin-left: -60px;
}

.con_157_53 ul.w-al-list li.w-al-unit {
    padding: 0;
    width: 320px;
    min-width: 100px;
    margin: 0 0 60px 60px;
    overflow: hidden;
    display: inline-block;
    float: left;
    position: relative;
    list-style: none;
    cursor: pointer;
}

.con_157_53 .w-hide {
    display: none !important;
}

.con_157_53 ul.w-al-list li.w-al-unit a {
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
}

.con_157_53 .w-al-unit .w-al-pic {
    width: 320px;
    min-width: 100px;
    height: 220px;
    line-height: 220px;
    padding: 0;
    vertical-align: top;
    clear: both;
    overflow: hidden;
}

.con_157_53 .w-al-unit .w-al-pic {
    width: 320px;
    min-width: 100px;
    height: 220px;
    line-height: 220px;
    padding: 0;
    vertical-align: top;
    clear: both;
    overflow: hidden;
}

.con_157_53 .w-al-unit .w-al-pic img {
    width: 320px;
    min-width: 100px;
    height: 220px;
    object-fit: cover;
    border: none;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    transition: transform .3s ease;
}

.con_157_53 .w-al-unit a:hover .w-al-pic img {
    -webkit-transform: scale(1.1) !important;
    -moz-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
}

.con_157_53 .w-al-unit a .w-al-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 34px;
    line-height: 34px;
    padding: 0 8px;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    box-sizing: border-box;
}

.con_157_53 .w-al-unit a:hover .w-al-text {
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none;
    background-repeat: repeat;
    background-position: 100% 100%;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
}

.con_157_53 .w-al-unit a h5.w-al-title {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    font-family: 'Microsoft YaHei';
    line-height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    overflow: hidden;
}

.con_157_53 .w-al-unit a p.w-al-desc {
    margin: 0;
    max-height: 44px;
    font-size: 12px;
    color: #fff;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: 'Microsoft YaHei';
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.con_157_53 .w-al-nodesc .w-al-desc {
    display: none !important;
}

.con_157_53 .pager {
    margin-left: 60px;
}
/*NetBou Cloud SMS   As Quick As Lightning区域图片*/
.con_270_50 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_270_50 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*智能预警区域*/
.con_193_8 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: rgb(245, 183, 10);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_193_8 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*智能预警区域-标题*/
.con_194_8 {
    color: inherit;
}

.con_194_8 h1, .con_194_8 h2, .con_194_8 h3, .con_194_8 h4, .con_194_8 h5, .con_194_8 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_194_8 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_194_8 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_194_8 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_194_8 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_194_8 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_194_8 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_194_8 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_194_8_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*智能预警区域-描述*/
.con_195_8 {
    color: inherit;
}

.con_195_8 h1, .con_195_8 h2, .con_195_8 h3, .con_195_8 h4, .con_195_8 h5, .con_195_8 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_195_8 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_195_8 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_195_8 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_195_8 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_195_8 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_195_8 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_195_8 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_195_8_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*智能预警区域-图标*/
.con_198_8 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_198_8 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*快速送达区域*/
.con_185_12 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: rgb(254, 197, 2);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_185_12 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*快速送达区域-标题*/
.con_188_52 {
    color: inherit;
}

.con_188_52 h1, .con_188_52 h2, .con_188_52 h3, .con_188_52 h4, .con_188_52 h5, .con_188_52 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_188_52 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_188_52 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_188_52 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_188_52 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_188_52 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_188_52 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_188_52 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_188_52_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*快速送达区域-描述*/
.con_189_36 {
    color: inherit;
}

.con_189_36 h1, .con_189_36 h2, .con_189_36 h3, .con_189_36 h4, .con_189_36 h5, .con_189_36 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_189_36 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_189_36 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_189_36 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_189_36 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_189_36 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_189_36 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_189_36 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_189_36_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*快速送达区域-图标*/
.con_192_52 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_192_52 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*简单接口区域*/
.con_199_40 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: rgb(254, 197, 2);
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_199_40 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*简单接口区域-标题*/
.con_200_40 {
    color: inherit;
}

.con_200_40 h1, .con_200_40 h2, .con_200_40 h3, .con_200_40 h4, .con_200_40 h5, .con_200_40 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_200_40 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_200_40 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_200_40 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_200_40 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_200_40 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_200_40 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_200_40 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_200_40_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*简单接口区域-描述*/
.con_201_40 {
    color: inherit;
}

.con_201_40 h1, .con_201_40 h2, .con_201_40 h3, .con_201_40 h4, .con_201_40 h5, .con_201_40 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_201_40 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_201_40 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_201_40 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_201_40 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_201_40 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_201_40 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_201_40 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_201_40_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*简单接口区域-图标*/
.con_204_40 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_204_40 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域*/
.con_205_27 {
    position: relative;
}

.con_205_27 .fullcolumn-outer {
    background-color: rgb(241, 245, 246);
    background-image: none;
    background-position: left top;
    background-repeat: repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: -1;
}

.con_205_27 .fullcolumn-inner {
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: left top;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.smartFixed .con_205_27 .fullcolumn-outer {
    left: 0 !important;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
/*服务范围标题区域*/
.con_206_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_206_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围标题*/
.con_237_30 {
    color: inherit;
}

.con_237_30 h1, .con_237_30 h2, .con_237_30 h3, .con_237_30 h4, .con_237_30 h5, .con_237_30 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_237_30 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_237_30 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_237_30 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_237_30 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_237_30 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_237_30 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_237_30 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_237_30_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域-第一行*/
.con_211_27 {
    position: absolute;
    left: 0;
    right: 0;
}

.con_211_27 .w-columns-control {
    padding: 0 8px;
    position: absolute;
    background-color: #609ee9;
    width: 120px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #FFF;
    text-align: center;
}

.con_211_27 .w-columns-control .w-control-text {
    width: 100%;
    float: left;
    display: inline-block;
    font-family: Tahoma;
}

.con_211_27 .w-columns-control.w-control-top {
    top: -32px;
    left: 158px;
    border-radius: 4px 4px 0 0;
}

.con_211_27 .w-columns-control.w-control-bottom {
    bottom: -32px;
    left: 158px;
    border-radius: 0 0 4px 4px;
}

.con_211_27 > .w-columns {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-attachment: scroll;
    background-size: cover;
    margin: 0 auto;
}

.smartFixed > .con_211_27 .w-columns.fullScreen {
    width: 100% !important;
}

.con_211_27 > .w-columns > .w-columns-inner {
    margin-left: -0;
    height: 100%;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    float: left;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-interval {
    padding: 0 0 0 0;
    margin: 0;
    height: 100%;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item:first-child .w-columns-interval {
    margin-left: 0;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item:last-child .w-columns-interval {
    margin-right: 0;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-content {
    margin: 0;
    padding: 0;
    height: 100%;
}

.con_211_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-content-inner {
    padding: 0;
    margin: 0 auto;
    height: 100%;
}
/*服务范围区域-验证码短信服务列(第一行第一个)*/
.con_212_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: #F5F5F5;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -o-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -ms-linear-gradient(top, #81C8B1, #FEEBBD);
    background: linear-gradient(top, #81C8B1, #FEEBBD);
    background: -webkit-gradient(linear, left top, left bottom, from(#81C8B1), to(#FEEBBD));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_212_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域-验证码短信服务列(第一行第一个)-服务描述*/
.con_213_27 {
    color: inherit;
}

.con_213_27 h1, .con_213_27 h2, .con_213_27 h3, .con_213_27 h4, .con_213_27 h5, .con_213_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_213_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_213_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_213_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_213_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_213_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_213_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_213_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_213_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域-验证码短信服务列(第一行第一个)-服务图标*/
.con_214_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_214_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域-验证码短信服务列(第一行第一个)-服务标题*/
.con_215_27 {
    color: inherit;
}

.con_215_27 h1, .con_215_27 h2, .con_215_27 h3, .con_215_27 h4, .con_215_27 h5, .con_215_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_215_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_215_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_215_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_215_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_215_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_215_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_215_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_215_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 短信VIP服务列(第一行第二个)*/
.con_216_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: #F5F5F5;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -o-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -ms-linear-gradient(top, #81C8B1, #FEEBBD);
    background: linear-gradient(top, #81C8B1, #FEEBBD);
    background: -webkit-gradient(linear, left top, left bottom, from(#81C8B1), to(#FEEBBD));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_216_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域- 短信VIP服务列(第一行第二个)-图标*/
.con_217_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_217_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域- 短信VIP服务列(第一行第二个)-标题*/
.con_218_27 {
    color: inherit;
}

.con_218_27 h1, .con_218_27 h2, .con_218_27 h3, .con_218_27 h4, .con_218_27 h5, .con_218_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_218_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_218_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_218_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_218_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_218_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_218_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_218_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_218_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 短信VIP服务列(第一行第二个)-描述*/
.con_219_27 {
    color: inherit;
}

.con_219_27 h1, .con_219_27 h2, .con_219_27 h3, .con_219_27 h4, .con_219_27 h5, .con_219_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_219_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_219_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_219_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_219_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_219_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_219_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_219_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_219_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域-  云服务列(第一行第三个)*/
.con_220_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: #F5F5F5;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -o-linear-gradient(top, #81C8B1, #FEEBBD);
    background: -ms-linear-gradient(top, #81C8B1, #FEEBBD);
    background: linear-gradient(top, #81C8B1, #FEEBBD);
    background: -webkit-gradient(linear, left top, left bottom, from(#81C8B1), to(#FEEBBD));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_220_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域-  云服务列(第一行第三个)-图标*/
.con_221_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_221_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域-  云服务列(第一行第三个)-标题*/
.con_222_27 {
    color: inherit;
}

.con_222_27 h1, .con_222_27 h2, .con_222_27 h3, .con_222_27 h4, .con_222_27 h5, .con_222_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_222_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_222_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_222_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_222_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_222_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_222_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_222_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_222_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域-  云服务列(第一行第三个)-描述*/
.con_223_27 {
    color: inherit;
}

.con_223_27 h1, .con_223_27 h2, .con_223_27 h3, .con_223_27 h4, .con_223_27 h5, .con_223_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_223_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_223_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_223_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_223_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_223_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_223_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_223_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_223_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域-第二行*/
.con_224_27 {
    position: absolute;
    left: 0;
    right: 0;
}

.con_224_27 .w-columns-control {
    padding: 0 8px;
    position: absolute;
    background-color: #609ee9;
    width: 120px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #FFF;
    text-align: center;
}

.con_224_27 .w-columns-control .w-control-text {
    width: 100%;
    float: left;
    display: inline-block;
    font-family: Tahoma;
}

.con_224_27 .w-columns-control.w-control-top {
    top: -32px;
    left: 158px;
    border-radius: 4px 4px 0 0;
}

.con_224_27 .w-columns-control.w-control-bottom {
    bottom: -32px;
    left: 158px;
    border-radius: 0 0 4px 4px;
}

.con_224_27 > .w-columns {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background: -webkit-linear-gradient(none, none);
    background: -moz-linear-gradient(none, none);
    background: -ms-linear-gradient(none, none);
    background: linear-gradient(none, none);
    background-attachment: scroll;
    background-size: cover;
    margin: 0 auto;
}

.smartFixed > .con_224_27 .w-columns.fullScreen {
    width: 100% !important;
}

.con_224_27 > .w-columns > .w-columns-inner {
    margin-left: -0;
    height: 100%;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    float: left;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-interval {
    padding: 0 0 0 0;
    margin: 0;
    height: 100%;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item:first-child .w-columns-interval {
    margin-left: 0;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item:last-child .w-columns-interval {
    margin-right: 0;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-content {
    margin: 0;
    padding: 0;
    height: 100%;
}

.con_224_27 > .w-columns > .w-columns-inner > .w-columns-item .w-columns-content-inner {
    padding: 0;
    margin: 0 auto;
    height: 100%;
}
/*服务范围区域- 专线速度保障列(第二行第三个)*/
.con_225_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: #F5F5F5;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_225_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域- 专线速度保障列(第二行第三个)-标题*/
.con_226_27 {
    color: inherit;
}

.con_226_27 h1, .con_226_27 h2, .con_226_27 h3, .con_226_27 h4, .con_226_27 h5, .con_226_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_226_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_226_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_226_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_226_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_226_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_226_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_226_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_226_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 专线速度保障列(第二行第三个)-描述*/
.con_227_27 {
    color: inherit;
}

.con_227_27 h1, .con_227_27 h2, .con_227_27 h3, .con_227_27 h4, .con_227_27 h5, .con_227_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_227_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_227_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_227_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_227_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_227_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_227_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_227_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_227_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 专线速度保障列(第二行第三个)-图标*/
.con_275_58 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_275_58 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域- 全国覆盖资源列(第二行第二个)*/
.con_229_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_229_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域- 全国覆盖资源列(第二行第二个)-图标*/
.con_228_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_228_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域- 全国覆盖资源列(第二行第二个)-描述*/
.con_230_27 {
    color: inherit;
}

.con_230_27 h1, .con_230_27 h2, .con_230_27 h3, .con_230_27 h4, .con_230_27 h5, .con_230_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_230_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_230_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_230_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_230_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_230_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_230_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_230_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_230_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 全国覆盖资源列(第二行第二个)-标题*/
.con_231_27 {
    color: inherit;
}

.con_231_27 h1, .con_231_27 h2, .con_231_27 h3, .con_231_27 h4, .con_231_27 h5, .con_231_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_231_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_231_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_231_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_231_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_231_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_231_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_231_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_231_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 7*18小时商务服务列(第二行第一个)*/
.con_233_27 > .w-container {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-right: 0 none transparent;
    border-top: 0 none transparent;
    border-bottom: 0 none transparent;
    border-left: 0 none transparent;
    border-radius: 0px;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: -ms-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.con_233_27 > .w-container > div {
    width: 100%;
    height: 100%;
    position: relative;
}
/*服务范围区域- 7*18小时商务服务列(第二行第一个)-标题*/
.con_234_27 {
    color: inherit;
}

.con_234_27 h1, .con_234_27 h2, .con_234_27 h3, .con_234_27 h4, .con_234_27 h5, .con_234_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_234_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_234_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_234_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_234_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_234_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_234_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_234_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_234_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*服务范围区域- 7*18小时商务服务列(第二行第一个)-图标*/
.con_235_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_235_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*服务范围区域- 7*18小时商务服务列(第二行第一个)-描述*/
.con_236_27 {
    color: inherit;
}

.con_236_27 h1, .con_236_27 h2, .con_236_27 h3, .con_236_27 h4, .con_236_27 h5, .con_236_27 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_236_27 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_236_27 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_236_27 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_236_27 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_236_27 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_236_27 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_236_27 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_236_27_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*锚点*/
.con_246_18 {
    color: inherit;
}

.con_246_18 h1, .con_246_18 h2, .con_246_18 h3, .con_246_18 h4, .con_246_18 h5, .con_246_18 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_246_18 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_246_18 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_246_18 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_246_18 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_246_18 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_246_18 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_246_18 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_246_18_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*装饰图片*/
.con_232_27 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_232_27 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*锚点2*/
.con_242_20 {
    color: inherit;
}

.con_242_20 h1, .con_242_20 h2, .con_242_20 h3, .con_242_20 h4, .con_242_20 h5, .con_242_20 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_242_20 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_242_20 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_242_20 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_242_20 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_242_20 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_242_20 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_242_20 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_242_20_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*锚点3*/
.con_245_26 {
    color: inherit;
}

.con_245_26 h1, .con_245_26 h2, .con_245_26 h3, .con_245_26 h4, .con_245_26 h5, .con_245_26 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_245_26 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_245_26 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_245_26 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_245_26 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_245_26 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_245_26 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_245_26 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_245_26_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*锚点1*/
.con_247_31 {
    color: inherit;
}

.con_247_31 h1, .con_247_31 h2, .con_247_31 h3, .con_247_31 h4, .con_247_31 h5, .con_247_31 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_247_31 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_247_31 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_247_31 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_247_31 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_247_31 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_247_31 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_247_31 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_247_31_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*技术创新描述*/
.con_249_13 {
    color: inherit;
}

.con_249_13 h1, .con_249_13 h2, .con_249_13 h3, .con_249_13 h4, .con_249_13 h5, .con_249_13 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_249_13 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_249_13 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_249_13 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_249_13 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_249_13 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_249_13 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_249_13 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_249_13_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*专业化描述*/
.con_250_32 {
    color: inherit;
}

.con_250_32 h1, .con_250_32 h2, .con_250_32 h3, .con_250_32 h4, .con_250_32 h5, .con_250_32 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_250_32 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_250_32 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_250_32 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_250_32 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_250_32 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_250_32 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_250_32 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_250_32_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*小图标1*/
.con_252_43 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_252_43 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*小图标2*/
.con_253_21 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_253_21 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*云短信标语*/
.con_256_59 {
    color: inherit;
}

.con_256_59 h1, .con_256_59 h2, .con_256_59 h3, .con_256_59 h4, .con_256_59 h5, .con_256_59 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_256_59 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_256_59 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_256_59 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_256_59 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_256_59 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_256_59 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_256_59 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_256_59_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*全国接入描述*/
.con_271_59 {
    color: inherit;
}

.con_271_59 h1, .con_271_59 h2, .con_271_59 h3, .con_271_59 h4, .con_271_59 h5, .con_271_59 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_271_59 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_271_59 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_271_59 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_271_59 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_271_59 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_271_59 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_271_59 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_271_59_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*NetBou Cloud SMS As Quick As Lightning-右侧图片*/
.con_272_24 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_272_24 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}
/*安全合作描述*/
.con_273_30 {
    color: inherit;
}

.con_273_30 h1, .con_273_30 h2, .con_273_30 h3, .con_273_30 h4, .con_273_30 h5, .con_273_30 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_273_30 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_273_30 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_273_30 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_273_30 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_273_30 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_273_30 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_273_30 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_273_30_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*锚点6*/
.con_266_4 {
    color: inherit;
}

.con_266_4 h1, .con_266_4 h2, .con_266_4 h3, .con_266_4 h4, .con_266_4 h5, .con_266_4 h6 {
    font-weight: normal;
    line-height: 1.2;
}

.con_266_4 h2 {
    font-size: 1.5em;
    font-weight: normal;
}

.con_266_4 h1 {
    font-size: 2em;
    font-weight: normal;
}

.con_266_4 h3 {
    font-size: 1.17em;
    font-weight: normal;
}

.con_266_4 h4 {
    font-size: 13px;
    font-weight: normal;
}

.con_266_4 h5 {
    font-size: 0.83em;
    font-weight: normal;
}

.con_266_4 h6 {
    font-size: 0.67em;
    font-weight: normal;
}

#cke_txtc_con_266_4 {
    z-index: 100000 !important;
}

.cke_editor_txtc_con_266_4_dialog .cke_dialog {
    z-index: 100010 !important;
}

.cke_dialog_background_cover {
    z-index: 100000 !important;
}
/*NetBou Cloud SMS As Quick As Lightning-左侧图片*/
.con_268_6 .w-image-box {
    text-align: center;
    border-top: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    border-left: 0px solid #fff;
    border-radius: 1px;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.con_268_6 .w-image-box img {
    border: 0;
    width: 100%;
    height: 100%;
}