@charset "utf-8";

/*动画*/
@keyframes ShowInLeft { /*从左边淡入*/
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}/*END-从左边淡入*/
@keyframes ShowInBottom { /*从下边淡入*/
    from {
        opacity: 0;
        transform: translate3d(0, 30%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}/*END-从下边淡入*/
@keyframes ShowInTop { /*从上边淡入*/
    from {
        opacity: 0;
        transform: translate3d(0, -30%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}/*END-从上边淡入*/
/*箭头流动动画*/
@keyframes JianTouLiUDong {
    0% {
        opacity: 0.3;
    }
    33.3333% {
        opacity: 0.3;
    }
    66.6666% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}/*END-箭头流动动画*/
/*END-动画*/

/* Body */
body {
    font-family: source-sans-pro;
    background-color: white;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-style: normal;
    font-weight: 200;
}
/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    font-size: large;
}

/*导航栏样式*/
.main {
    width: 100%;
    height: 4rem;
    background-color: #146C06;
    z-index: 9998;
    text-align: center;
    position: absolute;
    transition: background-color 0.4s .4s ease-in-out;
}
.active_main{
    background-color: black; !important;
    transition: background-color 0.4s ease-in-out;
}
#main_list {
    height: 100%;
    /*margin-top: 1.4%;*/
    list-style: none;/*取消列表格式*/
    display: flex; /*水平排列*/
    justify-content: space-between; /*均衡间距*/
    margin: 0 10%;
    padding: 0;
    z-index: 9999;
}
.fenggefu{ /*分隔符*/
    color: white;/*白色字体*/
    font-weight:bold;/*加粗字体*/
    font-size: 1.4rem;/*字体大小*/
    margin: 1em 0 1em 0;/*垂直居中*/
}
#main_list li{ /*取消列表格式*/
    list-style: none;
}
#main_list li img{ /*限制logo大小*/
    height: 100%;
}
#main_list .main_list_text {
    height: 100%;
    float: right;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight:bold;
    transition: all 0.3s linear;
}
#main_list .main_list_text {
    color: #FFFFFF;
    text-decoration: none;
}
#main_list .main_list_text:hover {
    color: #979797;
    width: auto;
    cursor: pointer;
}
/* 设置头部下拉面板的样式 */
.main_list_two { /*下拉面板的整体样式*/
    width: 100%;
    background-color: black;
    position: absolute;
    left: 0;
    z-index: 990;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0; /*隐形*/
    visibility: hidden;
    transition: opacity ease-in-out .4s .4s,-webkit-transform ease-in-out .4s .4s,transform ease-in-out .4s .4s, visibility ease-in-out .8s;
    animation: control-pointer .8s;
}
/*导航栏下拉菜单淡入淡出动作类名*/
.two_active{
    opacity: 1;
    visibility: visible;
    transition: opacity ease-in-out .4s,-webkit-transform ease-in-out .4s,transform ease-in-out .4s,top ease-in-out .4s;
    animation: none;
    -webkit-transform: none;
    transform: none;
}
/*导航栏下拉菜单淡入淡出禁止停止*/
@keyframes control-pointer {
    0%, 49.9999% {
        pointer-events: auto;
    }
    50%, 100% {
        pointer-events: none;
    }
}
/*导航栏下拉菜单内容器*/
.main_list_two_nei{
    margin: 0 10%;
}
/*导航栏下拉菜单选择项居中*/
.main_list_two_do_out{
    padding-top: 40px;
    padding-bottom: 60px;
    display:inline-block;
    /*text-align: center;*/
}
/*导航栏下拉菜单选择项标题*/
#main_list_two_title1{
    color: #86868b;
    font-size: 12px;
    line-height: 1.3333733333;
    font-weight: 400;
}
/*导航栏下拉菜单选择项属性*/
.main_list_two .main_list_two_do p{
    width: fit-content;/*与字的长度一样*/
    margin-top: 15px;
}
.main_list_two .main_list_two_do a{
    font-weight: bold;/*粗体字*/
    font-size: 1.3rem;
    color: #e0e0e0;
    transition: color 0.5s ease-in-out;
    text-decoration: none;
}
.main_list_two .main_list_two_do a:hover{ /*导航栏下拉菜单选择项鼠标停放动画*/
    color: white;/*字体选择颜色*/
}
.main_list_two .main_list_two_do a::after{ /*导航栏下拉菜单选择项的最后一个子元素*/
    content:'';
    display:block;
    /*开始时候下划线的宽度为100%*/
    width:100%;
    height:2px;
    bottom:-5px;
    background:#979797;
    transition:all 0.5s cubic-bezier(.62,-0.14,.62,1.25);
    /*通过transform的缩放scale来让初始时x轴为0*/
    transform: scale3d(0,1,1);
    /*将坐标原点移到元素的中间，以原点为中心进行缩放*/
    transform-origin:50% 0
}
.main_list_two .main_list_two_do a:hover::after {
    transform:scale3d(1,1,1);/*下划线为正常长度*/
}
/*END-导航栏下拉菜单*/


