﻿/*--------------------menu---------------------*/
.menu {
    font-family: "黑体";
    width: 1200px;
    height: 50px;
    margin: auto;
    background: -webkit-linear-gradient(#6197CC, #1F759A); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#6197CC, #1F759A); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#5297CC, #1F759A); /* Firefox 3.6 - 15 */
    background: linear-gradient(#6197CC, #1F759A); /* 标准的语法（必须放在最后） */
    FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#6197CC,endColorStr=#1F759A);
}

    .menu ul {
        margin: auto;
        padding: 0px;
        width: 960px;
        height: 100%;
        list-style-type: none;
    }

        .menu ul li {
            margin: auto;
            float: left;
            position: relative;
            border-bottom: 2px solid #FEFEFE;
            z-index:9999;
        }

            .menu ul li img {
                vertical-align: baseline;
            }

            .menu ul li:first-child {
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }

            .menu ul li:last-child {
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
                border-bottom: none;
            }

            .menu ul li a, .menu ul li a:visited {
                display: block;
                text-align: center;
                text-decoration: none;
                width: 160px;
                height: 50px;
                color: #000;
                line-height: 50px;
                font-size: 18px;
                font-weight: bold;
            }

            .menu ul li:hover a {
                color: dodgerblue;
            }

            .menu ul li ul {
                display: none;
            }

            .menu ul li:hover ul {
                display: block;
                position: absolute;
                top: 50px;
                left: 0px;
                width: 155px;
            }

                .menu ul li:hover ul li {
                    background-color: rgba(232,232,232,0.9) !important;
                    background-color: #E8E8E8;
                    filter: Alpha(opacity=90);
                }

                    .menu ul li:hover ul li a {
                        display: block;
                        color: #000;
                        position: relative; /* 设置子元素为相对定位，可让子元素不继承Alpha值，保证字体颜色不透明 */
                        font-size: 12px;
                    }

                        .menu ul li:hover ul li a:hover {
                            background: #fff;
                            color: #000;
                            cursor: pointer;
                        }

                    .menu ul li:hover ul li:first-child a:hover {
                        border-top-left-radius: 5px;
                        border-top-right-radius: 5px;
                    }

                    .menu ul li:hover ul li:last-child a:hover {
                        border-bottom-left-radius: 5px;
                        border-bottom-right-radius: 5px;
                    }

/*-----------------end  menu------------------*/

/*---------------footer-------------*/
.container {
    clear: both;
    width: 1200px;
    margin-top: 10px;
}

#foot {
    margin: 0 auto;
    width: 750px;
    text-align: center;
    color: #383838;
    bottom: 5px;
}

    #foot p {
        line-height: 20px;
    }

#copyright {
    margin: 0 auto;
    width: 650px;
    font-weight: bold;
    font-family: '微软雅黑';
    font-size: 12px;
    float:left;
}

#copyright>span{
	 display:inline-block;
  vertical-align:middle;
}

.imgConac {
    width:50px;
    height: 90px;
    line-height: 90px;
    margin-left:650px;
}
/*---------------end  footer-------------*/