@charset "utf-8";
body {
    min-width: 1200px;
}
* {
    box-sizing: border-box;
    font-size: 14px;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
[v-cloak] {
  display: none;
}

/* 头部 */
.header {
    height: 110px;
    width: 100%;
    background: url(../images/bg_header.png) no-repeat center top;
    background-size: 100% 100%;
}
.header_box {
    width: 1200px;
    padding: 0 10px;
    margin: auto;
    overflow: hidden;
}
.header_left {
    float: left;
    margin-top: 15px;
}
.header_left .logo1 {
    width: 170px;
    height: 80px;
    vertical-align: middle;
}
.header_left .logo2 {
    width: 227px;
    height: 30px;
    margin-left: 50px;
    vertical-align: middle;
}
.header_right {
    cursor: pointer;
    float: right;
    width: 412px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 21px;
    border: 1px solid rgba(221,27,27,0.3);
    margin-top: 34px;
    position: relative;
}
.header_right .search_tips {
    font-size: 14px;
    color: #333333;
    line-height: 40px;
    margin-left: 30px;
    width: 340px;
}
.header_right .search_icon {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url(../images/icon_search.png) no-repeat center;
    background-size: 20px 20px;
}
/* 底部 */
.footer {
    height: 213px;
    width: 100%;
    background: url(../images/bg_footer.webp) no-repeat center top;
    background-size: 100% 100%;
}
.footer .footer_box {
    width: 1200px;
    margin: auto;
    padding: 50px 20px;
    font-size: 16px;
    color: #ffffff;
}
.footer_left {
    display: inline-block;
    vertical-align: middle;
    width: 230px;
    margin-right: 50px;
    text-align: center;
}
.footer_right {
    display: inline-block;
    vertical-align: middle;
    width: 870px;
}
.footer_left .img1 {
    width: 130px;
    height: 59px;
    margin-bottom: 15px;
}
.footer_left .img2 {
    width: 204px;
    height: 35px;
}
.footer_box .line_2 {
    margin-bottom: 15px;
}
.footer_box .line_2 span {
    margin-right: 25px;
}
.footer_box .line_2 span:last-child {
    margin-right: 0;
}
.footer_box .line_3 {
    margin-bottom: 15px;
}
.footer_box .line_3_item {
    display: inline-block;
    margin-right: 35px;
}
.footer_box .line_3_item a {
    color: #ffffff;
}
.footer_box .line_4_item {
    display: inline-block;
    margin-right: 35px;
}
.footer_box .line_4_item a {
    color: #ffffff;
}



.p_ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    word-break: break-all;
}
.p_ellipsis_2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    word-break: break-all;
}
.p_ellipsis_3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    word-break: break-all;
}
.p_ellipsis_5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    word-break: break-all;
}

.cursor {
    cursor: pointer;
}