/*轮播图*/
.hero_header {
    color: #FFFFFF;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    letter-spacing: 4px;
}
/* Hero Section 轮播图*/
.hero {
    width: 100%;
    height: auto;
    position: relative;
}
#top_image_1 { /*第一张图*/
    position: relative;/*向对定位*/
    transform: none;/*无相对自身位移*/
}
.top_image{
    width: 100%;
    height: auto;
    position: absolute;
    transform: translateY(-100%);/*相对自身位移-上移100%*/
    margin: auto;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 1s;
    cursor: pointer;
    pointer-events: none;/*点击无效*/
}

.top_image img{
    width: 100%;
    height: auto;
}

.active{
    opacity:1 !important;
    pointer-events: all !important;/*点击有效*/
}
#top_buttons{ /*轮播图按钮控件最外层*/
    width: 100%;
    height: 100%;
    position: absolute;/*绝对定位*/
    transform: translateY(-100%)/*相对于自身，上移100%*/;
    overflow: hidden;/*超出部分隐藏*/
    pointer-events: none;/*点击无效*/
}
.circle{ /*设置圆点位置*/
    position: absolute;/*绝对定位*/
    left:50%;/*起始是在body中，横向距左50%的位置*/
    top:85%;/*距离顶部85%*/
    transform:translateX(-50%);/*水平居中*/
    pointer-events: all;/*点击有效*/
}
.circle_a{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border:1px solid rgba(0,0,0,.05);
    background: rgba(255,255,255,.4);
}
.circle_a:hover{
    width: 9px;
    height: 9px;
    top:2px;/*圆点向上移动，跳动效果*/
    left:0;
    border:3px solid rgba(0,0,0,.1);
}
.circle_active{
    background: #ffffff;
}
.before{ /*上一张图片按钮*/
    position: absolute;/*绝对定位*/
    width: 8%;/*宽度8%*/
    height: 15%;/*高度15%*/
    top: 50%;/*距离顶端50%*/
    left:-9%;/*左移9%，使之看不见*/
    transform: translateY(-50%);/*相对自身上移50%*/
    opacity: 0;/*透明视图*/
    background: rgba(255,255,255,.5);/*背景颜色*/
    font-weight:bold;/*字体粗体*/
    color: white;/*字体颜色*/
    text-align: center;/*字体水平居中*/
    line-height:100%;/*字体垂直居中*/
    pointer-events: all;/*点击有效*/
    -webkit-transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    transition: all .5s ease-in;
}
.before_active{ /*动作类-上一张轮播图按钮显示*/
    left: 1%;/*移动到屏幕左边*/
    opacity: 1;/*不透明*/
    cursor: pointer;/*小手鼠标*/
}
.next{
    position: absolute;/*绝对定位*/
    width: 8%;/*宽度8%*/
    height: 15%;/*高度15%*/
    top: 50%;/*距离顶端50%*/
    right:-9%;/*在右侧之外*/
    transform: translateY(-50%) rotateY(180deg);/*相对自身上移50%*/
    opacity: 0;/*透明视图*/
    background: rgba(255,255,255,.5);/*背景颜色*/
    font-weight:bold;/*字体粗体*/
    color: white;/*字体颜色*/
    text-align: center;/*字体水平居中*/
    line-height:100%;/*字体垂直居中*/
    pointer-events: all;/*点击有效*/
    -webkit-transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    transition: all .5s ease-in;
}
.next_active{ /*动作类-下一张轮播图按钮显示*/
    right: 1%;/*移动到屏幕右边*/
    opacity: 1;/*不透明*/
    cursor: pointer;/*小手鼠标*/
}

