        html,body{
            margin: 0;
            padding: 0;
            font-size: 14px;
            box-sizing: border-box;
        }
        
        .header{
            width: 100%;
            height: 80px;
            background: #33333340;
            box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .04);
            position: fixed;
            width: 100%;
            top: 0;
        }
        .header .main{
            max-width: 1200px;
            margin: auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .header .main .menus{
            display: flex;
            align-items: center;
        }
        .header .main .menus .list{
            font-size: 14px;
            color: #ffffff;
            display: flex;
            align-items: center;
        }
        .header .menus .item{
            padding: 10px 20px;
            cursor: pointer;
        }
        .header .menus .item:hover{
            background: rgba(0, 0, 0, .08);
        }
        .header .account{
            width: 124px;
            height: 41px;
            border-radius: 4px;
            color: #333333;
            background: #ffd100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }
        .header .account .app-list{
            position: absolute;
            height: 0;
            overflow: hidden;
            top: 41px;
            width: 100%;
            padding-top: 8px;
            transition: all 0.3s;
        }
        .header .account .app-list .item{
            width: 124px;
            height: 41px;
            border-radius: 4px 4px 0 0;
            color: #333333;
            background: #ffd100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }
        .header .account .app-list .item:hover{
            background: #deb600;
        }
        .header .account .app-list .item1{
             border-radius: 0 0 4px 4px;
        }
        .header .account:hover .app-list{
            height: 90px;
        }

         .footer{
            position: relative;
            width: 100%;
            height: 320px;
            background: #222;
            padding: 40px 0 40px 0;
        }
        .footer .main{
            max-width: 1200px;
            margin: auto;
            position: relative;
            height: 100%;
        }
        .footer .links{
            display: flex;
            align-items: center;
        }
        .footer .links .item{
            cursor: pointer;
            color: #ffffff60;
        }
        .footer .links .item:hover{
            color: #ffffff;
        }
        .footer .links span{
             color: #ffffff60;
            margin: 0 18px;
        }
        .footer .ewms{  
            display: flex;
            align-items: center;
            padding-top: 40px;
        }
        .footer .ewms .item{
            width: 130px;
            height: 153px;
            border-radius: 8px;
            background: #fff;
            padding: 6px;
            margin-right: 40px;
        }
        .footer .ewms .item img{
            width: 100%;
        }
        .footer .ewms .item .name{
            color: #222;
            font-size: 12px;
            text-align: center;
            padding-top: 4px;
        }
        .footer .ewms .item1{
            color: #ffffff;
        }
        .footer .beian{
            position: absolute;
            bottom: 0;
            color: #ffffff60;
            font-size: 14px;
            width: 100%;
            bottom: 0px;
            text-align: center;
        }
        .footer .anhao{

        }
        .footer .anhao:hover{
            color: #ffffff;
        }
        .footer .logo{
            position: absolute;
            right: 0;
            top: 96px;
        }
        .footer .logo .desc{
            font-size:18px;
            color: #ffffff;
            font-weight: bold;
            padding-top: 8px;
            letter-spacing: 6px;
        }