@charset "UTF-8";

/* =========================================
   1. 全局基础样式 (Global & Reset)
   ========================================= */
:root {
    --primary-red: #C81622;
    --dark-bg: #111111;
    --text-dark: #252525;
    --text-gray: #666666;
    --border-light: rgba(255,255,255,0.15);
}
body { 
	font-family: Helvetica Neue,Helvetica,Arial,Microsoft Yahei,Hiragino Sans GB,Heiti SC,WenQuanYi Micro Hei,sans-serif; 
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


* {
	margin: 0;
	outline: none;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	font-style: normal;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-user-focus: none;
	font-weight: normal;
}

a {
	color: inherit;
	text-decoration: none ;
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-user-focus: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
	transition: all 0.3s ease;
	font-weight:normal;
	font-size:100%; 
	margin-bottom:0px;
}

p{
	transition: ease-in-out 0.3s;
}
a {
    color:#666;
	text-decoration: none;
	transition: ease-in-out 0.3s;
}

a:hover {
	text-decoration: none;
}

:focus { outline:0; }
ul,ol,ul li,ol li { list-style: none; }
/**/
menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p,span{
	 margin-bottom:0px;
}
address,caption,cite,em,code,dfn,th,var { font-style:normal;font-weight:normal; }
form label { cursor:pointer; }
input,button,select,textarea { font-family:inherit;font-size:100%;outline:none; }
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
	border:0px;
}
textarea { resize:none }
input { vertical-align:middle; }
img { border:0; }/**/
img, video {
    max-width: 100%;
    height: auto;
}
table { border-collapse:collapse;border-spacing: 0; }/**/
.l { float:left; }
.r { float:right; }
button,input[type="reset"],input[type="button"],input[type="submit"] { line-height:normal !important; }
a { text-decoration:none;}
a { color:#666;}
a:hover { text-decoration:none; }
input { _filter:chroma(color=#000000); }
/*--
------------------------------------------------------------------------------------------*/
.clearfix:after { clear:both;content:".";display:block;font-size:0;height:0;visibility:hidden; }
.clearfix:after { _zoom:1; }
.overflow { overflow:hidden; _zoom:1; }
.clear { clear:both; height:0;font-size:0; overflow:hidden;position: relative; }

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

.col-xs-12 {
	width: 100%;
}


.w-full{
	width:100%;
}

.h-full{
	height:100%;
}

.t-u {
	text-transform: uppercase;
}

.text-center{
	text-align: center;
}

.d-flex{
	display: flex;
}

.txt-gray{
	color: #333333 !important;
}

.txt-bold{
	font-weight: 700;
}



.hide{
	display: none;
}

.pc-block {
	display: inline-block !important;
	@media only screen and (max-width:800px) {
		display: none!important;
	}
}

.app-block {
	display: none !important;
	@media only screen and (max-width: 800px) {
		display: block!important;
	}
}


/* 宽屏适配 */
@media (min-width: 1440px) {
    .container {
        max-width: 92%; 
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 1800px) {
    .container {
       
    }
}

a { text-decoration: none !important; color: inherit; transition: 0.3s; }
a:hover { color: var(--primary-red); }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

.section-padding { padding: 90px 0; }
@media(max-width: 768px) { .section-padding { padding: 50px 0; } }

/* 通用标题组件 */
.page_title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.page_title h3 {
    font-size: 48px;
    font-weight: 700;
	color:#252525;
    margin-bottom: 12px;
}
.page_title p {
    color: #888;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.page_title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto 0;
}

/* 通用按钮组件 */
.com_btn {
	width:180px;
	height:50px;
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #252525;
    color: #252525;
    background: transparent;
    transition: all 0.3s;
    font-size: 18px;
	border-radius:5px;
	display: flex;
    justify-content: space-between;
	align-items: center;
}
.com_btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}
.com_btn i { margin-left: 10px; }

/* =========================================
   2. PC Header (Fixed & Optimized)
   ========================================= */
header {
    background: #fff;
    position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    height: 100px;
    transition: all 0.3s;
}

header .container {
    max-width: 90%; 
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img { height: 80px; width: auto; display: block; }

.header-right-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    flex: 1;
}

.header-top-row {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}
.header-info-item {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.header-info-item .telicon,
.header-info-item .usericon{
	width:18px;
	height:18px;
	margin-right: 6px;
    background-position: center center;
    background-repeat: no-repeat;
	background-size:contain;
}

.header-info-item .telicon{
	background-image: url('../images/common/topbar_tel.svg');
}

.header-info-item .usericon{
	background-image: url('../images/common/user.svg');
}

.header-info-item a { color: #666; transition: 0.2s; text-decoration: none; }
.header-info-item a:hover { color: var(--primary-red); }
.divider { margin: 0 8px; color: #ddd; }

.header-bottom-row { display: flex; align-items: center; }

.nav_list { display: flex; align-items: center; margin: 0; }

.nav_list > li { 
    margin: 0 20px; 
    position: relative; 
    height: 50px; 
    display: flex;
    align-items: stretch;
}

/* PC Hover Bridge (z-index 10) */
.nav_list > li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px; 
    bottom: -15px; 
    background: transparent; 
    z-index: 10;
}

/* PC Menu Link (z-index 20) */
.nav_list > li > a {
    font-size: 16px;
    color: #252525;
    font-weight: 500;
    position: relative;
    z-index: 20; 
    display: flex; 
    align-items: center; 
    height: 100%; 
    width: 100%;
    text-decoration: none;
}

.nav_list > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--primary-red); transition: width 0.3s ease;
}
.nav_list > li:hover > a::after,.nav_list > li.active > a::after { width: 100%; }
.nav_list > li:hover > a { color: #000; }

.nav_list > li.active > a{
	color: #C81622;
}

.header-icons {
    display: flex; align-items: center; margin-left: 10px; padding-left: 20px;
    border-left: 1px solid #eee; height: 16px;
}
.header-icons span {
    font-size: 16px; color: #333; margin-left: 20px; cursor: pointer; transition: 0.3s;
}
.header-icons span:hover { color: var(--primary-red); }

.header-icons .topbar-search{
	width:17px;
	height:17px;
	background:url(../images/common/search_icon.svg) center center no-repeat;
	background-size:contain;
	display:inline-block;
}

.header-icons .topbar-globe{
	width:17px;
	height:17px;
	background:url(../images/common/globe_icon.svg) center center no-repeat;
	background-size:contain;
	display:inline-block;
}


/* PC Dropdown Menu */
.dropdown-menu-wrapper {
    position: fixed; 
    top: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 1001;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease-out;
    border-top: 0px solid #eee;
}

.nav_list > li:hover .dropdown-menu-wrapper {
    max-height: 600px;
    padding-top: 40px;
    padding-bottom: 50px;
    opacity: 1;
    border-top: 1px solid #eee;
}

.dropdown-menu-wrapper .container {
    max-width: 100% !important; 
    padding-left: 5%; 
    padding-right: 5%;
}

.dropdown-grid {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
.dropdown-item-box {
    width: 240px;
    cursor: pointer;
    opacity: 0;
	aspect-ratio: 16 / 9;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    transition-delay: 0.1s; 
}
.nav_list > li:hover .dropdown-item-box {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item-box .img-box {
    width: 100%; height: 120px; overflow: hidden; margin-bottom: 15px; background: #f8f8f8;
}
.dropdown-item-box .img-box img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.dropdown-item-box:hover .img-box img { transform: scale(1.05); }
.dropdown-item-box h5 {
    font-size: 18px; color: #444; margin: 0; font-weight: 400; transition: 0.3s;
}
.dropdown-item-box:hover h5 { color: var(--primary-red); }

/* PC Mask */
.page-overlay-mask {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 100px);
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 900;
    pointer-events: none; 
}
.nav_list > li:hover .page-overlay-mask {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1920px) {
	.dropdown-item-box {
	    width:200px;
	}
}



/* =========================================
   3. Mobile Menu Styles
   ========================================= */
@media (max-width: 991px) {
    .nav_list { display: none !important; }
    header {
        height: 70px; 
        padding: 0; 
    }
    header .container {
        padding: 0 20px;
        justify-content: space-between;
    }
    header .logo {
        height: 35px;
        width: auto;
        order: 1; 
    }
    header .logo img {
        height: 100%;
        width: auto;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        order: 2; 
        height: 100%;
    }

    .mobile-search-icon {
        font-size: 22px; 
        color: #333;
        margin-right: 25px; 
        cursor: pointer;
    }

    .mobile-toggle-btn {
        position: relative;
        width: 24px;
        height: 24px;
        cursor: pointer;
        z-index: 2001; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-toggle-btn i {
        position: absolute;
        font-size: 26px; 
        color: #333;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    }

    .mobile-toggle-btn .icon-bars {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
    .mobile-toggle-btn .icon-close {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
        font-size: 28px; 
        color: var(--primary-red);
    }

    .mobile-toggle-btn.active .icon-bars {
        opacity: 0;
        transform: rotate(90deg) scale(0.5);
    }
    .mobile-toggle-btn.active .icon-close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    /* Overlay 基础 */
    .mobile-menu-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        border-top: 1px solid #eee;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-viewport {
        flex: 1;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .mobile-menu-slider {
        display: flex;
        width: 200%;
        height: 100%;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .mobile-menu-level-1, .mobile-menu-level-2 {
        width: 50%;
        height: 100%;
        overflow-y: auto;
        background: #fff;
    }

    .mobile-menu-list { padding: 0; margin: 0; }
    .mobile-menu-list li { border-bottom: 1px solid #f5f5f5; }
    .mobile-menu-list li a, .mobile-menu-list li div.mobile-menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        font-size: 16px;
        color: #333;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
    }
    .mobile-menu-list li:active { background-color: #fafafa; }
    
    .mobile-menu-arrow { 
        color: var(--primary-red); 
        font-size: 14px; 
    }

    .mobile-menu-back-row {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        color: #333;
        font-size: 15px;
        font-weight: 500;
    }
    .mobile-menu-back-icon {
        color: var(--primary-red);
        margin-right: 10px;
        font-weight: bold;
    }
}

/* =========================================
   Search Bar Dropdown
   ========================================= */
.search-bar-dropdown {
    position: fixed;
    top: 100px; /* PC Header Height */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6); /* Grey overlay background */
    padding: 20px 0;
    z-index: 999; /* Below dropdown menu (1001) but above content */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.search-bar-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar-dropdown form {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.search-bar-dropdown input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 4px;
    padding: 0 50px 0 20px;
    outline: none;
    background: #fff;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-bar-dropdown button {
    position: absolute;
    right: 10px;
    top: 0;
    height: 50px;
    width: 40px;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}
.search-bar-dropdown button:hover {
    color: var(--primary-red);
}

@media (max-width: 991px) {
	
    .search-bar-dropdown {
        top: 70px; /* Mobile Header Height */
        padding: 15px 20px;
    }
    .search-bar-dropdown input {
        height: 44px;
        font-size: 14px;
    }
    .search-bar-dropdown button {
        height: 44px;
        font-size: 18px;
    }
}

/* =========================================
   Footer
   ========================================= */
footer { background-color: #1d1d1d; color: #b2b2b2; padding: 70px 0 30px; font-size: 12px; font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", sans-serif; }
footer a { color: #b2b2b2; transition: 0.3s; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-contact-col { padding-right: 20px; }
.footer-tel-box { display: flex; align-items: center; margin-bottom: 25px; }
.footer-tel-icon { width: 60px; height: 60px; background: rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2); border-radius:10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: #fff; font-size: 20px; }

.footer-tel-icon .telicon{
	width:20px;
	height:20px;
    background-position: center center;
    background-repeat: no-repeat;
	background-size:contain;
	background-image: url('../images/common/topbar_tel_light.svg');
}

.footer-tel-info span { display: block; color: #ccc; font-size: 12px; margin-bottom: 3px; }
.footer-tel-info strong { display: block; font-size: 26px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: 0.5px; }
.footer-add-list { margin-bottom: 25px; }
.footer-add-list li { display: flex; align-items: flex-start; margin-bottom: 12px; line-height: 1.5; color: #999; }
.footer-add-list li i { margin-right: 10px; margin-top: 3px; font-size: 14px; width: 16px; text-align: center; }
.btn-footer-contact { display: inline-flex; align-items: center; justify-content: center; background-color: #D9001B; color: #fff !important; width: 140px; height: 40px; border-radius: 4px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.btn-footer-contact:hover { background-color: #b00016; transform: translateY(-2px); }
.btn-footer-contact i { margin-left: 8px; font-size: 12px; }
.footer-nav-group { display: flex; justify-content: space-between; padding: 0 10px; }
.footer-nav-item { flex: 1; min-width: 80px; }
.footer-nav-item h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.footer-nav-item ul li { margin-bottom: 10px; }
.footer-nav-item ul li a { font-size: 12px; color: #999; display: flex; align-items: center; }
.footer-nav-item ul li a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 5px; font-size: 12px; color: #666; transition: 0.3s; }
.footer-nav-item ul li a:hover::before { color: #fff; margin-right: 8px; }
.footer-qr-wrapper { padding-left: 20px; }
.footer-qr-wrapper h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.footer-qr-box { display: flex; gap: 15px; }
.qr-item { text-align: center; }
.qr-item .img-box { background: #fff;margin-bottom: 8px; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.qr-item img { width: 100%; height: 100%; display: block; }
.qr-item p { color: #888; font-size: 12px; margin: 0; }
.footer-bottom { border-top: 1px solid #333; margin-top: 50px; padding-top: 25px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; color: #666; font-size: 12px; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 10px; }
.footer-friend-links span { color: #666; margin-right: 10px; }
.footer-friend-links a { margin-right: 15px; color: #888; }
.footer-friend-links a:hover { color: #ccc; }
.footer-copyright-text { color: #666; }
.footer-bottom-right a { margin-left: 25px; color: #888; }
.footer-bottom-right a:hover { color: #fff; }

/* =========================================
   Footer 移动端适配 
   ========================================= */
@media (max-width: 991px) {
    footer { padding: 50px 0 30px; }

    footer .container {
        padding-left: 30px !important; 
        padding-right: 30px !important;
    }

    .footer-contact-col, 
    .footer-nav-col, 
    .footer-qr-wrapper { 
        width: 100%; 
        padding: 0 15px; 
        margin-bottom: 20px; 
        text-align: left; 
    }

    .footer-tel-box { 
        justify-content: flex-start; 
    }

    .footer-add-list li { 
        justify-content: flex-start; 
        text-align: left; 
    }

    .footer-nav-group { 
        flex-wrap: wrap; 
        justify-content: space-between; 
    }
    .footer-nav-item { 
        flex: 0 0 45%; 
        text-align: left; 
        margin-bottom: 30px; 
        padding-left: 0; 
    }
    .footer-nav-item h5 { 
        border-bottom: 1px solid #333; 
        padding-bottom: 10px; 
        margin-bottom: 15px; 
    }

    .footer-qr-box { 
        justify-content: flex-start; 
        gap: 20px; 
    }
    .qr-item { text-align: center; }

    .footer-bottom { 
        flex-direction: column; 
        text-align: left; 
        gap: 20px; 
		margin-top:30px;
        align-items: flex-start; 
    }
    .footer-bottom-left { 
        align-items: flex-start; 
    }
    
    .footer-friend-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-friend-links span { margin-right: 0; width: 100%; margin-bottom: 5px; }
    .footer-friend-links a { margin-right: 15px; margin-left: 0; }
/
    .footer-bottom-right {
        display: flex;
        gap: 20px;
    }
    .footer-bottom-right a { margin: 0; }
}



/* =========================================
   内页通用 Banner
   ========================================= */
.inner-banner {
    width: 100%;
    height: 480px;
    position: relative;
    display: flex;
    align-items: center; 
    color: #FFFFFF;
    overflow: hidden;
    background-color: #1a2b45; 
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	 margin-top: 100px;
}

.inner-banner .container {
	position: relative;
    width: 80%; 
    margin: 0 auto;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 0 15px;
}


.inner-banner .com_btn{
	color:#fff;
	border:1px solid #fff;
	margin-top:40px;
}

.inner-banner .com_btn:hover{
	border:1px solid #C81622;
}

.inner-banner .breadcrumbs {
    position: absolute;
    top: 30px;
    left: 15px; 
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6); 
}

.inner-banner .breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
    transition: color 0.3s;
}

.inner-banner .breadcrumbs .current {
    color: #FFFFFF; 
    margin-left: 5px;
}

.inner-banner .banner-breadcrumb {
    padding-top: 60px; 
    width: 100%;
}

.inner-banner .banner-breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.inner-banner .banner-breadcrumb ul li {
    display: flex;
    align-items: center;
}

.inner-banner .banner-breadcrumb ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: opacity 0.3s;
}
.inner-banner .banner-breadcrumb ul li a:hover { color: #fff; }

.inner-banner .banner-breadcrumb ul li + li::before {
    content: "›"; 
    margin: 0 10px;
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: -1px;
}

/* --- 大标题 (Title) --- */
.inner-banner .banner-title {
    font-size: 48px; 
    font-weight: 400; 
    margin-bottom: 24px; 
    color: #FFFFFF;
}
.inner-banner .banner-desc {
    font-size: 20px;
    line-height: 1.5; 
    color: rgba(255, 255, 255, 0.85); 
    max-width: 620px; 
    margin: 0;
    font-weight: 300; 
    text-align: left;
}
.inner-banner .banner-title-area {
    flex: 1;
    display: flex;
    align-items: center; 
    padding-bottom: 60px; 
}

.inner-banner .banner-title-area h1 {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

/* 移动端适配 Banner */
@media (max-width: 991px) {

    .inner-banner { height: 300px; margin-top: 70px; }
    .inner-banner .banner-breadcrumb { padding-top: 30px; }
    .inner-banner .banner-title-area h1 { font-size: 32px; }
}

@media (max-width: 768px) {
    .inner-banner {
        height: 300px; 
    }
    .inner-banner .banner-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .inner-banner .banner-desc {
        font-size: 14px;
        max-width: 100%;
    }
    .inner-banner .banner-desc br {
        display: none;
    }
}


/* =========================================
   8. Floating Side Toolbar
   ========================================= */
.side-toolbar {
    position: fixed;
    right: 20px;
    top: 30%; 
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.side-toolbar .toolbar-item {
    width: 50px;
    height: 50px;
    background-color: #999; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative; 
    transition: all 0.3s;
    color: #FFF;
    font-size: 20px;
    text-decoration: none;
}

.side-toolbar .toolbar-item:hover {
    background-color: #666;
}

.side-toolbar .toolbar-item.to-top {
    background-color: #ce1126;
    margin-top: 10px; 
    opacity: 0; 
    visibility: hidden;
    transform: translateY(20px);
}

.side-toolbar .toolbar-item.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.side-toolbar .toolbar-item.to-top:hover {
    background-color: #b00e20;
}

.side-toolbar .toolbar-popover {
    position: absolute;
    right: 70px; 
    top: 50%;
    transform: translateY(-50%) translateX(10px); 
    background-color: #FFF;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.side-toolbar .toolbar-popover::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}

.side-toolbar .toolbar-item:hover .toolbar-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.side-toolbar .qr-box {
	width:120px;
    text-align: center;
}
.side-toolbar .qr-box img {
    width: 120px;
    height: 120px;
    display: block;
    margin-bottom: 5px;
}
.side-toolbar .qr-box p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.side-toolbar .phone-box {
    padding: 5px 15px;
    font-size: 20px;
    color: #ce1126;
    font-weight: 600;
}

.side-toolbar .sidebar-ico1,
.side-toolbar .sidebar-ico2,
.side-toolbar .sidebar-ico3,
.side-toolbar .sidebar-ico4{
	width:40px;
	height:40px;
	display:inline-block;
	background-repeat:no-repeat;
	background-position:center center;
}

.side-toolbar .sidebar-ico1{
	background-image:url(../images/common/kf_wechat.svg);
}

.side-toolbar .sidebar-ico2{
	background-image:url(../images/common/kf_tel.svg);
}

.side-toolbar .sidebar-ico3{
	background-image:url(../images/common/kf_address.svg);
}

.side-toolbar .sidebar-ico4{
	background-image:url(../images/common/backtop.svg);
}

@media (max-width: 1480px) {
	.page_title h3 {
		font-size: 42px;
	}
	.com_btn {
	    width: 140px;
		font-size:15px;
	    height: 44px;
	    padding: 8px 12px;
	}
}


@media (max-width: 768px) {
	.page_title h3 {
		font-size: 32px;
	}
    .side-toolbar {
        display: none !important;
    }
}


.pc-block {
  display: inline-block !important; }
  @media only screen and (max-width: 800px) {
    .pc-block {
      display: none !important; } }

.app-block {
  display: none !important; }
  @media only screen and (max-width: 800px) {
    .app-block {
      display: block !important; } }