.light {
    font-weight: bold;
    color: #717070;
}
.tagline {
    text-align: center;
    color: #FFFFFF;
    margin-top: 4px;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* About Section */
.text_column {
    width: 29%;
    text-align: justify;
    font-weight: lighter;
    line-height: 25px;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    color: #000000;
}
.about {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 35px;
    display: inherit;
    background-color: #FFFFFF;
    margin-top: 0px;
    color: #000000;
    font-size: large;
    width: 0%;
}
.container #about .box.left {
    display: inline;
    height: auto;
    width: 25%;
}

/*公司简介*/
#gongsijianjie { /*公司简介最外层*/
    width: 100%;
    background: url(../images/公司简介-背景.jpg) no-repeat;/*设置背景图*/
    background-size: 30%;/*设置背景图大小*/
}
.index-title { /*小标题区块*/
    text-align: center;/*行内元素水平居中*/
    margin-bottom: 5rem;/*距离下面的元素*/
}
.index-title .chinese-index-title { /*中文小标题*/
    margin: 0;/*同级别取消间隔*/
    padding-top: 2.5rem;/*距离父控件上边框*/
    font-size: 2rem;/*字体大小*/
    font-weight:bold;/*粗体*/
    color: #146C06;/*字体颜色*/
}
.index-title .english-index-title { /*英文小标题*/
    margin: 0;/*同级别取消间隔*/
    font-family:'Times New Roman',serif;/*字体设置*/
    font-weight:bold;/*粗体*/
}
#gongsijianjie-NeiRong { /*公司简介内容*/
    padding-bottom: 2.5rem;/*距离内边框*/
}
#index-gongsijianjie-left { /*左边内容*/
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    width: 41%;/*宽度*/
    margin-left: 7%;/*距离左边*/
}
#index-gongsijianjie-text1{ /*左边第一段文字*/
    color: #146C06;/*字体颜色*/
    font-size: 1.5rem;/*字体大小*/
}
#index-gongsijianjie-text2{ /*左边第二段文字*/
    font-weight:bold;/*粗体*/
    word-break: break-all;/*字体对齐*/
    text-indent: 2em;/*首行缩进*/
}
#index-gongsijianjie-left a button { /*更多按钮*/
    border-radius: 30px;/*产生圆角*/
    color: white;/*字体颜色*/
    background-color: #146C06;/*按钮背景颜色*/
    border-color: transparent;/*边框颜色*/
    border-width: 4px;/*边框宽度*/
    border-style: solid;/*边框样式*/
    margin-bottom: 2rem;/*底部外间距*/
    cursor: pointer;/*小手鼠标*/
    transition: all 0.3s linear;/*大小过渡动画*/
}
#index-gongsijianjie-left a button:hover { /*鼠标停留更多按钮-过渡动画*/
    background-color: transparent;/*按钮背景颜色*/
    border-color: #146C06;/*边框颜色*/
    color: #146C06;/*文字颜色*/
}
#index-gongsijianjie-left button p{ /*更多按钮文字*/
    margin: 0.7em 0 0.7em 0;/*设置边距*/
    padding: 0 1.5rem 0 1.5rem;/*内间距*/
    font-weight:bold;/*粗体*/
}
.JianJie-DaoHang { /*超链接部分*/
    font-weight:bold;/*粗体*/
}
#index-gongsijianjie-right { /*右边内容*/
    overflow: hidden;/*超出部分隐藏*/
    position:relative;/*相对布局*/
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    width: 41%;/*宽度*/
    margin-left: 4%;/*距离左边*/
    cursor: pointer;/*小手鼠标*/
}
.gongsijianjie-imgs { /*所有展示图片*/
    width: 400%;/*三张图的宽度*/
    position: relative;
}
.action-show-gongsijianjie-img-1 { /*展示第一张图*/
    left: 0;/*距离左边框0%*/
}
.action-show-gongsijianjie-img-2 { /*展示第二张图*/
    left: -100%;/*距离左边框-100%*/
    transition: left 0.3s linear;/*轮播过渡动画*/
}
.action-show-gongsijianjie-img-3 { /*展示第三张图*/
    left: -200%;/*距离左边框-200%*/
    transition: left 0.3s linear;/*轮播过渡动画*/
}
.action-show-gongsijianjie-img-4 { /*展示第四张图*/
    left: -300%;/*距离左边框-300%*/
    transition: left 0.3s linear;/*轮播过渡动画*/
}
.gongsijianjie-img { /*右边展示图片*/
    display: inline-block;/*水平排列块元素*/
    width: 25%;/*最大宽度*/
}
.gongsijianjie-right-jiantous { /*公司简介图片上的箭头区块*/
    height: 100%;
    width: 100%;
    position: absolute;/*绝对定位*/
    transform: translate3d(0,-100%,0);/*调整相对位置*/
    color: #146C06;/*文字颜色*/
    font-size: 3rem;/*文字大小*/
    text-align: right;/*靠右显示*/
}
.gongsijianjie-right-jiantou { /*公司简介图片上的箭头*/
    display: inline-block;/*水平排列块元素*/
    position: relative;/*相对定位*/
    top: 50%;/*距离顶部50%*/
    transform: translateY(-50%);/*上移自身的50%*/
    margin: 0;/*无间距*/
}
#gongsijianjie-right-jiantou-1 { /*第一个公司简介图片上的箭头*/
    animation:2.1s linear infinite JianTouLiUDong;
}
#gongsijianjie-right-jiantou-2 { /*第二个公司简介图片上的箭头*/
    animation:2.1s linear 0.7s infinite JianTouLiUDong;
}
#gongsijianjie-right-jiantou-3 { /*第三个公司简介图片上的箭头*/
    animation:2.1s linear 1.4s infinite JianTouLiUDong;
}
/*公司简介*/

