body {
    background: linear-gradient(257deg,rgba(255,255,255,1) 0%,rgba(255,255,255,1) 0%,rgba(255,249,240,1) 100%);
}
a:hover{
	color:rgba(230,60,60,1)!important;
}
.container{
    width: 1200px;
    margin: auto;
}
.header {
    width: 100%;
    position: relative;
    /*background: url(../images/header@2x.png) no-repeat;*/
    background-size: 100% 100%;
    z-index: 2;
}
.header .top {
    display: flex;
    align-items: center;
    margin: auto;
    width: 1200px;
    /*padding: 10px 0;*/
}
.header .top .logo {
    flex: 4;
}
.header .top .logo img {
    width: 300px;
}
.header .top .menu {
    display: flex;
    flex: 6;
    text-align: center;
}
.header .top .menu li {
    flex: 1;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
}
.header .top .menu li .lists {
    display: none;
    position: absolute;
    background: #fff;
    white-space: nowrap;
    border-radius: 5px;
    margin-top: 10px;
}
.header .top .menu li:hover .lists {
    display: block;
}
.header .top .menu li .lists .items {
    position: relative;
    padding: 10px;
    background: #fff;
    transition: all 0.2s ease;
}
.header .top .menu li .lists .items:hover {
    transform: scale(1.1);
    border-radius: 0.375rem;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
    z-index: 2;
}
.header .top .menu li .lists .items a {
    color: #333;
    font-weight: 400;
    font-size: 14px;
}
.header .top .menu li .lists .items .list {
    display: none;
    position: absolute;
    padding-left: 5px;
    top: 0;
    left: 100%;
    white-space: nowrap;
    transition: all 1s ease;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
}
.header .top .menu li .lists .items:hover .list {
    display: block;
}
.header .top .menu li .lists .items .list .box {
    background: #fff;
    /*padding: 10px;*/
    border-radius: 5px;
}
.header .top .menu li .lists .items .list .box .item {
    background: #fff;
    padding: 5px 0px;
    position: relative;
}
.header .top .menu li .lists .items .list .box .item a {
    color: #333;
    font-weight: 400;
    font-size: 12px;
}

.header .top .menu li .lists .items .list .box .item:hover .childone-list{
    display: block;
}
.header .top .menu li .lists .items .list .box .item .childone-list{
    display: none;
    position: absolute;
    padding-left: 5px;
    top: 0;
    left: 100%;
    white-space: nowrap;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
    transition: all 1s ease;
}
.header .top .menu li .lists .items .list .box .item .childone-list .childone-box {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}
.header .top .menu li .lists .items .list .box .item .childone-list .childone-box .childone-item {
    background: #fff;
    padding: 5px 0px;
}
.header .top .menu li .lists .items .list .box .item .childone-list .childone-box .childone-item a{
    color: #333;
    font-weight: 400;
    font-size: 12px;
}

.header {
    position: relative;
    padding: 20px 0;
    top: 0;
}
.header .top {
    margin: 0 auto;
}
.header .top .logo {
    flex: 3;
}
.header .top .menu li a{
    color: #000;
}
.search_bg {
    background-color: #f5f5f5!important;
}

.footer {
    background: url(/static/images/footer.png) no-repeat;
    background-size: 100%;
    height: 338px;
    min-width: 1440px;
}
.footer .container {
    display: flex;
    padding-top: 120px;
    justify-content: space-between;
}
.footer .container .items {
    color: #fff;
    width: 200px;
}
.footer .container .items img {
    width: 150px;
    margin-right: 20px;
}
.footer .container .items p {
    margin: 0;
}
.footer .container .items h1 {

}
.footer .container .items .list {

}
.footer .container .items .list .item {
    white-space: nowrap;      /* 保持文本在一行内显示 */
    overflow: hidden;         /* 隐藏溢出的内容 */
    text-overflow: ellipsis;  /* 使用省略号表示文本溢出 */
}
.footer .container .items .list .item a {

}