﻿body {
    margin: 0px;
    padding: 0px;
    min-width: 1024px;
    background-color: white;
    font-size: 14px;
}

ul, li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
}


.header {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    height: 60px;
    line-height: 60px;
    background-color: black;
}

    .header .hd {
        display: flex;
        justify-content: space-between;
    }
        .header .hd .logo {
            color: white;
            font-size: 20px;
        }
        .header .hd .menus {
            color: white;
            display:flex;
            justify-content:space-between;
            width:50%;
        }
        .header .hd .menus .menu a {
            color: white;
            font-size:18px;
        }
            .header .hd .menus .menu a:hover {
                color: #2f53e9;
            }

        .header .hd .phone {
            color: white;
        }

/*****/
.body {

}

.panel{
    margin:auto;
    width:1200px;
}
/*****/

.footer {
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: black;
}

    .footer .f-content {
        display: flex;
        justify-content: space-between;
    }

        .footer .f-content .group {
            line-height:40px;
        }
            .footer .f-content .group .title {
                color:white;
            }
            .footer .f-content .group .link {
                color: rgba(251, 252, 252, 0.58);
            }
    .footer .copyright {
        text-align:center;
        color:white;
        margin-top:50px;
    }
    .footer .copyright a{
        color: white;
    }
