@charset "utf-8";

/* 全局样式变量 - 更新为中和包装品牌色系 */
:root {
    --primary-color: #A6634D;
    /* 按钮颜色 */
    --primary-hover: #D9611E;
    /* 按钮选中颜色 */
    --logo-color: #E46713;
    /* Logo颜色 */
    --danger-color: #AB0000;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #F7F7EF;
    /* 底色 */
    --border-color: #E4D8C9;
    /* 根据底色调整的边框色 */
    --transition: all 0.36s ease;
}

/* 通用工具类 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-light {
    color: var(--text-light);
}

.bg-light {
    background-color: var(--bg-light);
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.content_wrap {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* 新闻详情页样式 */
.news_detail {
    max-width: 960px;
    min-height: 450px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 页面标题 */
.page_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 30px 0;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 15px;
    position: relative;
}

/* 文章元信息 */
.news_meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.news_meta span {
    margin: 0 15px 10px 0;
}

/* 文章摘要 */
.news_abstract {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.news_abstract h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.news_abstract p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* 文章主体内容 */
.news_content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.news_content h3 {
    font-size: 22px;
    color: #212529;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.news_content p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.news_content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 4px;
}

.news_content ul {
    margin-bottom: 20px;
    padding-left: 2em;
}

.news_content li {
    margin-bottom: 10px;
}

/* 分享按钮 */
.news_share {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.news_share span {
    margin-right: 15px;
    color: #333;
    font-weight: 500;
}

.share_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.share_btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.share_btn.wechat {
    background-color: #07c160;
}

.share_btn.weibo {
    background-color: #e6162d;
}

.share_btn.qq {
    background-color: #12b7f5;
}

.share_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 新闻列表样式 */
.news_list_simple {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news_item_simple {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.news_item_simple a {
    color: #333;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.news_item_simple a:hover {
    color: #e46916;
}

.news_item_simple span {
    color: #999;
    margin-left: 15px;
    white-space: nowrap;
}

/* 相关新闻 */
.related_news {
    margin-top: 40px;
}

.related_news h3 {
    font-size: 20px;
    color: #212529;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.related_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.related_list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.related_list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 20px;
    line-height: 1;
}

.related_list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related_list a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* 返回按钮 */
.back_to_list {
    margin-top: 40px;
    text-align: center;
}

.back_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back_btn:hover {
    background-color: #0069d9;
}

/* 面包屑导航样式 */
.breadcrumb {
    padding: 12px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #495057;
    text-decoration: none;
}

.breadcrumb span {
    color: #adb5bd;
    margin: 0 8px;
}

body {
    font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial;
}

#bsWXBox .bsTop:after {
    content: '- 微信';
    display: block;
    position: absolute;
    left: 85px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
}

#bsWXBox .bsTop:before {
    content: '分享到';
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
}

.std_title1 {
    font-size: 48px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
}

.std_title2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: bold;
    color: #333;
}

.std_title3 {
    font-size: 24px;
    line-height: 1.5;
    color: #333;
}

.std_title4 {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.std_title4 p {
    font-size: 16px;
}

.std_title5 {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.std_title6 {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.std_word1 p {
    font-size: 16px;
    color: #666;
    line-height: 2;
}

.std_word2 p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* yxedr_active 标题特定样式 */
.yxedr_active h2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: bold;
    color: #333;
    margin-bottom: 27px;
}

.yxedr_active h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
}

.yxedr_active h4 {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 9px;
}

.yxedr_active h5 {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.yxedr_active p {
    font-size: 16px;
    color: #666;
    line-height: 2;
    margin-bottom: 16px;
}

.std_padding1 {
    padding: 120px 0;
}

.std_paddingup1 {
    padding-top: 120px;
}

.std_paddingbot3 {
    padding-bottom: 120px;
}

.std_paddingbot1 {
    padding-bottom: 50px;
}

.std_marginbot1 {
    margin-bottom: 50px;
}

.std_paddingbot2 {
    padding-bottom: 40px;
}

.std_marginbot2 {
    margin-bottom: 40px;
}

.std_font20,
.std_duan20 p {
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
}

.std_font46 {
    color: #333;
    font-size: 46px;
    line-height: 1.5;
}

.std_middle {
    text-align: center;
}

.yxnav_active1 {}

.yxnav_active2 {}

/* - banner - start*/
.banner {
    width: 100%;
    position: relative;
}

.ban_li {
    position: relative;
    overflow: hidden;
}

.ban_imgbox {
    position: relative;
    z-index: 1;
}

.ban_imgbox img {
    width: 100%;
}

.ban_li>a {
    display: block;
}

.ban_ph {
    display: none;
}

.ban_video {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ban_li:not(:first-child) {
    display: none;
}

.ban_imgbox::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.188);*/
}

.ban_txtbox {
    z-index: 5;
}

.d_c1headli {
    padding: 0 20px;
}

.d_c1headul {
    margin: 0 -20px;
}

.d_c1headli.on .std_title4 {
    color: #AB0000;
}

.d_c1lile {
    width: 53%;
}

.d_c1lile img {
    width: 100%;
    transition: all .36s;
}

.d_c1liri {
    padding: 0 70px;
    width: 47%;
}

.d_c1title {
    padding-bottom: 14px;
    margin-bottom: 24px;
    position: relative;
}

.d_c1title::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #AB0000;
    left: 0;
    bottom: 0;
}

.d_c1title.std_title3 {
    color: #000000;
}

.d_c1font {
    color: #666666;
}

.d_c1libox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #FFFFFF;
}

.d_c1pt1 {
    background: #FAFAFA;
}

.d_c1bdul {
    margin-bottom: -30px;
    display: flex;
    flex-wrap: wrap;
}

.d_c1bdli:nth-child(2n) .d_c1libox {
    flex-direction: row-reverse;
}

.d_c1bdli:nth-child(2n) .d_c1liri {
    padding: 0 70px;
}

.d_col,
.d_font {
    color: #FFFFFF;
    text-align: center;
}

.d_bottitl {
    padding: 7px 24px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    transition: all .36s;
}

.d_botli.on .d_bottitl {
    background: #AB0000;
    border: 1px solid transparent;
}

.d_botli {
    padding: 0 10px;
}

.d_botul {
    margin: 0 -10px;
}

.d_botbox {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.d_c1headli .std_title4 {
    color: #999999;
    transition: all 0.36s;
}

/* c1-end */
/* d1-start */
.d_center {
    text-align: center;
    color: #FFFFFF;
}

.d_d1le {
    width: 396px;
}

.d_d1le img {
    transition: all 0.36s;
}

.d_d1liri {
    width: calc(100% - 396px);
    padding-left: 65px;
    padding-top: 40px;
    position: relative;
}

.d_d1liri::after {
    position: absolute;
    content: '';
    width: calc(100% - 65px);
    height: 1px;
    background: #333333;
    right: 0;
    top: 0;
}

.d_d1ritime {
    width: 94px;
}

.d_d1rifont {
    width: calc(100% - 94px);
    padding-left: 72px;
}

.d_d1timefont {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
}

.d_d1ritime.std_word1 {
    color: #999999;
}

.d_d1icon {
    width: 16px;
    margin-left: 12px;
    transition: all 0.36s;
}

.d_d1icon img {
    width: 100%;
}

.d_d1ricol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #AB0000;
}

.d_d1rifont2 {
    font-weight: bold;
    margin-bottom: 40px;
}

.d_d1rifont3 {
    color: #666666;
    margin-bottom: 34px;
}

.d_d1pt1 {
    margin-bottom: 92px;
}

/* 分页-start */
.pc_fenye li.activepage {
    background: #AB0000;
}

/* 分页-end */
/* .d_d1bdul{
    margin-bottom: -40px;
} */
/* d1-end */
/* d2-start */
.d_d2le {
    width: 430px;
    background: #F6F6F6;
    padding: 70px 70px 120px;
    border-bottom: 7px solid #AB0000;
}

.d_d2ri {
    width: calc(100% - 500px);
    padding-left: 60px;
}

.d_d2letitle {
    padding-top: 28px;
    padding-bottom: 48px;
    margin-bottom: 38px;
    border-bottom: 1px solid #DFE2E4;
    position: relative;
}

.d_d2letitle::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #AB0000;
    left: 0;
    top: 0;
}

.d_d2lefont span {
    font-size: 80px;
    margin-right: 15px;
    line-height: 1;
    color: #AB0000;
}

.d_d2lefont.std_title4 {
    color: #9099A0;
}

.d_d2link {
    background: #F6F6F6;
    padding: 16px 50px;
}

.d_d2linkli .std_title5 {
    color: #9099A0;
    transition: all 0.36s;
}

.d_d2rifont p {
    color: #666666;
}

.d_d2rifont {
    margin-bottom: 50px;
}

.d_d2linkli {
    margin-bottom: 12px;
}

.d_d2linkli:last-child {
    margin-bottom: 0;
}

/* d2-end */
/* e1-start */
.d_e1bt {
    background: transparent;
    border-radius: 50px;
    padding: 10px 35px;
    transition: all 0.36s;
    cursor: pointer;
}

.d_e1heli.on .d_e1bt {
    background: #AB0000;
    color: #FFFFFF;
}

.d_e1heli {
    padding: 0 10px;
}

.d_e1heul {
    margin: 0 -10px;
}

.d_e1bdli {
    margin-bottom: 20px;
    padding: 0 10px;
    width: 33.333333%;
}

.d_e1bdul {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.d_e1bot {
    padding: 27px 50px 35px;
}

.d_e1libox {
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.d_e1pt1 {
    background: #FAFAFA;
}

.d_e1bot .std_title6 {
    margin-bottom: 20px;
    color: #999999;
    transition: all 0.36s;
}

.d_e1bot .std_title3 {
    font-weight: bold;
    transition: all 0.36s;
}

.d_but {
    opacity: 0;
    width: 62px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.36s;
    z-index: 4;
}

.d_but img {
    width: 100%;
}

.d_e1pic {
    overflow: hidden;
    position: relative;
}

.d_e1pic::after {
    content: '';
    position: absolute;
    background: rgb(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.36s;
}

.d_e1pt1 {
    padding-bottom: 74px;
}

/* e1-end */
/* e2-start */
.d_e2libox {
    padding: 32px 50px 32px 58px;
    background: #F2F2F2;
}

.d_e2bg {
    background: #DADADA;
    border-radius: 35px;
    margin-right: 45px;
}

.d_e2bg a {
    display: block;
    color: #FFFFFF;
    padding: 8px 16px;
}

.d_e2icon {
    width: 35px;
    line-height: 28px;
}

.d_e2icon img {
    width: 100%;
}

.d_e2li {
    margin-bottom: 20px;
}

.d_e2le .std_title3 {
    font-weight: bold;
}

/* e2-end */
/* f1-start */
.d_f1lepic {
    width: 692px;
}

.d_f1pt1ri {
    padding-bottom: 12px;
    padding-top: 42px;
    padding-left: 123px;
    width: calc(100% - 692px);
    position: relative;
}

.d_f1pt1ri::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background: rgb(0, 0, 0, .3);
    width: calc(100% - 123px);
    height: 1px;
}

.d_f1pt1ri::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0, .3);
    width: calc(100% - 134px);
    height: 1px;
}

