@CHARSET "UTF-8";
*{
            margin:0px;
            padding: 0px;
            font-size: 12px;
        }
        a:hover{
            color: orange;
        }
        .flex{
            display: flex;
            display: -webkit-flex; /* Safari */
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }
        .main{
            min-width: 1300px;
            width: 100%;
            height:100%;
        }
        .left{
            width: 320px;
            min-width: 320px;
            height: 100%;
            float: left;            
            position: relative;
            /*background-color: red;*/
        }

        .right{
            min-width: 980px;
            background-color: #f7f7f7;
            margin-left:320px;
            height: 100%;
        }
        .logo{
            width: 320px;
            /*height: 230px;*/
            padding: 20px;
        }
        .search{
            height: 50px;
            min-height: 50px !important;
        }
        .search input{
            height: 38px;
            width: 190px;
            border:none;
            border:2px solid #93886f;
            box-sizing:border-box;
            text-align: center;
        }
        .search input:focus {
            outline:none;
            border:2px solid #93886f;   
        }
        .search button{
            height: 38px;
            width: 38px;
            border:none;
            background-color: #93886f;
            outline:none;
        }
        
        .category{
            /*flex-direction:column;*/
            height: calc(100% - 320px);
            display: block;
            /*width: 100%;*/
            /*padding: 10px 0px;*/
            /*margin: 120px;*/
            overflow-y: auto;
            /*width: 360px;*/
        }
        .cat_item{
            flex-direction: row;
            min-height: 50px;   
            /*min-height: 25px;   */
            justify-content: flex-start;
            margin:auto;
            width: 90%;
            margin-top: 3px;

        }
        .cat_img{
            width: 50px;
            overflow: hidden;
            text-align: center;

        }
        .cat_img img,.cat_img i{
            width: 50px;
            font-size: 35px;
            color: #6d6d6d;
            /*width: 25px;*/
        }
        .cat_name{
            font-size: 20px;
            /*font-weight: bold;*/
            color: #606060;
            padding: 0px 5px;
            width: 180px;

        }
        .cat_childs{
            justify-content:space-around;
            margin:auto;
            width: 80%;
        }
        .cat_childs div{
            width: 220px;
            height: 35px;
            color: #606060;
            align-items: center;
            justify-content: flex-start;
        }
        .cat_childs_current{
            color:orange !important;
        }
        .nav{
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }
        .nav .item{
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }
        .copyright{
            height: 120px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            width: 100%;
            flex-direction: column;
            color: #000;
            align-items: flex-start;
            padding: 15px;
        }
        .copyright p{
            margin:0px;
            line-height: 18px;
        }
        .cat_item,.cat_childs{
            cursor: pointer;
        }
.contact{
    width: 600px;
}
.contact p{
    font-size: 14px;
    
}
		