@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h2,
h3,
i,
em {
    font-style: normal;
}

html,
body {
    font-family: "微软雅黑";
    font-size: 16px;
    min-width: 1490px;
    background: #f7f7f7;
}

input,
img,
a,
button {
    outline: none;
    border: 0;
}

@font-face {
    font-family: "sisong";
    src: url(../style/sySong.woff);
}

.clear {
    clear: both;
}

.pic {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.pic:hover img {
    transform: scale(1.2);
}

.l1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.l2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.l3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wp {
    position: relative;
    width: 1400px;
    padding: 0;
    margin: 0 auto;
    z-index: 6;
}


/* 弹窗搜索 */

.search-dialog-box {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}

.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box a {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 10;
    right: 25px;
    top: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}

.search-dialog-box a i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background: url(../images/close.png) no-repeat center center;
    background-size: 20px auto;
    transition: all 0.6s ease 0s;
}

.search-dialog-box a i:hover {
    transform: rotate(180deg);
}

.search-dialog-box.on .search-bg {
    height: 100vh;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    margin: 0px;
    background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.7);
    transform-origin: center center;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.search-dialog {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 0px;
}

.search {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding-right: 100px;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
}

.search input[type="text"] {
    width: 100%;
    height: 70px;
    background-color: rgb(255, 255, 255);
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease 0s;
    padding: 0px 20px;
    box-sizing: border-box;
}

.search span {
    position: absolute;
    width: 100px;
    top: 0;
    bottom: 0;
    right: 0;
    background: #BA2A17;
}

.search span input[type="image"] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
}

.header {
    background: #890303;
}

.head {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-l>a {
    display: block;
}

.head-l>a img {
    display: block;
}

.head-r a img {
    display: inline-block;
    vertical-align: middle;
}

.nav {
    width: calc(100% - 595px - 30px);
    margin-left: 130px;
    margin-right: 30px;
}

.nav>ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav>ul>li {
    position: relative;
    text-align: center;
    line-height: 55px;
}

.nav>ul>li>a {
    display: block;
    position: relative;
    font-size: 18px;
    color: #fff;
}

.nav>ul>li>a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    height: 3px;
    left: 50%;
    right: 50%;
    background: #fff;
    border-radius: 10px;
    transition: all .3s;
}

.nav>ul>li.on>a::after,
.nav>ul>li:hover>a::after {
    left: 0;
    right: 0;
}

.nav>ul>li .sub {
    position: absolute;
    padding-top: 9px;
    left: 50%;
    width: 150px;
    margin-left: -75px;
    top: 100%;
    z-index: 999;
    display: none;
}

.nav>ul>li .sub::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-bottom: 9px solid #fff;
}

.nav>ul>li ul {
    background: rgba(255, 255, 255, 1);
    padding: 6px 20px;
}

.nav>ul>li ul>li {
    line-height: 46px;
}

.nav>ul>li ul>li:last-child a {
    border-bottom: none;
}

.nav>ul>li ul>li>a {
    display: block;
    font-size: 18px;
    color: #333;
    border-bottom: 1px dashed rgba(124, 24, 36, 0.1);
}

.nav>ul>li ul>li:hover>a {
    color: #BA2A17;
}

.banner a {
    position: relative;
    display: block;
}


/* .banner a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 124px;
    background: url() no-repeat center bottom;
    background-size: 100% 100%;
} */

.banner a img {
    display: block;
    width: 100%;
}

.banner .slick-dots {
    bottom: 35px;
}

.banner .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.6);
    transition: all .3s;
}

.banner .slick-dots li.slick-active {
    background: rgba(255, 255, 255, 1);
}

.banner .slick-prev {
    left: 30px;
    width: 68px;
    height: 100px;
    background: url(../images/ban-l.png) no-repeat center center;
}

.banner .slick-next {
    right: 30px;
    width: 68px;
    height: 100px;
    background: url(../images/ban-r.png) no-repeat center center;
}

.footer {
    position: relative;
    background: url(../images/footer-bg.jpg) no-repeat center top;
    background-size: cover;
    z-index: 9;
}

.foot{
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.px1400{
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ft-l h2 {
    padding-left: 12px;
    border-left: 6px solid #fff;
    line-height: 1;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}

.ft-l p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px;
    margin-top: 10px;
}

.ft-r {
    text-align: center;
}

.ft-r p {
    font-size: 14px;
    color: #fff;
}

.fd {
    padding: 15px 0;
    background: #890303;
}

.fd p {
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}