.d_f1pt1bd {
    background: #FFFFFF;
    padding: 85px 80px;
}

.d_f1pt1we {
    display: inline-block;
    text-align: center;
}

.d_f1pt1ic {
    width: 30px;
    line-height: 15px;
}

.d_f1pt1li .std_title6 {
    width: calc(100% - 30px);
    color: #666666;
    line-height: 30px;
}

.d_f1pt1li a {
    color: #666666;
}

.d_f1pt1ul {
    margin-bottom: 26px;
}

.d_f1pt1title .std_title3 {
    margin-bottom: 10px;
}

.d_f1pt1title {
    margin-bottom: 33px;
}

.d_f1pt1bd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -295px;
    position: relative;
    z-index: 6;
}

.d_f1pt1 {
    background: #FAFAFA;
}

.d_f1pt1title2 {
    text-align: center;
}

.d_f1pt1title2 .std_title2 {
    font-weight: normal;
}

.d_f1formli {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 14px;
}

.d_f1pt1list {
    margin: 0 -14px;
}

.d_f1formbd {
    padding: 0 20px;
    height: 60px;
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

.d_f1forminp input {
    width: 100%;
    padding: 0 20px;
    line-height: 60px;
    font-size: 16px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999999;
    font-size: 16px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
    font-size: 16px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
    font-size: 16px;
}

.d_f1formli1,
.d_f1formli2 {
    width: 100%;
}

.d_f1formli2 textarea {
    width: 100%;
    padding-top: 15px;
    height: 100%;
}

.d_f1formli2 .d_f1formbd {
    height: 200px;
}

.d_f1formli3 .d_f1formbd {
    width: calc(100% - 182px);
}

.d_f1fromnum {
    margin-left: 28px;
    width: 154px;
    cursor: pointer;
}

.d_f1fromnum img {
    width: 100%;
}

.d_f1formbot {
    width: 100%;
}

.d_f1formbot {
    background: #AB0000;
    padding: 18px 0;
    text-align: center;
}

.d_f1formbot .std_title5 {
    color: #FFFFFF;
}

.d_f1agrbot {
    width: 16px;
}

.d_f1agree a {
    color: #AB0000;
}

.d_f1agree {
    width: 100%;
}

.d_f1agrbot {
    margin-top: 4px;
    height: 15px;
    width: 15px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.d_f1agree .std_title6 {
    color: #999999;
}

.d_f1agrbot span {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    opacity: 0;
    transition: all 0.36s;
}

.d_f1agrbot.on span {
    opacity: 1;
}

.d_f1pt1bd {
    margin-bottom: 92px;
}

.d_f1pt1title2 {
    margin-bottom: 74px;
}

.d_f1inpage .pos_center {
    top: 38%;
    transform: translate(-50%, -38%);
}

.d_f1pt1pic {
    width: 121px;
}

.d_f1pt1pic img {
    width: 100%;
}

/* g1-start */
.d_g1pt1li {
    padding: 0 9px;
    width: 33.333333%;
}

.cont1500 {
    width: 1500px;
    margin: 0 auto;
}

.d_g1pt1ul {
    margin: 0 -9px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.d_g1libox {
    height: 100%;
    background: #FAFAFA;
}

.d_g1pt1font {
    padding: 40px 20px;
    font-size: 20px;
    line-height: 1.3;
    color: #333333;
}

.d_g1head {
    text-align: center;
}

.d_g1head .std_title1 {
    font-weight: normal;
}

.d_g1pt3bd .d_g1head .std_title3 {
    color: #666666;
}

.d_g1pt3li {
    margin-bottom: 30px;
    width: 25%;
}

.d_g1pt3pic {
    width: 70px;
    margin: 0 auto 15px;
}

.d_g1pt3pic img {
    width: 100%;
}

.cont1300 {
    width: 1300px;
    margin: 0 auto;
}

.d_g1pt3box {
    text-align: center;
    height: 100%;
}

.d_g1pt3ul {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.d_g1pt4 {
    position: relative;
}

.d_g1bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.d_g1bg img {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.d_g1pt4bd .std_title1 {
    font-weight: bold;
}

.d_g1pt4bot {
    width: 150px;
    background: #FFFFFF;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.36s;
}

.d_g1pt4bot a {
    display: block;
    padding: 16px 20px;
    color: #AB0000;
    transition: all 0.36s;
}

.d_g1pt4 .d_g1head .std_title1 {
    color: #FFFFFF;
}

.d_g1pt3.std_padding1 {
    padding-bottom: 90px;
}

.d_g1pt2 .std_title1 {
    font-weight: normal;
}

.d_g1pt2li {
    padding: 0 10px;
    width: 33.333333%;
}

.d_g1pt2ul {
    display: flex;
    align-items: stretch;
}

.d_g1pt2 {
    background: #FAFAFA;
}

.d_g1pt2libd {
    height: 100%;
    background: #FFFFFF;
}

.d_g1pt2font {
    padding: 30px 46px;
}

.d_g1pt2font .std_title4 {
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

.d_g1pt2font.std_word1 p {
    color: #999999;
}

.d_g1pt2box {
    position: relative;
    margin: 0 -10px;
}

.d_g1pt2con {
    position: relative;
}

/* swiper轮播-start */
.d_g1pt2con .swiper-pagination-progressbar {
    position: absolute;
    background: #DDE4E9;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    top: 55px;
    left: 11%;
}

.d_g1pt2con .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #AB0000;
    border-radius: 1px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform-origin: left top;
}

.d_g1pt2con .swiper-button-next {
    width: 54px !important;
    height: 54px !important;
}

.d_g1pt2box .swiper-button-next,
.d_g1pt2box .swiper-button-prev {
    top: -82px;
    transform: scale(1);
}

.swiper-button-prev {
    right: 76px !important;
    left: auto !important;
}

.d_g1pt2box .swiper-button-next::after {
    content: url(../images/g1_icon1.svg);
    position: absolute;
    top: 0;
    font-size: 0;
    opacity: 1;
    transition: all 0.36s;
}

.d_g1pt2box .swiper-button-prev::after {
    content: url(../images/g1_icon2.svg);
    position: absolute;
    top: 0;
    font-size: 0;
    opacity: 1;
    transition: all 0.36s;
}

.swiper-slide {
    height: auto !important;
}

/* swiper轮播-end */
/* g1-end */
/* f1-end */
.d_f1lab {
    width: 50px;
    line-height: 60px;
    color: #999999;
}

.d_f1forminp {
    width: calc(100% - 50px);
}

.d_d2letitle .std_title3 {
    font-weight: bold;
}

.d_g1pt4bd {
    padding-top: 168px;
    padding-bottom: 142px;
}

/* lis-end */
/*鼠标效果*/
@media screen and (min-width: 1200px) {

    /* lis-start */
    .d_c1headli:hover .std_title4 {
        color: #AB0000;
    }

    .d_c1bdli:hover .d_c1lile img,
    .d_e1libox:hover .d_e1pic .imgbox_cover img {
        transform: scale(1.05);
    }

    .d_botli:hover .d_bottitl {
        background: #AB0000;
        border: 1px solid transparent;
    }

    .d_d1bdli:hover .d_d1le img {
        transform: scale(1.05);
    }

    .pc_fenye li:hover,
    .d_e1heli:hover .d_e1bt {
        background: #AB0000;
        color: #FFFFFF;
    }

    .first:hover li,
    .prev:hover li,
    .next:hover li,
    .end:hover li {
        background: transparent;
        color: #AB0000;
    }

    .comp-tabli:hover li {
        background: #AB0000;
        color: #FFFFFF;
    }

    .d_d2linkli:hover .std_title5,
    .d_e1libox:hover .d_e1bot .std_title6,
    .d_e1libox:hover .d_e1bot .std_title3 {
        color: #AB0000;
    }

    .d_e1libox:hover .d_but,
    .d_e1libox:hover .d_e1pic::after {
        opacity: 1;
    }

    .d_d1libox:hover .d_d1icon {
        transform: translateX(10px);
    }

    .d_g1pt4bot:hover {
        background: #AB0000;
    }

    .d_g1pt4bot:hover a {
        color: #FFFFFF;
    }

    /* lis-end */
    /* tammy - start */
    .t_headul .t_headli:hover .t_headone a {
        color: #ffffff;
    }

    .t_headul .t_headli:hover .t_headone::before {
        width: 100%;
        opacity: 1;
    }

    .t_headul .t_headlier:hover .t_header::before {
        width: 100%;
        opacity: 1;
    }

    .t_headul .t_headlier:hover .t_header a {
        color: #e46713;
    }

    .t_headlisan a:hover {
        color: #AB0000;
    }

    .t_banbtn .d_bottitl:hover {
        background: #aa2706;
        color: #fff;
    }

    .t_lunswiper .slick-prev:not(.slick-disabled):hover::before,
    .t_lunswiper .slick-next:not(.slick-disabled):hover::before {
        opacity: 0;
    }

    .t_lunswiper .slick-prev:not(.slick-disabled):hover::after,
    .t_lunswiper .slick-next:not(.slick-disabled):hover::after {
        opacity: 1;
    }

    .t_lunswiper2 .slick-prev:not(.slick-disabled):hover::before,
    .t_lunswiper2 .slick-next:not(.slick-disabled):hover::before {
        opacity: 0;
    }

    .t_lunswiper2 .slick-prev:not(.slick-disabled):hover::after,
    .t_lunswiper2 .slick-next:not(.slick-disabled):hover::after {
        opacity: 1;
    }

    .t_btnicfu:hover {
        background: transparent;
    }

    .t_btnicfu:hover .t_btnpt3zi {
        color: #AB0000;
    }

    .t_btnicfu:hover .t_btnic img:first-child {
        opacity: 1;
    }

    .t_btnicfu:hover .t_btnic img:nth-of-type(2) {
        opacity: 0;
    }

    .t_foterli a:hover {
        color: #333;
    }

    .t_fotlizh a:hover {
        opacity: 1;
    }

    .t_sypt4prev:not(.disable):hover img:first-child,
    .t_sypt4next:not(.disable):hover img:first-child {
        opacity: 1;
    }

    .t_sypt4prev:not(.disable):hover img:nth-of-type(2),
    .t_sypt4next:not(.disable):hover img:nth-of-type(2) {
        opacity: 0;
    }

    .d_g1pt2box .swiper-button-prev:not(.swiper-button-disabled):hover::before,
    .d_g1pt2box .swiper-button-next:not(.swiper-button-disabled):hover::before {
        opacity: 1;
    }

    .d_g1pt2box .swiper-button-prev:not(.swiper-button-disabled):hover::after,
    .d_g1pt2box .swiper-button-next:not(.swiper-button-disabled):hover::after {
        opacity: 0;
    }

    .t_b1pt5xon:hover .t_b1pt5ul {
        animation-play-state: paused;
    }

    /* tammy - end */
}

/* tammy - start */
.t_head {
    padding: 0 76px;
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    transition: all 0.36s;
}

.t_logo {
    width: 188px;
}

.t_logo a {
    width: 100%;
    display: flex;
    height: 50px;
    align-items: center;
}

.t_headone a {
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    transition: all 0.36s;
    display: block;
}

.t_headone span {
    font-size: 24px;
}

.t_head .imgbox_cover img:nth-child(2) {
    opacity: 0;
    height: 32px;
    width: auto;
    margin-top: 7px;
}

.hd_pc.isfixed .t_head,
.fp-viewing-1 .hd_pc .t_head,
.fp-viewing-2 .hd_pc .t_head,
.fp-viewing-3 .hd_pc .t_head,
.fp-viewing-4 .hd_pc .t_head {
    top: 0px;
    background: #27815e;
    box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);
}

.hd_pc.isfixed .t_head .imgbox_cover img:nth-child(2),
.fp-viewing-1 .hd_pc .t_head .imgbox_cover img:nth-child(2),
.fp-viewing-2 .hd_pc .t_head .imgbox_cover img:nth-child(2),
.fp-viewing-3 .hd_pc .t_head .imgbox_cover img:nth-child(2),
.fp-viewing-4 .hd_pc .t_head .imgbox_cover img:nth-child(2) {
    opacity: 1;
}

.hd_pc.isfixed .t_head .imgbox_cover img:first-child,
.fp-viewing-1 .hd_pc .t_head .imgbox_cover img:first-child,
.fp-viewing-2 .hd_pc .t_head .imgbox_cover img:first-child,
.fp-viewing-3 .hd_pc .t_head .imgbox_cover img:first-child,
.fp-viewing-4 .hd_pc .t_head .imgbox_cover img:first-child {
    opacity: 0;
}

.hd_pc.isfixed .t_headone a,
.fp-viewing-1 .hd_pc .t_headone a,
.fp-viewing-2 .hd_pc .t_headone a,
.fp-viewing-3 .hd_pc .t_headone a,
.fp-viewing-4 .hd_pc .t_headone a {
    color: #dedede;
}

.t_headli {
    padding: 0 30px;
}

.t_headtop {
    cursor: pointer;
    padding: 0 10px;
    height: 90px;
    display: flex;
    align-items: center;
}

.t_headup {
    width: 24px;
}

.t_headsou {
    margin-left: 64px;
}

.yx_search3xlbox {
    width: 100%;
    height: 350px;
    background: #fff;
    box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);
    display: none;
    position: fixed;
    left: 0;
    top: 90px;
    z-index: 99;
    border-top: 1px solid #ECECEC;
}

.yx_search3_tbox {
    width: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    border-bottom: 1px solid #666;
}

.yx_search3xlbtn {
    width: 27px;
    line-height: 60px;
}

.yx_search3xlbtn img {
    width: 100%;
    transition: all .36s;
}

.yx_search3_xls {
    width: calc(100% - 27px);
    padding-right: 20px;
}

.yx_search3_xls input {
    font-size: 16px;
    line-height: 3.75;
    color: #666;
    width: 100%;
    transition: all .36s;
}

.yx_search3_xls input::placeholder {
    color: #666;
}

.t_headup img:nth-of-type(3) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: scale(0.7);
    transition: all 0.36s;
    opacity: 0;
}

.t_headtop.on .t_headup img:nth-of-type(3),
.hd_pc.isfixed .t_headtop.on .t_headup img:nth-of-type(3) {
    opacity: 1;
}

.t_headtop.on .t_headup img:first-child,
.hd_pc.isfixed .t_headtop.on .t_headup img:first-child {
    opacity: 0;
}

.t_headtop.on .t_headup img:nth-of-type(2),
.hd_pc.isfixed .t_headtop.on .t_headup img:nth-of-type(2) {
    opacity: 0;
}

.t_headuler {
    position: fixed;
    top: 90px;
    padding-right: 76px;
    right: 0;
    border-top: 1px solid #ECECEC;
    background: #fff;
    /*box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);*/
    display: flex;
    justify-content: flex-end;
    z-index: -1;
    display: none;
    text-align: center;
    font-size: 0;
    height: 50px;
}

.t_headuler_bg {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100vw;
    height: 50px;
    background: #fff;
    display: none;
    z-index: -2;
    box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);
}   


.t_header a {
    font-size: 16px;
    color: #333;
    transition: all 0.36s;
    line-height: 50px;
    display: block;
}

.t_headlier {
    padding: 0 65px;
    display: inline-block;
    float: none;
}

    .t_headlier:nth-child(1) {
        padding-left: 0;
    }

    .t_headlier:nth-last-child(1) {
        padding-right: 30px;
    }


.t_headulsan {
    position: fixed;
    top: 178px;
    width: 100%;
    left: 0;
    border-top: 1px solid #ECECEC;
    background: #fff;
    box-shadow: 0px 4px 50px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    z-index: -1;
    display: none;
    text-align: center;
    font-size: 0;
}

.t_headlisan a {
    font-size: 16px;
    color: #333;
    line-height: 88px;
    display: block;
    transition: all 0.36s;
}

.t_headlisan {
    padding: 0 60px;
    display: inline-block;
    float: none;
}

.t_headone,
.t_header {
    position: relative;
}

    .t_headone::before,
    .t_header::before {
        content: '';
        height: 3px;
        width: 0;
        opacity: 0;
        background: #e46713;
        /* 按钮颜色 */
        position: absolute;
        bottom: 0px;
        left: 50%;
        transition: all 0.36s;
        transform: translateX(-50%);
    }

.t_headul .t_headli.yxnav_active1 .t_headone a {
    color: #A6634D;
    /* 按钮颜色 */
}

.t_headul .t_headli.yxnav_active1 .t_headone::before {
    width: 100%;
    opacity: 1;
}

.t_headul .t_headlier.yxnav_active2 .t_header::before {
    width: 100%;
    opacity: 1;
}

.t_headul .t_headlier.yxnav_active2 .t_header a {
    color: #A6634D;
    /* 按钮颜色 */
}

.t_headlisan.yxnav_active3 a {
    color: #A6634D;
    /* 按钮颜色 */
}

.phnav_menu {
    background: #FAFAFA;
}

.ph_nav a {
    color: #333;
}

.ph_nav li.yxnav_active1>.phnav_lisbox a {
    color: #A6634D;
    /* 按钮颜色 */
}

.ph_nav li.yxnav_active2>.phnav_lisbox a {
    color: #A6634D;
    /* 按钮颜色 */
}

.ph_nav li.yxnav_active3>.phnav_lisbox a {
    color: #A6634D;
    /* 按钮颜色 */
}

.phnav_icon::after,
.phnav_icon::before {
    background: #333;
}

.phnav_lisbox {
    border-bottom: 1px solid rgba(51, 51, 51, .4);
}

.phs_form input {
    border: 1px solid rgba(51, 51, 51, .4);
    color: #333;
}

.phs_form input::placeholder {
    color: #666;
}

.phs_form .iconfont {
    color: rgba(51, 51, 51, .6);
}

.t_syul {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 99;
}

.banner,
.ban_slick {
    height: 100%;
}

.banner .slick-slider,
.banner .slick-list,
.banner .slick-track {
    height: 100%;
}

.ban_li,
.ban_imgbox {
    height: 100%;
}

.ban_imgbox img {
    height: 100%;
    object-fit: cover;
}

.ban_li .ban_title {
    font-size: 60px;
    color: #fff;
    margin-bottom: 36px;
}

.ban_txtbox {
    text-align: center;
}

.t_banbtn {
    display: inline-block;
}

.t_banbtn .d_bottitl {
    border: 1px solid #ca330d;
    background: #ca330d;
    color: #fff;
    font-size: 18px;
    padding: 12px 47px;
    transition: all 0.36s;
    font-weight: 800;
    letter-spacing: 2px;
}

.ban_txtbox .std_duan20 {
    padding: 30px 0;
    position: relative;
}

.ban_txtbox .std_duan20::before {
    content: '';
    height: 2px;
    width: 77px;
    position: absolute;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.ban_txtbox .t_banbtn {
    margin-top: 52px;
}

/*.ban_imgbox::before{
    background: rgba(0,0,0,.2);
}*/

.ban_li .ban_title,
.ban_li .std_duan20 p,
.ban_li .std_title4,
.slick-slider {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.t_lunzhong {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t_lidian {
    width: 40px;
    height: 40px;
    position: relative;
    border: 0;
    display: inline-block;
    margin: 0 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    cursor: pointer;
}

.t_lundian .t_lidian .progress {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.t_lundian .t_lidian .progress {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: absolute;
    opacity: 0;
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

.t_lundian .t_lidian .progress .progress-left {
    left: 0;
}

.t_lundian .t_lidian .progress .progress-right {
    right: 0;
}

.t_lundian .t_lidian .progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.t_lundian .t_lidian .progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.t_lundian .t_lidian .progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.t_lundian .t_lidian .progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 2px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #fff;
    box-sizing: border-box;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.t_lundian .t_lidian.active .progress {
    opacity: 1;
}

.t_lundian {
    position: absolute;
    bottom: 70px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.t_lundian .t_lidian.active .progress .progress-left .progress-bar {
    -webkit-animation: loading-2 2s linear forwards 2s;
    animation: loading-2 2s linear forwards 2s;
}

.t_lundian .t_lidian.active .progress .progress-right .progress-bar {
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-animation: loading-1 2s linear forwards;
    animation: loading-1 2s linear forwards;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.t_lundian .t_lidian .progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-right: 0;
}

.t_syptbg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.t_sypt2xin {
    margin-right: calc(680px - 50vw);
    display: flex;
    align-items: center;
}

.t_sypt2ul {
    width: 33.5%;
    padding-bottom: 100px;
}

.t_sypt2now {
    color: #ab0000;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.2;
}

.t_sypt2tal,
.t_sypt2xu {
    color: #999;
    font-size: 20px;
    line-height: 2;
}

.t_sypt2 .cont1360 {
    position: relative;
    z-index: 4;
}

.t_sypt2xu {
    margin-bottom: 23px;
}

.t_sypt2li .std_font46 {
    margin-bottom: 27px;
}

.t_lunswiper .slick-prev,
.t_lunswiper .slick-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 3;
    overflow: hidden;
}

.t_lunswiper .slick-prev::before,
.t_lunswiper .slick-next::before,
.t_lunswiper .slick-prev::after,
.t_lunswiper .slick-next::after {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.36s;
}

.t_lunswiper .slick-prev::after,
.t_lunswiper .slick-next::after {
    opacity: 0;
}

.t_lunswiper .slick-prev::before {
    content: url(../images/a1_icon2.svg);
}

.t_lunswiper .slick-next::before {
    content: url(../images/a1_icon3.svg);
}

.t_lunswiper .slick-prev::after {
    content: url(../images/a1_icon6h.svg);
}

.t_lunswiper .slick-next::after {
    content: url(../images/a1_icon4.svg);
}

.t_sypt2ul .slick-prev,
.t_sypt2ul .slick-next {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    top: auto;
    bottom: 0;
}

.t_sypt2ul .slick-next {
    right: auto;
    left: 62px;
}

.slick-arrow.slick-disabled {
    cursor: auto;
    opacity: .3;
}

.t_sypt2rg {
    width: 66.5%;
    padding-left: 80px;
}

.t_sypt2picli .imgbox_cover {
    height: 100vh;
}

.t_sypt2picul {
    overflow: hidden;
    padding-left: 180px;
}

.t_sypt2picli img {
    object-fit: cover;
}

.t_sypt2rg {
    position: relative;
}

.t_sypt2rg::before {
    width: 1946px;
    height: 1946px;
    border: 200px solid #fff;
    box-shadow: 0 0 31px 3px rgba(0, 0, 0, .05);
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    z-index: 6;
    border-radius: 50%;
    display: block;
}

.t_sypt2 {
    overflow: hidden;
}

.t_sypt2lie {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(171, 0, 0, .2);
    display: inline-block;
    cursor: pointer;
    transition: all 0.36s;
}

.t_sypt2dots {
    width: 1946px;
    height: 1946px;
    position: absolute;
    /* height: 100vh; */
    z-index: 23;
    left: 80px;
    /* width: 200px; */
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.t_sypt2lie .imgbox_cover {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t_sypt2lie img:nth-of-type(2) {
    opacity: 0;
}

.t_sypt2dotli {
    text-align: center;
    font-size: 0;
}

.t_sypt2box {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t_sypt2dots .slick-list {
    padding: 0 !important;
}

.t_topimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.t_topimg img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.section {
    overflow: hidden;
    position: relative;
}

.t_sypt3ic {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 15px;
}

.t_sypt3ic img {
    max-width: 100%;
}

.t_sypt3nr {
    position: relative;
    z-index: 6;
    top: 0;
    height: 100vh;
}

.t_sypt3shu .std_font46 {
    color: #ba0707;
    font-weight: bold;
}

.t_sypt3shu {
    color: #ba0707;
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 6px;
}

.t_btnpt3zi {
    font-size: 14px;
    color: #fff;
    line-height: 48px;
    margin-right: 24px;
    transition: all 0.36s;
}

.t_btnic {
    width: 24px;
}

.t_btnicfu {
    padding: 0 30px;
    border-radius: 25px;
    border: 1px solid #AB0000;
    background: #AB0000;
    transition: all 0.36s;
    display: flex;
    align-items: center;
}

.t_sypt3an {
    display: inline-block;
}

.t_sypt3li {
    height: 48vh;
    position: relative;
    width: 26%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
}

.t_sypt3li::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e0e0e0;
}

.t_sypt3dian {
    width: 5px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 50%;
    position: absolute;
    left: -2px;
    bottom: -5px;
}

.t_sypt3ul {
    margin-bottom: 120px;
}

.t_sypt4zh {
    position: absolute;
    width: 27.2%;
    bottom: 0;
    right: 0;
}

.t_sypt4zh img {
    width: 100%;
}

.t_syptbg.t_syptbg1 {
    height: 50%;
}

.t_syptbg.t_syptbg2 {
    height: 50%;
    top: 50%;
}

.t_sypt4nr {
    position: relative;
    z-index: 2;
}

.t_sypt4nr .std_font46 {
    color: #333;
    text-align: center;
}

.t_btnic img:first-child {
    opacity: 0;
}

.t_sypt4li a {
    display: block;
    /* padding: 0 12px; */
}

.t_sypt4xin {
    transition: all 0.36s;
}

.t_sypt4li .std_title6 {
    color: #AB0000;
}

.t_sypt4li.slick-active.slick-current .t_sypt4xia,
.t_sypt4li.on .t_sypt4xia {
    padding: 33px 40px 40px;
}

.t_sypt4li.slick-active.slick-current .t_sypt4xin,
.t_sypt4li.on .t_sypt4xin {
    background: #fff;
    box-shadow: 0 0 31px 3px rgba(0, 0, 0, .05);
}

.t_sypt4li.slick-active.slick-current .std_title3,
.t_sypt4li.on .std_title3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.t_sypt4li.slick-active.slick-current .std_title6,
.t_sypt4li.on .std_title6 {
    margin-bottom: 6px;
}

.t_sypt4li.slick-active.slick-current .std_word2,
.t_sypt4li.on .std_word2 {
    opacity: 1;
    pointer-events: all;
}

.t_sypt4xia {
    padding-top: 26px;
}

.t_sypt4li .std_title3 {
    font-size: 20px;
}

.t_sypt4li .std_title6 {
    margin-bottom: 12px;
}

.t_sypt4li .std_word2 {
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

.t_sypt4box {
    margin-right: calc(680px - 50vw);
    overflow: hidden;
    padding: 30px 0;
}

.t_sypt4box .slick-list {
    overflow: visible;
}

.t_sypt4box .slick-slider .slick-track {
    display: flex;
}

.t_sypt4li {
    transition: width .5s, transform .5s, opacity 1s, margin .5s;
}

/* b1 */
.t_b1pt1 {
    height: 100vh;
}

.t_b1pt1_imgbox {
    position: relative;
}

.t_b1pt1_imgbox::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .2);
    z-index: 2;
}

.t_b1year {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
}

.t_b1year span {
    margin-left: 20px;
    font-size: 80px;
    font-family: 'helveticaneue_lt_55_roman' !important;
    color: #fff;
}

.t_b1pt1 .pos_center {
    z-index: 10;
}

.t_b1pt1 .std_title4 p {
    color: #fff;
    line-height: 2;
}

.t_b1pt1 .std_title1 {
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px;
}

.t_b1pt1nr {
    max-width: 680px;
}

.t_b1pt1zi {
    font-size: 18px;
    color: #fff;
    line-height: 1.75;
    margin-right: 10px;
}

.t_b1pt1ic {
    width: 10px;
}

.t_b1pt1ic img {
    width: 100%;
}

.t_b1pt1xia {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 64px;
    z-index: 10;
}

.t_b1pt1 {
    position: relative;
}

.t_b1pt1_imgbox {
    height: 100vh;
}

.t_b1pt1_imgbox img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t_b1pt1btn {
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
}

.t_b1pt1dian {
    display: inline-block;
}

.t_b1pt2liy {
    font-size: 200px;
    color: #F4F4F4;
    transition: all 0.36s;
    font-family: 'helveticaneue_lt_55_roman1' !important;
}

.t_b1pt2uly .slick-list {
    padding: 0 !important;
}

.t_b1pt2liy.on {
    color: #AB0000;
}

.t_b1pt2year {
    width: 42.6%;
}

.t_b1pt2uly {
    height: 600px;
}

.t_b1pt2uly .mCSB_scrollTools,
.t_b1pt2uly .mCSB_scrollTools .mCSB_buttonDown,
.t_b1pt2uly .mCSB_scrollTools .mCSB_buttonLeft,
.t_b1pt2uly .mCSB_scrollTools .mCSB_buttonRight,
.t_b1pt2uly .mCSB_scrollTools .mCSB_buttonUp,
.t_b1pt2uly .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    opacity: 0 !important;
    pointer-events: none !important;
}

.t_b1pt2uly .mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.t_b1pt2uly .mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,
.t_b1pt2uly .mCustomScrollBox:hover>.mCSB_scrollTools,
.t_b1pt2uly .mCustomScrollBox:hover~.mCSB_scrollTools,
.t_b1pt2uly .mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.t_b1pt2uly .mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag {
    opacity: 0;
}

.t_b1pt2zh {
    position: absolute;
    width: 24px;
    left: 42.6%;
    top: 50%;
    transform: translateY(-50%);
}

.t_b1pt2zh img {
    width: 100%;
}

.t_b1pt2nr {
    position: relative;
}

.t_b1pt2rg {
    width: 57.4%;
    padding-left: 24px;
    padding-top: calc(40px + 72px);
}

.t_b1pt2wen {
    padding-left: 127px;
    padding-right: 60px;
}

.t_b1pt2span {
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    line-height: 40px;
    background: #AB0000;
    padding: 0 25px;
    display: inline-block;
    margin-bottom: 19px;
}

.t_b1pt2pic {
    width: 48%;
}

.t_b1pt2pic img {
    width: 100%;
}

.t_b1pt2biao {
    margin-bottom: 64px;
}

.t_b1pt2lie {
    margin-bottom: 88px;
}

.t_b1pt2 .cont1360 {
    position: relative;
}

.t_b1pt2 .std_title1 {
    position: absolute;
    top: 0;
    font-weight: normal;
    left: calc(42.6% + 151px);
    z-index: 10;
}

.t_lunswiper2 .slick-prev,
.t_lunswiper2 .slick-next {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0px 3px 10px 2px rgba(219, 226, 235, 0.4);
}

.t_lunswiper2 .slick-prev::before,
.t_lunswiper2 .slick-next::before,
.t_lunswiper2 .slick-prev::after,
.t_lunswiper2 .slick-next::after {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.36s;
}

.t_lunswiper2 .slick-prev::after,
.t_lunswiper2 .slick-next::after {
    opacity: 0;
}

.t_lunswiper2 .slick-prev::before {
    content: url(../images/b1_icon4.svg);
}

.t_lunswiper2 .slick-next::before {
    content: url(../images/b1_icon3.svg);
}

.t_lunswiper2 .slick-prev::after {
    content: url(../images/a1_icon5.svg);
}

.t_lunswiper2 .slick-next::after {
    content: url(../images/b1_icon3h.svg);
}

.t_b1pt2wen .slick-prev {
    left: auto;
    right: 0;
    top: 30%;
}

.t_b1pt2wen .slick-next {
    left: auto;
    right: 0;
    top: calc(30% + 68px);
}

.t_b1pt4box {
    margin: 0 -5px;
}

.t_b1pt4pic {
    width: 100%;
}

.t_b1pt4pic img {
    width: 100%;
}

.t_b1pt4 {
    background: #FEFEFE;
}

.d_b1inpage .std_title1 {
    font-weight: normal;
}

.t_b1pt4box {
    position: relative;
}

.t_b1pt4dian::before {
    content: '';
    position: absolute;
    background: #AB0000;
    opacity: 1;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 4px;
    border-radius: 50%;
}

.t_b1pt4dian {
    position: absolute;
    transform: translate(-50%, -50%);
}

.t_b1pt4li {
    width: 20px;
    height: 10px;
    position: absolute;
    background: #AB0000;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: .5;
}

.t_b1pt4li::before {
    content: '';
    width: 50px;
    height: 25px;
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0.56) 66.67%, #FF0000 100%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: .5;
}

.t_b1pt4zh {
    width: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    z-index: 10;
}

.t_b1pt4zh img,
.t_b1pt4name img {
    position: relative;
    animation: fumove 3s linear infinite;
}

.t_b1pt4name {
    width: 211px;
    position: absolute;
    left: 36px;
    top: -114px;
    z-index: 10;
}

.t_b1pt4name img {
    width: 100%;
}

.d_f1lab span {
    color: #FF4F30;
}

@keyframes fumove {
    0% {
        top: 4px;
    }

    50% {
        top: -4px;
    }

    100% {
        top: 4px;
    }
}

.t_b1pt4kuo,
.t_b1pt4jia {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.t_b1pt4kuo::before,
.t_b1pt4kuo::after,
.t_b1pt4jia::before {
    content: '';
    background-image: url(../images/b1_img7.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-origin: content-box;
    background-size: contain;
    animation: kuosan 4s linear infinite;
}

.t_b1pt4kuo::after {
    animation: kuosan 4s linear infinite 1.6s;
}

.t_b1pt4jia::before {
    animation: kuosan 4s linear infinite 2.6s;
}

@keyframes kuosan {
    0% {
        width: 100%;
        height: 100%;
        background-image: url(../images/b1_img7.png);
    }

    22.8% {
        width: 16vw;
        height: 16vw;
        background-image: url(../images/b1_img7.png);
    }

    37.15% {
        width: 26vw;
        height: 26vw;
        background-image: url(../images/b1_img6.png);
    }

    72.857% {
        width: 51vw;
        height: 51vw;
        background-image: url(../images/b1_img5.png);
    }

    100% {
        width: 70vw;
        height: 70vw;
        background-image: url(../images/b1_img4.png);
    }
}

.t_b1pt4 {
    overflow: hidden;
}

.t_b1pt4shu {
    color: #AB0000;
    font-size: 20px;
    font-weight: bold;
    margin-right: 26px;
}

.t_b1pt4shu .demo_num {
    font-size: 50px;
    font-weight: bold;
    color: #AB0000;
}

.t_b1pt4na {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.t_b1pt4wli {
    display: flex;
    align-items: flex-end;
}

.t_b1pt4wul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.t_b1pt4wli {
    padding: 0 70px;
}

.t_b1pt4w {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 90px;
    z-index: 10;
}

.t_b1pt4 .cont1360 {
    position: relative;
    z-index: 2;
}

.t_b1pt3 {
    position: relative;
    overflow: hidden;
}

.t_b1pt3bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.t_b1pt3bg img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.t_b1pt3nr {
    position: relative;
    z-index: 3;
}

.t_b1pt3le {
    width: 65.8%;
}

.t_b1pt3di {
    width: 100%;
}

.t_b1pt3di img {
    width: 100%;
}

.t_b1pt3li {
    padding: 0 18px;
    width: 20%;
}

.t_b1pt3ul {
    margin: 0 -18px;
}

.t_b1pt3top {
    padding-left: 140px;
    padding-right: 40px;
}

.t_b1pt3li .imgbox_cover {
    cursor: pointer;
}

.t_b1pt3rg {
    width: 34.2%;
    padding-right: calc(50vw - 680px);
}

.t_b1pt3he .std_title2 {
    color: #666;
    font-weight: normal;
    margin-bottom: 63px;
}

.t_b1pt3quan {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.t_b1pt3jin {
    width: 90px;
    text-align: center;
}

.t_b1pt3jin {
    color: #999;
    font-size: 18px;
    line-height: 54px;
}

.t_b1pt3he {
    display: inline-block;
}

.t_b1pt3con {
    width: 198px;
}

.t_lunswiper2.t_lunswiper3 .slick-prev::before {
    content: url(../images/b1_icon2.svg);
}

.t_lunswiper2.t_lunswiper3 .slick-next::before {
    content: url(../images/b1_icon1.svg);
}

.t_lunswiper2.t_lunswiper3 .slick-prev::after {
    content: url(../images/a1_icon2.svg);
}

.t_lunswiper2.t_lunswiper3 .slick-next::after {
    content: url(../images/a1_icon3.svg);
}

.t_b1pt3ul.slick-slider {
    position: static;
}

.t_b1pt3ul .slick-next {
    right: calc(50vw - 680px);
}

.t_b1pt3ul .slick-prev {
    left: auto;
    right: calc(calc(50vw - 680px) + 144px);
}

.t_b1pt3rg .t_b1pt3he {
    padding-top: 74px;
}

.t_b1pt3one {
    position: relative;
}

.t_b1pt3ul .slick-next,
.t_b1pt3ul .slick-prev {
    transform: translate(0);
    top: 182px;
}

.t_b1pt3er .t_b1pt3but {
    padding-left: calc(50vw - 680px);
    margin-bottom: 60px;
}

.t_b1pt3li2 {
    padding: 0 18px;
    width: 20%;
}

.t_b1pt3li2 .imgbox_cover {
    width: 100%;
    cursor: pointer;
}

.t_b1pt3ul2 {
    margin: 0 -18px;
}

.t_b1pt3xtop {
    padding: 0 140px;
}

.t_b1pt3ul2 .slick-prev {
    left: calc(calc(50vw - 680px) - 122px);
}

.t_b1pt3ul2 .slick-next {
    right: auto;
    left: calc(calc(50vw - 680px) + 22px);
}

.t_b1pt3ul2 .slick-prev,
.t_b1pt3ul2 .slick-next {
    transform: translate(0);
    top: -114px;
}

/* .t_b1pt3ul2 .slick-list{
    overflow: visible;
} */
.t_b1pt3one {
    margin-top: 60px;
}

.t_b1pt4 .d_b1inpage .std_title1 {
    position: relative;
    z-index: 10;
}

.t_b1pt5li {
    padding: 0 10px;
}

.t_b1pt5liz {
    margin-bottom: 20px;
    border: 1px solid #ECECEC;
    width: 257px;
    max-width: 100%;
}

.t_b1pt5xon .tempWrap {
    width: 100% !important;
}

.t_b1pt5li {
    width: 14.285714%;
}

.t_b1pt5xon {
    position: relative;
}

.t_b1pt5xon::before,
.t_b1pt5xon::after {
    content: '';
    height: 100%;
    width: 255px;
    position: absolute;
    top: 0;
    z-index: 10;
}

.t_b1pt5xon::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.t_b1pt5xon::after {
    right: 0;
    background: linear-gradient(-90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.t_b1pt5,
.t_b1pt4 {
    position: relative;
}

.t_b1pt5bg {
    width: 76.77%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.t_b1pt5bg img {
    width: 100%;
}

.t_b1pt5 .t_b1pt5xon,
.t_b1pt5 .cont1360 {
    position: relative;
    z-index: 10;
}

/* footer */
.footer {
    background: linear-gradient(180deg, #c8601b 0%, #6c5448 100%);
    position: relative;
    overflow: hidden;
}

/* 装饰性背景元素 */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A6634D, #c2601e, #A6634D);
    z-index: 10;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.t_fotup {
    padding-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

/* 添加分隔线 */
.t_fotup::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.t_fotul {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

/* 为每个列添加装饰性边框 */
.t_fotcol {
    position: relative;
    width: calc(25% - 15px);
    /* 4列布局，减去间距 */
    margin-right: 20px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.t_fotcol:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* 移除最后一个列的右侧margin */
.t_fotcol:last-child {
    margin-right: 0;
}

.t_fotone a {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
    transition: all 0.36s;
    position: relative;
    padding-left: 16px;
    font-weight: 600;
}

/* 添加标题前的装饰元素 */
.t_fotone a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #e46713, #ffffff);
    border-radius: 2px;
}

.t_fotone a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.t_foterli a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    /* line-height: 1.6;*/
    transition: all 0.36s;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.t_foterli a:hover {
    color: #fff;
    padding-left: 8px;
}

/* 添加链接悬停时的装饰线 */

.t_foterli a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transition: width 0.36s ease;
}

.t_foterli a:hover::after {
    width: 100%;
}

/* Logo下方联系信息样式 */
.t_fotcontact {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.t_fotcontact .t_foterul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t_contact_icon {
    margin-right: 8px;
    font-style: normal;
    vertical-align: middle;
    opacity: 0.8;
}

.t_foterli span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    vertical-align: middle;
    line-height: 1.4;
}

/* 底部版权信息区域优化 */

.t_fotxle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.std_word2 {
    display: inline-block;
}

.std_word2 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.t_fotulzh {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.t_fotlizh {
    display: inline-block !important;
    margin: 0 !important;
}

.t_fotlizh a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.t_fotlizh a:hover {
    color: #D9611E;
}

.t_foterli {
    margin-bottom: 10px;
}

.t_foterli .std_word1 p {
    font-size: 16px;
    color: #999;
    line-height: 2;
    transition: all 0.36s;
}

.t_foteric {
    width: 18px;
    line-height: 32px;
    margin-right: 10px;
}

.t_foteric img {
    width: 100%;
}

.t_fotone {
    margin-bottom: 27px;
}

.t_diwxpic {
    width: 100%;
    cursor: pointer;
}

.t_diwxpic img {
    width: 100%;
}

.t_diwx {
    position: relative;
    margin-top: 45px;
    width: 26px;
}

.t_dicode {
    width: 110px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    background: #fff;
    padding: 5px;
    display: none;
}

.t_dicode::before {
    content: '';
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.t_fotxle .std_word2 p {
    font-size: 14px;
    color: #999;
    opacity: .6;
    transition: all 0.36s;
    line-height: 1.5;
}

.t_fotxle .std_word2 p a {
    color: #999;
}

.span1,
.span2 {
    margin-left: 20px;
}

.t_fotlizh a {
    font-size: 14px;
    color: #999;
    opacity: .6;
    line-height: 1.5;
    transition: all 0.36s;
}

.t_fotlizh {
    padding: 0 10px;
    position: relative;
}

.t_fotulzh {
    margin: 0 -10px;
}

.t_fotlogo {
    width: 180px;
    margin: 30px auto;
    text-align: center;
}

.t_fotlogo img {
    width: 100%;
}

.t_fotlogo a {
    display: block;
    width: 100%;
}

.t_fotxia {
    padding-bottom: 20px;
}

.footer .cont1360 {
    position: relative;
}

.t_fotbgimg {
    width: 79.853%;
    position: absolute;
    bottom: 0;
    left: 3%;
}

.t_fotbgimg img {
    width: 100%;
}

.footer .cont1360 .t_fotup,
.footer .cont1360 .t_fotxia {
    position: relative;
    z-index: 6;
}

.t_retopic {
    width: 34px;
    margin: 0 auto;
    margin-bottom: 8px;
}

.t_retopic img {
    width: 100%;
}

.t_retopzi {
    font-size: 14px;
    color: #999;
    line-height: 2;
}

.t_retop {
    text-align: center;
    position: fixed;
    z-index: 999;
    right: 50px;
    bottom: 58px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.36s;
}

.t_retop.on {
    opacity: 1;
    pointer-events: all;
}

.t_sypage .t_retop {
    opacity: 1;
    pointer-events: all;
}

.fp-viewing-0 .t_sypage .t_retop {
    opacity: 0;
    pointer-events: none;
}

.t_mulu {
    font-family: 'helveticaneue_lt_55_roman' !important;
    font-size: 16px;
    color: #999;
    transition: all 0.36s;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.t_mulu::before {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ab0000;
    opacity: 0;
    transition: all 0.36s;
}

.t_syli a {
    position: relative;
    padding-left: 75px;
}

.t_syli {
    padding: 11px 0;
}

.t_syli a::before {
    content: '';
    width: 45px;
    height: 2px;
    position: absolute;
    left: 0;
    background: #AB0000;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    width: 0;
    transition: all 0.36s;
}

.fp-viewing-0 .t_syli:nth-of-type(1) a::before,
.fp-viewing-1 .t_syli:nth-of-type(2) a::before,
.fp-viewing-2 .t_syli:nth-of-type(3) a::before,
.fp-viewing-3 .t_syli:nth-of-type(4) a::before,
.fp-viewing-4 .t_syli:nth-of-type(5) a::before {
    width: 45px;
    opacity: 1;
}

.fp-viewing-0 .t_syli:nth-of-type(1) a::before {
    background: #fff;
}

.fp-viewing-0 .t_syli:nth-of-type(1) .t_mulu::before,
.fp-viewing-1 .t_syli:nth-of-type(2) .t_mulu::before,
.fp-viewing-2 .t_syli:nth-of-type(3) .t_mulu::before,
.fp-viewing-3 .t_syli:nth-of-type(4) .t_mulu::before,
.fp-viewing-4 .t_syli:nth-of-type(5) .t_mulu::before {
    opacity: 1;
}

.fp-viewing-0 .t_syli:nth-of-type(1) .t_mulu {
    color: #fff;
}

.fp-viewing-1 .t_syli:nth-of-type(2) .t_mulu,
.fp-viewing-2 .t_syli:nth-of-type(3) .t_mulu,
.fp-viewing-3 .t_syli:nth-of-type(4) .t_mulu,
.fp-viewing-4 .t_syli:nth-of-type(5) .t_mulu {
    color: #AB0000;
}

.t_sypt3li:last-of-type .t_sypt3dian::before,
.t_sypt3li:last-of-type .t_sypt3dian::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #e0e0e0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
}

.t_sypt3li:last-of-type .t_sypt3dian::before {
    animation: sypt3kuo 3s linear infinite;
}

.t_sypt3li:last-of-type .t_sypt3dian::after {
    animation: sypt3kuo 3s linear 1.5s infinite;
}

@keyframes sypt3kuo {
    0% {
        width: 5px;
        height: 5px;
        opacity: 1;
    }

    20% {
        width: 15px;
        height: 15px;
        opacity: 1;
    }

    74% {
        width: 42px;
        height: 42px;
        opacity: 1;
    }

    100% {
        width: 55px;
        height: 55px;
        opacity: 0;
    }
}

.t_sypt4ul .slick-prev,
.t_sypt4ul .slick-next {
    transform: translate(0);
    bottom: 0;
    top: auto;
}

.t_sypt4ul {
    padding-bottom: 88px;
}

.t_sypt4ul .slick-prev {
    left: 12px;
}

.t_sypt4ul .slick-next {
    right: auto;
    left: 73px;
}

.slick-dots li,
.t_sypt4dli {
    width: 10px;
    height: 10px;
    background: #ab0000;
    opacity: .2;
    margin: 0 12px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li.slick-active,
.t_sypt4dli.active {
    opacity: 1;
    background: #ab0000;
}

.t_sypt4ul .slick-dots {
    text-align: left;
    padding-left: 150px;
    bottom: 19px;
}

/* .t_sypt4li.slick-current */
.t_sypt4li.slick-current.slick-active {
    /* transform: scaleX(1.2); */
    transform: scale(1, 1) translate3d(0px, 0px, 0px);
    width: 540px;
    opacity: 1;
}

.t_sypt4ul {
    position: relative;
}

.t_sypt4li {
    transform-origin: left top;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center bottom;
    transition: width .5s, transform .5s, opacity .5s, margin .5s .5s;
}

.t_sypt4li.on {
    width: 498px;
    transform: scale(1, 1) translate3d(0px, 0px, 0px);
    opacity: 1;
}

.t_sypt4li {
    width: 384px;
    opacity: 1;
}

.t_sypt4li.next1 {
    transform: scale(1, 1) translate3d(528px, 0px, 0px);
}

.t_sypt4li.next2 {
    transform: scale(1, 1) translate3d(942px, 0px, 0px);
}

.t_sypt4li.next3 {
    transform: scale(1, 1) translate3d(1356px, 0px, 0px);
}

.t_sypt4li {
    transform: scale(1, 1) translate3d(1770px, 0px, 0px);
}

.t_sypt4box {
    height: 700px;
    position: relative;
}

.t_sypt4li.previous {
    transform: scale(0, 0) translate3d(0px, 0px, 0px);
    width: 498px;
    opacity: 0;
}

.t_sypt4prev,
.t_sypt4next {
    width: 48px;
    cursor: pointer;
}

.t_sypt4con {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}

.t_sypt4prev {
    margin-right: 12px;
}

.t_sypt4dots {
    margin-left: 26px;
}

.t_sypt4dli {
    transition: all 0.36s;
}

.t_sypt4prev img:first-child,
.t_sypt4next img:first-child {
    opacity: 0;
}

.t_sypt4prev.disable,
.t_sypt4next.disable {
    cursor: auto;
    opacity: .3;
    pointer-events: none;
}

.t_sypt4ul {
    height: 100%;
}

.t_sypt4li .std_title3 {
    max-height: 108px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.t_sypt4li .std_word2 {
    max-height: 49px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.t_sypt2dotli {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-973px, -50%);
    transform-origin: center 973px;
    width: 200px;
}

.t_sypt2dotli2 {
    top: calc(57%);
    left: 50.5%;
}

.t_sypt2dotli_3 {
    top: calc(43%);
    left: 50.5%;
}

.t_sypt2dotli3 {
    top: calc(63.9%);
    left: 52.2%;
}

.t_sypt2dotli_2 {
    top: calc(36.1%);
    left: 52.2%;
}

.t_sypt2dotli4 {
    top: calc(70.4%);
    left: 54.9%;
}

.t_sypt2dotli_1 {
    top: calc(29.6%);
    left: 54.9%;
}

.t_sypt2dotli5 {
    top: calc(76.4%);
    left: 58.6%;
}

.t_sypt2dotli6 {
    top: calc(81.7%);
    left: 63.15%;
}

.t_sypt2dotli7 {
    top: calc(86.3%);
    left: 68.5%;
}

.t_sypt2dotli8 {
    top: calc(90%);
    left: 74.5%;
}

.t_sypt2dotli9 {
    top: calc(92.6%);
    left: 81.1%;
}

.t_sypt2dotli10 {
    top: calc(94.3%);
    left: 87.8%;
}

.t_sypt2dotli11 {
    top: calc(94.9%);
    left: 94.8%;
}

.t_sypt2dotli12 {
    top: calc(94.4%);
    left: 101.9%;
}

.t_sypt2lie {
    cursor: pointer;
    pointer-events: all;
}

.t_sypt2dotli.on .t_sypt2lie {
    border: 1px solid rgba(171, 0, 0, 1);
    background: #ab0000;
}

.t_sypt2dotli.on .t_sypt2lie img:nth-of-type(2) {
    opacity: 1;
}

.t_sypt2dotli.on .t_sypt2lie img:first-child {
    opacity: 0;
}

.t_sypt2lie::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, transparent, rgba(171, 0, 0, .2));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.36s;
}

.t_sypt2dotli.on .t_sypt2lie::before {
    opacity: 1;
    animation: sypt2kuo 2s ease-out infinite;
}

@keyframes sypt2kuo {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    88% {
        width: calc(100% + 44px);
        height: calc(100% + 44px);
        opacity: 1;
    }

    100% {
        width: calc(100% + 50px);
        height: calc(100% + 50px);
        opacity: 0;
    }
}

.t_sypt2dots {
    transform: translateY(-50%) rotate(0);
    transition: all 0.4s;
}

/* sypt2 留着，辅助修改位置用 */
/* .t_sypt2picul{
    position: relative;
}
.t_sypt2picul::before {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f;
    position: absolute;
    top: calc(63%);
    transform: translate(-50%,-50%);
    left: 110px;
    z-index: 10;
}
.t_sypt2rg::after{
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 180px;
    z-index: 10;
} */
.t_mainxin {
    position: relative;
}

.t_mainxie {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 24px;
}

.t_mianli a {
    color: #999;
    font-size: 14px;
    line-height: 1.75;
    transition: all 0.36s;
}

.t_mianli {
    position: relative;
    padding: 0 10px;
}

.t_mianul {
    margin: 0 -10px;
}

.t_mianli::before {
    content: '>';
    position: absolute;
    color: #999;
    font-size: 14px;
    line-height: 1.75;
    right: -6px;
}

.t_mianli:last-child::before {
    display: none;
}

.d_botbox {
    position: absolute;
    bottom: 52px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    margin-top: 0;
}

.t_inpage .banner .std_title4 {
    margin-top: 9px;
}

.d_d2inpage .t_head::before,
.hd_pc.isfixed .t_head::before {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    background: #ECECEC;
    bottom: 0;
    left: 0;
}

.d_d2inpage .main {
    margin-top: 90px;
}

.d_f1inpage .t_mianli a {
    color: #fff;
}

.d_f1inpage .t_mianli::before {
    color: #fff;
}

.d_f1inpage .t_mainxie {
    padding-top: 0;
    top: -60px;
}

.ban_li .ban_title {
    line-height: 1.2;
}

.t_sypt4nr .std_font46 {
    margin-bottom: 10px;
}

.phnav_logo {
    width: 125px;
}

.d_botbox {
    margin-top: 0 !important;
}

.d_g1pt2box .swiper-button-next::after {
    content: url(../images/b1_icon1.svg);
}

.d_g1pt2box .swiper-button-prev::after {
    content: url(../images/b1_icon2.svg);
}

.d_g1pt2box .swiper-button-prev::before {
    content: url(../images/a1_icon2.svg);
}

.d_g1pt2box .swiper-button-next::before {
    content: url(../images/a1_icon3.svg);
}

.d_g1pt2box .swiper-button-next,
.d_g1pt2box .swiper-button-prev {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0px 3px 10px 2px rgba(219, 226, 235, 0.4);
}

.d_g1pt2box .swiper-button-prev::after,
.d_g1pt2box .swiper-button-prev::before,
.d_g1pt2box .swiper-button-next::after,
.d_g1pt2box .swiper-button-next::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: all 0.36s;
}

.d_g1pt2box .swiper-button-prev::before,
.d_g1pt2box .swiper-button-next::before {
    opacity: 0;
}

/* 载入 */
.fp-viewing-0 .ban_li.slick-active .ban_title {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.1s;
}

.fp-viewing-0 .ban_li.slick-active .std_duan20 {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.2s;
}

.fp-viewing-0 .ban_li.slick-active .t_banbtn {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-1 .t_sypt2ul {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-1 .t_sypt2rg {
    animation: fadeIn .5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-2 .t_sypt3ic {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.1s;
}

.fp-viewing-2 .t_sypt3shu {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.1s;
}

.fp-viewing-2 .t_sypt3li .std_title5 {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.2s;
}

.fp-viewing-2 .t_sypt3an {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-3 .t_sypt4nr .std_font46 {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-3 .t_sypt4box {
    animation: ysfadeInUp .5s ease-in-out both;
    animation-delay: 0.3s;
}

/* tammy - end */
.d_f1lab {
    width: 56px;
}

.d_f1forminp {
    width: calc(100% - 56px);
}

.d_f1forminp input {
    padding: 0 5px;
}

.d_f1formli2 label {
    width: 100%;
    line-height: 1.75;
    padding-top: 13px;
}

.d_f1formli2 textarea {
    height: calc(100% - 41px);
    font-size: 16px;
    line-height: 1.5;
}

.z_1200_1 ul.pc_fenye {
    float: none;
    min-height: auto;
    width: auto;
}

.b1_page ul.pc_fenye {
    width: auto !important;
    /* display: inline-block!important; */
}

.b1_page {
    width: 100%;
    text-align: inherit;
}

.page li {
    display: inline-block;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px;
    color: #333;
    margin: 0 10px;
}

.page .lp {
    line-height: 30px !important;
}

.page li:hover {
    border: 1px solid transparent;
}

.t_b1pt3jin {
    display: none;
}

.mc_fybtn {
    color: #666;
}

.d_g1pt1ul .slick-dots {
    bottom: 0px;
}

.d_g1pt1ul.slick-dotted {
    padding-bottom: 40px;
}

.d_g1pt1ul .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.d_g1pt1ul .slick-slide {
    height: auto;
}

.d_f1pt1ri::before,
.d_f1pt1ri::after {
    background: rgb(0, 0, 0, .1);
}

.d_c1bdli,
.d_c1libox {
    width: 100%;
}

.videom_video {
    width: 100%;
}

/* 正在发生 */
.t_sypt4li {
    z-index: 4;
}

.t_sypt4ul.act0 .t_sypt4li.previous:first-child {
    transform: scale(1, 1) translate3d(528px, 0px, 0px);
    opacity: 1;
    width: 384px;
    z-index: 1;
}

.t_sypt4ul.act0 .t_sypt4li.previous:nth-of-type(2),
.t_sypt4ul.act1 .t_sypt4li.previous:first-child {
    transform: scale(1, 1) translate3d(942px, 0px, 0px);
    opacity: 1;
    width: 384px;
    z-index: 1;
}

.t_sypt4ul.act1 .t_sypt4li.previous:first-child {
    z-index: 2;
}

.t_sypt4ul.act2 .t_sypt4li.previous:first-child,
.t_sypt4ul.act0 .t_sypt4li.previous:nth-of-type(3),
.t_sypt4ul.act1 .t_sypt4li.previous:nth-of-type(2) {
    transform: scale(1, 1) translate3d(1356px, 0px, 0px);
    opacity: 1;
    width: 384px;
    z-index: 2;
}

.t_sypt4ul.act2 .t_sypt4li.previous:first-child {
    z-index: 3;
}

.t_sypt4ul.act0 .t_sypt4li.previous:nth-of-type(3) {
    z-index: 1;
}

.t_sypt4li.previous {
    width: 300px;
    opacity: 0;
}

.d_f1formli3 .d_f1lab {
    width: 64px;
}

.d_f1formli3 .d_f1forminp {
    width: calc(100% - 64px);
}

.t_sypt3bg_ph {
    display: none;
}

.banner .t_bandots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .t_bandots .t_bandotli {
    position: relative;
    margin: 0 10px;
    cursor: pointer;
}

.banner .t_bandots .t_bandotli svg {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 5;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.banner .t_bandots .t_bandotli svg circle {
    stroke-width: 2px;
    stroke: #fff;
    stroke-dasharray: 300%;
    stroke-dashoffset: 300%;
    transition: stroke-dashoffset 0.6s ease-out;
    -webkit-transition: stroke-dashoffset 0.6s ease-out;
    -moz-transition: stroke-dashoffset 0.6s ease-out;
    -o-transition: stroke-dashoffset 0.6s ease-out;
    -ms-transition: stroke-dashoffset 0.6s ease-out;
}

.banner .t_bandots .t_bandotli span {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    transition: border-color 0.3s ease-out;
    -webkit-transition: border-color 0.3s ease-out;
    -moz-transition: border-color 0.3s ease-out;
    -o-transition: border-color 0.3s ease-out;
    -ms-transition: border-color 0.3s ease-out;
}

.banner .t_bandots .t_bandotli span:after {
    /* content: ""; */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.banner .t_bandots .t_bandotli.on svg circle {
    stroke-dashoffset: 0;
    animation: movedong 4s ease-out, moveshou 1s ease-out 4s;
}

@keyframes movedong {
    0% {
        stroke-dashoffset: 300%;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes moveshou {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 300%;
    }
}

/*  */
.t_b1pt5ul {
    white-space: nowrap;
    width: calc(270 * var(--shu-num));
}

.t_b1pt5li {
    display: inline-block;
}

.t_b1pt5li {
    width: 270px;
}

.t_b1pt5ul1 {
    animation: donghua 50s linear infinite;
}

.t_b1pt5ul2 {
    animation: donghua2 50s linear infinite;
}

.t_b1pt5ul2 {
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes donghua {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes donghua2 {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.t_syul {
    z-index: 98;
}

/* .t_head{
    top: 0;
    margin-top: 10px;
}
.hd_pc.isfixed .t_head, .fp-viewing-1 .hd_pc .t_head, .fp-viewing-2 .hd_pc .t_head, .fp-viewing-3 .hd_pc .t_head, .fp-viewing-4 .hd_pc .t_head {
    margin-top: 0px;
} */
.hd_pc::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    z-index: 0;
}

.t_sypt2rg {
    position: relative;
    z-index: 10;
}

.t_sypt2dots {
    z-index: 9;

}

.t_sypt2rg::before {
    z-index: 99999 !important;
}

.t_sypt2dots {
    z-index: 999999 !important;
}

.t_sypt2picul {
    position: relative;
    z-index: -1 !important;
}

.t_sypt2picul div {
    z-index: -1;
}

.t_syjia {
    width: 1946px;
    height: 1946px;
    border: 200px solid #fff;
    box-shadow: 0 0 31px 3px rgb(0 0 0 / 5%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    z-index: 99999 !important;
    border-radius: 50%;
    display: block;
}

.t_sypt2ul {
    position: relative;
    z-index: 99999 !important;
    transform: translateZ(1001px);
}

/*.t_headone a{
    opacity: .6;
}*/

.t_headul .t_headli.yxnav_active1 .t_headone a {
    color: #fff;
    opacity: 1;
}

.t_headone::before {
    background: #fff;
}

.hd_pc.isfixed .t_headli.yxnav_active1 .t_headone a,
.fp-viewing-1 .hd_pc .t_headli.yxnav_active1 .t_headone a,
.fp-viewing-2 .hd_pc .t_headli.yxnav_active1 .t_headone a,
.fp-viewing-3 .hd_pc .t_headli.yxnav_active1 .t_headone a,
.fp-viewing-4 .hd_pc .t_headli.yxnav_active1 .t_headone a {
    color: #ffffff;
}

.hd_pc.isfixed .t_headone::before,
.fp-viewing-1 .hd_pc .t_headone::before,
.fp-viewing-2 .hd_pc .t_headone::before,
.fp-viewing-3 .hd_pc .t_headone::before,
.fp-viewing-4 .hd_pc .t_headone::before {
    background: #e46713;
}

.t_dicode {
    display: block;
    position: relative;
    left: 0;
    transform: translateX(0);
    bottom: 0;
}

.t_diwxpic,
.t_dicode::before {
    display: none;
}

.t_diwx {
    width: auto;
}

.d_d2le {
    width: 360px;
    padding: 50px 44px 70px;
}

.d_d2ri {
    width: calc(100% - 360px);
}

.d_g1pt4 .d_g1pt4bot {
    width: auto !important;
}

.d_g1pt4bd {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 轮播切换按钮 */
.ban_prev,
.ban_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    cursor: pointer;
    z-index: 20;
    transition: all .3s;
}

.ban_prev {
    left: 30px;
}

.ban_next {
    right: 30px;
}

.ban_prev:hover,
.ban_next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* 按钮箭头样式 */
.ban_prev::before,
.ban_next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.ban_prev::before {
    transform: translate(-55%, -50%) rotate(-135deg);
    left: 60%;
}

.ban_next::before {
    transform: translate(-45%, -50%) rotate(45deg);
    left: 40%;
}

/* ======================================
   新闻列表样式 (News List Styles)
   ====================================== */

/* 页面头部 */
.page_header {
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    width: 100%;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ed7937;
}

.breadcrumb span {
    margin: 0 10px;
}

.page_title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* 分类选项卡 */
.news_categories {
    margin-bottom: 30px;
}

.news_tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid #eee;
}

.news_tab {
    margin-right: 40px;
}

.news_tab a {
    display: block;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.news_tab.active a {
    color: #0066cc;
    font-weight: 500;
}

.news_tab.active a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

.news_tab a:hover {
    color: #0066cc;
}

/* 新闻列表 */
.news_list {
    margin-bottom: 40px;
}

.news_item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding-left: 10px;
    padding-right: 10px;
}

.news_image {
    flex: 0 0 200px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.news_image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news_item:hover .news_image img {
    transform: scale(1.05);
}

.news_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 500;
}

.news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_title a:hover {
    color: #0066cc;
}

.news_excerpt {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news_meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.news_category {
    padding: 4px 12px;
    background-color: #f0f7ff;
    color: #0066cc;
    border-radius: 15px;
    margin-right: 15px;
}

.news_date {
    margin-right: auto;
}

.news_readmore {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news_readmore:hover {
    padding-right: 5px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.pagination_item {
    margin: 0 5px;
}

.pagination_item a {
    display: block;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination_item.active a {
    background-color: #A6634D;
    border-color: #A6634D;
    color: white;
}

.pagination_item:not(.active):not(.disabled) a:hover {
    border-color: #A6634D;
    color: #A6634D;
}

/* 确保active状态下hover时颜色不变 */
.pagination_item.active a:hover {
    background-color: #A6634D;
    border-color: #A6634D;
    color: white;
}

.pagination_item.disabled a {
    color: #ccc;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news_item {
        flex-direction: column;
    }

    .news_image {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .news_image img {
        height: 200px;
    }

    .news_tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .news_tab {
        margin-right: 20px;
    }
}

/* 产品列表页样式 */

.product_category .tab_item {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    margin-right: 10px;
    transition: all 0.3s;
}

.product_category .tab_item:hover {
    background-color: #f5f5f5;
}

.product_category .tab_item.active {
    background-color: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

/* 美化产品分类选项卡 */
.product_categories {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.product_tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product_tab {
    flex: 0 0 auto;
}

.product_tab a {
    display: inline-block;
    padding: 12px 24px;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    background-color: #f8f9fa;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product_tab a:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product_tab.active a {
    color: #ffffff;
    background: linear-gradient(135deg, #e46713 0%, #ff9c7c 100%);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.product_tab.active a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.product_tab.active a:hover:before {
    left: 100%;
}

.product_list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product_item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 产品图片样式优化 */
.product_image {
    overflow: hidden;
}

.product_image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item:hover .product_image img {
    transform: scale(1.05);
}

.product_content {
    padding: 20px;
}

.product_title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.product_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product_title a:hover {
    color: #2c3e50;
}

.product_excerpt {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em;
}

.product_list .product_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_category {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f2f5;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
}

.product_details {
    color: #2c3e50;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product_details:hover {
    color: #A6634D;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .product_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product_image img {
        height: 160px;
    }

    .product_content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .product_list {
        grid-template-columns: 1fr;
    }

    .product_image img {
        height: 180px;
    }
}

/* 保留分页样式 */

.product_desc {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.product_category_tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: #f0f0f0;
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.product_date {
    color: #999;
    font-size: 12px;
}

.product_more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.product_more:hover {
    background-color: #34495e;
}

/* 产品详情页样式 */
.product_detail {
    margin-top: 40px;
    padding-bottom: 60px;
    /*max-width: 1200px;*/
    margin-left: auto;
    margin-right: auto;
}

/* 页面标题样式 */
.page_title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e46914;
}

/* 产品元信息 */
.product_meta {
    flex-wrap: wrap;
    gap: 25px;
    color: #666;
    font-size: 14px;
    display: block;
    margin: 25px 0;
}

.product_meta_item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.product_meta_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product_meta_label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.product_meta_value {
    color: #333;
    flex: 1;
}

.product_meta span {
    display: flex;
    align-items: center;
}

.product_meta span:nth-child(1):before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #A6634D;
    margin-right: 8px;
}

/* 产品展示区 */
.product_gallery {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 20px;
}

.main_image {
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}

.main_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main_image:hover img {
    transform: scale(1.02);
}

.thumbnail_list {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail_item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.thumbnail_item:hover,
.thumbnail_item.active {
    border-color: #A6634D;
    transform: translateY(-3px);
}

.thumbnail_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品简介 */
.product_abstract {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #A6634D;
}

.product_abstract h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.product_abstract p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* 产品参数 */
.product_parameters {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product_parameters h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.parameter_table {
    width: 100%;
    border-collapse: collapse;
}

.parameter_table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.parameter_table tr:hover {
    background-color: #f8f9fa;
}

.parameter_table tr:last-child {
    border-bottom: none;
}

.parameter_table td {
    padding: 15px 10px;
}

.parameter_table .param_name {
    font-weight: 600;
    color: #666;
    width: 150px;
    vertical-align: top;
}

.parameter_table .param_value {
    color: #333;
}

/* 产品详情内容 */

.product_content h3 {
    font-size: 16px;
    color: #2c3e50;
    margin: 30px 0 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product_content h3:first-child {
    margin-top: 0;
}

.product_image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product_image:hover {
    transform: translateY(-5px);
}

.feature_list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature_list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.feature_list li:before {
    content: "✓";
    width: 24px;
    height: 24px;
    background-color: #e36815;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.feature_list li:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.feature_list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 应用领域 */
.application_areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.app_area {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.app_area:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.app_area svg {
    max-width: 100%;
}

.app_area span {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-top: 12px;
}

.advantage_list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.advantage_list li {
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    border-left: 3px solid #A6634D;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.advantage_list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 咨询按钮 */
.product_contact {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.back_btn,
.contact_btn,
.quote_btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.back_btn {
    background-color: #f1f3f5;
    color: #ec8e3d;
}

.back_btn:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact_btn {
    background-color: #e46713;
    /* 按钮颜色 */
    color: white;
}

.contact_btn:hover {
    background-color: #A6634D;
    /* 按钮选中颜色 */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 99, 77, 0.4);
}

.quote_btn {
    background-color: #A6634D;
    /* 按钮颜色 */
    color: white;
}

.quote_btn:hover {
    background-color: #D9611E;
    /* 按钮选中颜色 */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 99, 77, 0.4);
}

/* 相关产品推荐 */
.related_products {
    margin-top: 60px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.related_products h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.related_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related_list li {
    flex: 1;
    min-width: 200px;
}

.related_list a {
    display: block;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related_list a:hover {
    background-color: #A6634D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 客户案例展示 */
.case_studies {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.case_item {
    flex: 1 1 300px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case_item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.case_item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}



/* 响应式设计 */
@media (max-width: 1200px) {
    .product_detail {
        padding: 0 20px 60px;
    }

    .advantage_list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page_title {
        font-size: 24px;
    }

    .main_image {
        height: 300px;
    }

    .thumbnail_list {
        flex-wrap: wrap;
    }

    .thumbnail_item {
        width: 70px;
        height: 70px;
    }

    .parameter_table .param_name {
        width: 120px;
    }

    .product_contact {
        flex-direction: column;
    }

    .contact_btn,
    .quote_btn {
        width: 100%;
    }

    .application_areas {
        grid-template-columns: 1fr;
    }

    .app_area img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .product_detail {
        padding: 0 15px 40px;
    }

    .page_title {
        font-size: 20px;
    }

    .product_abstract,
    .product_parameters,
    .related_products {
        padding: 15px;
    }

    .main_image {
        height: 250px;
    }

    .thumbnail_item {
        width: 60px;
        height: 60px;
    }

    .feature_list li,
    .advantage_list li {
        font-size: 14px;
    }

    .case_studies {
        flex-direction: column;
    }

    .case_item {
        flex: 1 1 auto;
    }
}

/* 关于我们页面样式 */
.about_us {
    padding: 40px 0 60px;
}

.about_us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about_us .page_header {
    text-align: center;
    margin-bottom: 40px;
}

.about_us .page_title {
    font-size: 32px;
    font-weight: 600;
    color: #e46815;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
}

.about_us .page_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #A6634D;
}

/* 公司简介样式 */
.company_profile {
    margin-bottom: 30px;
}

.company_profile h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

.company_profile p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* 服务范围样式 */
.service_scope {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.service_scope h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

/* 服务领域样式 */
.service_areas {
    margin-bottom: 60px;
}

.service_areas h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

/* 服务优势样式 */
.service_advantages {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.service_advantages h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

/* 客户案例展示样式 */
.case_studies_section {
    margin-bottom: 40px;
}

.case_studies_section h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

.parameter_table td {
    padding: 10px 5px;
    font-size: 14px;
}

.feature_list li {
    padding: 12px 15px 12px 30px;
}

.case_studies {
    flex-direction: column;
}

.case_item {
    flex: 1 1 auto;
}

/* 联系我们 */
.contact_section {
     padding: 40px 0;
}

.contact_info {
    margin-bottom: 40px;
}

.contact_info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact_info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.contact_form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.contact_form h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e46713;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    background: #e46713;
    /* 按钮颜色 */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #D9611E;
    /* 按钮选中颜色 */
}

.cont1360 {
    margin: 0 auto;
    padding: 0 20px;
}

.contact_container {
    display: flex;
    gap: 40px;
}

.contact_left {
    flex: 1;
    max-width: 500px;
}

.contact_middle {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact_online {
    flex: 0 0 250px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.online_consult_section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #A6634D;
    padding-bottom: 10px;
}

.online_consult {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.online_consult .erq_code {}

.online_consult .erq_code img {
    max-width: 90%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.online_consult .erq_text p {
    color: #666;
    text-align: center;
}

/* 响应式布局调整 */
@media (max-width: 992px) {
    .contact_container {
        flex-direction: column;
    }

    .contact_left,
    .contact_middle,
    .contact_online {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.company_info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.company_info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e46713;
    padding-bottom: 10px;
}

.company_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company_info li {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.company_info li strong {
    color: #333;
    margin-right: 10px;
}

.gzh_section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.gzh_section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.gzh_section .gzh_img {
    max-width: 100%;
}

/* 地图和表单区域样式 */
.map_section,
.form_section {
    width: 100%;
    margin-top: 40px;
}

.map_section .contact_map img,
.form_section .contact_form {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gzh_section p {
    color: #666;
    font-size: 14px;
}

.contact_right {
    flex: 2;
}

.contact_map {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contact_map img {
    width: 100%;
    height: auto;
    display: block;
}

.contact_ways {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact_ways h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e46713;
    padding-bottom: 10px;
}

.contact_layout {
    display: flex;
}

.contact_online_in {
    width: 320px;
    padding-top: 10px;
}

.contact_group {
    margin-bottom: 25px;
}

.contact_group h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact_group p {
    color: #666;
    line-height: 2;
    margin: 0;
}

.contact_group a {
    color: #0066cc;
    text-decoration: none;
}

.contact_group a:hover {
    text-decoration: underline;
}

.online_consult {
    margin-top: 15px;
}

.erq_code {
    flex-shrink: 0;
}

.erq_code img {
    max-width: 120px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.erq_text {
    color: #666;
}

.contact_form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact_form h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e46713;
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .contact_container {
        flex-direction: column;
    }

    .contact_left {
        max-width: 100%;
    }

    .contact_layout {
        flex-direction: column;
    }

    .contact_online_in {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact_section {
        padding: 30px 0;
    }

    .contact_form {
        padding: 20px;
    }
}

/* 页眉 */
.header_top {
    background-color: #f2f9ff;
    /* 更柔和的背景色 */
    border-bottom: 1px solid #e8e0d5;
    /* 与品牌色协调的边框 */
    height: 60px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(166, 99, 77, 0.08);
}

.header_top_content {
    width: 100%;
    padding: 0 106px 0 76px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_top_left {
    display: flex;
    flex-direction: column;
}

.header_top_left div {
    margin: 0;
}

.header_top_left div:first-child {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    /* 品牌主色 */
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.header_top_left div:last-child {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    font-size: 12px;
    color: #999;
    /* 深棕色文字 */
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.header_top_right {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_top_right .hotline-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 0.2px;
}

.header_top_right .hotline-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header_top_right .hotline-numbers a {
    font-size: 16px;
    font-weight: bold;
    color: #E46713;
    /* 品牌色 */
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
}

.header_top_right .hotline-numbers a:hover {
    color: #D9611E;
    /* 品牌强调色 */
    transform: translateX(2px);
}

/* 响应式设计 */
@media (min-width: 1199px) {
    .t_head {
        top: 60px !important;
    }

    .t_headuler,
    .t_headuler_bg {
        top: 110px !important;
    }

    .page_wrap {
        padding-top: 110px;
    }
}

@media (max-width: 1199px) {
    .header_top {
        display: none;
    }
}

@media (max-width: 480px) {
    .header_top {
        padding: 10px 0;
    }

    .header_top_left div:first-child {
        font-size: 13px;
    }

    .header_top_right .hotline-numbers {
        flex-direction: column;
        gap: 8px;
    }
}