@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a, img {
    border: 0;
}

a:link, a:visited {
    text-decoration: none;
    color: #0A0A0A;
}

a:hover {
    color: #df0504
}

body {
    background: #fff;
    color: #3B3B39;
    font-size: 14px;
}
.cursor_pointer{
    cursor: pointer;
}

/**
 * 通用
 */
.w1920 {
    width: 1920px;
    margin: 0 auto;
}

.w1400 {
    width: 1400px !important;
    margin: 0 auto;
}
.w1300 {
    width: 1300px !important;
    margin: 0 auto;
}

.w1200 {
    width: 1200px !important;
    margin: 0 auto;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}


.flex_left_right {
    display: flex;
    justify-content: space-between;
}

.bg_white {
    background: #ffffff;
}

.padding_10 {
    padding: 10px;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

/**
 * 标题带更多
 */
.title_more_border {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E02D2D;
    line-height: 36px !important;
}

.title_more_border div.title {
    color: #999999;
    font-size: 18px;
    line-height: 36px;
    display: flex;
}

.title_more_border div.title div {
    margin-right: 20px;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.title_more_border div.title div.active {
    color: #E02D2D;
    font-size: 18px;
    border-bottom: 2px solid #E02D2D;
    cursor: pointer;
}

.title_more_border div.more {
    color: #999999;
    font-size: 12px;
    font-style: normal;
    line-height: 36px;
}

/**
 * 仅标题
 */
.title_border {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #E02D2D;
    line-height: 36px !important;
}

.title_border div {
    color: #999999;
    font-size: 18px;
    line-height: 36px;
    margin-right: 30px;
    cursor: pointer;
}

.title_border div.active {
    color: #E02D2D;
    border-bottom: 2px solid #E02D2D;
}


/**
 * 顶部
 */
#top2024 {
    height: 40px;
    line-height: 40px;
    background: #F5F5F5;
}

/**
 * 头部
 */
#header2024 {
    height: 250px;
    background: url("../images/bg_banner.png") center;
}

#header2024 .logo {
    position: relative;
    top: 70px;
}

/**
 * 菜单
 */
#menu2024 {
    background: #DE0504;
    height: 48px;
    line-height: 48px;
    color: #ffffff;
}

#menu2024 div a {
    color: #ffffff;
}

/**
 * 新闻
 */
#news2024 {
}

/**
 * 新闻one
 */
.news_one {
    width: 1200px;
    height: 120px;
    background: #FFF4F3;
    padding-top: 20px;
    padding-bottom: 20px;
}

.news_one .title {
    font-size: 28px;
    text-align: center;
    line-height: 80px;
}

.news_one .title span {
    color: #FF0000;
}

.news_one .content {
    display: flex;
    justify-content: space-between;
    color: #949494;
    padding: 0 30px;
}

.news_one .content div {
    display: inline-block;     /* 使元素的宽度可以控制 */
    max-width: 360px;          /* 设置最大宽度，根据需求调整 */
    white-space: nowrap;       /* 不换行 */
    overflow: hidden;          /* 超出部分隐藏 */
    text-overflow: ellipsis;   /* 超出部分显示省略号 */
    vertical-align: middle;    /* 垂直对齐 */
}

.news_one .content a {
    color: #949494;
}

/**
 * 新闻two
 */
.news_two {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
}

.news_two .news_two_left {
    width: 620px !important;
    height: 380px;
    background: #B8C1CD;
    position: relative;
    overflow: hidden;
}

.news_two .news_two_left .image-container {
    width: 620px;
    height: 380px;
    display: flex;
    transition: transform 0.5s ease;
}

.news_two .news_two_left .image-container img {
    width: 620px; /* 固定宽度 */
    height: 380px; /* 固定高度 */
    object-fit: cover; /* 图片按照比例填充容器，多余部分裁剪 */
    flex-shrink: 0; /* 防止图片被压缩 */
}

.news_two .news_two_left .news-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: left;
    padding: 10px;
    font-size: 18px;
}

.news_two .news_two_left .focus-points {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
}