/*产品中心*/
#ChanPinZhongXin { /*产品中心最外层*/
    width: 100%;
    background-color: #F6F6F6;/*设置背景颜色*/
}
#ChanPinZhongXin-NeiRong { /*内容区块*/
    margin: 0 4% 0 4%;/*设置左右间隔*/
    padding-bottom: 2.5rem;/*距离内边框*/
}
#ChanPinZhongXin-NeiRong .ChanPin { /*每一个产品区块*/
    width: 29%;
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    margin: 0 2% 0 2%;/*设置同级别间隔*/
    text-align: center;/*内部原始居中*/
    overflow: hidden;/*超出部分隐藏*/
    position:relative;/*相对布局*/
    cursor: pointer;/*小手鼠标*/
}
#ChanPinZhongXin-NeiRong .ChanPin:hover img{ /*每一个产品区块鼠标停留-产品图片动画*/
    transform: scale(1.1);/*放大图片*/
}
#ChanPinZhongXin-NeiRong .ChanPin:hover .ChanPin-NeiRong{ /*每一个产品区块鼠标停留-产品文字内容动画*/
    background: linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 50%);/*黑色渐变背景*/
    transform: translate3d(0, -100%, 0);/*上移100%，放到图片上*/
}
#ChanPinZhongXin-NeiRong .ChanPin img { /*每个产品的图片*/
    max-width: 100%;
    position: relative;/*设置为相对定位*/
    transition: all 0.4s linear;/*大小过渡动画*/
}
.ChanPin-NeiRong { /*文字部分内容*/
    width: 100%;
    position:absolute;/*绝对定位*/
    text-align: left;/*行内元素靠左*/
    transform: translate3d(0, -77%, 0);/*上移77%，放到图片上*/
    background: linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 50%);/*黑色渐变背景*/
    color: white;/*字体颜色*/
    transition: all 0.4s linear;/*过渡动画*/
}
.ChanPing-Kind { /*产品种类文字*/
    font-size: 0.91em;/*字体大小*/
    line-height: 1.8em;/*行高*/
    padding-left: 2%;/*左边距*/
    padding-top: 1em;/*上边距*/
    color: #fff;/*字体颜色*/
}
.ChanPin-Name { /*产品名*/
    font-size: 1.2em;/*字体大小*/
    line-height: 1.4em;/*行高*/
    font-family:'Times New Roman',serif;/*字体设置*/
    padding-left: 2%;/*左边距*/
    font-weight: bold;/*加粗字体*/
}
.ChanPin-Good { /*产品优点*/
    opacity: 0.7;
    font-size: 0.875em;/*字体大小*/
    line-height: 1.8em;/*行高*/
    padding-left: 2%;/*左边距*/
    color: #fff;/*字体颜色*/
}
.ChanPin-OneMore { /*更多了解区块*/
    display: inline;/*变为行内元素*/
}
.ChanPin-OneMore:hover .ChanPin-OneMore-Fu { /*鼠标停留更多了解区块-了解更多符号动画*/
    margin-left: 0.8em;/*左间隔*/
}
.ChanPin-OneMore-Text { /*了解更多文字*/
    padding-left: 2%;/*左边距*/
    font-size: 0.875em;/*字体大小*/
    line-height: 1.875em;/*行高*/
}
.ChanPin-OneMore-Fu { /*了解更多符号*/
    color: #146C06;/*字体颜色*/
    font-family:'Times New Roman',serif;/*字体设置*/
    font-size: 0.875em;/*字体大小*/
    font-weight: bold;/*加粗字体*/
    line-height: 1.875em;/*行高*/
    margin-left: 0.2em;/*左间隔*/
    transition: all 0.3s linear;/*过渡动画*/
}
/*产品中心*/

/*新闻中心*/
#XinWenZhongXin { /*新闻中心最外层*/
    width: 100%;
}
#XinWenZhongXin-NeiRong { /*新闻中心内容*/
    margin: 0 15% 0 15%;/*设置左右边距*/
    padding-bottom: 2.5rem;/*距离内边框*/
}
#XinWenZhongXin-NeiRong .XinWen { /*新闻区块*/
    width: 29%;
    border-radius: 1rem;/*产生圆角*/
    box-shadow: 0 0 5px #7f7f7f;/*阴影效果*/
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    margin: 0 2% 0 2%;/*设置同级别间隔*/
}
.XinWen-Img{ /*新闻图片*/
    width: 100%;
    height: auto;
    border-radius: 1rem 1rem 0 0;/*产生圆角*/
}
.XinWen-Title { /*新闻标题*/
    height: 2.8rem;
    display: -webkit-box;/*有超出部分时，用...代替*/
    -webkit-box-orient: vertical;/*有超出部分时，用...代替*/
    -webkit-line-clamp: 2;/*最多显示两行*/
    overflow: hidden;/*超出两行的部分隐藏*/
    margin: 5px 10px 0 10px;/*设置同级别间隔*/
}
.XinWen-Time { /*新闻时间*/
    margin: 5px 10px 5px 10px;/*设置同级别间隔*/
    color: #7f7f7f;/*字体颜色*/
}
.XinWen-Text { /*新闻简介*/
    height: 4rem;
    margin: 0 10px 5px 10px;/*设置同级别间隔*/
    font-size: 0.9em;/*字体大小*/
    line-height: 1rem;/*行高*/
    word-break: break-all;/*字体对齐*/
    display: -webkit-box;/*有超出部分时，用...代替*/
    -webkit-box-orient: vertical;/*有超出部分时，用...代替*/
    -webkit-line-clamp: 4;/*最多显示四行*/
    overflow: hidden;/*超出四行的部分隐藏*/
}
.XinWen-More { /*更多超链接*/
    margin-right: 10px;/*设置同级别间隔*/
    margin-bottom: 1.5rem;/*设置同级别间隔*/
    display: block;/*转为块元素*/
    text-align: right;/*文字右对齐*/
    font-size: 0.9em;/*字体大小*/
    word-break: break-all;/*字体对齐*/
    font-weight: bold;/*加粗字体*/
    color: #146C06;/*字体颜色*/
    text-decoration:none;/*去除下划线*/
}
/*新闻中心*/