.news_two .news_two_left .focus-points div {
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news_two .news_two_left .focus-points div.active {
    background-color: #ff6347;
}

.news_two .news_two_right {
    width: 580px;
    margin-left: 10px;
    padding-left: 15px;
    min-width: 560px;
}
.news_two .news_top{
    border-bottom: 1px dashed #eeeeee;
}
.news_two .news_top h1{
    font-size: 18px;
    line-height: 42px;
    color: #333333;
}
.news_two .news_top p{
    font-size: 12px;
    line-height: 24px;
    color: #949494;
}
.news_two .news_top_list {
    margin-top: 10px;
}


/**
 * 新闻 three
 */
.news_three {
    background: #F7F9FA;
    height: 400px;
}

.news_list {
    margin-top: 20px;
    width: 50%;
    padding: 10px 10px;
}


/**
 * 新闻 three - 内容
 */
.news_list .content {
    margin-top: 10px;
}

.content_list {
    display: flex;
    justify-content: space-between;
    height: 36px;
    line-height: 36px;
}

.content_list .title {
    display: inline-block;     /* 使元素的宽度可以控制 */
    max-width: 460px;          /* 设置最大宽度，根据需求调整 */
    white-space: nowrap;       /* 不换行 */
    overflow: hidden;          /* 超出部分隐藏 */
    text-overflow: ellipsis;   /* 超出部分显示省略号 */
    vertical-align: middle;    /* 垂直对齐 */
}

.icon-more {
    padding-left: 10px;
}

.icon-square {
    font-size: 8px !important;
    color: #E02D2D;
}

/**
 * 新闻 four
 */
.news_four {
    background: #ffffff;
    height: 400px;
}

/**
 * 新闻 five
 */
.news_five {
    background: #F7F9FA;
    height: 330px;
    padding-top: 20px;
}

.news_five_image_list {
    padding-top: 20px;
    column-count: 4;
    height: 240px;
}

.news_five_image_list .title {
    text-align: center;
    border-bottom: none;
}
.news_five_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.images-container {
    transition: transform 0.5s ease-in-out;
}
.nav-button {
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    z-index: 100;
    outline: none;
}
.icon-arrow-left{
    font-size: 40px !important;
    color: #000000;
}
.icon-arrow-right {
    font-size: 40px !important;
    color: #000000;
}

/**
 * 新闻 six
 */
.news_six {
    background: #F7F9FA;
    height: 400px;
}

.news_six_content {
    column-count: 2;
    column-gap: 40px;
    min-height: 305px;
}

.news_six_content div:first-child {
    color: #999999;
    font-size: 14px;
    text-align: left;
    height: 36px;
    display: flex;
    flex-direction: row;
}

.news_six_content div:first-child span.title {
    padding-left: 10px;
    border-bottom: none;
}

.news_six_content div:last-child {
    color: #999999;
    font-style: normal;
    font-size: 12px;
    text-align: right;
}

.icon-gengduo {
    padding-left: 10px;
}

.icon-checkbox-full {
    font-size: 8px !important;
    color: #E02D2D;
}

/**
 * partner
 */
#partner2024 {
    height: 350px;
}

.partner {
    display: flex;
    flex-wrap: wrap;
    column-count: 2;
    column-gap: 40px;
}

.partner_left {
}

.partner_left_content {
    column-count: 3;
}

.partner_left_content img {
    border: 2px solid #f1f3f8;
    border-radius: 20px;
    margin-top: 20px;
}

.partner_right {
    width: 50%;
}

.partner_right_content {
    background: #FCF7F7;
    display: flex;
    padding: 20px;
    margin-top: 20px;
}

.column_left {
    width: 40%;
}

.column_right {
    width: 60%;
}
.column_right_top {
    margin-top: 10px;
}
.column_right_top div {
    line-height: 38px;
    font-size: 14px;
}

.column_right_top div em {
    font-style: normal;
}

.column_right_bottom {
    line-height: 48px;
    background: #f9efef;
    border-radius: 30px;
    text-align: center;
    color: #903C3C;
    margin-top: 10px;
}

/**
 * 友情链接
 */
#friend2024{
    height: 150px;
    border-bottom: 1px solid #eeeeee;
}
.friend_list{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    column-count: 7;
    column-gap: 14px;
}
.friend_list_item {

}

/**
 * 底部
 */
#footer2024 {
    background: #E02D2D;
    padding: 16px 0;
}
#footer2024 div {
    line-height: 36px;
    height: 36px;
    color:#ffffff;
    text-align: center;
}