/*合作伙伴*/
#HeZuo{
    display: flex;
    width: 100%;
    background-color: #F6F6F6;/*设置背景颜色*/
}
#HeZuoHuoBan { /*合作伙伴最外层*/
    width: 50%;
    background-color: #F6F6F6;/*设置背景颜色*/
}
#HeZuoHuoBan-NeiRong { /*合作伙伴内容*/
    padding-bottom: 2.5rem;/*距离内边框*/
}
#XiaoShouHuoBan { /*合作伙伴最外层*/
    width: 50%;
    background-color: #F6F6F6;/*设置背景颜色*/
}
#XiaoShouHuoBan-NeiRong { /*合作伙伴内容*/
    padding-bottom: 2.5rem;/*距离内边框*/
}
.XiaoShou-Hang { /*每一行合作伙伴*/
    width: 100%;
    text-align: center;/*每一个合作伙伴居中*/
}
.HeZuo-Hang { /*每一行合作伙伴*/
    width: 100%;
    text-align: center;/*每一个合作伙伴居中*/
    background-color: #F6F6F6;/*设置背景颜色*/
}
.HeZuo-One { /*每一个合作伙伴*/
    width: 24%;
    margin: 0;/*设置同级别间隔*/
    display: inline-block;/*水平排列*/

}
.HeZuo-Logo { /*每一个合作伙伴的LOGO*/
    max-width: 66.666%;
    max-height: 15vw;
   /* border: #031e1e 1px solid;*/
}
.HeZuo-Name { /*每一个合作伙伴的名称*/
    position: relative;
    text-align: center;/*字体居中*/
    font-size: 16px;/*字体大小*/
    font-weight: bold;/*加粗字体*/
    white-space: nowrap;/*始终显示一行*/
    max-height: 0;
    opacity: 0;
    transition: all 0.3s linear;
}
.HeZuo-One:hover ~ .HeZuo-Name{
    max-height: 50px;
    opacity: 1;
}
/*END-合作伙伴*/

/*底栏*/
#DiLan { /*底栏最外层*/
    width: 100%;
    background-color: #232323;/*背景颜色*/
}
#DiLan-Left { /*左部网站导航*/
    margin-left: 7%;/*左边同级间距*/
    width: 28%;
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    margin-bottom: 1em;/*下边同级间距*/
}
.DiLan-China-Title { /*底栏中文标题*/
    color: #146C06;/*字体颜色*/
    font-size: 1.5rem;/*字体大小*/
    display: inline-block;/*水平排列*/
}
.DiLan-English-Title { /*底栏英文标题*/
    margin-right: 10px;/*同级间距*/
    color: #146C06;/*字体颜色*/
    font-family:'Times New Roman',serif;/*字体设置*/
    font-size: 1.3rem;/*字体大小*/
    display: inline-block;/*水平排列*/
}
#DiLan-Left a { /*网站导航超链接*/
    display: inline-block;/*水平排列*/
    margin-right: 5%;/*右边同级间距*/
    margin-top: 1em;/*上边同级间距*/
    color: white;/*字体颜色*/
    text-decoration: none;/*无下划线*/
}
#DiLan-Center { /*中部联系我们*/
    margin-left: 5%;/*左边同级间距*/
    width: 35%;
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    margin-bottom: 1em;/*下边同级间距*/
}
.DiLan-LianXi-Text { /*联系我们文本*/
    color: white;/*字体颜色*/
    line-height:2rem;
}
#DiLan-Right { /*右部二维码区块*/
    margin: 1em 4% 1em 6%;/*同级间距*/
    width: 15%;
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
}
#DiLan-Right img { /*右部二维码*/
    max-width: 100%;
}
/*END-底栏*/

/*最下信息*/
#ZuiXiaXinXi { /*最下信息最外层*/
    width: 100%;
    background-color: #146c06;/*背景颜色*/
    text-align: center;/*居中显示*/
}
.ZuiXiaXinXi-NeiRong { /*最下信息的内容*/
    display: inline-block;/*水平排列*/
    color: white;/*字体颜色*/
    font-size: 14px;/*字体大小*/
}
#ZuiXiaXinXi-BanQuan {
    float:left;/*浮动靠左*/
    margin-left: 5%;/*左边同级间距*/
}
#ZuiXiaXinXi-JiShu { /*技术支持语句*/
    float:right;/*浮动靠右*/
    margin-right: 5%;/*右边同级间距*/
}
/*END-最下信息*/